diff -uraN gimp-2.2.7/aclocal.m4 gimp-2.2.8/aclocal.m4 --- gimp-2.2.7/aclocal.m4 2005-04-11 11:42:29.000000000 +0200 +++ gimp-2.2.8/aclocal.m4 2005-06-26 21:28:06.000000000 +0200 @@ -7452,11 +7452,9 @@ # isc-posix.m4 serial 2 (gettext-0.11.2) dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. -dnl This file is free software, distributed under the terms of the GNU -dnl General Public License. As a special exception to the GNU General -dnl Public License, this file may be distributed as part of a program -dnl that contains a configuration script generated by Autoconf, under -dnl the same distribution terms as the rest of that program. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. # This file is not needed with autoconf-2.53 and newer. Remove it in 2005. @@ -7898,7 +7896,7 @@ [AC_TRY_LINK([ #include ], - [return (int) ngettext ("","", 1)], + [return !ngettext ("","", 1)], gt_cv_func_ngettext_libc=yes, gt_cv_func_ngettext_libc=no) ]) @@ -7908,7 +7906,7 @@ [AC_TRY_LINK([ #include ], - [return (int) dgettext ("","")], + [return !dgettext ("","")], gt_cv_func_dgettext_libc=yes, gt_cv_func_dgettext_libc=no) ]) @@ -8441,7 +8439,7 @@ [if test "x$ac_cv_env_[]$1[]_set" = "xset"; then pkg_cv_[]$1=$ac_cv_env_[]$1[]_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "$3" >/dev/null 2>&1; then + if AC_RUN_LOG([$PKG_CONFIG --exists "$3" >/dev/null 2>&1]); then pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` else pkg_failed=yes @@ -8453,6 +8451,13 @@ # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) +# +# +# Note that if there is a possibility the first call to +# PKG_CHECK_MODULES might not happen, you should be sure to include an +# explicit call to PKG_PROG_PKG_CONFIG in your configure.in +# +# # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl @@ -8461,9 +8466,9 @@ pkg_failed=no AC_CACHE_CHECK([for $1][_CFLAGS], [pkg_cv_][$1][_CFLAGS], - [_PKG_CONFIG([$1][_CFLAGS], [cflags], [[$2]])]) + [_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])]) AC_CACHE_CHECK([for $1][_LIBS], [pkg_cv_][$1][_LIBS], - [_PKG_CONFIG([$1][_LIBS], [libs], [[$2]])]) + [_PKG_CONFIG([$1][_LIBS], [libs], [$2])]) if test $pkg_failed = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` @@ -8471,17 +8476,17 @@ echo "$$1[]_PKG_ERRORS" 1>&AS_MESSAGE_LOG_FD ifelse([$4], , [AC_MSG_ERROR(dnl -[[Package requirements ($2) were not met. +[Package requirements ($2) were not met. Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively you may set the $1_CFLAGS and $1_LIBS environment variables to avoid the need to call pkg-config. See the pkg-config man page for -more details.]])], +more details.])], [$4]) elif test $pkg_failed = untried; then ifelse([$4], , [AC_MSG_FAILURE(dnl -[[The pkg-config script could not be found or is too old. Make sure it +[The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. @@ -8489,7 +8494,7 @@ to avoid the need to call pkg-config. See the pkg-config man page for more details. -To get pkg-config, see .]])], +To get pkg-config, see .])], [$4]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS diff -uraN gimp-2.2.7/app/actions/dockable-actions.c gimp-2.2.8/app/actions/dockable-actions.c --- gimp-2.2.7/app/actions/dockable-actions.c 2004-10-27 17:59:52.000000000 +0200 +++ gimp-2.2.8/app/actions/dockable-actions.c 2005-06-15 12:23:58.000000000 +0200 @@ -253,6 +253,8 @@ #define SET_SENSITIVE(action,sensitive) \ gimp_action_group_set_action_sensitive (group, action, (sensitive) != 0) + SET_SENSITIVE ("dockable-detach-tab", n_pages > 1); + SET_VISIBLE ("dockable-preview-size-menu", preview_size != -1); if (preview_size != -1) diff -uraN gimp-2.2.7/app/config/gimpbaseconfig.c gimp-2.2.8/app/config/gimpbaseconfig.c --- gimp-2.2.7/app/config/gimpbaseconfig.c 2005-05-08 13:10:52.000000000 +0200 +++ gimp-2.2.8/app/config/gimpbaseconfig.c 2005-06-15 12:23:58.000000000 +0200 @@ -114,7 +114,7 @@ GIMP_CONFIG_INSTALL_PROP_BOOLEAN (object_class, PROP_STINGY_MEMORY_USE, "stingy-memory-use", STINGY_MEMORY_USE_BLURB, FALSE, - GIMP_PARAM_RESTART); + GIMP_PARAM_IGNORE); GIMP_CONFIG_INSTALL_PROP_UINT (object_class, PROP_NUM_PROCESSORS, "num-processors", NUM_PROCESSORS_BLURB, 1, 30, 1, diff -uraN gimp-2.2.7/app/config/gimpconfig-dump.c gimp-2.2.8/app/config/gimpconfig-dump.c --- gimp-2.2.7/app/config/gimpconfig-dump.c 2004-12-16 22:47:48.000000000 +0100 +++ gimp-2.2.8/app/config/gimpconfig-dump.c 2005-06-27 00:16:07.000000000 +0200 @@ -136,6 +136,9 @@ if (! (prop_spec->flags & GIMP_PARAM_SERIALIZE)) continue; + if (prop_spec->flags & GIMP_PARAM_IGNORE) + continue; + comment = dump_describe_param (prop_spec); if (comment) { @@ -265,6 +268,9 @@ if (! (prop_spec->flags & GIMP_PARAM_SERIALIZE)) continue; + if (prop_spec->flags & GIMP_PARAM_IGNORE) + continue; + write (fd, ".TP\n", strlen (".TP\n")); if (gimp_config_serialize_property (rc, prop_spec, writer)) diff -uraN gimp-2.2.7/app/core/gimpimagefile.c gimp-2.2.8/app/core/gimpimagefile.c --- gimp-2.2.7/app/core/gimpimagefile.c 2004-11-13 18:13:20.000000000 +0100 +++ gimp-2.2.8/app/core/gimpimagefile.c 2005-06-15 12:59:31.000000000 +0200 @@ -673,6 +673,9 @@ if (gimp_thumbnail_peek_thumb (thumbnail, size) < GIMP_THUMB_STATE_EXISTS) return NULL; + if (thumbnail->image_state == GIMP_THUMB_STATE_NOT_FOUND) + return NULL; + pixbuf = gimp_thumbnail_load_thumb (thumbnail, size, &error); if (! pixbuf) diff -uraN gimp-2.2.7/app/display/gimpdisplayshell.c gimp-2.2.8/app/display/gimpdisplayshell.c --- gimp-2.2.7/app/display/gimpdisplayshell.c 2004-12-01 01:13:48.000000000 +0100 +++ gimp-2.2.8/app/display/gimpdisplayshell.c 2005-06-06 17:59:21.000000000 +0200 @@ -1533,6 +1533,9 @@ gdk_region_get_rectangles (old, &rects, &num_rects); + gdk_region_destroy (old); + gdk_region_destroy (new); + for (i = 0; i < num_rects; i++) gimp_display_update_area (shell->gdisp, TRUE, rects[i].x, diff -uraN gimp-2.2.7/app/pdb/plug_in_cmds.c gimp-2.2.8/app/pdb/plug_in_cmds.c --- gimp-2.2.7/app/pdb/plug_in_cmds.c 2005-04-07 12:54:31.000000000 +0200 +++ gimp-2.2.8/app/pdb/plug_in_cmds.c 2005-05-13 18:01:33.000000000 +0200 @@ -76,12 +76,12 @@ Argument *return_args; gchar *search_str; gint32 num_plugins = 0; - gchar **menu_strs; - gchar **accel_strs; - gchar **prog_strs; - gchar **types_strs; - gint32 *time_ints; - gchar **realname_strs; + gchar **menu_strs = NULL; + gchar **accel_strs = NULL; + gchar **prog_strs = NULL; + gchar **types_strs = NULL; + gint32 *time_ints = NULL; + gchar **realname_strs = NULL; GSList *list; GSList *matched = NULL; gint i = 0; @@ -89,87 +89,88 @@ search_str = (gchar *) args[0].value.pdb_pointer; - if (search_str && strlen (search_str)) - regcomp (&sregex, search_str, REG_ICASE); - else + if (search_str && ! strlen (search_str)) search_str = NULL; - /* count number of plugin entries, then allocate arrays of correct size - * where we can store the strings. - */ - - for (list = gimp->plug_in_proc_defs; list; list = g_slist_next (list)) + if (! (search_str && regcomp (&sregex, search_str, REG_ICASE))) { - PlugInProcDef *proc_def = list->data; + /* count number of plugin entries, then allocate arrays of correct size + * where we can store the strings. + */ - if (proc_def->prog && proc_def->menu_paths) + for (list = gimp->plug_in_proc_defs; list; list = g_slist_next (list)) { - gchar *name; + PlugInProcDef *proc_def = list->data; - if (proc_def->menu_label) - { - name = proc_def->menu_label; - } - else - { - name = strrchr (proc_def->menu_paths->data, '/'); + if (proc_def->prog && proc_def->menu_paths) + { + gchar *name; - if (name) - name = name + 1; + if (proc_def->menu_label) + { + name = proc_def->menu_label; + } else - name = proc_def->menu_paths->data; - } + { + name = strrchr (proc_def->menu_paths->data, '/'); - name = gimp_strip_uline (name); + if (name) + name = name + 1; + else + name = proc_def->menu_paths->data; + } - if (! search_str || ! match_strings (&sregex, name)) - { - num_plugins++; - matched = g_slist_prepend (matched, proc_def); - } + name = gimp_strip_uline (name); - g_free (name); + if (! search_str || ! match_strings (&sregex, name)) + { + num_plugins++; + matched = g_slist_prepend (matched, proc_def); + } + + g_free (name); + } } - } - menu_strs = g_new (gchar *, num_plugins); - accel_strs = g_new (gchar *, num_plugins); - prog_strs = g_new (gchar *, num_plugins); - types_strs = g_new (gchar *, num_plugins); - realname_strs = g_new (gchar *, num_plugins); - time_ints = g_new (gint , num_plugins); + menu_strs = g_new (gchar *, num_plugins); + accel_strs = g_new (gchar *, num_plugins); + prog_strs = g_new (gchar *, num_plugins); + types_strs = g_new (gchar *, num_plugins); + realname_strs = g_new (gchar *, num_plugins); + time_ints = g_new (gint , num_plugins); - matched = g_slist_reverse (matched); + matched = g_slist_reverse (matched); - for (list = matched; list; list = g_slist_next (list)) - { - PlugInProcDef *proc_def = list->data; - ProcRecord *proc_rec = &proc_def->db_info; - gchar *name; - - if (proc_def->menu_label) - name = g_strdup_printf ("%s/%s", - (gchar *) proc_def->menu_paths->data, - proc_def->menu_label); - else - name = g_strdup (proc_def->menu_paths->data); + for (list = matched; list; list = g_slist_next (list)) + { + PlugInProcDef *proc_def = list->data; + ProcRecord *proc_rec = &proc_def->db_info; + gchar *name; - menu_strs[i] = gimp_strip_uline (name); - accel_strs[i] = NULL; - prog_strs[i] = g_strdup (proc_def->prog); - types_strs[i] = g_strdup (proc_def->image_types); - realname_strs[i] = g_strdup (proc_rec->name); - time_ints[i] = proc_def->mtime; + if (proc_def->menu_label) + name = g_strdup_printf ("%s/%s", + (gchar *) proc_def->menu_paths->data, + proc_def->menu_label); + else + name = g_strdup (proc_def->menu_paths->data); - g_free (name); + menu_strs[i] = gimp_strip_uline (name); + accel_strs[i] = NULL; + prog_strs[i] = g_strdup (proc_def->prog); + types_strs[i] = g_strdup (proc_def->image_types); + realname_strs[i] = g_strdup (proc_rec->name); + time_ints[i] = proc_def->mtime; - i++; - } + g_free (name); + + i++; + } - g_slist_free (matched); + g_slist_free (matched); - if (search_str) - regfree (&sregex); + if (search_str) + regfree (&sregex); + } return_args = procedural_db_return_args (&plugins_query_proc, TRUE); diff -uraN gimp-2.2.7/app/pdb/procedural_db.c gimp-2.2.8/app/pdb/procedural_db.c --- gimp-2.2.7/app/pdb/procedural_db.c 2004-11-16 15:34:34.000000000 +0100 +++ gimp-2.2.8/app/pdb/procedural_db.c 2005-06-26 21:17:57.000000000 +0200 @@ -302,7 +302,12 @@ return_args = plug_in_run (gimp, context, progress, procedure, args, procedure->num_args, TRUE, FALSE, -1); - break; + + /* If there are no return arguments, assume + * an execution error and fall through. + */ + if (return_args) + break; default: return_args = g_new (Argument, 1); diff -uraN gimp-2.2.7/app/pdb/procedural_db_cmds.c gimp-2.2.8/app/pdb/procedural_db_cmds.c --- gimp-2.2.7/app/pdb/procedural_db_cmds.c 2004-10-06 15:13:07.000000000 +0200 +++ gimp-2.2.8/app/pdb/procedural_db_cmds.c 2005-05-13 18:01:33.000000000 +0200 @@ -478,13 +478,24 @@ if (success) { - regcomp (&pdb_query.name_regex, name, 0); - regcomp (&pdb_query.blurb_regex, blurb, 0); - regcomp (&pdb_query.help_regex, help, 0); - regcomp (&pdb_query.author_regex, author, 0); - regcomp (&pdb_query.copyright_regex, copyright, 0); - regcomp (&pdb_query.date_regex, date, 0); - regcomp (&pdb_query.proc_type_regex, proc_type, 0); + success = FALSE; + + if (regcomp (&pdb_query.name_regex, name, 0)) + goto free_name; + if (regcomp (&pdb_query.blurb_regex, blurb, 0)) + goto free_blurb; + if (regcomp (&pdb_query.help_regex, help, 0)) + goto free_help; + if (regcomp (&pdb_query.author_regex, author, 0)) + goto free_author; + if (regcomp (&pdb_query.copyright_regex, copyright, 0)) + goto free_copyright; + if (regcomp (&pdb_query.date_regex, date, 0)) + goto free_date; + if (regcomp (&pdb_query.proc_type_regex, proc_type, 0)) + goto free_proc_type; + + success = TRUE; pdb_query.gimp = gimp; pdb_query.list_of_procs = NULL; @@ -499,13 +510,20 @@ g_hash_table_foreach (gimp->procedural_compat_ht, procedural_db_query_entry, &pdb_query); - regfree (&pdb_query.name_regex); - regfree (&pdb_query.blurb_regex); - regfree (&pdb_query.help_regex); - regfree (&pdb_query.author_regex); - regfree (&pdb_query.copyright_regex); - regfree (&pdb_query.date_regex); - regfree (&pdb_query.proc_type_regex); + free_proc_type: + regfree (&pdb_query.proc_type_regex); + free_date: + regfree (&pdb_query.date_regex); + free_copyright: + regfree (&pdb_query.copyright_regex); + free_author: + regfree (&pdb_query.author_regex); + free_help: + regfree (&pdb_query.help_regex); + free_blurb: + regfree (&pdb_query.blurb_regex); + free_name: + regfree (&pdb_query.name_regex); } return_args = procedural_db_return_args (&procedural_db_query_proc, success); diff -uraN gimp-2.2.7/app/tools/gimpmagnifytool.c gimp-2.2.8/app/tools/gimpmagnifytool.c --- gimp-2.2.7/app/tools/gimpmagnifytool.c 2004-06-05 01:08:28.000000000 +0200 +++ gimp-2.2.8/app/tools/gimpmagnifytool.c 2005-06-06 17:59:21.000000000 +0200 @@ -267,8 +267,13 @@ new_scale = shell->scale * scale; } - offset_x = (new_scale * (x1 + x2) / 2) - (win_width / 2); - offset_y = (new_scale * (y1 + y2) / 2) - (win_height / 2); + offset_x = (new_scale * ((x1 + x2) / 2) + * SCREEN_XRES (shell) / gdisp->gimage->xresolution + - (win_width / 2)); + + offset_y = (new_scale * ((y1 + y2) / 2) + * SCREEN_YRES (shell) / gdisp->gimage->yresolution + - (win_height / 2)); gimp_display_shell_scale_by_values (shell, new_scale, diff -uraN gimp-2.2.7/app/widgets/gimpenumwidgets.c gimp-2.2.8/app/widgets/gimpenumwidgets.c --- gimp-2.2.7/app/widgets/gimpenumwidgets.c 2004-10-25 19:55:24.000000000 +0200 +++ gimp-2.2.8/app/widgets/gimpenumwidgets.c 2005-06-06 17:59:21.000000000 +0200 @@ -327,13 +327,14 @@ gint xpad, gint ypad) { + GList *children; GList *list; g_return_if_fail (GTK_IS_CONTAINER (stock_box)); - for (list = gtk_container_get_children (GTK_CONTAINER (stock_box)); - list; - list = g_list_next (list)) + children = gtk_container_get_children (GTK_CONTAINER (stock_box)); + + for (list = children; list; list = g_list_next (list)) { GtkBin *bin = list->data; GtkMisc *misc = GTK_MISC (bin->child); @@ -342,4 +343,6 @@ xpad < 0 ? misc->xpad : xpad, ypad < 0 ? misc->ypad : ypad); } + + g_list_free (children); } diff -uraN gimp-2.2.7/app/widgets/gimpthumbbox.c gimp-2.2.8/app/widgets/gimpthumbbox.c --- gimp-2.2.7/app/widgets/gimpthumbbox.c 2005-02-12 14:37:15.000000000 +0100 +++ gimp-2.2.8/app/widgets/gimpthumbbox.c 2005-06-15 12:59:31.000000000 +0200 @@ -712,6 +712,9 @@ box->idle_id = 0; + if (thumb->image_state == GIMP_THUMB_STATE_NOT_FOUND) + return FALSE; + switch (thumb->thumb_state) { case GIMP_THUMB_STATE_NOT_FOUND: diff -uraN gimp-2.2.7/app/widgets/gimpwidgets-utils.c gimp-2.2.8/app/widgets/gimpwidgets-utils.c --- gimp-2.2.7/app/widgets/gimpwidgets-utils.c 2004-11-23 18:01:51.000000000 +0100 +++ gimp-2.2.8/app/widgets/gimpwidgets-utils.c 2005-06-06 17:59:21.000000000 +0200 @@ -783,6 +783,7 @@ g_utf8_validate (buf, count + remaining, &leftover); gtk_text_buffer_insert (buffer, &iter, buf, leftover - buf); + gtk_text_buffer_get_iter_at_offset (buffer, &iter, -1); remaining = (buf + remaining + count) - leftover; g_memmove (buf, leftover, remaining); diff -uraN gimp-2.2.7/ChangeLog gimp-2.2.8/ChangeLog --- gimp-2.2.7/ChangeLog 2005-05-08 23:41:49.000000000 +0200 +++ gimp-2.2.8/ChangeLog 2005-06-27 00:16:07.000000000 +0200 @@ -1,3 +1,196 @@ +2005-06-27 Sven Neumann + + * Made 2.2.8 release. + +2005-06-27 Sven Neumann + + Merged from HEAD branch: + + * app/config/gimpconfig-dump.c: don't dump properties that have + the GIMP_PARAM_IGNORE flag set. + +2005-06-24 Manish Singh + + * libgimpcolor/gimpcolor.def: add gimp_rgba_parse_css + +2005-06-24 Sven Neumann + + Merged from HEAD branch: + + * app/pdb/procedural_db.c (procedural_db_execute): if we end up + without any return values, assume an execution error instead of + crashing (bug #308904). + +2005-06-23 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/common/grid.c: draw the intersection on top of the grid. + Fixes bug #308754. + +2005-06-23 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/common/shift.c: shift whole rows/columns, instead of + tiles. Fixes bug #308748. + +2005-06-21 Bill Skaggs + + Merged from HEAD branch: + + * plug-ins/common/newsprint.c: remove "optimization" that interacts + badly with preview; fixes bug #161573. + +2005-06-21 Bill Skaggs + + Merged from HEAD branch: + + * plug-ins/common/retinex.c: initialize memory before using. + Fixes bug #157915. + +2005-06-15 Sven Neumann + + Merged from HEAD branch: + + * app/core/gimpimagefile.c (gimp_imagefile_load_thumb): + * app/widgets/gimpthumbbox.c (gimp_thumb_box_auto_thumbnail): + don't display a preview and don't attempt to create one if the + image file does not exist any longer (bug #307672). + +2005-06-15 Sven Neumann + + Merged from HEAD branch: + + * app/actions/dockable-actions.c (dockable_actions_update): set the + "Detach Tab" action insensitive if the dockable is alone in its dock. + +2005-06-09 Sven Neumann + + * app/config/gimpbaseconfig.c: ignore the user setting for + "stingy-memory-use" and use the default value which is FALSE. + Fixes bug #306617 for the stable branch. + +2005-06-06 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/gfig/gfig.c (gfig_load_from_parasite): only create the + temporary file if there is a parasite to load. + +2005-06-04 Sven Neumann + + Merged from HEAD branch: + + * app/widgets/gimpwidgets-utils.c (gimp_text_buffer_load): + validate the iter after appending to the text buffer. + +2005-06-04 Sven Neumann + + Merged from HEAD branch: + + * app/tools/gimpmagnifytool.c (gimp_magnify_tool_button_release): + fix calculation of zoom offsets in the case that dot-for-dot mode + is not enabled (bug #306476). + +2005-06-04 Michael Schumacher + + * plug-ins/common/webbrowser.c: use GetDesktopWindow() and SW_SHOW + as suggested in bug #171200. Applied to both branches. + +2005-06-04 Michael Schumacher + + * plug-ins/helpbrowser/dialog.c: added #ifdef G_OS_WIN32 because + O_BINARY isn't available on other platforms + +2005-06-03 Michael Schumacher + + * plug-ins/helpbrowser/dialog.c: added a O_BINARY to make sure + that images are loaded correctly + +2005-05-31 Sven Neumann + + Merged from HEAD branch: + + * app/widgets/gimpenumwidgets.c + (gimp_enum_stock_box_set_child_padding): don't leak the return + value of gtk_container_get_children (bug #305994, spotted by Ted + Kremenek). + +2005-05-26 Sven Neumann + + Merged from HEAD branch: + + * app/display/gimpdisplayshell.c (gimp_display_shell_set_highlight): + destroy the regions allocated here. + +2005-05-25 Sven Neumann + + Merged from HEAD branch: + + * libgimpwidgets/gimpoffsetarea.c (gimp_offset_area_expose_event): + correctly handle very small target sizes. + +2005-05-23 Michael Schumacher + + * plug-ins/helpbrowser/Makefile.am: added the missing -mwindows + for OS_WIN32 + +2005-05-23 Tor Lillqvist + + * gimptool-win32.c.in (get_prefix): Don't crash if gimp.exe isn't + found in PATH either. + +2005-05-14 Tor Lillqvist + + * gimp-zip.in: Add the .pc files. + +2005-05-13 Tor Lillqvist + + * configure.in: Don't bother looking for fd_set on Win32, we won't + find it in sys/types.h or (the nonexistent) sys/select.h + anyway. (It's in winsock2.h.) + + * plug-ins/script-fu/script-fu-server.c: Give it a chance to work + on Win32 by covering for the differences between the WinSock and + Unix socket APIs. Use recv() and send() instead of read() and + write() on sockets. On Win32, use closesocket() for sockets + instead of close(). Don't use perror() or look at errno after + socket API errors on Win32. No EINTR failure mode with WinSock 2. + (print_socket_api_error): New function. On Unix, just call + perror(). On Win32, call WSAGetLastError() and produce an + appropriate error message on stderr. + + * plug-ins/script-fu/Makefile.am (WINSOCK_LIBS): Link with the + winsock2 library, as we compile with the winsock2 header. + +2005-05-13 Michael Natterer + + * tools/pdbgen/pdb/plug_in.pdb (plug_ins_query): don't + crash on invalid regular expressions. + + * app/pdb/plug_in_cmds.c: regenerated. + +2005-05-13 Michael Natterer + + Merged from HEAD branch: + + * tools/pdbgen/pdb/procedural_db.pdb (procedural_db_query): don't + crash on invalid regular expressions. + + * app/pdb/procedural_db_cmds.c: regenerated. + +2005-05-13 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/bmp/bmpwrite.c (WriteBMP): added missing brackets. + Fixes bug #303972. + +2005-05-08 Sven Neumann + + * configure.in: bumped version to 2.2.8, interface_age 8. + 2005-05-08 Sven Neumann * Made 2.2.7 release. diff -uraN gimp-2.2.7/config.h.in gimp-2.2.8/config.h.in --- gimp-2.2.7/config.h.in 2005-04-11 11:43:43.000000000 +0200 +++ gimp-2.2.8/config.h.in 2005-06-26 21:29:30.000000000 +0200 @@ -189,7 +189,7 @@ /* Define to 1 if shared memory segments are released deferred. */ #undef IPC_RMID_DEFERRED_RELEASE -/* Define to 1 if you don't have the fd_set function. */ +/* Define to 1 if you don't have the fd_set typedef. */ #undef NO_FD_SET /* Define to the address where bug reports for this package should be sent. */ diff -uraN gimp-2.2.7/configure gimp-2.2.8/configure --- gimp-2.2.7/configure 2005-04-11 11:42:42.000000000 +0200 +++ gimp-2.2.8/configure 2005-06-26 21:28:30.000000000 +0200 @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for GIMP 2.2.7. +# Generated by GNU Autoconf 2.59 for GIMP 2.2.8. # # Report bugs to . # @@ -423,8 +423,8 @@ # Identity of this package. PACKAGE_NAME='GIMP' PACKAGE_TARNAME='gimp' -PACKAGE_VERSION='2.2.7' -PACKAGE_STRING='GIMP 2.2.7' +PACKAGE_VERSION='2.2.8' +PACKAGE_STRING='GIMP 2.2.8' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=GIMP' ac_unique_file="app/core/gimp.c" @@ -1030,7 +1030,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures GIMP 2.2.7 to adapt to many kinds of systems. +\`configure' configures GIMP 2.2.8 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1100,7 +1100,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of GIMP 2.2.7:";; + short | recursive ) echo "Configuration of GIMP 2.2.8:";; esac cat <<\_ACEOF @@ -1310,7 +1310,7 @@ test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -GIMP configure 2.2.7 +GIMP configure 2.2.8 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -1324,7 +1324,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by GIMP $as_me 2.2.7, which was +It was created by GIMP $as_me 2.2.8, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -1938,7 +1938,7 @@ # Define the identity of the package. PACKAGE='gimp' - VERSION='2.2.7' + VERSION='2.2.8' # Some tools Automake needs. @@ -2060,11 +2060,11 @@ GIMP_MAJOR_VERSION=2 GIMP_MINOR_VERSION=2 -GIMP_MICRO_VERSION=7 -GIMP_INTERFACE_AGE=7 -GIMP_BINARY_AGE=207 -GIMP_VERSION=2.2.7 -GIMP_REAL_VERSION=2.2.7 +GIMP_MICRO_VERSION=8 +GIMP_INTERFACE_AGE=8 +GIMP_BINARY_AGE=208 +GIMP_VERSION=2.2.8 +GIMP_REAL_VERSION=2.2.8 GIMP_API_VERSION=2.0 GIMP_APP_VERSION=2.2 GIMP_PLUGIN_VERSION=2.0 @@ -2116,7 +2116,7 @@ -LT_VERSION_INFO="200:7:200" +LT_VERSION_INFO="200:8:200" LT_CURRENT_MINUS_AGE=0 @@ -22829,7 +22829,7 @@ int main () { -return (int) ngettext ("","", 1) +return !ngettext ("","", 1) ; return 0; } @@ -22887,7 +22887,7 @@ int main () { -return (int) dgettext ("","") +return !dgettext ("","") ; return 0; } @@ -24446,7 +24446,11 @@ if test "x$ac_cv_env_GMODULE_CFLAGS_set" = "xset"; then pkg_cv_GMODULE_CFLAGS=$ac_cv_env_GMODULE_CFLAGS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "gmodule-2.0 gobject-2.0" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"gmodule-2.0 gobject-2.0\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "gmodule-2.0 gobject-2.0" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_GMODULE_CFLAGS=`$PKG_CONFIG --cflags "gmodule-2.0 gobject-2.0" 2>/dev/null` else pkg_failed=yes @@ -24465,7 +24469,11 @@ if test "x$ac_cv_env_GMODULE_LIBS_set" = "xset"; then pkg_cv_GMODULE_LIBS=$ac_cv_env_GMODULE_LIBS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "gmodule-2.0 gobject-2.0" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"gmodule-2.0 gobject-2.0\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "gmodule-2.0 gobject-2.0" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_GMODULE_LIBS=`$PKG_CONFIG --libs "gmodule-2.0 gobject-2.0" 2>/dev/null` else pkg_failed=yes @@ -26349,7 +26357,11 @@ if test "x$ac_cv_env_GDK_PIXBUF_CFLAGS_set" = "xset"; then pkg_cv_GDK_PIXBUF_CFLAGS=$ac_cv_env_GDK_PIXBUF_CFLAGS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "gdk-pixbuf-2.0 >= 2.4.4" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"gdk-pixbuf-2.0 >= 2.4.4\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "gdk-pixbuf-2.0 >= 2.4.4" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_GDK_PIXBUF_CFLAGS=`$PKG_CONFIG --cflags "gdk-pixbuf-2.0 >= 2.4.4" 2>/dev/null` else pkg_failed=yes @@ -26368,7 +26380,11 @@ if test "x$ac_cv_env_GDK_PIXBUF_LIBS_set" = "xset"; then pkg_cv_GDK_PIXBUF_LIBS=$ac_cv_env_GDK_PIXBUF_LIBS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "gdk-pixbuf-2.0 >= 2.4.4" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"gdk-pixbuf-2.0 >= 2.4.4\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "gdk-pixbuf-2.0 >= 2.4.4" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_GDK_PIXBUF_LIBS=`$PKG_CONFIG --libs "gdk-pixbuf-2.0 >= 2.4.4" 2>/dev/null` else pkg_failed=yes @@ -26486,7 +26502,11 @@ if test "x$ac_cv_env_LIBART_CFLAGS_set" = "xset"; then pkg_cv_LIBART_CFLAGS=$ac_cv_env_LIBART_CFLAGS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "libart-2.0" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"libart-2.0\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "libart-2.0" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_LIBART_CFLAGS=`$PKG_CONFIG --cflags "libart-2.0" 2>/dev/null` else pkg_failed=yes @@ -26505,7 +26525,11 @@ if test "x$ac_cv_env_LIBART_LIBS_set" = "xset"; then pkg_cv_LIBART_LIBS=$ac_cv_env_LIBART_LIBS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "libart-2.0" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"libart-2.0\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "libart-2.0" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_LIBART_LIBS=`$PKG_CONFIG --libs "libart-2.0" 2>/dev/null` else pkg_failed=yes @@ -26577,7 +26601,11 @@ if test "x$ac_cv_env_FONTCONFIG_CFLAGS_set" = "xset"; then pkg_cv_FONTCONFIG_CFLAGS=$ac_cv_env_FONTCONFIG_CFLAGS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "fontconfig >= 2.2.0" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"fontconfig >= 2.2.0\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "fontconfig >= 2.2.0" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_FONTCONFIG_CFLAGS=`$PKG_CONFIG --cflags "fontconfig >= 2.2.0" 2>/dev/null` else pkg_failed=yes @@ -26596,7 +26624,11 @@ if test "x$ac_cv_env_FONTCONFIG_LIBS_set" = "xset"; then pkg_cv_FONTCONFIG_LIBS=$ac_cv_env_FONTCONFIG_LIBS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "fontconfig >= 2.2.0" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"fontconfig >= 2.2.0\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "fontconfig >= 2.2.0" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_FONTCONFIG_LIBS=`$PKG_CONFIG --libs "fontconfig >= 2.2.0" 2>/dev/null` else pkg_failed=yes @@ -26666,7 +26698,11 @@ if test "x$ac_cv_env_PANGOFT2_CFLAGS_set" = "xset"; then pkg_cv_PANGOFT2_CFLAGS=$ac_cv_env_PANGOFT2_CFLAGS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "pangoft2 >= 1.4.0" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"pangoft2 >= 1.4.0\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "pangoft2 >= 1.4.0" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_PANGOFT2_CFLAGS=`$PKG_CONFIG --cflags "pangoft2 >= 1.4.0" 2>/dev/null` else pkg_failed=yes @@ -26685,7 +26721,11 @@ if test "x$ac_cv_env_PANGOFT2_LIBS_set" = "xset"; then pkg_cv_PANGOFT2_LIBS=$ac_cv_env_PANGOFT2_LIBS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "pangoft2 >= 1.4.0" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"pangoft2 >= 1.4.0\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "pangoft2 >= 1.4.0" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_PANGOFT2_LIBS=`$PKG_CONFIG --libs "pangoft2 >= 1.4.0" 2>/dev/null` else pkg_failed=yes @@ -28888,9 +28928,10 @@ # Check for select and fdset ############################ -echo "$as_me:$LINENO: checking fd_set and sys/select" >&5 +if test x"$os_win32" != xyes; then + echo "$as_me:$LINENO: checking fd_set and sys/select" >&5 echo $ECHO_N "checking fd_set and sys/select... $ECHO_C" >&6 -cat >conftest.$ac_ext <<_ACEOF + cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext @@ -28934,8 +28975,8 @@ gimp_ok=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -if test $gimp_ok = no; then - cat >conftest.$ac_ext <<_ACEOF + if test $gimp_ok = no; then + cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext @@ -28950,25 +28991,25 @@ fi rm -f conftest* - if test $gimp_ok = yes; then + if test $gimp_ok = yes; then cat >>confdefs.h <<\_ACEOF #define HAVE_SYS_SELECT_H 1 _ACEOF - fi -fi -echo "$as_me:$LINENO: result: $gimp_ok" >&5 + fi + fi + echo "$as_me:$LINENO: result: $gimp_ok" >&5 echo "${ECHO_T}$gimp_ok" >&6 -if test $gimp_ok = no; then + if test $gimp_ok = no; then cat >>confdefs.h <<\_ACEOF #define NO_FD_SET 1 _ACEOF + fi fi - ############################# # Threads and multi processor ############################# @@ -30976,7 +31017,11 @@ if test "x$ac_cv_env_EXIF_CFLAGS_set" = "xset"; then pkg_cv_EXIF_CFLAGS=$ac_cv_env_EXIF_CFLAGS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "libexif" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"libexif\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "libexif" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_EXIF_CFLAGS=`$PKG_CONFIG --cflags "libexif" 2>/dev/null` else pkg_failed=yes @@ -30995,7 +31040,11 @@ if test "x$ac_cv_env_EXIF_LIBS_set" = "xset"; then pkg_cv_EXIF_LIBS=$ac_cv_env_EXIF_LIBS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "libexif" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"libexif\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "libexif" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_EXIF_LIBS=`$PKG_CONFIG --libs "libexif" 2>/dev/null` else pkg_failed=yes @@ -31517,7 +31566,11 @@ if test "x$ac_cv_env_GTKHTML2_CFLAGS_set" = "xset"; then pkg_cv_GTKHTML2_CFLAGS=$ac_cv_env_GTKHTML2_CFLAGS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "libgtkhtml-2.0 >= 2.0.0" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"libgtkhtml-2.0 >= 2.0.0\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "libgtkhtml-2.0 >= 2.0.0" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_GTKHTML2_CFLAGS=`$PKG_CONFIG --cflags "libgtkhtml-2.0 >= 2.0.0" 2>/dev/null` else pkg_failed=yes @@ -31536,7 +31589,11 @@ if test "x$ac_cv_env_GTKHTML2_LIBS_set" = "xset"; then pkg_cv_GTKHTML2_LIBS=$ac_cv_env_GTKHTML2_LIBS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "libgtkhtml-2.0 >= 2.0.0" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"libgtkhtml-2.0 >= 2.0.0\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "libgtkhtml-2.0 >= 2.0.0" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_GTKHTML2_LIBS=`$PKG_CONFIG --libs "libgtkhtml-2.0 >= 2.0.0" 2>/dev/null` else pkg_failed=yes @@ -31591,7 +31648,11 @@ if test "x$ac_cv_env_SVG_CFLAGS_set" = "xset"; then pkg_cv_SVG_CFLAGS=$ac_cv_env_SVG_CFLAGS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "librsvg-2.0 >= 2.2.0" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"librsvg-2.0 >= 2.2.0\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "librsvg-2.0 >= 2.2.0" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_SVG_CFLAGS=`$PKG_CONFIG --cflags "librsvg-2.0 >= 2.2.0" 2>/dev/null` else pkg_failed=yes @@ -31610,7 +31671,11 @@ if test "x$ac_cv_env_SVG_LIBS_set" = "xset"; then pkg_cv_SVG_LIBS=$ac_cv_env_SVG_LIBS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "librsvg-2.0 >= 2.2.0" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"librsvg-2.0 >= 2.2.0\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "librsvg-2.0 >= 2.2.0" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_SVG_LIBS=`$PKG_CONFIG --libs "librsvg-2.0 >= 2.2.0" 2>/dev/null` else pkg_failed=yes @@ -33321,7 +33386,11 @@ if test "x$ac_cv_env_PYGTK_CFLAGS_set" = "xset"; then pkg_cv_PYGTK_CFLAGS=$ac_cv_env_PYGTK_CFLAGS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "pygtk-2.0 >= 1.99.15" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"pygtk-2.0 >= 1.99.15\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "pygtk-2.0 >= 1.99.15" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_PYGTK_CFLAGS=`$PKG_CONFIG --cflags "pygtk-2.0 >= 1.99.15" 2>/dev/null` else pkg_failed=yes @@ -33340,7 +33409,11 @@ if test "x$ac_cv_env_PYGTK_LIBS_set" = "xset"; then pkg_cv_PYGTK_LIBS=$ac_cv_env_PYGTK_LIBS_value elif test -n "$PKG_CONFIG"; then - if $PKG_CONFIG --exists "pygtk-2.0 >= 1.99.15" >/dev/null 2>&1; then + if { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"pygtk-2.0 >= 1.99.15\" >/dev/null 2>&1") >&5 + ($PKG_CONFIG --exists "pygtk-2.0 >= 1.99.15" >/dev/null 2>&1) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then pkg_cv_PYGTK_LIBS=`$PKG_CONFIG --libs "pygtk-2.0 >= 1.99.15" 2>/dev/null` else pkg_failed=yes @@ -34529,7 +34602,7 @@ } >&5 cat >&5 <<_CSEOF -This file was extended by GIMP $as_me 2.2.7, which was +This file was extended by GIMP $as_me 2.2.8, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -34592,7 +34665,7 @@ cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -GIMP config.status 2.2.7 +GIMP config.status 2.2.8 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" @@ -34700,8 +34773,8 @@ gimp_major_ver=2 gimp_minor_ver=2 - gimp_micro_ver=7 - gimp_ver=2.2.7 + gimp_micro_ver=8 + gimp_ver=2.2.8 gimp_api_ver=2.0 diff -uraN gimp-2.2.7/configure.in gimp-2.2.8/configure.in --- gimp-2.2.7/configure.in 2005-04-11 11:42:07.000000000 +0200 +++ gimp-2.2.8/configure.in 2005-05-13 18:01:31.000000000 +0200 @@ -8,11 +8,11 @@ m4_define([gimp_major_version], [2]) m4_define([gimp_minor_version], [2]) -m4_define([gimp_micro_version], [7]) +m4_define([gimp_micro_version], [8]) m4_define([gimp_real_version], [gimp_major_version.gimp_minor_version.gimp_micro_version]) m4_define([gimp_version], [gimp_real_version]) -m4_define([gimp_interface_age], [7]) +m4_define([gimp_interface_age], [8]) m4_define([gimp_binary_age], [m4_eval(100 * gimp_minor_version + gimp_micro_version)]) @@ -785,23 +785,24 @@ # Check for select and fdset ############################ -AC_MSG_CHECKING([fd_set and sys/select]) -AC_TRY_COMPILE([#include ], - [fd_set readMask, writeMask;], gimp_ok=yes, gimp_ok=no) -if test $gimp_ok = no; then - AC_EGREP_HEADER(fd_mask, sys/select.h, gimp_ok=yes) - if test $gimp_ok = yes; then - AC_DEFINE(HAVE_SYS_SELECT_H, 1, - [Define to 1 if you have the header.]) - fi -fi -AC_MSG_RESULT($gimp_ok) -if test $gimp_ok = no; then - AC_DEFINE(NO_FD_SET, 1, - [Define to 1 if you don't have the fd_set function.]) +if test x"$os_win32" != xyes; then + AC_MSG_CHECKING([fd_set and sys/select]) + AC_TRY_COMPILE([#include ], + [fd_set readMask, writeMask;], gimp_ok=yes, gimp_ok=no) + if test $gimp_ok = no; then + AC_EGREP_HEADER(fd_mask, sys/select.h, gimp_ok=yes) + if test $gimp_ok = yes; then + AC_DEFINE(HAVE_SYS_SELECT_H, 1, + [Define to 1 if you have the header.]) + fi + fi + AC_MSG_RESULT($gimp_ok) + if test $gimp_ok = no; then + AC_DEFINE(NO_FD_SET, 1, + [Define to 1 if you don't have the fd_set typedef.]) + fi fi - ############################# # Threads and multi processor ############################# diff -uraN gimp-2.2.7/devel-docs/app/Makefile gimp-2.2.8/devel-docs/app/Makefile --- gimp-2.2.7/devel-docs/app/Makefile 2005-02-22 23:11:42.000000000 +0100 +++ gimp-2.2.8/devel-docs/app/Makefile 2005-06-26 21:28:50.000000000 +0200 @@ -43,18 +43,18 @@ POST_UNINSTALL = : host_triplet = i686-pc-linux-gnu AA = -ACLOCAL = ${SHELL} /home/sven/gnomecvs/gimp-dist/missing --run aclocal-1.7 +ACLOCAL = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run aclocal-1.7 ALLOCA = ALSA_CFLAGS = ALSA_LIBS = -lasound -lm -ldl -lpthread AMDEP_FALSE = # AMDEP_TRUE = -AMTAR = ${SHELL} /home/sven/gnomecvs/gimp-dist/missing --run tar +AMTAR = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run tar AR = ar AS = as -AUTOCONF = ${SHELL} /home/sven/gnomecvs/gimp-dist/missing --run autoconf -AUTOHEADER = ${SHELL} /home/sven/gnomecvs/gimp-dist/missing --run autoheader -AUTOMAKE = ${SHELL} /home/sven/gnomecvs/gimp-dist/missing --run automake-1.7 +AUTOCONF = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run autoconf +AUTOHEADER = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run autoheader +AUTOMAKE = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run automake-1.7 AWK = mawk BUILD_HELPBROWSER_FALSE = # BUILD_HELPBROWSER_TRUE = @@ -119,13 +119,13 @@ GIMPPRINT_TOONEW_VERSION = 4.3.0 GIMP_API_VERSION = 2.0 GIMP_APP_VERSION = 2.2 -GIMP_BINARY_AGE = 204 +GIMP_BINARY_AGE = 208 GIMP_DATA_VERSION = 2.0 GIMP_DESKTOP_ICON = wilber-icon.png GIMP_FULL_NAME = The GIMP -GIMP_INTERFACE_AGE = 4 +GIMP_INTERFACE_AGE = 8 GIMP_MAJOR_VERSION = 2 -GIMP_MICRO_VERSION = 4 +GIMP_MICRO_VERSION = 8 GIMP_MINOR_VERSION = 2 GIMP_MKENUMS = $(PERL) $(top_srcdir)/tools/gimp-mkenums GIMP_MODULES = modules @@ -134,7 +134,7 @@ GIMP_PKGCONFIG_VERSION = 2.0 GIMP_PLUGINS = plug-ins GIMP_PLUGIN_VERSION = 2.0 -GIMP_REAL_VERSION = 2.2.4 +GIMP_REAL_VERSION = 2.2.8 GIMP_REMOTE = gimp-remote-2.2 GIMP_SYSCONF_VERSION = 2.0 GIMP_THREAD_FLAGS = @@ -142,7 +142,7 @@ GIMP_TOOL_VERSION = 2.0 GIMP_UNSTABLE = no GIMP_USER_VERSION = 2.2 -GIMP_VERSION = 2.2.4 +GIMP_VERSION = 2.2.8 GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include GLIB_GENMARSHAL = glib-genmarshal GLIB_LIBS = -lgobject-2.0 -lglib-2.0 @@ -155,12 +155,12 @@ GOBJECT_QUERY = gobject-query GTKDOC_REQUIRED_VERSION = 1.0 GTKHTML2_CFLAGS = -DXTHREADS -I/usr/include/gtkhtml-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -GTKHTML2_LIBS = -Wl,--export-dynamic -lgtkhtml-2 -lgtk-x11-2.0 -lxml2 -lpthread -lz -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 +GTKHTML2_LIBS = -lgtkhtml-2 -lgtk-x11-2.0 -lxml2 -lpthread -lz -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 GTKHTML2_REQUIRED_VERSION = 2.0.0 GTK_CFLAGS = -DXTHREADS -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include GTK_DOC_USE_LIBTOOL_FALSE = # GTK_DOC_USE_LIBTOOL_TRUE = -GTK_LIBS = -Wl,--export-dynamic -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 +GTK_LIBS = -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 GTK_REQUIRED_VERSION = 2.4.4 HAVE_FINITE = HAVE_GLIBC_REGEX = @@ -233,12 +233,12 @@ LN_S = ln -s LTLIBOBJS = LT_CURRENT_MINUS_AGE = 0 -LT_VERSION_INFO = 200:4:200 +LT_VERSION_INFO = 200:8:200 MAIL = mail$(EXEEXT) MAINT = MAINTAINER_MODE_FALSE = # MAINTAINER_MODE_TRUE = -MAKEINFO = ${SHELL} /home/sven/gnomecvs/gimp-dist/missing --run makeinfo +MAKEINFO = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run makeinfo MKINSTALLDIRS = ./mkinstalldirs MNG = mng$(EXEEXT) MSGFMT = /usr/bin/msgfmt @@ -253,11 +253,11 @@ PACKAGE = gimp PACKAGE_BUGREPORT = http://bugzilla.gnome.org/enter_bug.cgi?product=GIMP PACKAGE_NAME = GIMP -PACKAGE_STRING = GIMP 2.2.4 +PACKAGE_STRING = GIMP 2.2.8 PACKAGE_TARNAME = gimp -PACKAGE_VERSION = 2.2.4 +PACKAGE_VERSION = 2.2.8 PANGOFT2_CFLAGS = -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -PANGOFT2_LIBS = -Wl,--export-dynamic -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 +PANGOFT2_LIBS = -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 PANGOFT2_REQUIRED_VERSION = 1.4.0 PATHSEP = : PATH_SEPARATOR = : @@ -300,14 +300,14 @@ TIFF = tiff$(EXEEXT) URL = url$(EXEEXT) USE_NLS = yes -VERSION = 2.2.4 +VERSION = 2.2.8 WINCLIPBOARD = WINDRES = : WINPRINT = WITH_PDBGEN_FALSE = # WITH_PDBGEN_TRUE = WMF = wmf$(EXEEXT) -WMF_CFLAGS = -I/usr/include/freetype2 -I/usr/include +WMF_CFLAGS = -I/usr/include/freetype2 -I/usr/X11R6/include -I/usr/include WMF_CONFIG = /usr/bin/libwmf-config WMF_REQUIRED_VERSION = 0.2.8 XGETTEXT = /usr/bin/xgettext @@ -328,6 +328,7 @@ ac_ct_RANLIB = ranlib ac_ct_STRIP = strip ac_ct_WINDRES = +ac_pt_PKG_CONFIG = am__fastdepCC_FALSE = # am__fastdepCC_TRUE = am__fastdepCXX_FALSE = # @@ -354,10 +355,10 @@ host_vendor = pc includedir = ${prefix}/include infodir = ${prefix}/info -install_sh = /home/sven/gnomecvs/gimp-dist/install-sh +install_sh = /home/sven/gnomecvs/gimp-dist-2-2/install-sh libdir = ${exec_prefix}/lib libexecdir = ${exec_prefix}/libexec -localedir = ${prefix}/${DATADIRNAME}/locale +localedir = ${prefix}/share/locale localstatedir = ${prefix}/var mandir = ${prefix}/man mkdir_p = mkdir -p -- . diff -uraN gimp-2.2.7/devel-docs/app/Makefile.in gimp-2.2.8/devel-docs/app/Makefile.in --- gimp-2.2.7/devel-docs/app/Makefile.in 2005-02-22 23:11:12.000000000 +0100 +++ gimp-2.2.8/devel-docs/app/Makefile.in 2005-06-26 21:28:19.000000000 +0200 @@ -328,6 +328,7 @@ ac_ct_RANLIB = @ac_ct_RANLIB@ ac_ct_STRIP = @ac_ct_STRIP@ ac_ct_WINDRES = @ac_ct_WINDRES@ +ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ diff -uraN gimp-2.2.7/devel-docs/app/version gimp-2.2.8/devel-docs/app/version --- gimp-2.2.7/devel-docs/app/version 2005-02-22 23:11:42.000000000 +0100 +++ gimp-2.2.8/devel-docs/app/version 2005-06-26 21:28:50.000000000 +0200 @@ -1 +1 @@ -2.2.4 +2.2.8 diff -uraN gimp-2.2.7/devel-docs/libgimp/html/GimpAspectPreview.html gimp-2.2.8/devel-docs/libgimp/html/GimpAspectPreview.html --- gimp-2.2.7/devel-docs/libgimp/html/GimpAspectPreview.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/GimpAspectPreview.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,4 +1,4 @@ -GimpAspectPreview

GimpAspectPreview

GimpAspectPreview — A widget providing a preview with fixed aspect ratio.

Synopsis

+GimpAspectPreview

GimpAspectPreview

GimpAspectPreview — A widget providing a preview with fixed aspect ratio.

Synopsis

 
 
 
@@ -6,15 +6,11 @@
 GtkWidget*  gimp_aspect_preview_new         (GimpDrawable *drawable,
-                                             gboolean *toggle);
-
-

Object Hierarchy

-
-  GObject
+                                             gboolean *toggle);
+
+

Object Hierarchy

+
+  GObject
    +----GtkObject
@@ -34,21 +30,19 @@
 href="../libgimpwidgets/GimpPreview.html"
 >GimpPreview
                                        +----GimpAspectPreview
-

Implemented Interfaces

+

Implemented Interfaces

GimpAspectPreview implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

A widget providing a preview with fixed aspect ratio. -

Details

GimpAspectPreview

typedef struct _GimpAspectPreview GimpAspectPreview;

+

Details

GimpAspectPreview

typedef struct _GimpAspectPreview GimpAspectPreview;

-


gimp_aspect_preview_new ()


gimp_aspect_preview_new ()

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

+ gboolean *toggle);

-

drawable : -
toggle : +

drawable : +
toggle :
Returns : diff -uraN gimp-2.2.7/devel-docs/libgimp/html/gimpdefinitions.html gimp-2.2.8/devel-docs/libgimp/html/gimpdefinitions.html --- gimp-2.2.7/devel-docs/libgimp/html/gimpdefinitions.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/gimpdefinitions.html 2005-06-27 00:18:48.000000000 +0200 @@ -1 +1 @@ -Part I. GIMP Constants

GIMP Constants

+Part I. GIMP Constants

GIMP Constants

diff -uraN gimp-2.2.7/devel-docs/libgimp/html/GimpDrawablePreview.html gimp-2.2.8/devel-docs/libgimp/html/GimpDrawablePreview.html --- gimp-2.2.7/devel-docs/libgimp/html/GimpDrawablePreview.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/GimpDrawablePreview.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,4 +1,4 @@ -GimpDrawablePreview

GimpDrawablePreview

GimpDrawablePreview — A widget providing a preview of a GimpDrawable.

Synopsis

+GimpDrawablePreview

GimpDrawablePreview

GimpDrawablePreview — A widget providing a preview of a GimpDrawable.

Synopsis

 
 
 
@@ -6,20 +6,16 @@
 GtkWidget*  gimp_drawable_preview_new       (GimpDrawable *drawable,
-                                             gboolean *toggle);
+                                             gboolean *toggle);
 GimpDrawable* gimp_drawable_preview_get_drawable
                                             (GimpDrawablePreview *preview);
 void        gimp_drawable_preview_draw_region
                                             (GimpDrawablePreview *preview,
                                              const GimpPixelRgn *region);
 
-

Object Hierarchy

+

Object Hierarchy

 
-  GObject
+  GObject
    +----GtkObject
@@ -42,49 +38,43 @@
 href="../libgimpwidgets/libgimpwidgets-GimpScrolledPreview.html#GimpScrolledPreview"
 >GimpScrolledPreview
                                              +----GimpDrawablePreview
-

Implemented Interfaces

+

Implemented Interfaces

GimpDrawablePreview implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

A widget providing a preview of a GimpDrawable. -

Details

GimpDrawablePreview

typedef struct _GimpDrawablePreview GimpDrawablePreview;

+

Details

GimpDrawablePreview

typedef struct _GimpDrawablePreview GimpDrawablePreview;

-


gimp_drawable_preview_new ()


gimp_drawable_preview_new ()

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

-Creates a new GimpDrawablePreview widget for drawable. If + gboolean *toggle);

+Creates a new GimpDrawablePreview widget for drawable. If updating the preview takes considerable time, you will want to store the state of the "Preview" check-button in the plug-in -data. For convenience you can pass a pointer to the gboolean as -toggle.

- -

drawable : a GimpDrawable -
toggle : pointer to a gboolean variable to sync with the "Preview" - check-button or NULL +data. For convenience you can pass a pointer to the gboolean as +toggle.

+ +

drawable : a GimpDrawable +
toggle : pointer to a gboolean variable to sync with the "Preview" + check-button or NULL
Returns : A pointer to the new GimpDrawablePreview widget.

Since GIMP 2.2 -


gimp_drawable_preview_get_drawable ()

GimpDrawable* gimp_drawable_preview_get_drawable
+


gimp_drawable_preview_get_drawable ()

GimpDrawable* gimp_drawable_preview_get_drawable
                                             (GimpDrawablePreview *preview);

-

preview : a GimpDrawablePreview widget +

preview : a GimpDrawablePreview widget
Returns : the GimpDrawable that has been passed to - gimp_drawable_preview_new(). + gimp_drawable_preview_new().

Since GIMP 2.2 -


gimp_drawable_preview_draw_region ()

void        gimp_drawable_preview_draw_region
+


gimp_drawable_preview_draw_region ()

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

-

preview : a GimpDrawablePreview widget -
region : a GimpPixelRgn +

preview : a GimpDrawablePreview widget +
region : a GimpPixelRgn

Since GIMP 2.2

diff -uraN gimp-2.2.7/devel-docs/libgimp/html/GimpProgressBar.html gimp-2.2.8/devel-docs/libgimp/html/GimpProgressBar.html --- gimp-2.2.7/devel-docs/libgimp/html/GimpProgressBar.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/GimpProgressBar.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,4 +1,4 @@ -GimpProgressBar

GimpProgressBar

GimpProgressBar — A widget providing a progress bar.

Synopsis

+GimpProgressBar

GimpProgressBar

GimpProgressBar — A widget providing a progress bar.

Synopsis

 
 
 
@@ -7,11 +7,9 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget*  gimp_progress_bar_new           (void);
 
-

Object Hierarchy

+

Object Hierarchy

 
-  GObject
+  GObject
    +----GtkObject
@@ -25,14 +23,14 @@
 href="../gtk/GtkProgressBar.html"
 >GtkProgressBar
                            +----GimpProgressBar
-

Implemented Interfaces

+

Implemented Interfaces

GimpProgressBar implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

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

Details

GimpProgressBar

typedef struct _GimpProgressBar GimpProgressBar;

+

Details

GimpProgressBar

typedef struct _GimpProgressBar GimpProgressBar;

-


gimp_progress_bar_new ()


gimp_progress_bar_new ()

GtkWidget*  gimp_progress_bar_new           (void);

Creates a new GimpProgressBar widget.

diff -uraN gimp-2.2.7/devel-docs/libgimp/html/index.html gimp-2.2.8/devel-docs/libgimp/html/index.html --- gimp-2.2.7/devel-docs/libgimp/html/index.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/index.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,6 +1,6 @@ -GIMP Library Reference Manual

+GIMP Library Reference Manual

for GIMP 2.2.4 -


Table of Contents

I. GIMP Constants
gimpenums - Enums and definitions.
II. GIMP Library
Functions not Related to Specific Images
gimp - Main functions needed for building a GIMP plug-in. This header includes -all other GIMP Library headers.
gimpcontext - Functions to manipulate a plug-in's context.
gimpgimprc - Interactions with settings from .gimprc.
gimphelp - Loading help pages using gimp_help.
gimpmessage - Display a dialog box with a message.
gimpplugin - Functions useful for plugins, e.g. registration and progress indicators.
gimpproceduraldb - Functions for querying and changing procedural database (PDB) entries.
gimpprogress - Functions for embedding the progress bar into a plug-in's GUI.
Manupulating Images and all their Properties
gimpchannel - Functions for manipulating channels.
gimpcolor - Functions for manipulating color.
gimpconvert - Conversions between RGB, indexed, and grayscale modes.
gimpdisplay - Functions to create, delete and flush new displays (views) on an image.
gimpdrawable - Functions to manipulate drawables.
gimpdrawabletransform -
gimpedit - Edit menu functions (cut, copy, paste, clear, etc.)
gimpfileops - File operations (load, save, etc.)
gimpfloatingsel - Functions for removing or attaching floating selections.
gimpguides - Functions for manipulating guides.
gimpimage - Operations on complete images.
gimplayer - Operations on a single layer.
gimppaths - Operations related to paths.
gimppixelfetcher - Functions for operating on pixel regions.
gimppixelrgn - Functions for operating on pixel regions.
gimpregioniterator - Functions to traverse a pixel regions.
gimpselection - Functions for manipulating selections.
gimptexttool - Functions for controlling the text tool.
gimptile - Functions for working with tiles.
gimptools - Access to common toolbox tools.
gimpundo - Control of undo/redo.
Data Objects
gimpbrush - Functions operating on a single brush.
gimpbrushes - Functions for manipulating brushes.
gimpfonts - Operations related to fonts.
gimpgradient - Functions operating on a single gradient.
gimpgradients - Operations related to gradients.
gimppalette - Functions operating on a single palette.
gimppalettes - Operations related to palettes.
gimppattern - Functions operating on a single pattern.
gimppatterns - Functions relating to patterns.
Controlling the Core's Selection Dialogs
gimpbrushselect - Functions providing a brush selection dialog.
gimpfontselect - Functions providing a font selection dialog.
gimpgradientselect - Functions providing a gradient selection dialog.
gimppaletteselect - Functions providing a palette selection dialog.
gimppatternselect - Functions providing a pattern selection dialog.
III. GIMP User Interface Library
Object Hierarchy
gimpui - Common user interface functions. This header includes all other GIMP User -Interface Library headers.
gimpexport - Export an image before it is saved.
GimpAspectPreview - A widget providing a preview with fixed aspect ratio.
GimpDrawablePreview - A widget providing a preview of a GimpDrawable.
gimpdrawablecombobox - A widget providing a popup menu of drawables.
gimpimagecombobox - A widget providing a popup menu of images.
gimppixbuf - Get a thumbnail pixbuf for a drawable or image.
GimpProgressBar - A widget providing a progress bar.
gimpmenu - Menus for selecting images, layers, channels and drawables
gimpbrushmenu - A widget for selecting brushes.
gimpfontmenu - A widget for selecting fonts.
gimpgradientmenu - A widget for selecting gradients.
gimppalettemenu - A widget for selecting palettes.
gimppatternmenu - A widget for selecting patterns.
+


Table of Contents

I. GIMP Constants
gimpenums - Enums and definitions.
II. GIMP Library
Functions not Related to Specific Images
gimp - Main functions needed for building a GIMP plug-in. This header includes +all other GIMP Library headers.
gimpcontext - Functions to manipulate a plug-in's context.
gimpgimprc - Interactions with settings from .gimprc.
gimphelp - Loading help pages using gimp_help.
gimpmessage - Display a dialog box with a message.
gimpplugin - Functions useful for plugins, e.g. registration and progress indicators.
gimpproceduraldb - Functions for querying and changing procedural database (PDB) entries.
gimpprogress - Functions for embedding the progress bar into a plug-in's GUI.
Manupulating Images and all their Properties
gimpchannel - Functions for manipulating channels.
gimpcolor - Functions for manipulating color.
gimpconvert - Conversions between RGB, indexed, and grayscale modes.
gimpdisplay - Functions to create, delete and flush new displays (views) on an image.
gimpdrawable - Functions to manipulate drawables.
gimpdrawabletransform -
gimpedit - Edit menu functions (cut, copy, paste, clear, etc.)
gimpfileops - File operations (load, save, etc.)
gimpfloatingsel - Functions for removing or attaching floating selections.
gimpguides - Functions for manipulating guides.
gimpimage - Operations on complete images.
gimplayer - Operations on a single layer.
gimppaths - Operations related to paths.
gimppixelfetcher - Functions for operating on pixel regions.
gimppixelrgn - Functions for operating on pixel regions.
gimpregioniterator - Functions to traverse a pixel regions.
gimpselection - Functions for manipulating selections.
gimptexttool - Functions for controlling the text tool.
gimptile - Functions for working with tiles.
gimptools - Access to common toolbox tools.
gimpundo - Control of undo/redo.
Data Objects
gimpbrush - Functions operating on a single brush.
gimpbrushes - Functions for manipulating brushes.
gimpfonts - Operations related to fonts.
gimpgradient - Functions operating on a single gradient.
gimpgradients - Operations related to gradients.
gimppalette - Functions operating on a single palette.
gimppalettes - Operations related to palettes.
gimppattern - Functions operating on a single pattern.
gimppatterns - Functions relating to patterns.
Controlling the Core's Selection Dialogs
gimpbrushselect - Functions providing a brush selection dialog.
gimpfontselect - Functions providing a font selection dialog.
gimpgradientselect - Functions providing a gradient selection dialog.
gimppaletteselect - Functions providing a palette selection dialog.
gimppatternselect - Functions providing a pattern selection dialog.
III. GIMP User Interface Library
Object Hierarchy
gimpui - Common user interface functions. This header includes all other GIMP User +Interface Library headers.
gimpexport - Export an image before it is saved.
GimpAspectPreview - A widget providing a preview with fixed aspect ratio.
GimpDrawablePreview - A widget providing a preview of a GimpDrawable.
gimpdrawablecombobox - A widget providing a popup menu of drawables.
gimpimagecombobox - A widget providing a popup menu of images.
gimppixbuf - Get a thumbnail pixbuf for a drawable or image.
GimpProgressBar - A widget providing a progress bar.
gimpmenu - Menus for selecting images, layers, channels and drawables
gimpbrushmenu - A widget for selecting brushes.
gimpfontmenu - A widget for selecting fonts.
gimpgradientmenu - A widget for selecting gradients.
gimppalettemenu - A widget for selecting palettes.
gimppatternmenu - A widget for selecting patterns.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-data.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-data.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-data.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-data.html 2005-06-27 00:18:48.000000000 +0200 @@ -1 +1 @@ -Data Objects

Data Objects

gimpbrush - Functions operating on a single brush.
gimpbrushes - Functions for manipulating brushes.
gimpfonts - Operations related to fonts.
gimpgradient - Functions operating on a single gradient.
gimpgradients - Operations related to gradients.
gimppalette - Functions operating on a single palette.
gimppalettes - Operations related to palettes.
gimppattern - Functions operating on a single pattern.
gimppatterns - Functions relating to patterns.
+Data Objects

Data Objects

gimpbrush - Functions operating on a single brush.
gimpbrushes - Functions for manipulating brushes.
gimpfonts - Operations related to fonts.
gimpgradient - Functions operating on a single gradient.
gimpgradients - Operations related to gradients.
gimppalette - Functions operating on a single palette.
gimppalettes - Operations related to palettes.
gimppattern - Functions operating on a single pattern.
gimppatterns - Functions relating to patterns.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-general.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-general.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-general.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-general.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,2 +1,2 @@ -Functions not Related to Specific Images

Functions not Related to Specific Images

gimp - Main functions needed for building a GIMP plug-in. This header includes -all other GIMP Library headers.
gimpcontext - Functions to manipulate a plug-in's context.
gimpgimprc - Interactions with settings from .gimprc.
gimphelp - Loading help pages using gimp_help.
gimpmessage - Display a dialog box with a message.
gimpplugin - Functions useful for plugins, e.g. registration and progress indicators.
gimpproceduraldb - Functions for querying and changing procedural database (PDB) entries.
gimpprogress - Functions for embedding the progress bar into a plug-in's GUI.
+Functions not Related to Specific Images

Functions not Related to Specific Images

gimp - Main functions needed for building a GIMP plug-in. This header includes +all other GIMP Library headers.
gimpcontext - Functions to manipulate a plug-in's context.
gimpgimprc - Interactions with settings from .gimprc.
gimphelp - Loading help pages using gimp_help.
gimpmessage - Display a dialog box with a message.
gimpplugin - Functions useful for plugins, e.g. registration and progress indicators.
gimpproceduraldb - Functions for querying and changing procedural database (PDB) entries.
gimpprogress - Functions for embedding the progress bar into a plug-in's GUI.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrushes.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrushes.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrushes.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrushes.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,208 +1,108 @@ -gimpbrushes

gimpbrushes

gimpbrushes — Functions for manipulating brushes.

Synopsis

+gimpbrushes

gimpbrushes

gimpbrushes — Functions for manipulating brushes.

Synopsis

 
 
 
-gboolean    gimp_brushes_refresh            (void);
-gchar**     gimp_brushes_get_list           (const gchar *filter,
-                                             gint *num_brushes);
-gchar*      gimp_brushes_get_brush          (gint *width,
-                                             gint *height,
-                                             gint *spacing);
-gboolean    gimp_brushes_set_brush          (const gchar *name);
-gdouble     gimp_brushes_get_opacity        (void);
-gboolean    gimp_brushes_set_opacity        (gdouble opacity);
+gboolean    gimp_brushes_refresh            (void);
+gchar**     gimp_brushes_get_list           (const gchar *filter,
+                                             gint *num_brushes);
+gchar*      gimp_brushes_get_brush          (gint *width,
+                                             gint *height,
+                                             gint *spacing);
+gboolean    gimp_brushes_set_brush          (const gchar *name);
+gdouble     gimp_brushes_get_opacity        (void);
+gboolean    gimp_brushes_set_opacity        (gdouble opacity);
 GimpLayerModeEffects gimp_brushes_get_paint_mode
                                             (void);
-gboolean    gimp_brushes_set_paint_mode     (GimpLayerModeEffects paint_mode);
-gint        gimp_brushes_get_spacing        (void);
-gboolean    gimp_brushes_set_spacing        (gint spacing);
-gchar*      gimp_brushes_get_brush_data     (const gchar *name,
-                                             gdouble *opacity,
-                                             gint *spacing,
+gboolean    gimp_brushes_set_paint_mode     (GimpLayerModeEffects paint_mode);
+gint        gimp_brushes_get_spacing        (void);
+gboolean    gimp_brushes_set_spacing        (gint spacing);
+gchar*      gimp_brushes_get_brush_data     (const gchar *name,
+                                             gdouble *opacity,
+                                             gint *spacing,
                                              GimpLayerModeEffects *paint_mode,
-                                             gint *width,
-                                             gint *height,
-                                             gint *length,
-                                             guint8 **mask_data);
-

Description

+ gint *width, + gint *height, + gint *length, + guint8 **mask_data); +

Description

Functions related to getting and setting brushes. -

Details

gimp_brushes_refresh ()

gboolean    gimp_brushes_refresh            (void);

+

Details

gimp_brushes_refresh ()

gboolean    gimp_brushes_refresh            (void);

Refresh current brushes. This function always succeeds.

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

Returns : TRUE on success. -

gimp_brushes_get_list ()

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

+


gimp_brushes_get_list ()

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

Retrieve a complete listing of the available brushes.

This procedure returns a complete listing of available GIMP brushes. Each name returned can be used as input to the 'gimp_context_set_brush' procedure.

-

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

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

gimp_brushes_get_brush ()

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

Warning

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

-This procedure is deprecated! Use gimp_context_get_brush() instead.

- -

width : The brush width. -
height : The brush height. -
spacing : The brush spacing. +

gimp_brushes_get_brush ()

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

Warning

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

+This procedure is deprecated! Use gimp_context_get_brush() instead.

+ +

width : The brush width. +
height : The brush height. +
spacing : The brush spacing.
Returns : The brush name. -

gimp_brushes_set_brush ()

gboolean    gimp_brushes_set_brush          (const gchar *name);

Warning

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

-This procedure is deprecated! Use gimp_context_set_brush() instead.

+


gimp_brushes_set_brush ()

gboolean    gimp_brushes_set_brush          (const gchar *name);

Warning

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

+This procedure is deprecated! Use gimp_context_set_brush() instead.

-

name : The brush name. +

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

gimp_brushes_get_opacity ()

gdouble     gimp_brushes_get_opacity        (void);

Warning

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

-This procedure is deprecated! Use gimp_context_get_opacity() instead.

+


gimp_brushes_get_opacity ()

gdouble     gimp_brushes_get_opacity        (void);

Warning

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

+This procedure is deprecated! Use gimp_context_get_opacity() instead.

Returns : The brush opacity. -

gimp_brushes_set_opacity ()

gboolean    gimp_brushes_set_opacity        (gdouble opacity);

Warning

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

-This procedure is deprecated! Use gimp_context_set_opacity() instead.

+


gimp_brushes_set_opacity ()

gboolean    gimp_brushes_set_opacity        (gdouble opacity);

Warning

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

+This procedure is deprecated! Use gimp_context_set_opacity() instead.

-

opacity : The brush opacity. +

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

gimp_brushes_get_paint_mode ()

GimpLayerModeEffects gimp_brushes_get_paint_mode
-                                            (void);

Warning

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

-This procedure isdeprecated! Use gimp_context_get_paint_mode() instead.

+


gimp_brushes_get_paint_mode ()

GimpLayerModeEffects gimp_brushes_get_paint_mode
+                                            (void);

Warning

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

+This procedure isdeprecated! Use gimp_context_get_paint_mode() instead.

Returns : The paint mode. -

gimp_brushes_set_paint_mode ()

gboolean    gimp_brushes_set_paint_mode     (GimpLayerModeEffects paint_mode);

Warning

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

-This procedure is deprecated! Use gimp_context_set_paint_mode() instead.

+


gimp_brushes_set_paint_mode ()

gboolean    gimp_brushes_set_paint_mode     (GimpLayerModeEffects paint_mode);

Warning

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

+This procedure is deprecated! Use gimp_context_set_paint_mode() instead.

-

paint_mode : The paint mode. +

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

gimp_brushes_get_spacing ()

gint        gimp_brushes_get_spacing        (void);

Warning

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

-This procedure is deprecated! Use gimp_brush_get_spacing() instead.

+


gimp_brushes_get_spacing ()

gint        gimp_brushes_get_spacing        (void);

Warning

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

+This procedure is deprecated! Use gimp_brush_get_spacing() instead.

Returns : The brush spacing. -

gimp_brushes_set_spacing ()

gboolean    gimp_brushes_set_spacing        (gint spacing);

Warning

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

-This procedure is deprecated! Use gimp_brush_set_spacing() instead.

+


gimp_brushes_set_spacing ()

gboolean    gimp_brushes_set_spacing        (gint spacing);

Warning

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

+This procedure is deprecated! Use gimp_brush_set_spacing() instead.

-

spacing : The brush spacing. +

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

gimp_brushes_get_brush_data ()

gchar*      gimp_brushes_get_brush_data     (const gchar *name,
-                                             gdouble *opacity,
-                                             gint *spacing,
+

gimp_brushes_get_brush_data ()

gchar*      gimp_brushes_get_brush_data     (const gchar *name,
+                                             gdouble *opacity,
+                                             gint *spacing,
                                              GimpLayerModeEffects *paint_mode,
-                                             gint *width,
-                                             gint *height,
-                                             gint *length,
-                                             guint8 **mask_data);

Warning

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

-This procedure is deprecated! Use gimp_brush_get_pixels() instead.

- -

name : The brush name (\"\" means current active brush). -
opacity : The brush opacity. -
spacing : The brush spacing. -
paint_mode : The paint mode. -
width : The brush width. -
height : The brush height. -
length : Length of brush mask data. -
mask_data : The brush mask data. + gint *width, + gint *height, + gint *length, + guint8 **mask_data);

Warning

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

+This procedure is deprecated! Use gimp_brush_get_pixels() instead.

+ +

name : The brush name (\"\" means current active brush). +
opacity : The brush opacity. +
spacing : The brush spacing. +
paint_mode : The paint mode. +
width : The brush width. +
height : The brush height. +
length : Length of brush mask data. +
mask_data : The brush mask data.
Returns : The brush name.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrush.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrush.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrush.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrush.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,260 +1,136 @@ -gimpbrush

gimpbrush

gimpbrush — Functions operating on a single brush.

Synopsis

+gimpbrush

gimpbrush

gimpbrush — Functions operating on a single brush.

Synopsis

 
 
 
-gchar*      gimp_brush_new                  (const gchar *name);
-gchar*      gimp_brush_duplicate            (const gchar *name);
-gchar*      gimp_brush_rename               (const gchar *name,
-                                             const gchar *new_name);
-gboolean    gimp_brush_delete               (const gchar *name);
-gboolean    gimp_brush_get_info             (const gchar *name,
-                                             gint *width,
-                                             gint *height,
-                                             gint *mask_bpp,
-                                             gint *color_bpp);
-gboolean    gimp_brush_get_pixels           (const gchar *name,
-                                             gint *width,
-                                             gint *height,
-                                             gint *mask_bpp,
-                                             gint *num_mask_bytes,
-                                             guint8 **mask_bytes,
-                                             gint *color_bpp,
-                                             gint *num_color_bytes,
-                                             guint8 **color_bytes);
-gboolean    gimp_brush_get_spacing          (const gchar *name,
-                                             gint *spacing);
-gboolean    gimp_brush_set_spacing          (const gchar *name,
-                                             gint spacing);
-

Description

+gchar* gimp_brush_new (const gchar *name); +gchar* gimp_brush_duplicate (const gchar *name); +gchar* gimp_brush_rename (const gchar *name, + const gchar *new_name); +gboolean gimp_brush_delete (const gchar *name); +gboolean gimp_brush_get_info (const gchar *name, + gint *width, + gint *height, + gint *mask_bpp, + gint *color_bpp); +gboolean gimp_brush_get_pixels (const gchar *name, + gint *width, + gint *height, + gint *mask_bpp, + gint *num_mask_bytes, + guint8 **mask_bytes, + gint *color_bpp, + gint *num_color_bytes, + guint8 **color_bytes); +gboolean gimp_brush_get_spacing (const gchar *name, + gint *spacing); +gboolean gimp_brush_set_spacing (const gchar *name, + gint spacing); +

Description

Functions operating on a single brush. -

Details

gimp_brush_new ()

gchar*      gimp_brush_new                  (const gchar *name);

+

Details

gimp_brush_new ()

gchar*      gimp_brush_new                  (const gchar *name);

Creates a new brush

This procedure creates a new, uninitialized brush

-

name : The requested name of the new brush. +

name : The requested name of the new brush.
Returns : The actual new brush name.

Since GIMP 2.2 -


gimp_brush_duplicate ()

gchar*      gimp_brush_duplicate            (const gchar *name);

+


gimp_brush_duplicate ()

gchar*      gimp_brush_duplicate            (const gchar *name);

Duplicates a brush

This procedure creates an identical brush by a different name

-

name : The brush name. +

name : The brush name.
Returns : The name of the brush's copy.

Since GIMP 2.2 -


gimp_brush_rename ()

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

+


gimp_brush_rename ()

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

Rename a brush

This procedure renames a brush

-

name : The brush name. -
new_name : The new name of the brush. +

name : The brush name. +
new_name : The new name of the brush.
Returns : The actual new name of the brush.

Since GIMP 2.2 -


gimp_brush_delete ()

gboolean    gimp_brush_delete               (const gchar *name);

+


gimp_brush_delete ()

gboolean    gimp_brush_delete               (const gchar *name);

Deletes a brush

This procedure deletes a brush

-

name : The brush name. +

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

Since GIMP 2.2 -


gimp_brush_get_info ()

gboolean    gimp_brush_get_info             (const gchar *name,
-                                             gint *width,
-                                             gint *height,
-                                             gint *mask_bpp,
-                                             gint *color_bpp);

+


gimp_brush_get_info ()

gboolean    gimp_brush_get_info             (const gchar *name,
+                                             gint *width,
+                                             gint *height,
+                                             gint *mask_bpp,
+                                             gint *color_bpp);

Retrieve information about the specified brush.

This procedure retrieves information about the specified brush. This includes the brush name, and the brush extents (width and height).

-

name : The brush name. -
width : The brush width. -
height : The brush height. -
mask_bpp : The brush mask bpp. -
color_bpp : The brush color bpp. +

name : The brush name. +
width : The brush width. +
height : The brush height. +
mask_bpp : The brush mask bpp. +
color_bpp : The brush color bpp.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_brush_get_pixels ()

gboolean    gimp_brush_get_pixels           (const gchar *name,
-                                             gint *width,
-                                             gint *height,
-                                             gint *mask_bpp,
-                                             gint *num_mask_bytes,
-                                             guint8 **mask_bytes,
-                                             gint *color_bpp,
-                                             gint *num_color_bytes,
-                                             guint8 **color_bytes);

+


gimp_brush_get_pixels ()

gboolean    gimp_brush_get_pixels           (const gchar *name,
+                                             gint *width,
+                                             gint *height,
+                                             gint *mask_bpp,
+                                             gint *num_mask_bytes,
+                                             guint8 **mask_bytes,
+                                             gint *color_bpp,
+                                             gint *num_color_bytes,
+                                             guint8 **color_bytes);

Retrieve information about the specified brush.

This procedure retrieves information about the specified brush. This includes the brush extents (width and height) and its pixels data.

-

name : The brush name. -
width : The brush width. -
height : The brush height. -
mask_bpp : The brush mask bpp. -
num_mask_bytes : Length of brush mask data. -
mask_bytes : The brush mask data. -
color_bpp : The brush color bpp. -
num_color_bytes : Length of brush color data. -
color_bytes : The brush color data. +

name : The brush name. +
width : The brush width. +
height : The brush height. +
mask_bpp : The brush mask bpp. +
num_mask_bytes : Length of brush mask data. +
mask_bytes : The brush mask data. +
color_bpp : The brush color bpp. +
num_color_bytes : Length of brush color data. +
color_bytes : The brush color data.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_brush_get_spacing ()

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

+


gimp_brush_get_spacing ()

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

Get the brush spacing.

This procedure returns the spacing setting for the specified brush. The return value is an integer between 0 and 1000 which represents percentage of the maximum of the width and height of the mask.

-

name : The brush name. -
spacing : The brush spacing. +

name : The brush name. +
spacing : The brush spacing.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_brush_set_spacing ()

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

+


gimp_brush_set_spacing ()

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

Set the brush spacing.

This procedure modifies the spacing setting for the specified brush. The value should be a integer between 0 and 1000.

-

name : The brush name. -
spacing : The brush spacing. +

name : The brush name. +
spacing : The brush spacing.
Returns : TRUE on success.

Since GIMP 2.2 diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,63 +1,37 @@ -gimpbrushmenu

gimpbrushmenu

gimpbrushmenu — A widget for selecting brushes.

Synopsis

+gimpbrushmenu

gimpbrushmenu

gimpbrushmenu — A widget for selecting brushes.

Synopsis

 
 
 
 GtkWidget*  gimp_brush_select_widget_new    (const gchar *title,
-                                             const gchar *brush_name,
-                                             gdouble opacity,
-                                             gint spacing,
+>GtkWidget*  gimp_brush_select_widget_new    (const gchar *title,
+                                             const gchar *brush_name,
+                                             gdouble opacity,
+                                             gint spacing,
                                              GimpLayerModeEffects paint_mode,
                                              GimpRunBrushCallback callback,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_brush_select_widget_close  (GtkWidget *widget);
 void        gimp_brush_select_widget_set    (GtkWidget *widget,
-                                             const gchar *brush_name,
-                                             gdouble opacity,
-                                             gint spacing,
+                                             const gchar *brush_name,
+                                             gdouble opacity,
+                                             gint spacing,
                                              GimpLayerModeEffects paint_mode);
-

Description

+

Description

A widget for selecting brushes. -

Details

gimp_brush_select_widget_new ()

Details

gimp_brush_select_widget_new ()

GtkWidget*  gimp_brush_select_widget_new    (const gchar *title,
-                                             const gchar *brush_name,
-                                             gdouble opacity,
-                                             gint spacing,
+>GtkWidget*  gimp_brush_select_widget_new    (const gchar *title,
+                                             const gchar *brush_name,
+                                             gdouble opacity,
+                                             gint spacing,
                                              GimpLayerModeEffects paint_mode,
                                              GimpRunBrushCallback callback,
-                                             gpointer data);

+ gpointer data);

Creates a new GtkWidget that completely controls the selection of @@ -66,42 +40,36 @@ >GimpBrush. This widget is suitable for placement in a table in a plug-in dialog.

-

title : Title of the dialog to use or NULL to use the default title. -
brush_name : Initial brush name or NULL to use current selection. -
opacity : Initial opacity. -1 means to use current opacity. -
spacing : Initial spacing. -1 means to use current spacing. -
paint_mode : Initial paint mode. -1 means to use current paint mode. -
callback : A function to call when the selected brush changes. -
data : A pointer to arbitary data to be used in the call to callback. +

title : Title of the dialog to use or NULL to use the default title. +
brush_name : Initial brush name or NULL to use current selection. +
opacity : Initial opacity. -1 means to use current opacity. +
spacing : Initial spacing. -1 means to use current spacing. +
paint_mode : Initial paint mode. -1 means to use current paint mode. +
callback : A function to call when the selected brush changes. +
data : A pointer to arbitary data to be used in the call to callback.
Returns : A GtkWidget that you can use in your UI. -

gimp_brush_select_widget_close ()

void        gimp_brush_select_widget_close  (

gimp_brush_select_widget_close ()

void        gimp_brush_select_widget_close  (GtkWidget *widget);

-Closes the popup window associated with widget.

+Closes the popup window associated with widget.

-

widget : A brush select widget. -

gimp_brush_select_widget_set ()

void        gimp_brush_select_widget_set    (
widget : A brush select widget. +

gimp_brush_select_widget_set ()

void        gimp_brush_select_widget_set    (GtkWidget *widget,
-                                             const gchar *brush_name,
-                                             gdouble opacity,
-                                             gint spacing,
+                                             const gchar *brush_name,
+                                             gdouble opacity,
+                                             gint spacing,
                                              GimpLayerModeEffects paint_mode);

Sets the current brush and other values for the brush select widget. Calls the callback function if one was supplied in the -call to gimp_brush_select_widget_new().

+call to gimp_brush_select_widget_new().

-

widget : A brush select widget. -
brush_name : Brush name to set; NULL means no change. -
opacity : Opacity to set. -1 means no change. -
spacing : Spacing to set. -1 means no change. -
paint_mode : Paint mode to set. -1 means no change. +

widget : A brush select widget. +
brush_name : Brush name to set; NULL means no change. +
opacity : Opacity to set. -1 means no change. +
spacing : Spacing to set. -1 means no change. +
paint_mode : Paint mode to set. -1 means no change.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrushselect.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrushselect.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrushselect.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrushselect.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,231 +1,119 @@ -gimpbrushselect

gimpbrushselect

gimpbrushselect — Functions providing a brush selection dialog.

Synopsis

+gimpbrushselect

gimpbrushselect

gimpbrushselect — Functions providing a brush selection dialog.

Synopsis

 
 
 
-void        (*GimpRunBrushCallback)         (const gchar *brush_name,
-                                             gdouble opacity,
-                                             gint spacing,
+void        (*GimpRunBrushCallback)         (const gchar *brush_name,
+                                             gdouble opacity,
+                                             gint spacing,
                                              GimpLayerModeEffects paint_mode,
-                                             gint width,
-                                             gint height,
-                                             const guchar *mask_data,
-                                             gboolean dialog_closing,
-                                             gpointer user_data);
-const gchar* gimp_brush_select_new          (const gchar *title,
-                                             const gchar *brush_name,
-                                             gdouble opacity,
-                                             gint spacing,
+                                             gint width,
+                                             gint height,
+                                             const guchar *mask_data,
+                                             gboolean dialog_closing,
+                                             gpointer user_data);
+const gchar* gimp_brush_select_new          (const gchar *title,
+                                             const gchar *brush_name,
+                                             gdouble opacity,
+                                             gint spacing,
                                              GimpLayerModeEffects paint_mode,
                                              GimpRunBrushCallback callback,
-                                             gpointer data);
-void        gimp_brush_select_destroy       (const gchar *brush_callback);
-gboolean    gimp_brushes_popup              (const gchar *brush_callback,
-                                             const gchar *popup_title,
-                                             const gchar *initial_brush,
-                                             gdouble opacity,
-                                             gint spacing,
+                                             gpointer data);
+void        gimp_brush_select_destroy       (const gchar *brush_callback);
+gboolean    gimp_brushes_popup              (const gchar *brush_callback,
+                                             const gchar *popup_title,
+                                             const gchar *initial_brush,
+                                             gdouble opacity,
+                                             gint spacing,
                                              GimpLayerModeEffects paint_mode);
-gboolean    gimp_brushes_close_popup        (const gchar *brush_callback);
-gboolean    gimp_brushes_set_popup          (const gchar *brush_callback,
-                                             const gchar *brush_name,
-                                             gdouble opacity,
-                                             gint spacing,
+gboolean    gimp_brushes_close_popup        (const gchar *brush_callback);
+gboolean    gimp_brushes_set_popup          (const gchar *brush_callback,
+                                             const gchar *brush_name,
+                                             gdouble opacity,
+                                             gint spacing,
                                              GimpLayerModeEffects paint_mode);
-

Description

+

Description

Functions providing a brush selection dialog. -

Details

GimpRunBrushCallback ()

void        (*GimpRunBrushCallback)         (const gchar *brush_name,
-                                             gdouble opacity,
-                                             gint spacing,
+

Details

GimpRunBrushCallback ()

void        (*GimpRunBrushCallback)         (const gchar *brush_name,
+                                             gdouble opacity,
+                                             gint spacing,
                                              GimpLayerModeEffects paint_mode,
-                                             gint width,
-                                             gint height,
-                                             const guchar *mask_data,
-                                             gboolean dialog_closing,
-                                             gpointer user_data);

- -

brush_name : -
opacity : -
spacing : -
paint_mode : -
width : -
height : -
mask_data : -
dialog_closing : -
user_data : - - -

gimp_brush_select_new ()

const gchar* gimp_brush_select_new          (const gchar *title,
-                                             const gchar *brush_name,
-                                             gdouble opacity,
-                                             gint spacing,
+                                             gint width,
+                                             gint height,
+                                             const guchar *mask_data,
+                                             gboolean dialog_closing,
+                                             gpointer user_data);

+ +

brush_name : +
opacity : +
spacing : +
paint_mode : +
width : +
height : +
mask_data : +
dialog_closing : +
user_data : + + +

gimp_brush_select_new ()

const gchar* gimp_brush_select_new          (const gchar *title,
+                                             const gchar *brush_name,
+                                             gdouble opacity,
+                                             gint spacing,
                                              GimpLayerModeEffects paint_mode,
                                              GimpRunBrushCallback callback,
-                                             gpointer data);

- -

title : -
brush_name : -
opacity : -
spacing : -
paint_mode : -
callback : -
data : + gpointer data);

+ +

title : +
brush_name : +
opacity : +
spacing : +
paint_mode : +
callback : +
data :
Returns : -

gimp_brush_select_destroy ()

void        gimp_brush_select_destroy       (const gchar *brush_callback);

- -

brush_callback : - - -

gimp_brushes_popup ()

gboolean    gimp_brushes_popup              (const gchar *brush_callback,
-                                             const gchar *popup_title,
-                                             const gchar *initial_brush,
-                                             gdouble opacity,
-                                             gint spacing,
+

gimp_brush_select_destroy ()

void        gimp_brush_select_destroy       (const gchar *brush_callback);

+ +

brush_callback : + + +

gimp_brushes_popup ()

gboolean    gimp_brushes_popup              (const gchar *brush_callback,
+                                             const gchar *popup_title,
+                                             const gchar *initial_brush,
+                                             gdouble opacity,
+                                             gint spacing,
                                              GimpLayerModeEffects paint_mode);

Invokes the Gimp brush selection.

This procedure popups the brush selection dialog.

-

brush_callback : The callback PDB proc to call when brush selection is made. -
popup_title : Title to give the brush popup window. -
initial_brush : The name of the brush to set as the first selected. -
opacity : The initial opacity of the brush. -
spacing : The initial spacing of the brush (if < 0 then use brush default spacing). -
paint_mode : The initial paint mode. +

brush_callback : The callback PDB proc to call when brush selection is made. +
popup_title : Title to give the brush popup window. +
initial_brush : The name of the brush to set as the first selected. +
opacity : The initial opacity of the brush. +
spacing : The initial spacing of the brush (if < 0 then use brush default spacing). +
paint_mode : The initial paint mode.
Returns : TRUE on success. -

gimp_brushes_close_popup ()

gboolean    gimp_brushes_close_popup        (const gchar *brush_callback);

+


gimp_brushes_close_popup ()

gboolean    gimp_brushes_close_popup        (const gchar *brush_callback);

Popdown the Gimp brush selection.

This procedure closes an opened brush selection dialog.

-

brush_callback : The name of the callback registered for this popup. +

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

gimp_brushes_set_popup ()

gboolean    gimp_brushes_set_popup          (const gchar *brush_callback,
-                                             const gchar *brush_name,
-                                             gdouble opacity,
-                                             gint spacing,
+

gimp_brushes_set_popup ()

gboolean    gimp_brushes_set_popup          (const gchar *brush_callback,
+                                             const gchar *brush_name,
+                                             gdouble opacity,
+                                             gint spacing,
                                              GimpLayerModeEffects paint_mode);

Sets the current brush selection in a popup.

Sets the current brush selection in a popup.

-

brush_callback : The name of the callback registered for this popup. -
brush_name : The name of the brush to set as selected. -
opacity : The initial opacity of the brush. -
spacing : The initial spacing of the brush (if < 0 then use brush default spacing). -
paint_mode : The initial paint mode. +

brush_callback : The name of the callback registered for this popup. +
brush_name : The name of the brush to set as selected. +
opacity : The initial opacity of the brush. +
spacing : The initial spacing of the brush (if < 0 then use brush default spacing). +
paint_mode : The initial paint mode.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpchannel.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpchannel.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpchannel.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpchannel.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,108 +1,42 @@ -gimpchannel

gimpchannel

gimpchannel — Functions for manipulating channels.

Synopsis

+gimpchannel

gimpchannel

gimpchannel — Functions for manipulating channels.

Synopsis

 
 
 
-gint32      gimp_channel_new                (gint32 image_ID,
-                                             const gchar *name,
-                                             guint width,
-                                             guint height,
-                                             gdouble opacity,
+gint32      gimp_channel_new                (gint32 image_ID,
+                                             const gchar *name,
+                                             guint width,
+                                             guint height,
+                                             gdouble opacity,
                                              const GimpRGB *color);
-gint32      gimp_channel_copy               (gint32 channel_ID);
-gboolean    gimp_channel_get_show_masked    (gint32 channel_ID);
-gboolean    gimp_channel_set_show_masked    (gint32 channel_ID,
-                                             gboolean show_masked);
-gdouble     gimp_channel_get_opacity        (gint32 channel_ID);
-gboolean    gimp_channel_set_opacity        (gint32 channel_ID,
-                                             gdouble opacity);
-gboolean    gimp_channel_get_color          (gint32 channel_ID,
+gint32      gimp_channel_copy               (gint32 channel_ID);
+gboolean    gimp_channel_get_show_masked    (gint32 channel_ID);
+gboolean    gimp_channel_set_show_masked    (gint32 channel_ID,
+                                             gboolean show_masked);
+gdouble     gimp_channel_get_opacity        (gint32 channel_ID);
+gboolean    gimp_channel_set_opacity        (gint32 channel_ID,
+                                             gdouble opacity);
+gboolean    gimp_channel_get_color          (gint32 channel_ID,
                                              GimpRGB *color);
-gboolean    gimp_channel_set_color          (gint32 channel_ID,
+gboolean    gimp_channel_set_color          (gint32 channel_ID,
                                              const GimpRGB *color);
-gboolean    gimp_channel_combine_masks      (gint32 channel1_ID,
-                                             gint32 channel2_ID,
+gboolean    gimp_channel_combine_masks      (gint32 channel1_ID,
+                                             gint32 channel2_ID,
                                              GimpChannelOps operation,
-                                             gint offx,
-                                             gint offy);
-

Description

+ gint offx, + gint offy); +

Description

Functions for manipulating channels. -

Details

gimp_channel_new ()

gint32      gimp_channel_new                (gint32 image_ID,
-                                             const gchar *name,
-                                             guint width,
-                                             guint height,
-                                             gdouble opacity,
+

Details

gimp_channel_new ()

gint32      gimp_channel_new                (gint32 image_ID,
+                                             const gchar *name,
+                                             guint width,
+                                             guint height,
+                                             gdouble opacity,
                                              const GimpRGB *color);

@@ -116,29 +50,21 @@ with explicit procedure calls. The channel's contents are undefined initially.

-

image_ID : The image to which to add the channel. -
name : The channel name. -
width : The channel width. -
height : The channel height. -
opacity : The channel opacity. -
color : The channel compositing color. +

image_ID : The image to which to add the channel. +
name : The channel name. +
width : The channel width. +
height : The channel height. +
opacity : The channel opacity. +
color : The channel compositing color.
Returns : The newly created channel. -

gimp_channel_copy ()

gint32      gimp_channel_copy               (gint32 channel_ID);

+


gimp_channel_copy ()

gint32      gimp_channel_copy               (gint32 channel_ID);

Copy a channel.

This procedure copies the specified channel and returns the copy.

-

channel_ID : The channel to copy. +

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

gimp_channel_get_show_masked ()

gboolean    gimp_channel_get_show_masked    (gint32 channel_ID);

+


gimp_channel_get_show_masked ()

gboolean    gimp_channel_get_show_masked    (gint32 channel_ID);

Get the composite method of the specified channel.

This procedure returns the specified channel's composite method. If @@ -146,56 +72,36 @@ that masked regions are shown. Otherwise, selected regions are shown.

-

channel_ID : The channel. +

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

gimp_channel_set_show_masked ()

gboolean    gimp_channel_set_show_masked    (gint32 channel_ID,
-                                             gboolean show_masked);

+


gimp_channel_set_show_masked ()

gboolean    gimp_channel_set_show_masked    (gint32 channel_ID,
+                                             gboolean show_masked);

Set the composite method of the specified channel.

This procedure sets the specified channel's composite method. If it is non-zero, then the channel is composited with the image so that masked regions are shown. Otherwise, selected regions are shown.

-

channel_ID : The channel. -
show_masked : The new channel composite method. +

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

gimp_channel_get_opacity ()

gdouble     gimp_channel_get_opacity        (gint32 channel_ID);

+


gimp_channel_get_opacity ()

gdouble     gimp_channel_get_opacity        (gint32 channel_ID);

Get the opacity of the specified channel.

This procedure returns the specified channel's opacity.

-

channel_ID : The channel. +

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

gimp_channel_set_opacity ()

gboolean    gimp_channel_set_opacity        (gint32 channel_ID,
-                                             gdouble opacity);

+


gimp_channel_set_opacity ()

gboolean    gimp_channel_set_opacity        (gint32 channel_ID,
+                                             gdouble opacity);

Set the opacity of the specified channel.

This procedure sets the specified channel's opacity.

-

channel_ID : The channel. -
opacity : The new channel opacity. +

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

gimp_channel_get_color ()

gboolean    gimp_channel_get_color          (gint32 channel_ID,
+

gimp_channel_get_color ()

gboolean    gimp_channel_get_color          (gint32 channel_ID,
                                              GimpRGB *color);

@@ -203,14 +109,10 @@

This procedure returns the specified channel's compositing color.

-

channel_ID : The channel. -
color : The channel compositing color. +

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

gimp_channel_set_color ()

gboolean    gimp_channel_set_color          (gint32 channel_ID,
+

gimp_channel_set_color ()

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

@@ -218,33 +120,23 @@

This procedure sets the specified channel's compositing color.

-

channel_ID : The channel. -
color : The new channel compositing color. +

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

gimp_channel_combine_masks ()

gboolean    gimp_channel_combine_masks      (gint32 channel1_ID,
-                                             gint32 channel2_ID,
+

gimp_channel_combine_masks ()

gboolean    gimp_channel_combine_masks      (gint32 channel1_ID,
+                                             gint32 channel2_ID,
                                              GimpChannelOps operation,
-                                             gint offx,
-                                             gint offy);

+ gint offx, + gint offy);

Combine two channel masks.

This procedure combines two channel masks. The result is stored in the first channel.

-

channel1_ID : The channel1. -
channel2_ID : The channel2. -
operation : The selection operation. -
offx : x offset between upper left corner of channels: (second - first). -
offy : y offset between upper left corner of channels: (second - first). +

channel1_ID : The channel1. +
channel2_ID : The channel2. +
operation : The selection operation. +
offx : x offset between upper left corner of channels: (second - first). +
offy : y offset between upper left corner of channels: (second - first).
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpcolor.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpcolor.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpcolor.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpcolor.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,232 +1,84 @@ -gimpcolor

gimpcolor

gimpcolor — Functions for manipulating color.

Synopsis

+gimpcolor

gimpcolor

gimpcolor — Functions for manipulating color.

Synopsis

 
 
 
-gboolean    gimp_brightness_contrast        (gint32 drawable_ID,
-                                             gint brightness,
-                                             gint contrast);
-gboolean    gimp_levels                     (gint32 drawable_ID,
+gboolean    gimp_brightness_contrast        (gint32 drawable_ID,
+                                             gint brightness,
+                                             gint contrast);
+gboolean    gimp_levels                     (gint32 drawable_ID,
                                              GimpHistogramChannel channel,
-                                             gint low_input,
-                                             gint high_input,
-                                             gdouble gamma,
-                                             gint low_output,
-                                             gint high_output);
-gboolean    gimp_levels_auto                (gint32 drawable_ID);
-gboolean    gimp_levels_stretch             (gint32 drawable_ID);
-gboolean    gimp_posterize                  (gint32 drawable_ID,
-                                             gint levels);
-gboolean    gimp_desaturate                 (gint32 drawable_ID);
-gboolean    gimp_equalize                   (gint32 drawable_ID,
-                                             gboolean mask_only);
-gboolean    gimp_invert                     (gint32 drawable_ID);
-gboolean    gimp_curves_spline              (gint32 drawable_ID,
+                                             gint low_input,
+                                             gint high_input,
+                                             gdouble gamma,
+                                             gint low_output,
+                                             gint high_output);
+gboolean    gimp_levels_auto                (gint32 drawable_ID);
+gboolean    gimp_levels_stretch             (gint32 drawable_ID);
+gboolean    gimp_posterize                  (gint32 drawable_ID,
+                                             gint levels);
+gboolean    gimp_desaturate                 (gint32 drawable_ID);
+gboolean    gimp_equalize                   (gint32 drawable_ID,
+                                             gboolean mask_only);
+gboolean    gimp_invert                     (gint32 drawable_ID);
+gboolean    gimp_curves_spline              (gint32 drawable_ID,
                                              GimpHistogramChannel channel,
-                                             gint num_points,
-                                             const guint8 *control_pts);
-gboolean    gimp_curves_explicit            (gint32 drawable_ID,
+                                             gint num_points,
+                                             const guint8 *control_pts);
+gboolean    gimp_curves_explicit            (gint32 drawable_ID,
                                              GimpHistogramChannel channel,
-                                             gint num_bytes,
-                                             const guint8 *curve);
-gboolean    gimp_color_balance              (gint32 drawable_ID,
+                                             gint num_bytes,
+                                             const guint8 *curve);
+gboolean    gimp_color_balance              (gint32 drawable_ID,
                                              GimpTransferMode transfer_mode,
-                                             gboolean preserve_lum,
-                                             gdouble cyan_red,
-                                             gdouble magenta_green,
-                                             gdouble yellow_blue);
-gboolean    gimp_colorize                   (gint32 drawable_ID,
-                                             gdouble hue,
-                                             gdouble saturation,
-                                             gdouble lightness);
-gboolean    gimp_histogram                  (gint32 drawable_ID,
+                                             gboolean preserve_lum,
+                                             gdouble cyan_red,
+                                             gdouble magenta_green,
+                                             gdouble yellow_blue);
+gboolean    gimp_colorize                   (gint32 drawable_ID,
+                                             gdouble hue,
+                                             gdouble saturation,
+                                             gdouble lightness);
+gboolean    gimp_histogram                  (gint32 drawable_ID,
                                              GimpHistogramChannel channel,
-                                             gint start_range,
-                                             gint end_range,
-                                             gdouble *mean,
-                                             gdouble *std_dev,
-                                             gdouble *median,
-                                             gdouble *pixels,
-                                             gdouble *count,
-                                             gdouble *percentile);
-gboolean    gimp_hue_saturation             (gint32 drawable_ID,
+                                             gint start_range,
+                                             gint end_range,
+                                             gdouble *mean,
+                                             gdouble *std_dev,
+                                             gdouble *median,
+                                             gdouble *pixels,
+                                             gdouble *count,
+                                             gdouble *percentile);
+gboolean    gimp_hue_saturation             (gint32 drawable_ID,
                                              GimpHueRange hue_range,
-                                             gdouble hue_offset,
-                                             gdouble lightness,
-                                             gdouble saturation);
-gboolean    gimp_threshold                  (gint32 drawable_ID,
-                                             gint low_threshold,
-                                             gint high_threshold);
-

Description

+ gdouble hue_offset, + gdouble lightness, + gdouble saturation); +gboolean gimp_threshold (gint32 drawable_ID, + gint low_threshold, + gint high_threshold); +

Description

Functions for manipulating color, including curves and histograms. -

Details

gimp_brightness_contrast ()

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

+

Details

gimp_brightness_contrast ()

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

Modify brightness/contrast in the specified drawable.

This procedures allows the brightness and contrast of the specified drawable to be modified. Both 'brightness' and 'contrast' parameters are defined between -127 and 127.

-

drawable_ID : The drawable. -
brightness : Brightness adjustment. -
contrast : Contrast adjustment. -
Returns : TRUE on success. -

gimp_levels ()

gboolean    gimp_levels                     (gint32 drawable_ID,
+

drawable_ID : The drawable. +
brightness : Brightness adjustment. +
contrast : Contrast adjustment. +
Returns : TRUE on success. +

gimp_levels ()

gboolean    gimp_levels                     (gint32 drawable_ID,
                                              GimpHistogramChannel channel,
-                                             gint low_input,
-                                             gint high_input,
-                                             gdouble gamma,
-                                             gint low_output,
-                                             gint high_output);

+ gint low_input, + gint high_input, + gdouble gamma, + gint low_output, + gint high_output);

Modifies intensity levels in the specified drawable.

This tool allows intensity levels in the specified drawable to be @@ -242,28 +94,20 @@ high output level. This tool is only valid on RGB color and grayscale images. It will not operate on indexed drawables.

-

drawable_ID : The drawable. -
channel : The channel to modify. -
low_input : Intensity of lowest input. -
high_input : Intensity of highest input. -
gamma : Gamma correction factor. -
low_output : Intensity of lowest output. -
high_output : Intensity of highest output. -
Returns : TRUE on success. -

gimp_levels_auto ()

gboolean    gimp_levels_auto                (gint32 drawable_ID);

Warning

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

-This procedure is deprecated! Use gimp_levels_stretch() instead.

- -

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

gimp_levels_stretch ()

gboolean    gimp_levels_stretch             (gint32 drawable_ID);

+

drawable_ID : The drawable. +
channel : The channel to modify. +
low_input : Intensity of lowest input. +
high_input : Intensity of highest input. +
gamma : Gamma correction factor. +
low_output : Intensity of lowest output. +
high_output : Intensity of highest output. +
Returns : TRUE on success. +

gimp_levels_auto ()

gboolean    gimp_levels_auto                (gint32 drawable_ID);

Warning

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

+This procedure is deprecated! Use gimp_levels_stretch() instead.

+ +

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

gimp_levels_stretch ()

gboolean    gimp_levels_stretch             (gint32 drawable_ID);

Automatically modifies intensity levels in the specified drawable.

This procedure allows intensity levels in the specified drawable to @@ -272,44 +116,28 @@ procedure is only valid on RGB color and grayscale images. It will not operate on indexed drawables.

-

drawable_ID : The drawable. +

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

gimp_posterize ()

gboolean    gimp_posterize                  (gint32 drawable_ID,
-                                             gint levels);

+


gimp_posterize ()

gboolean    gimp_posterize                  (gint32 drawable_ID,
+                                             gint levels);

Posterize the specified drawable.

This procedures reduces the number of shades allows in each intensity channel to the specified 'levels' parameter.

-

drawable_ID : The drawable. -
levels : Levels of posterization. +

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

gimp_desaturate ()

gboolean    gimp_desaturate                 (gint32 drawable_ID);

+


gimp_desaturate ()

gboolean    gimp_desaturate                 (gint32 drawable_ID);

Desaturate the contents of the specified drawable.

This procedure desaturates the contents of the specified drawable. This procedure only works on drawables of type RGB color.

-

drawable_ID : The drawable. +

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

gimp_equalize ()

gboolean    gimp_equalize                   (gint32 drawable_ID,
-                                             gboolean mask_only);

+


gimp_equalize ()

gboolean    gimp_equalize                   (gint32 drawable_ID,
+                                             gboolean mask_only);

Equalize the contents of the specified drawable.

This procedure equalizes the contents of the specified drawable. @@ -321,14 +149,10 @@ selected area. If there is no selection, the entire image is adjusted based on the histogram for the entire image.

-

drawable_ID : The drawable. -
mask_only : Equalization option. +

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

gimp_invert ()

gboolean    gimp_invert                     (gint32 drawable_ID);

+


gimp_invert ()

gboolean    gimp_invert                     (gint32 drawable_ID);

Invert the contents of the specified drawable.

This procedure inverts the contents of the specified drawable. Each @@ -336,20 +160,12 @@ is given as inten' = (255 - inten). Indexed color drawables are not valid for this operation.

-

drawable_ID : The drawable. +

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

gimp_curves_spline ()

gboolean    gimp_curves_spline              (gint32 drawable_ID,
+

gimp_curves_spline ()

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

+ gint num_points, + const guint8 *control_pts);

Modifies the intensity curve(s) for specified drawable.

Modifies the intensity mapping for one channel in the specified @@ -360,23 +176,15 @@ the final intensity curve. Use the 'gimp_curves_explicit' function to explicitly modify intensity levels.

-

drawable_ID : The drawable. -
channel : The channel to modify. -
num_points : The number of values in the control point array. -
control_pts : The spline control points: { cp1.x, cp1.y, cp2.x, cp2.y, ... }. -
Returns : TRUE on success. -

gimp_curves_explicit ()

gboolean    gimp_curves_explicit            (gint32 drawable_ID,
+

drawable_ID : The drawable. +
channel : The channel to modify. +
num_points : The number of values in the control point array. +
control_pts : The spline control points: { cp1.x, cp1.y, cp2.x, cp2.y, ... }. +
Returns : TRUE on success. +

gimp_curves_explicit ()

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

+ gint num_bytes, + const guint8 *curve);

Modifies the intensity curve(s) for specified drawable.

Modifies the intensity mapping for one channel in the specified @@ -387,29 +195,17 @@ 'gimp_curves_spline' function to modify intensity levels with Catmull Rom splines.

-

drawable_ID : The drawable. -
channel : The channel to modify. -
num_bytes : The number of bytes in the new curve (always 256). -
curve : The explicit curve. -
Returns : TRUE on success. -

gimp_color_balance ()

gboolean    gimp_color_balance              (gint32 drawable_ID,
+

drawable_ID : The drawable. +
channel : The channel to modify. +
num_bytes : The number of bytes in the new curve (always 256). +
curve : The explicit curve. +
Returns : TRUE on success. +

gimp_color_balance ()

gboolean    gimp_color_balance              (gint32 drawable_ID,
                                              GimpTransferMode transfer_mode,
-                                             gboolean preserve_lum,
-                                             gdouble cyan_red,
-                                             gdouble magenta_green,
-                                             gdouble yellow_blue);

+ gboolean preserve_lum, + gdouble cyan_red, + gdouble magenta_green, + gdouble yellow_blue);

Modify the color balance of the specified drawable.

Modify the color balance of the specified drawable. There are three @@ -421,27 +217,17 @@ differently. The 'preserve_lum' parameter, if non-zero, ensures that the luminosity of each pixel remains fixed.

-

drawable_ID : The drawable. -
transfer_mode : Transfer mode. -
preserve_lum : Preserve luminosity values at each pixel. -
cyan_red : Cyan-Red color balance. -
magenta_green : Magenta-Green color balance. -
yellow_blue : Yellow-Blue color balance. -
Returns : TRUE on success. -

gimp_colorize ()

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

+

drawable_ID : The drawable. +
transfer_mode : Transfer mode. +
preserve_lum : Preserve luminosity values at each pixel. +
cyan_red : Cyan-Red color balance. +
magenta_green : Magenta-Green color balance. +
yellow_blue : Yellow-Blue color balance. +
Returns : TRUE on success. +

gimp_colorize ()

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

Render the drawable as a grayscale image seen through a colored glass.

@@ -449,43 +235,23 @@ tool is only valid on RGB color images. It will not operate on grayscale or indexed drawables.

-

drawable_ID : The drawable. -
hue : Hue in degrees. -
saturation : Saturation in percent. -
lightness : Lightness in percent. +

drawable_ID : The drawable. +
hue : Hue in degrees. +
saturation : Saturation in percent. +
lightness : Lightness in percent.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_histogram ()

gboolean    gimp_histogram                  (gint32 drawable_ID,
+


gimp_histogram ()

gboolean    gimp_histogram                  (gint32 drawable_ID,
                                              GimpHistogramChannel channel,
-                                             gint start_range,
-                                             gint end_range,
-                                             gdouble *mean,
-                                             gdouble *std_dev,
-                                             gdouble *median,
-                                             gdouble *pixels,
-                                             gdouble *count,
-                                             gdouble *percentile);

+ gint start_range, + gint end_range, + gdouble *mean, + gdouble *std_dev, + gdouble *median, + gdouble *pixels, + gdouble *count, + gdouble *percentile);

Returns information on the intensity histogram for the specified drawable.

@@ -503,55 +269,37 @@ outside an active selection mask will not be counted. Similarly, pixels with transparent alpha values will not be counted.

-

drawable_ID : The drawable. -
channel : The channel to modify. -
start_range : Start of the intensity measurement range. -
end_range : End of the intensity measurement range. -
mean : Mean intensity value. -
std_dev : Standard deviation of intensity values. -
median : Median intensity value. -
pixels : Alpha-weighted pixel count for entire image. -
count : Alpha-weighted pixel count for range. -
percentile : Percentile that range falls under. -
Returns : TRUE on success. -

gimp_hue_saturation ()

gboolean    gimp_hue_saturation             (gint32 drawable_ID,
+

drawable_ID : The drawable. +
channel : The channel to modify. +
start_range : Start of the intensity measurement range. +
end_range : End of the intensity measurement range. +
mean : Mean intensity value. +
std_dev : Standard deviation of intensity values. +
median : Median intensity value. +
pixels : Alpha-weighted pixel count for entire image. +
count : Alpha-weighted pixel count for range. +
percentile : Percentile that range falls under. +
Returns : TRUE on success. +

gimp_hue_saturation ()

gboolean    gimp_hue_saturation             (gint32 drawable_ID,
                                              GimpHueRange hue_range,
-                                             gdouble hue_offset,
-                                             gdouble lightness,
-                                             gdouble saturation);

+ gdouble hue_offset, + gdouble lightness, + gdouble saturation);

Modify hue, lightness, and saturation in the specified drawable.

This procedures allows the hue, lightness, and saturation in the specified drawable to be modified. The 'hue_range' parameter provides the capability to limit range of affected hues.

-

drawable_ID : The drawable. -
hue_range : Range of affected hues. -
hue_offset : Hue offset in degrees. -
lightness : lightness modification. -
saturation : saturation modification. -
Returns : TRUE on success. -

gimp_threshold ()

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

+

drawable_ID : The drawable. +
hue_range : Range of affected hues. +
hue_offset : Hue offset in degrees. +
lightness : lightness modification. +
saturation : saturation modification. +
Returns : TRUE on success. +

gimp_threshold ()

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

Threshold the specified drawable.

This procedures generates a threshold map of the specified drawable. @@ -559,8 +307,8 @@ 'high_threshold' are replaced with white, and all other pixels with black.

-

drawable_ID : The drawable. -
low_threshold : The low threshold value. -
high_threshold : The high threshold value. +

drawable_ID : The drawable. +
low_threshold : The low threshold value. +
high_threshold : The high threshold value.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpcontext.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpcontext.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpcontext.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpcontext.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,97 +1,41 @@ -gimpcontext

gimpcontext

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

Synopsis

+gimpcontext

gimpcontext

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

Synopsis

 
 
 
-gboolean    gimp_context_push               (void);
-gboolean    gimp_context_pop                (void);
-gboolean    gimp_context_get_foreground     (gimp_context_push               (void);
+gboolean    gimp_context_pop                (void);
+gboolean    gimp_context_get_foreground     (GimpRGB *foreground);
-gboolean    gimp_context_set_foreground     (const gimp_context_set_foreground     (const GimpRGB *foreground);
-gboolean    gimp_context_get_background     (gimp_context_get_background     (GimpRGB *background);
-gboolean    gimp_context_set_background     (const gimp_context_set_background     (const GimpRGB *background);
-gboolean    gimp_context_set_default_colors (void);
-gboolean    gimp_context_swap_colors        (void);
-gdouble     gimp_context_get_opacity        (void);
-gboolean    gimp_context_set_opacity        (gdouble opacity);
+gboolean    gimp_context_set_default_colors (void);
+gboolean    gimp_context_swap_colors        (void);
+gdouble     gimp_context_get_opacity        (void);
+gboolean    gimp_context_set_opacity        (gdouble opacity);
 GimpLayerModeEffects gimp_context_get_paint_mode
                                             (void);
-gboolean    gimp_context_set_paint_mode     (GimpLayerModeEffects paint_mode);
-gchar*      gimp_context_get_brush          (void);
-gboolean    gimp_context_set_brush          (const gchar *name);
-gchar*      gimp_context_get_pattern        (void);
-gboolean    gimp_context_set_pattern        (const gchar *name);
-gchar*      gimp_context_get_gradient       (void);
-gboolean    gimp_context_set_gradient       (const gchar *name);
-gchar*      gimp_context_get_palette        (void);
-gboolean    gimp_context_set_palette        (const gchar *name);
-gchar*      gimp_context_get_font           (void);
-gboolean    gimp_context_set_font           (const gchar *name);
-

Description

+gboolean gimp_context_set_paint_mode (GimpLayerModeEffects paint_mode); +gchar* gimp_context_get_brush (void); +gboolean gimp_context_set_brush (const gchar *name); +gchar* gimp_context_get_pattern (void); +gboolean gimp_context_set_pattern (const gchar *name); +gchar* gimp_context_get_gradient (void); +gboolean gimp_context_set_gradient (const gchar *name); +gchar* gimp_context_get_palette (void); +gboolean gimp_context_set_palette (const gchar *name); +gchar* gimp_context_get_font (void); +gboolean gimp_context_set_font (const gchar *name); +

Description

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

Details

gimp_context_push ()

gboolean    gimp_context_push               (void);

+

Details

gimp_context_push ()

gboolean    gimp_context_push               (void);

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

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

Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_pop ()

gboolean    gimp_context_pop                (void);

+


gimp_context_pop ()

gboolean    gimp_context_pop                (void);

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

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

Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_foreground ()

gboolean    gimp_context_get_foreground     (

gimp_context_get_foreground ()

gboolean    gimp_context_get_foreground     (GimpRGB *foreground);

Get the current GIMP foreground color. @@ -123,13 +63,11 @@ foreground color is used in a variety of tools such as paint tools, blending, and bucket fill.

-

foreground : The foreground color. +

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

Since GIMP 2.2 -


gimp_context_set_foreground ()

gboolean    gimp_context_set_foreground     (const 

gimp_context_set_foreground ()

gboolean    gimp_context_set_foreground     (const GimpRGB *foreground);

Set the current GIMP foreground color. @@ -138,13 +76,11 @@ set, operations which use foreground such as paint tools, blending, and bucket fill will use the new value.

-

foreground : The foreground color. +

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

Since GIMP 2.2 -


gimp_context_get_background ()

gboolean    gimp_context_get_background     (

gimp_context_get_background ()

gboolean    gimp_context_get_background     (GimpRGB *background);

Get the current GIMP background color. @@ -153,13 +89,11 @@ background color is used in a variety of tools such as blending, erasing (with non-alpha images), and image filling.

-

background : The background color. +

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

Since GIMP 2.2 -


gimp_context_set_background ()

gboolean    gimp_context_set_background     (const 

gimp_context_set_background ()

gboolean    gimp_context_set_background     (const GimpRGB *background);

Set the current GIMP background color. @@ -169,13 +103,11 @@ images, clearing, and erasing (in non-alpha images) will use the new value.

-

background : The background color. +

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

Since GIMP 2.2 -


gimp_context_set_default_colors ()

gboolean    gimp_context_set_default_colors (void);

+


gimp_context_set_default_colors ()

gboolean    gimp_context_set_default_colors (void);

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

@@ -185,9 +117,7 @@

Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_swap_colors ()

gboolean    gimp_context_swap_colors        (void);

+


gimp_context_swap_colors ()

gboolean    gimp_context_swap_colors        (void);

Swap the current GIMP foreground and background colors.

This procedure swaps the current GIMP foreground and background @@ -197,9 +127,7 @@

Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_opacity ()

gdouble     gimp_context_get_opacity        (void);

+


gimp_context_get_opacity ()

gdouble     gimp_context_get_opacity        (void);

Get the opacity.

This procedure returns the opacity setting. The return value is a @@ -208,21 +136,17 @@

Returns : The opacity.

Since GIMP 2.2 -


gimp_context_set_opacity ()

gboolean    gimp_context_set_opacity        (gdouble opacity);

+


gimp_context_set_opacity ()

gboolean    gimp_context_set_opacity        (gdouble opacity);

Set the opacity.

This procedure modifies the opacity setting. The value should be a floating point number between 0 and 100.

-

opacity : The opacity. +

opacity : The opacity.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_paint_mode ()

GimpLayerModeEffects gimp_context_get_paint_mode
+


gimp_context_get_paint_mode ()

GimpLayerModeEffects gimp_context_get_paint_mode
                                             (void);

Get the paint mode.

@@ -233,20 +157,16 @@

Returns : The paint mode.

Since GIMP 2.2 -


gimp_context_set_paint_mode ()

gboolean    gimp_context_set_paint_mode     (GimpLayerModeEffects paint_mode);

+


gimp_context_set_paint_mode ()

gboolean    gimp_context_set_paint_mode     (GimpLayerModeEffects paint_mode);

Set the paint mode.

This procedure modifies the paint_mode setting.

-

paint_mode : The paint mode. +

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

Since GIMP 2.2 -


gimp_context_get_brush ()

gchar*      gimp_context_get_brush          (void);

+


gimp_context_get_brush ()

gchar*      gimp_context_get_brush          (void);

Retrieve the currently active brush.

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

Returns : The name of the active brush.

Since GIMP 2.2 -


gimp_context_set_brush ()

gboolean    gimp_context_set_brush          (const gchar *name);

+


gimp_context_set_brush ()

gboolean    gimp_context_set_brush          (const gchar *name);

Set the specified brush as the active brush.

This procedure allows the active brush to be set by specifying its @@ -269,13 +185,11 @@ this procedure will return an error. Otherwise, the specified brush becomes active and will be used in all subsequent paint operations.

-

name : The name o the brush. +

name : The name o the brush.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_pattern ()

gchar*      gimp_context_get_pattern        (void);

+


gimp_context_get_pattern ()

gchar*      gimp_context_get_pattern        (void);

Retrieve the currently active pattern.

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

Returns : The name of the active pattern.

Since GIMP 2.2 -


gimp_context_set_pattern ()

gboolean    gimp_context_set_pattern        (const gchar *name);

+


gimp_context_set_pattern ()

gboolean    gimp_context_set_pattern        (const gchar *name);

Set the specified pattern as the active pattern.

This procedure allows the active pattern to be set by specifying its @@ -299,13 +209,11 @@ pattern becomes active and will be used in all subsequent paint operations.

-

name : The name of the pattern. +

name : The name of the pattern.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_gradient ()

gchar*      gimp_context_get_gradient       (void);

+


gimp_context_get_gradient ()

gchar*      gimp_context_get_gradient       (void);

Retrieve the currently active gradient.

This procedure returns the name of the currently active gradient.

@@ -313,11 +221,7 @@

Returns : The name of the active gradient.

Since GIMP 2.2 -


gimp_context_set_gradient ()

gboolean    gimp_context_set_gradient       (const gchar *name);

+


gimp_context_set_gradient ()

gboolean    gimp_context_set_gradient       (const gchar *name);

Sets the specified gradient as the active gradient.

This procedure lets you set the specified gradient as the active or @@ -327,13 +231,11 @@ will become active and will be used for subsequent custom gradient operations.

-

name : The name of the gradient. +

name : The name of the gradient.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_palette ()

gchar*      gimp_context_get_palette        (void);

+


gimp_context_get_palette ()

gchar*      gimp_context_get_palette        (void);

Retrieve the currently active palette.

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

@@ -341,11 +243,7 @@

Returns : The name of the active palette.

Since GIMP 2.2 -


gimp_context_set_palette ()

gboolean    gimp_context_set_palette        (const gchar *name);

+


gimp_context_set_palette ()

gboolean    gimp_context_set_palette        (const gchar *name);

Set the specified palette as the active palette.

This procedure allows the active palette to be set by specifying its @@ -355,13 +253,11 @@ palette becomes active and will be used in all subsequent palette operations.

-

name : The name of the palette. +

name : The name of the palette.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_context_get_font ()

gchar*      gimp_context_get_font           (void);

+


gimp_context_get_font ()

gchar*      gimp_context_get_font           (void);

Retrieve the currently active font.

This procedure returns the name of the currently active font.

@@ -369,11 +265,7 @@

Returns : The name of the active font.

Since GIMP 2.2 -


gimp_context_set_font ()

gboolean    gimp_context_set_font           (const gchar *name);

+


gimp_context_set_font ()

gboolean    gimp_context_set_font           (const gchar *name);

Set the specified font as the active font.

This procedure allows the active font to be set by specifying its @@ -382,7 +274,7 @@ procedure will return an error. Otherwise, the specified font becomes active and will be used in all subsequent font operations.

-

name : The name of the font. +

name : The name of the font.
Returns : TRUE on success.

Since GIMP 2.2 diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpconvert.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpconvert.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpconvert.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpconvert.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,44 +1,20 @@ -gimpconvert

gimpconvert

gimpconvert — Conversions between RGB, indexed, and grayscale modes.

Synopsis

+gimpconvert

gimpconvert

gimpconvert — Conversions between RGB, indexed, and grayscale modes.

Synopsis

 
 
 
-gboolean    gimp_image_convert_rgb          (gint32 image_ID);
-gboolean    gimp_image_convert_grayscale    (gint32 image_ID);
-gboolean    gimp_image_convert_indexed      (gint32 image_ID,
+gboolean    gimp_image_convert_rgb          (gint32 image_ID);
+gboolean    gimp_image_convert_grayscale    (gint32 image_ID);
+gboolean    gimp_image_convert_indexed      (gint32 image_ID,
                                              GimpConvertDitherType dither_type,
                                              GimpConvertPaletteType palette_type,
-                                             gint num_cols,
-                                             gboolean alpha_dither,
-                                             gboolean remove_unused,
-                                             const gchar *palette);
-

Description

+ gint num_cols, + gboolean alpha_dither, + gboolean remove_unused, + const gchar *palette); +

Description

Conversions between RGB, indexed, and grayscale modes. -

Details

gimp_image_convert_rgb ()

gboolean    gimp_image_convert_rgb          (gint32 image_ID);

+

Details

gimp_image_convert_rgb ()

gboolean    gimp_image_convert_rgb          (gint32 image_ID);

Convert specified image to RGB color

This procedure converts the specified image to RGB color. This @@ -46,40 +22,24 @@ image content is lost in this process aside from the colormap for an indexed image.

-

image_ID : The image. +

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

gimp_image_convert_grayscale ()

gboolean    gimp_image_convert_grayscale    (gint32 image_ID);

+


gimp_image_convert_grayscale ()

gboolean    gimp_image_convert_grayscale    (gint32 image_ID);

Convert specified image to grayscale (256 intensity levels)

This procedure converts the specified image to grayscale with 8 bits per pixel (256 intensity levels). This process requires an image of type GIMP_RGB or GIMP_INDEXED.

-

image_ID : The image. +

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

gimp_image_convert_indexed ()

gboolean    gimp_image_convert_indexed      (gint32 image_ID,
+

gimp_image_convert_indexed ()

gboolean    gimp_image_convert_indexed      (gint32 image_ID,
                                              GimpConvertDitherType dither_type,
                                              GimpConvertPaletteType palette_type,
-                                             gint num_cols,
-                                             gboolean alpha_dither,
-                                             gboolean remove_unused,
-                                             const gchar *palette);

+ gint num_cols, + gboolean alpha_dither, + gboolean remove_unused, + const gchar *palette);

Convert specified image to and Indexed image

This procedure converts the specified image to 'indexed' color. This @@ -96,12 +56,12 @@ diffusion with reduced bleeding, '3' means dithering based on pixel location ('Fixed' dithering).

-

image_ID : The image. -
dither_type : The dither type to use. -
palette_type : The type of palette to use. -
num_cols : The number of colors to quantize to, ignored unless (palette_type == GIMP_MAKE_PALETTE). -
alpha_dither : Dither transparency to fake partial opacity. -
remove_unused : Remove unused or duplicate colour entries from final palette, ignored if (palette_type == GIMP_MAKE_PALETTE). -
palette : The name of the custom palette to use, ignored unless (palette_type == GIMP_CUSTOM_PALETTE). +

image_ID : The image. +
dither_type : The dither type to use. +
palette_type : The type of palette to use. +
num_cols : The number of colors to quantize to, ignored unless (palette_type == GIMP_MAKE_PALETTE). +
alpha_dither : Dither transparency to fake partial opacity. +
remove_unused : Remove unused or duplicate colour entries from final palette, ignored if (palette_type == GIMP_MAKE_PALETTE). +
palette : The name of the custom palette to use, ignored unless (palette_type == GIMP_CUSTOM_PALETTE).
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdisplay.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdisplay.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdisplay.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdisplay.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,36 +1,16 @@ -gimpdisplay

gimpdisplay

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

Synopsis

+gimpdisplay

gimpdisplay

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

Synopsis

 
 
 
-gint32      gimp_display_new                (gint32 image_ID);
-gboolean    gimp_display_delete             (gint32 display_ID);
-gboolean    gimp_displays_flush             (void);
-gboolean    gimp_displays_reconnect         (gint32 old_image_ID,
-                                             gint32 new_image_ID);
-

Description

+gint32 gimp_display_new (gint32 image_ID); +gboolean gimp_display_delete (gint32 display_ID); +gboolean gimp_displays_flush (void); +gboolean gimp_displays_reconnect (gint32 old_image_ID, + gint32 new_image_ID); +

Description

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

Details

gimp_display_new ()

gint32      gimp_display_new                (gint32 image_ID);

+

Details

gimp_display_new ()

gint32      gimp_display_new                (gint32 image_ID);

Create a new display for the specified image.

Creates a new display for the specified image. If the image already @@ -39,24 +19,18 @@ can be subsequently destroyed with a call to 'gimp-display-delete'. This procedure only makes sense for use with the GIMP UI.

-

image_ID : The image. +

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

gimp_display_delete ()

gboolean    gimp_display_delete             (gint32 display_ID);

+


gimp_display_delete ()

gboolean    gimp_display_delete             (gint32 display_ID);

Delete the specified display.

This procedure removes the specified display. If this is the last remaining display for the underlying image, then the image is deleted also.

-

display_ID : The display to delete. +

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

gimp_displays_flush ()

gboolean    gimp_displays_flush             (void);

+


gimp_displays_flush ()

gboolean    gimp_displays_flush             (void);

Flush all internal changes to the user interface

This procedure takes no arguments and returns nothing except a @@ -65,14 +39,8 @@ appropriate.

Returns : TRUE on success. -

gimp_displays_reconnect ()

gboolean    gimp_displays_reconnect         (gint32 old_image_ID,
-                                             gint32 new_image_ID);

+


gimp_displays_reconnect ()

gboolean    gimp_displays_reconnect         (gint32 old_image_ID,
+                                             gint32 new_image_ID);

Reconnect displays from one image to another image.

This procedure connects all displays of the old_image to the @@ -80,7 +48,7 @@ a display the reconnect is not performed and the procedure returns without success. You should rarely need to use this function.

-

old_image_ID : The old image (must have at least one display). -
new_image_ID : The new image (must not have a display). +

old_image_ID : The old image (must have at least one display). +
new_image_ID : The new image (must not have a display).
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,118 +1,90 @@ -gimpdrawablecombobox

gimpdrawablecombobox

gimpdrawablecombobox — A widget providing a popup menu of drawables.

Synopsis

+gimpdrawablecombobox

gimpdrawablecombobox

gimpdrawablecombobox — A widget providing a popup menu of drawables.

Synopsis

 
 
 
-gboolean    (*GimpDrawableConstraintFunc)   (gint32 image_id,
-                                             gint32 drawable_id,
-                                             gpointer data);
+gboolean    (*GimpDrawableConstraintFunc)   (gint32 image_id,
+                                             gint32 drawable_id,
+                                             gpointer data);
 GtkWidget*  gimp_drawable_combo_box_new     (GimpDrawableConstraintFunc constraint,
-                                             gpointer data);
+                                             gpointer data);
 GtkWidget*  gimp_channel_combo_box_new      (GimpDrawableConstraintFunc constraint,
-                                             gpointer data);
+                                             gpointer data);
 GtkWidget*  gimp_layer_combo_box_new        (GimpDrawableConstraintFunc constraint,
-                                             gpointer data);
-

Description

+ gpointer data); +

Description

A widget providing a popup menu of drawables. -

Details

GimpDrawableConstraintFunc ()

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

- -

image_id : -
drawable_id : -
data : +

Details

GimpDrawableConstraintFunc ()

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

+ +

image_id : +
drawable_id : +
data :
Returns : -

gimp_drawable_combo_box_new ()


gimp_drawable_combo_box_new ()

GtkWidget*  gimp_drawable_combo_box_new     (GimpDrawableConstraintFunc constraint,
-                                             gpointer data);

+ gpointer data);

Creates a new GimpIntComboBox filled with all currently opened -drawables. If a constraint function is specified, it is called for -each drawable and only if the function returns TRUE, the drawable +drawables. If a constraint function is specified, it is called for +each drawable and only if the function returns TRUE, the drawable is added to the combobox.

You should use gimp_int_combo_box_connect() to initialize and connect +>gimp_int_combo_box_connect() to initialize and connect the combo. Use gimp_int_combo_box_set_active() to get the active +>gimp_int_combo_box_set_active() to get the active drawable ID and gimp_int_combo_box_get_active() to retrieve the ID +>gimp_int_combo_box_get_active() to retrieve the ID of the selected drawable.

-

constraint : a GimpDrawableConstraintFunc or NULL -
data : a pointer that is passed to constraint +

constraint : a GimpDrawableConstraintFunc or NULL +
data : a pointer that is passed to constraint
Returns : a new GimpIntComboBox.

Since GIMP 2.2 -


gimp_channel_combo_box_new ()


gimp_channel_combo_box_new ()

GtkWidget*  gimp_channel_combo_box_new      (GimpDrawableConstraintFunc constraint,
-                                             gpointer data);

+ gpointer data);

Creates a new GimpIntComboBox filled with all currently opened -channels. See gimp_drawable_combo_box() for more info.

+channels. See gimp_drawable_combo_box() for more info.

-

constraint : a GimpDrawableConstraintFunc or NULL -
data : a pointer that is passed to constraint +

constraint : a GimpDrawableConstraintFunc or NULL +
data : a pointer that is passed to constraint
Returns : a new GimpIntComboBox.

Since GIMP 2.2 -


gimp_layer_combo_box_new ()


gimp_layer_combo_box_new ()

GtkWidget*  gimp_layer_combo_box_new        (GimpDrawableConstraintFunc constraint,
-                                             gpointer data);

+ gpointer data);

Creates a new GimpIntComboBox filled with all currently opened -layers. See gimp_drawable_combo_box() for more info.

+layers. See gimp_drawable_combo_box() for more info.

-

constraint : a GimpDrawableConstraintFunc or NULL -
data : a pointer that is passed to constraint +

constraint : a GimpDrawableConstraintFunc or NULL +
data : a pointer that is passed to constraint
Returns : a new GimpIntComboBox. diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdrawable.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdrawable.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdrawable.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdrawable.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,391 +1,129 @@ -gimpdrawable

gimpdrawable

gimpdrawable — Functions to manipulate drawables.

Synopsis

+gimpdrawable

gimpdrawable

gimpdrawable — Functions to manipulate drawables.

Synopsis

 
 
 
             GimpDrawable;
-GimpDrawable* gimp_drawable_get             (gint32 drawable_ID);
+GimpDrawable* gimp_drawable_get             (gint32 drawable_ID);
 void        gimp_drawable_detach            (GimpDrawable *drawable);
 void        gimp_drawable_flush             (GimpDrawable *drawable);
-gboolean    gimp_drawable_delete            (gint32 drawable_ID);
-gchar*      gimp_drawable_get_name          (gint32 drawable_ID);
-gboolean    gimp_drawable_set_name          (gint32 drawable_ID,
-                                             const gchar *name);
-gboolean    gimp_drawable_get_visible       (gint32 drawable_ID);
-gboolean    gimp_drawable_set_visible       (gint32 drawable_ID,
-                                             gboolean visible);
-gboolean    gimp_drawable_get_linked        (gint32 drawable_ID);
-gboolean    gimp_drawable_set_linked        (gint32 drawable_ID,
-                                             gboolean linked);
-gint        gimp_drawable_get_tattoo        (gint32 drawable_ID);
-gboolean    gimp_drawable_set_tattoo        (gint32 drawable_ID,
-                                             gint tattoo);
-guint8*     gimp_drawable_get_pixel         (gint32 drawable_ID,
-                                             gint x_coord,
-                                             gint y_coord,
-                                             gint *num_channels);
-gboolean    gimp_drawable_set_pixel         (gint32 drawable_ID,
-                                             gint x_coord,
-                                             gint y_coord,
-                                             gint num_channels,
-                                             const guint8 *pixel);
+gboolean    gimp_drawable_delete            (gint32 drawable_ID);
+gchar*      gimp_drawable_get_name          (gint32 drawable_ID);
+gboolean    gimp_drawable_set_name          (gint32 drawable_ID,
+                                             const gchar *name);
+gboolean    gimp_drawable_get_visible       (gint32 drawable_ID);
+gboolean    gimp_drawable_set_visible       (gint32 drawable_ID,
+                                             gboolean visible);
+gboolean    gimp_drawable_get_linked        (gint32 drawable_ID);
+gboolean    gimp_drawable_set_linked        (gint32 drawable_ID,
+                                             gboolean linked);
+gint        gimp_drawable_get_tattoo        (gint32 drawable_ID);
+gboolean    gimp_drawable_set_tattoo        (gint32 drawable_ID,
+                                             gint tattoo);
+guint8*     gimp_drawable_get_pixel         (gint32 drawable_ID,
+                                             gint x_coord,
+                                             gint y_coord,
+                                             gint *num_channels);
+gboolean    gimp_drawable_set_pixel         (gint32 drawable_ID,
+                                             gint x_coord,
+                                             gint y_coord,
+                                             gint num_channels,
+                                             const guint8 *pixel);
 GimpTile*   gimp_drawable_get_tile          (GimpDrawable *drawable,
-                                             gboolean shadow,
-                                             gint row,
-                                             gint col);
+                                             gboolean shadow,
+                                             gint row,
+                                             gint col);
 GimpTile*   gimp_drawable_get_tile2         (GimpDrawable *drawable,
-                                             gboolean shadow,
-                                             gint x,
-                                             gint y);
-guchar*     gimp_drawable_get_thumbnail_data
-                                            (gint32 drawable_ID,
-                                             gint *width,
-                                             gint *height,
-                                             gint *bpp);
-guchar*     gimp_drawable_get_sub_thumbnail_data
-                                            (gint32 drawable_ID,
-                                             gint src_x,
-                                             gint src_y,
-                                             gint src_width,
-                                             gint src_height,
-                                             gint *dest_width,
-                                             gint *dest_height,
-                                             gint *bpp);
-void        gimp_drawable_get_color_uchar   (gint32 drawable_ID,
+                                             gboolean shadow,
+                                             gint x,
+                                             gint y);
+guchar*     gimp_drawable_get_thumbnail_data
+                                            (gint32 drawable_ID,
+                                             gint *width,
+                                             gint *height,
+                                             gint *bpp);
+guchar*     gimp_drawable_get_sub_thumbnail_data
+                                            (gint32 drawable_ID,
+                                             gint src_x,
+                                             gint src_y,
+                                             gint src_width,
+                                             gint src_height,
+                                             gint *dest_width,
+                                             gint *dest_height,
+                                             gint *bpp);
+void        gimp_drawable_get_color_uchar   (gint32 drawable_ID,
                                              const GimpRGB *color,
-                                             guchar *color_uchar);
-gboolean    gimp_drawable_merge_shadow      (gint32 drawable_ID,
-                                             gboolean undo);
-gboolean    gimp_drawable_fill              (gint32 drawable_ID,
+                                             guchar *color_uchar);
+gboolean    gimp_drawable_merge_shadow      (gint32 drawable_ID,
+                                             gboolean undo);
+gboolean    gimp_drawable_fill              (gint32 drawable_ID,
                                              GimpFillType fill_type);
-gboolean    gimp_drawable_update            (gint32 drawable_ID,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height);
-gboolean    gimp_drawable_mask_bounds       (gint32 drawable_ID,
-                                             gint *x1,
-                                             gint *y1,
-                                             gint *x2,
-                                             gint *y2);
-gboolean    gimp_drawable_mask_intersect    (gint32 drawable_ID,
-                                             gint *x,
-                                             gint *y,
-                                             gint *width,
-                                             gint *height);
-gint32      gimp_drawable_get_image         (gint32 drawable_ID);
-gboolean    gimp_drawable_set_image         (gint32 drawable_ID,
-                                             gint32 image_ID);
-gboolean    gimp_drawable_has_alpha         (gint32 drawable_ID);
+gboolean    gimp_drawable_update            (gint32 drawable_ID,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height);
+gboolean    gimp_drawable_mask_bounds       (gint32 drawable_ID,
+                                             gint *x1,
+                                             gint *y1,
+                                             gint *x2,
+                                             gint *y2);
+gboolean    gimp_drawable_mask_intersect    (gint32 drawable_ID,
+                                             gint *x,
+                                             gint *y,
+                                             gint *width,
+                                             gint *height);
+gint32      gimp_drawable_get_image         (gint32 drawable_ID);
+gboolean    gimp_drawable_set_image         (gint32 drawable_ID,
+                                             gint32 image_ID);
+gboolean    gimp_drawable_has_alpha         (gint32 drawable_ID);
 GimpImageType gimp_drawable_type_with_alpha (gint32 drawable_ID);
+>GimpImageType gimp_drawable_type_with_alpha (gint32 drawable_ID);
 GimpImageType gimp_drawable_type            (gint32 drawable_ID);
-gboolean    gimp_drawable_is_rgb            (gint32 drawable_ID);
-gboolean    gimp_drawable_is_gray           (gint32 drawable_ID);
-gboolean    gimp_drawable_is_indexed        (gint32 drawable_ID);
-gint        gimp_drawable_bpp               (gint32 drawable_ID);
-gint        gimp_drawable_width             (gint32 drawable_ID);
-gint        gimp_drawable_height            (gint32 drawable_ID);
-gboolean    gimp_drawable_offsets           (gint32 drawable_ID,
-                                             gint *offset_x,
-                                             gint *offset_y);
-gboolean    gimp_drawable_is_layer          (gint32 drawable_ID);
-gboolean    gimp_drawable_is_layer_mask     (gint32 drawable_ID);
-gboolean    gimp_drawable_is_channel        (gint32 drawable_ID);
-gboolean    gimp_drawable_offset            (gint32 drawable_ID,
-                                             gboolean wrap_around,
+>GimpImageType gimp_drawable_type            (gint32 drawable_ID);
+gboolean    gimp_drawable_is_rgb            (gint32 drawable_ID);
+gboolean    gimp_drawable_is_gray           (gint32 drawable_ID);
+gboolean    gimp_drawable_is_indexed        (gint32 drawable_ID);
+gint        gimp_drawable_bpp               (gint32 drawable_ID);
+gint        gimp_drawable_width             (gint32 drawable_ID);
+gint        gimp_drawable_height            (gint32 drawable_ID);
+gboolean    gimp_drawable_offsets           (gint32 drawable_ID,
+                                             gint *offset_x,
+                                             gint *offset_y);
+gboolean    gimp_drawable_is_layer          (gint32 drawable_ID);
+gboolean    gimp_drawable_is_layer_mask     (gint32 drawable_ID);
+gboolean    gimp_drawable_is_channel        (gint32 drawable_ID);
+gboolean    gimp_drawable_offset            (gint32 drawable_ID,
+                                             gboolean wrap_around,
                                              GimpOffsetType fill_type,
-                                             gint offset_x,
-                                             gint offset_y);
+                                             gint offset_x,
+                                             gint offset_y);
 GimpParasite* gimp_drawable_parasite_find   (gint32 drawable_ID,
-                                             const gchar *name);
-gboolean    gimp_drawable_parasite_list     (gint32 drawable_ID,
-                                             gint *num_parasites,
-                                             gchar ***parasites);
-gboolean    gimp_drawable_parasite_attach   (gint32 drawable_ID,
+>GimpParasite* gimp_drawable_parasite_find   (gint32 drawable_ID,
+                                             const gchar *name);
+gboolean    gimp_drawable_parasite_list     (gint32 drawable_ID,
+                                             gint *num_parasites,
+                                             gchar ***parasites);
+gboolean    gimp_drawable_parasite_attach   (gint32 drawable_ID,
                                              GimpParasite *parasite);
-gboolean    gimp_drawable_parasite_detach   (gint32 drawable_ID,
-                                             const gchar *name);
+gboolean    gimp_drawable_parasite_detach   (gint32 drawable_ID,
+                                             const gchar *name);
 void        gimp_drawable_attach_new_parasite
-                                            (gint32 drawable_ID,
-                                             const gchar *name,
-                                             gint flags,
-                                             gint size,
-                                             gconstpointer data);
-

Description

+ (gint32 drawable_ID, + const gchar *name, + gint flags, + gint size, + gconstpointer data); +

Description

Functions to manipulate drawables. -

Details

GimpDrawable

typedef struct {
+

Details

GimpDrawable

typedef struct {
   gint32    drawable_id;   /* drawable ID */
   guint     width;         /* width of drawble */
   guint     height;        /* height of drawble */
@@ -397,11 +135,9 @@
 } GimpDrawable;
 

-


gimp_drawable_get ()

GimpDrawable* gimp_drawable_get             (gint32 drawable_ID);

+


gimp_drawable_get ()

GimpDrawable* gimp_drawable_get             (gint32 drawable_ID);

This function creates a GimpDrawable structure for the core -drawable identified by drawable_ID. The returned structure +drawable identified by drawable_ID. The returned structure contains some basic information about the drawable and can also hold tile data for transfer to and from the core.

@@ -411,33 +147,29 @@ lists each time, which will usually produce undesired results.

When a plug-in has finished working with a drawable, before exiting -it should call gimp_drawable_detach() to make sure that all tile data is +it should call gimp_drawable_detach() to make sure that all tile data is transferred back to the core.

-

drawable_ID : the ID of the drawable +

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

gimp_drawable_detach ()

void        gimp_drawable_detach            (GimpDrawable *drawable);

+


gimp_drawable_detach ()

void        gimp_drawable_detach            (GimpDrawable *drawable);

This function is called when a plug-in is finished working with a drawable. It forces all tile data held in the tile list of the GimpDrawable to be transferred to the core, and then frees all associated memory. You must not access the -drawable after having called gimp_drawable_detach().

+drawable after having called gimp_drawable_detach().

-

drawable : The GimpDrawable to detach from the core -

gimp_drawable_flush ()

void        gimp_drawable_flush             (GimpDrawable *drawable);

-This function causes all tile data in the tile list of drawable to be +

drawable : The GimpDrawable to detach from the core +

gimp_drawable_flush ()

void        gimp_drawable_flush             (GimpDrawable *drawable);

+This function causes all tile data in the tile list of drawable to be transferred to the core. It is usually called in situations where a plug-in acts on a drawable, and then needs to read the results of its actions. Data transferred back from the core will not generally be valid -unless gimp_drawable_flush() has been called beforehand.

+unless gimp_drawable_flush() has been called beforehand.

-

drawable : The GimpDrawable whose tile data is to be transferred +

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

gimp_drawable_delete ()

gboolean    gimp_drawable_delete            (gint32 drawable_ID);

+


gimp_drawable_delete ()

gboolean    gimp_drawable_delete            (gint32 drawable_ID);

Delete a drawable.

This procedure deletes the specified drawable. This must not be done @@ -446,91 +178,57 @@ this procedure is useful is if you want to get rid of a drawable which has not yet been added to an image.

-

drawable_ID : The drawable to delete. +

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

gimp_drawable_get_name ()

gchar*      gimp_drawable_get_name          (gint32 drawable_ID);

+


gimp_drawable_get_name ()

gchar*      gimp_drawable_get_name          (gint32 drawable_ID);

Get the name of the specified drawable.

This procedure returns the specified drawable's name.

-

drawable_ID : The drawable. +

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

gimp_drawable_set_name ()

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

+


gimp_drawable_set_name ()

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

Set the name of the specified drawable.

This procedure sets the specified drawable's name.

-

drawable_ID : The drawable. -
name : The new drawable name. +

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

gimp_drawable_get_visible ()

gboolean    gimp_drawable_get_visible       (gint32 drawable_ID);

+


gimp_drawable_get_visible ()

gboolean    gimp_drawable_get_visible       (gint32 drawable_ID);

Get the visibility of the specified drawable.

This procedure returns the specified drawable's visibility.

-

drawable_ID : The drawable. +

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

gimp_drawable_set_visible ()

gboolean    gimp_drawable_set_visible       (gint32 drawable_ID,
-                                             gboolean visible);

+


gimp_drawable_set_visible ()

gboolean    gimp_drawable_set_visible       (gint32 drawable_ID,
+                                             gboolean visible);

Set the visibility of the specified drawable.

This procedure sets the specified drawable's visibility.

-

drawable_ID : The drawable. -
visible : The new drawable visibility. +

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

gimp_drawable_get_linked ()

gboolean    gimp_drawable_get_linked        (gint32 drawable_ID);

+


gimp_drawable_get_linked ()

gboolean    gimp_drawable_get_linked        (gint32 drawable_ID);

Get the linked state of the specified drawable.

This procedure returns the specified drawable's linked state.

-

drawable_ID : The drawable. +

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

gimp_drawable_set_linked ()

gboolean    gimp_drawable_set_linked        (gint32 drawable_ID,
-                                             gboolean linked);

+


gimp_drawable_set_linked ()

gboolean    gimp_drawable_set_linked        (gint32 drawable_ID,
+                                             gboolean linked);

Set the linked state of the specified drawable.

This procedure sets the specified drawable's linked state.

-

drawable_ID : The drawable. -
linked : The new drawable linked state. +

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

gimp_drawable_get_tattoo ()

gint        gimp_drawable_get_tattoo        (gint32 drawable_ID);

+


gimp_drawable_get_tattoo ()

gint        gimp_drawable_get_tattoo        (gint32 drawable_ID);

Get the tattoo of the specified drawable.

This procedure returns the specified drawable's tattoo. A tattoo is @@ -538,16 +236,10 @@ used to uniquely identify a drawable within an image even between sessions

-

drawable_ID : The drawable. +

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

gimp_drawable_set_tattoo ()

gboolean    gimp_drawable_set_tattoo        (gint32 drawable_ID,
-                                             gint tattoo);

+


gimp_drawable_set_tattoo ()

gboolean    gimp_drawable_set_tattoo        (gint32 drawable_ID,
+                                             gint tattoo);

Set the tattoo of the specified drawable.

This procedure sets the specified drawable's tattoo. A tattoo is a @@ -555,51 +247,29 @@ used to uniquely identify a drawable within an image even between sessions

-

drawable_ID : The drawable. -
tattoo : The new drawable tattoo. +

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

gimp_drawable_get_pixel ()

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

+


gimp_drawable_get_pixel ()

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

Gets the value of the pixel at the specified coordinates.

This procedure gets the pixel value at the specified coordinates. The 'num_channels' argument must always be equal to the bytes-per-pixel value for the specified drawable.

-

drawable_ID : The drawable. -
x_coord : The x coordinate. -
y_coord : The y coordinate. -
num_channels : The number of channels for the pixel. +

drawable_ID : The drawable. +
x_coord : The x coordinate. +
y_coord : The y coordinate. +
num_channels : The number of channels for the pixel.
Returns : The pixel value. -

gimp_drawable_set_pixel ()

gboolean    gimp_drawable_set_pixel         (gint32 drawable_ID,
-                                             gint x_coord,
-                                             gint y_coord,
-                                             gint num_channels,
-                                             const guint8 *pixel);

+


gimp_drawable_set_pixel ()

gboolean    gimp_drawable_set_pixel         (gint32 drawable_ID,
+                                             gint x_coord,
+                                             gint y_coord,
+                                             gint num_channels,
+                                             const guint8 *pixel);

Sets the value of the pixel at the specified coordinates.

This procedure sets the pixel value at the specified coordinates. @@ -608,133 +278,83 @@ function is not undoable, you should use it only on drawables you just created yourself.

-

drawable_ID : The drawable. -
x_coord : The x coordinate. -
y_coord : The y coordinate. -
num_channels : The number of channels for the pixel. -
pixel : The pixel value. -
Returns : TRUE on success. -

gimp_drawable_get_tile ()

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

- -

drawable : -
shadow : -
row : -
col : +

drawable_ID : The drawable. +
x_coord : The x coordinate. +
y_coord : The y coordinate. +
num_channels : The number of channels for the pixel. +
pixel : The pixel value. +
Returns : TRUE on success. +

gimp_drawable_get_tile ()

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

+ +

drawable : +
shadow : +
row : +
col :
Returns : -

gimp_drawable_get_tile2 ()

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

- -

drawable : -
shadow : -
x : -
y : +

gimp_drawable_get_tile2 ()

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

+ +

drawable : +
shadow : +
x : +
y :
Returns : -

gimp_drawable_get_thumbnail_data ()

guchar*     gimp_drawable_get_thumbnail_data
-                                            (gint32 drawable_ID,
-                                             gint *width,
-                                             gint *height,
-                                             gint *bpp);

- -

drawable_ID : -
width : -
height : -
bpp : +

gimp_drawable_get_thumbnail_data ()

guchar*     gimp_drawable_get_thumbnail_data
+                                            (gint32 drawable_ID,
+                                             gint *width,
+                                             gint *height,
+                                             gint *bpp);

+ +

drawable_ID : +
width : +
height : +
bpp :
Returns : -

gimp_drawable_get_sub_thumbnail_data ()

guchar*     gimp_drawable_get_sub_thumbnail_data
-                                            (gint32 drawable_ID,
-                                             gint src_x,
-                                             gint src_y,
-                                             gint src_width,
-                                             gint src_height,
-                                             gint *dest_width,
-                                             gint *dest_height,
-                                             gint *bpp);

- -

drawable_ID : -
src_x : -
src_y : -
src_width : -
src_height : -
dest_width : -
dest_height : -
bpp : +

gimp_drawable_get_sub_thumbnail_data ()

guchar*     gimp_drawable_get_sub_thumbnail_data
+                                            (gint32 drawable_ID,
+                                             gint src_x,
+                                             gint src_y,
+                                             gint src_width,
+                                             gint src_height,
+                                             gint *dest_width,
+                                             gint *dest_height,
+                                             gint *bpp);

+ +

drawable_ID : +
src_x : +
src_y : +
src_width : +
src_height : +
dest_width : +
dest_height : +
bpp :
Returns : -

gimp_drawable_get_color_uchar ()

void        gimp_drawable_get_color_uchar   (gint32 drawable_ID,
+

gimp_drawable_get_color_uchar ()

void        gimp_drawable_get_color_uchar   (gint32 drawable_ID,
                                              const GimpRGB *color,
-                                             guchar *color_uchar);

+ guchar *color_uchar);

-

drawable_ID : -
color : -
color_uchar : +

drawable_ID : +
color : +
color_uchar : -

gimp_drawable_merge_shadow ()

gboolean    gimp_drawable_merge_shadow      (gint32 drawable_ID,
-                                             gboolean undo);

+


gimp_drawable_merge_shadow ()

gboolean    gimp_drawable_merge_shadow      (gint32 drawable_ID,
+                                             gboolean undo);

Merge the shadow buffer with the specified drawable.

This procedure combines the contents of the image's shadow buffer @@ -742,14 +362,10 @@ parameter specifies whether to add an undo step for the operation. Requesting no undo is useful for such applications as 'auto-apply'.

-

drawable_ID : The drawable. -
undo : Push merge to undo stack? +

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

gimp_drawable_fill ()

gboolean    gimp_drawable_fill              (gint32 drawable_ID,
+

gimp_drawable_fill ()

gboolean    gimp_drawable_fill              (gint32 drawable_ID,
                                              GimpFillType fill_type);

Fill the drawable with the specified fill mode.

@@ -763,26 +379,14 @@ undefined. This procedure is unlike the bucket fill tool because it fills regardless of a selection

-

drawable_ID : The drawable. -
fill_type : The type of fill. +

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

gimp_drawable_update ()

gboolean    gimp_drawable_update            (gint32 drawable_ID,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height);

+


gimp_drawable_update ()

gboolean    gimp_drawable_update            (gint32 drawable_ID,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height);

Update the specified region of the drawable.

This procedure updates the specified region of the drawable. The (x, @@ -790,29 +394,17 @@ image origin. Therefore, the entire drawable can be updated using (0, 0, width, height).

-

drawable_ID : The drawable. -
x : x coordinate of upper left corner of update region. -
y : y coordinate of upper left corner of update region. -
width : Width of update region. -
height : Height of update region. -
Returns : TRUE on success. -

gimp_drawable_mask_bounds ()

gboolean    gimp_drawable_mask_bounds       (gint32 drawable_ID,
-                                             gint *x1,
-                                             gint *y1,
-                                             gint *x2,
-                                             gint *y2);

+

drawable_ID : The drawable. +
x : x coordinate of upper left corner of update region. +
y : y coordinate of upper left corner of update region. +
width : Width of update region. +
height : Height of update region. +
Returns : TRUE on success. +

gimp_drawable_mask_bounds ()

gboolean    gimp_drawable_mask_bounds       (gint32 drawable_ID,
+                                             gint *x1,
+                                             gint *y1,
+                                             gint *x2,
+                                             gint *y2);

Find the bounding box of the current selection in relation to the specified drawable.

@@ -826,91 +418,63 @@ selection can be calculated as (x2 - x1), its height as (y2 - y1). Note that the returned boolean does NOT correspond with the returned region being empty or not, it always returns whether the selection -is non_empty. See gimp_drawable_mask_intersect() for a boolean +is non_empty. See gimp_drawable_mask_intersect() for a boolean return value which is more useful in most cases.

-

drawable_ID : The drawable. -
x1 : x coordinate of the upper left corner of selection bounds. -
y1 : y coordinate of the upper left corner of selection bounds. -
x2 : x coordinate of the lower right corner of selection bounds. -
y2 : y coordinate of the lower right corner of selection bounds. +

drawable_ID : The drawable. +
x1 : x coordinate of the upper left corner of selection bounds. +
y1 : y coordinate of the upper left corner of selection bounds. +
x2 : x coordinate of the lower right corner of selection bounds. +
y2 : y coordinate of the lower right corner of selection bounds.
Returns : TRUE if there is a selection. -

gimp_drawable_mask_intersect ()

gboolean    gimp_drawable_mask_intersect    (gint32 drawable_ID,
-                                             gint *x,
-                                             gint *y,
-                                             gint *width,
-                                             gint *height);

+


gimp_drawable_mask_intersect ()

gboolean    gimp_drawable_mask_intersect    (gint32 drawable_ID,
+                                             gint *x,
+                                             gint *y,
+                                             gint *width,
+                                             gint *height);

Find the bounding box of the current selection in relation to the specified drawable.

This procedure returns whether there is an intersection between the -drawable and the selection. Unlike gimp_drawable_mask_bounds(), the +drawable and the selection. Unlike gimp_drawable_mask_bounds(), the intersection's bounds are returned as x, y, width, height. If there is no selection this function returns TRUE and the returned bounds are the extents of the whole drawable.

-

drawable_ID : The drawable. -
x : x coordinate of the upper left corner of the intersection. -
y : y coordinate of the upper left corner of the intersection. -
width : width of the intersection. -
height : height of the intersection. +

drawable_ID : The drawable. +
x : x coordinate of the upper left corner of the intersection. +
y : y coordinate of the upper left corner of the intersection. +
width : width of the intersection. +
height : height of the intersection.
Returns : TRUE if the returned area is not empty.

Since GIMP 2.2 -


gimp_drawable_get_image ()

gint32      gimp_drawable_get_image         (gint32 drawable_ID);

+


gimp_drawable_get_image ()

gint32      gimp_drawable_get_image         (gint32 drawable_ID);

Returns the drawable's image.

This procedure returns the drawable's image.

-

drawable_ID : The drawable. +

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

gimp_drawable_set_image ()

gboolean    gimp_drawable_set_image         (gint32 drawable_ID,
-                                             gint32 image_ID);

Warning

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

+


gimp_drawable_set_image ()

gboolean    gimp_drawable_set_image         (gint32 drawable_ID,
+                                             gint32 image_ID);

Warning

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

This procedure is deprecated!

-

drawable_ID : The drawable. -
image_ID : The image. +

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

gimp_drawable_has_alpha ()

gboolean    gimp_drawable_has_alpha         (gint32 drawable_ID);

+


gimp_drawable_has_alpha ()

gboolean    gimp_drawable_has_alpha         (gint32 drawable_ID);

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

This procedure returns whether the specified drawable has an alpha channel. This can only be true for layers, and the associated type will be one of: { RGBA , GRAYA, INDEXEDA }.

-

drawable_ID : The drawable. +

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

gimp_drawable_type_with_alpha ()


gimp_drawable_type_with_alpha ()

GimpImageType gimp_drawable_type_with_alpha (gint32 drawable_ID);

+>GimpImageType gimp_drawable_type_with_alpha (gint32 drawable_ID);

Returns the drawable's type with alpha.

This procedure returns the drawable's type as if had an alpha @@ -918,161 +482,105 @@ type would be GrayA. If the drawable already has an alpha channel, the drawable's type is simply returned.

-

drawable_ID : The drawable. +

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

gimp_drawable_type ()


gimp_drawable_type ()

GimpImageType gimp_drawable_type            (gint32 drawable_ID);

+>GimpImageType gimp_drawable_type (gint32 drawable_ID);

Returns the drawable's type.

This procedure returns the drawable's type.

-

drawable_ID : The drawable. +

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

gimp_drawable_is_rgb ()

gboolean    gimp_drawable_is_rgb            (gint32 drawable_ID);

+


gimp_drawable_is_rgb ()

gboolean    gimp_drawable_is_rgb            (gint32 drawable_ID);

Returns whether the drawable is an RGB type.

This procedure returns non-zero if the specified drawable is of type { RGB, RGBA }.

-

drawable_ID : The drawable. +

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

gimp_drawable_is_gray ()

gboolean    gimp_drawable_is_gray           (gint32 drawable_ID);

+


gimp_drawable_is_gray ()

gboolean    gimp_drawable_is_gray           (gint32 drawable_ID);

Returns whether the drawable is a grayscale type.

This procedure returns non-zero if the specified drawable is of type { Gray, GrayA }.

-

drawable_ID : The drawable. +

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

gimp_drawable_is_indexed ()

gboolean    gimp_drawable_is_indexed        (gint32 drawable_ID);

+


gimp_drawable_is_indexed ()

gboolean    gimp_drawable_is_indexed        (gint32 drawable_ID);

Returns whether the drawable is an indexed type.

This procedure returns non-zero if the specified drawable is of type { Indexed, IndexedA }.

-

drawable_ID : The drawable. +

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

gimp_drawable_bpp ()

gint        gimp_drawable_bpp               (gint32 drawable_ID);

+


gimp_drawable_bpp ()

gint        gimp_drawable_bpp               (gint32 drawable_ID);

Returns the bytes per pixel.

This procedure returns the number of bytes per pixel (or the number of channels) for the specified drawable.

-

drawable_ID : The drawable. +

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

gimp_drawable_width ()

gint        gimp_drawable_width             (gint32 drawable_ID);

+


gimp_drawable_width ()

gint        gimp_drawable_width             (gint32 drawable_ID);

Returns the width of the drawable.

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

-

drawable_ID : The drawable. +

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

gimp_drawable_height ()

gint        gimp_drawable_height            (gint32 drawable_ID);

+


gimp_drawable_height ()

gint        gimp_drawable_height            (gint32 drawable_ID);

Returns the height of the drawable.

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

-

drawable_ID : The drawable. +

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

gimp_drawable_offsets ()

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

+


gimp_drawable_offsets ()

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

Returns the offsets for the drawable.

This procedure returns the specified drawable's offsets. This only makes sense if the drawable is a layer since channels are anchored. The offsets of a channel will be returned as 0.

-

drawable_ID : The drawable. -
offset_x : x offset of drawable. -
offset_y : y offset of drawable. +

drawable_ID : The drawable. +
offset_x : x offset of drawable. +
offset_y : y offset of drawable.
Returns : TRUE on success. -

gimp_drawable_is_layer ()

gboolean    gimp_drawable_is_layer          (gint32 drawable_ID);

+


gimp_drawable_is_layer ()

gboolean    gimp_drawable_is_layer          (gint32 drawable_ID);

Returns whether the drawable is a layer.

This procedure returns non-zero if the specified drawable is a layer.

-

drawable_ID : The drawable. +

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

gimp_drawable_is_layer_mask ()

gboolean    gimp_drawable_is_layer_mask     (gint32 drawable_ID);

+


gimp_drawable_is_layer_mask ()

gboolean    gimp_drawable_is_layer_mask     (gint32 drawable_ID);

Returns whether the drawable is a layer mask.

This procedure returns non-zero if the specified drawable is a layer mask.

-

drawable_ID : The drawable. +

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

gimp_drawable_is_channel ()

gboolean    gimp_drawable_is_channel        (gint32 drawable_ID);

+


gimp_drawable_is_channel ()

gboolean    gimp_drawable_is_channel        (gint32 drawable_ID);

Returns whether the drawable is a channel.

This procedure returns non-zero if the specified drawable is a channel.

-

drawable_ID : The drawable. +

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

gimp_drawable_offset ()

gboolean    gimp_drawable_offset            (gint32 drawable_ID,
-                                             gboolean wrap_around,
+

gimp_drawable_offset ()

gboolean    gimp_drawable_offset            (gint32 drawable_ID,
+                                             gboolean wrap_around,
                                              GimpOffsetType fill_type,
-                                             gint offset_x,
-                                             gint offset_y);

+ gint offset_x, + gint offset_y);

Offset the drawable by the specified amounts in the X and Y directions

@@ -1083,52 +591,36 @@ drawable can be filled with transparency or the background color, as specified by the 'fill_type' parameter.

-

drawable_ID : The drawable to offset. -
wrap_around : wrap image around or fill vacated regions. -
fill_type : fill vacated regions of drawable with background or transparent. -
offset_x : offset by this amount in X direction. -
offset_y : offset by this amount in Y direction. +

drawable_ID : The drawable to offset. +
wrap_around : wrap image around or fill vacated regions. +
fill_type : fill vacated regions of drawable with background or transparent. +
offset_x : offset by this amount in X direction. +
offset_y : offset by this amount in Y direction.
Returns : TRUE on success. -

gimp_drawable_parasite_find ()


gimp_drawable_parasite_find ()

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

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

Finds the named parasite in a drawable

Finds and returns the named parasite that was previously attached to a drawable.

-

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

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

gimp_drawable_parasite_list ()

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

+


gimp_drawable_parasite_list ()

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

List all parasites.

Returns a list of all currently attached parasites.

-

drawable_ID : The drawable. -
num_parasites : The number of attached parasites. -
parasites : The names of currently attached parasites. +

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

gimp_drawable_parasite_attach ()

gboolean    gimp_drawable_parasite_attach   (gint32 drawable_ID,
+

gimp_drawable_parasite_attach ()

gboolean    gimp_drawable_parasite_attach   (gint32 drawable_ID,
                                              GimpParasite *parasite);

@@ -1137,57 +629,41 @@ This procedure attaches a parasite to a drawable. It has no return values.

-

drawable_ID : The drawable. -
parasite : The parasite to attach to a drawable. +

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

gimp_drawable_parasite_detach ()

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

+


gimp_drawable_parasite_detach ()

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

Removes a parasite from a drawable.

This procedure detaches a parasite from a drawable. It has no return values.

-

drawable_ID : The drawable. -
name : The name of the parasite to detach from a drawable. +

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

gimp_drawable_attach_new_parasite ()

void        gimp_drawable_attach_new_parasite
-                                            (gint32 drawable_ID,
-                                             const gchar *name,
-                                             gint flags,
-                                             gint size,
-                                             gconstpointer data);

+


gimp_drawable_attach_new_parasite ()

void        gimp_drawable_attach_new_parasite
+                                            (gint32 drawable_ID,
+                                             const gchar *name,
+                                             gint flags,
+                                             gint size,
+                                             gconstpointer data);

Convenience function that creates a parasite and attaches it to the GIMP.

-See Also: gimp_drawable_parasite_attach()

+See Also: gimp_drawable_parasite_attach()

-

drawable_ID : the ID of the GimpDrawable to attach the
drawable_ID : the ID of the GimpDrawable to attach the GimpParasite to. -
name : the name of the
name : the name of the GimpParasite to create and attach. -
flags : the flags set on the
flags : the flags set on the GimpParasite. -
size : the size of the parasite data in bytes. -
data : a pointer to the data attached with the
size : the size of the parasite data in bytes. +
data : a pointer to the data attached with the GimpParasite.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,481 +1,175 @@ -gimpdrawabletransform

gimpdrawabletransform

gimpdrawabletransform —

Synopsis

+gimpdrawabletransform

gimpdrawabletransform

gimpdrawabletransform —

Synopsis

 
 
 
-gint32      gimp_drawable_transform_flip_simple
-                                            (gint32 drawable_ID,
+gint32      gimp_drawable_transform_flip_simple
+                                            (gint32 drawable_ID,
                                              GimpOrientationType flip_type,
-                                             gboolean auto_center,
-                                             gdouble axis,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_flip    (gint32 drawable_ID,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             GimpTransformDirection transform_direction,
-                                             GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_flip_default
-                                            (gint32 drawable_ID,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             gboolean interpolate,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_perspective
-                                            (gint32 drawable_ID,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             gdouble x2,
-                                             gdouble y2,
-                                             gdouble x3,
-                                             gdouble y3,
-                                             GimpTransformDirection transform_direction,
-                                             GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_perspective_default
-                                            (gint32 drawable_ID,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             gdouble x2,
-                                             gdouble y2,
-                                             gdouble x3,
-                                             gdouble y3,
-                                             gboolean interpolate,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_rotate_simple
-                                            (gint32 drawable_ID,
+                                             gboolean auto_center,
+                                             gdouble axis,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_flip    (gint32 drawable_ID,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
+                                             GimpTransformDirection transform_direction,
+                                             GimpInterpolationType interpolation,
+                                             gboolean supersample,
+                                             gint recursion_level,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_flip_default
+                                            (gint32 drawable_ID,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
+                                             gboolean interpolate,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_perspective
+                                            (gint32 drawable_ID,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
+                                             gdouble x2,
+                                             gdouble y2,
+                                             gdouble x3,
+                                             gdouble y3,
+                                             GimpTransformDirection transform_direction,
+                                             GimpInterpolationType interpolation,
+                                             gboolean supersample,
+                                             gint recursion_level,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_perspective_default
+                                            (gint32 drawable_ID,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
+                                             gdouble x2,
+                                             gdouble y2,
+                                             gdouble x3,
+                                             gdouble y3,
+                                             gboolean interpolate,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_rotate_simple
+                                            (gint32 drawable_ID,
                                              GimpRotationType rotate_type,
-                                             gboolean auto_center,
-                                             gint center_x,
-                                             gint center_y,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_rotate  (gint32 drawable_ID,
-                                             gdouble angle,
-                                             gboolean auto_center,
-                                             gint center_x,
-                                             gint center_y,
-                                             GimpTransformDirection transform_direction,
-                                             GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_rotate_default
-                                            (gint32 drawable_ID,
-                                             gdouble angle,
-                                             gboolean auto_center,
-                                             gint center_x,
-                                             gint center_y,
-                                             gboolean interpolate,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_scale   (gint32 drawable_ID,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             GimpTransformDirection transform_direction,
-                                             GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_scale_default
-                                            (gint32 drawable_ID,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             gboolean interpolate,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_shear   (gint32 drawable_ID,
+                                             gboolean auto_center,
+                                             gint center_x,
+                                             gint center_y,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_rotate  (gint32 drawable_ID,
+                                             gdouble angle,
+                                             gboolean auto_center,
+                                             gint center_x,
+                                             gint center_y,
+                                             GimpTransformDirection transform_direction,
+                                             GimpInterpolationType interpolation,
+                                             gboolean supersample,
+                                             gint recursion_level,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_rotate_default
+                                            (gint32 drawable_ID,
+                                             gdouble angle,
+                                             gboolean auto_center,
+                                             gint center_x,
+                                             gint center_y,
+                                             gboolean interpolate,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_scale   (gint32 drawable_ID,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
+                                             GimpTransformDirection transform_direction,
+                                             GimpInterpolationType interpolation,
+                                             gboolean supersample,
+                                             gint recursion_level,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_scale_default
+                                            (gint32 drawable_ID,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
+                                             gboolean interpolate,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_shear   (gint32 drawable_ID,
                                              GimpOrientationType shear_type,
-                                             gdouble magnitude,
+                                             gdouble magnitude,
                                              GimpTransformDirection transform_direction,
                                              GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_shear_default
-                                            (gint32 drawable_ID,
+                                             gboolean supersample,
+                                             gint recursion_level,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_shear_default
+                                            (gint32 drawable_ID,
                                              GimpOrientationType shear_type,
-                                             gdouble magnitude,
-                                             gboolean interpolate,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_2d      (gint32 drawable_ID,
-                                             gdouble source_x,
-                                             gdouble source_y,
-                                             gdouble scale_x,
-                                             gdouble scale_y,
-                                             gdouble angle,
-                                             gdouble dest_x,
-                                             gdouble dest_y,
-                                             GimpTransformDirection transform_direction,
-                                             GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_2d_default
-                                            (gint32 drawable_ID,
-                                             gdouble source_x,
-                                             gdouble source_y,
-                                             gdouble scale_x,
-                                             gdouble scale_y,
-                                             gdouble angle,
-                                             gdouble dest_x,
-                                             gdouble dest_y,
-                                             gboolean interpolate,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_matrix  (gint32 drawable_ID,
-                                             gdouble coeff_0_0,
-                                             gdouble coeff_0_1,
-                                             gdouble coeff_0_2,
-                                             gdouble coeff_1_0,
-                                             gdouble coeff_1_1,
-                                             gdouble coeff_1_2,
-                                             gdouble coeff_2_0,
-                                             gdouble coeff_2_1,
-                                             gdouble coeff_2_2,
-                                             GimpTransformDirection transform_direction,
-                                             GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);
-gint32      gimp_drawable_transform_matrix_default
-                                            (gint32 drawable_ID,
-                                             gdouble coeff_0_0,
-                                             gdouble coeff_0_1,
-                                             gdouble coeff_0_2,
-                                             gdouble coeff_1_0,
-                                             gdouble coeff_1_1,
-                                             gdouble coeff_1_2,
-                                             gdouble coeff_2_0,
-                                             gdouble coeff_2_1,
-                                             gdouble coeff_2_2,
-                                             gboolean interpolate,
-                                             gboolean clip_result);
-

Description

- -

Details

gimp_drawable_transform_flip_simple ()

gint32      gimp_drawable_transform_flip_simple
-                                            (gint32 drawable_ID,
+                                             gdouble magnitude,
+                                             gboolean interpolate,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_2d      (gint32 drawable_ID,
+                                             gdouble source_x,
+                                             gdouble source_y,
+                                             gdouble scale_x,
+                                             gdouble scale_y,
+                                             gdouble angle,
+                                             gdouble dest_x,
+                                             gdouble dest_y,
+                                             GimpTransformDirection transform_direction,
+                                             GimpInterpolationType interpolation,
+                                             gboolean supersample,
+                                             gint recursion_level,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_2d_default
+                                            (gint32 drawable_ID,
+                                             gdouble source_x,
+                                             gdouble source_y,
+                                             gdouble scale_x,
+                                             gdouble scale_y,
+                                             gdouble angle,
+                                             gdouble dest_x,
+                                             gdouble dest_y,
+                                             gboolean interpolate,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_matrix  (gint32 drawable_ID,
+                                             gdouble coeff_0_0,
+                                             gdouble coeff_0_1,
+                                             gdouble coeff_0_2,
+                                             gdouble coeff_1_0,
+                                             gdouble coeff_1_1,
+                                             gdouble coeff_1_2,
+                                             gdouble coeff_2_0,
+                                             gdouble coeff_2_1,
+                                             gdouble coeff_2_2,
+                                             GimpTransformDirection transform_direction,
+                                             GimpInterpolationType interpolation,
+                                             gboolean supersample,
+                                             gint recursion_level,
+                                             gboolean clip_result);
+gint32      gimp_drawable_transform_matrix_default
+                                            (gint32 drawable_ID,
+                                             gdouble coeff_0_0,
+                                             gdouble coeff_0_1,
+                                             gdouble coeff_0_2,
+                                             gdouble coeff_1_0,
+                                             gdouble coeff_1_1,
+                                             gdouble coeff_1_2,
+                                             gdouble coeff_2_0,
+                                             gdouble coeff_2_1,
+                                             gdouble coeff_2_2,
+                                             gboolean interpolate,
+                                             gboolean clip_result);
+

Description

+ +

Details

gimp_drawable_transform_flip_simple ()

gint32      gimp_drawable_transform_flip_simple
+                                            (gint32 drawable_ID,
                                              GimpOrientationType flip_type,
-                                             gboolean auto_center,
-                                             gdouble axis,
-                                             gboolean clip_result);

+ gboolean auto_center, + gdouble axis, + gboolean clip_result);

Flip the specified drawable either vertically or horizontally.

This procedure flips the specified drawable if no selection exists. @@ -488,42 +182,24 @@ the drawable ID supplied as input. Otherwise, this will be the newly created and flipped drawable.

-

drawable_ID : The affected drawable. -
flip_type : Type of flip. -
auto_center : Whether to automatically position the axis in the selection center. -
axis : coord. of flip axis. -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
flip_type : Type of flip. +
auto_center : Whether to automatically position the axis in the selection center. +
axis : coord. of flip axis. +
clip_result : Whether to clip results.
Returns : The flipped drawable.

Since GIMP 2.2 -


gimp_drawable_transform_flip ()

gint32      gimp_drawable_transform_flip    (gint32 drawable_ID,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
+


gimp_drawable_transform_flip ()

gint32      gimp_drawable_transform_flip    (gint32 drawable_ID,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
                                              GimpTransformDirection transform_direction,
                                              GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);

+ gboolean supersample, + gint recursion_level, + gboolean clip_result);

Flip the specified drawable around a given line.

This procedure flips the specified drawable if no selection exists. @@ -537,100 +213,58 @@ parameter specifies wheter current selection will affect the transform.

-

drawable_ID : The affected drawable. -
x0 : horz. coord. of one end of axis. -
y0 : vert. coord. of one end of axis. -
x1 : horz. coord. of other end of axis. -
y1 : vert. coord. of other end of axis. -
transform_direction : Direction of Transformation. -
interpolation : Type of interpolation. -
supersample : Whether to perform supersample. -
recursion_level : Level of recursion (3 is a nice default). -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
x0 : horz. coord. of one end of axis. +
y0 : vert. coord. of one end of axis. +
x1 : horz. coord. of other end of axis. +
y1 : vert. coord. of other end of axis. +
transform_direction : Direction of Transformation. +
interpolation : Type of interpolation. +
supersample : Whether to perform supersample. +
recursion_level : Level of recursion (3 is a nice default). +
clip_result : Whether to clip results.
Returns : The flipped drawable.

Since GIMP 2.2 -


gimp_drawable_transform_flip_default ()

gint32      gimp_drawable_transform_flip_default
-                                            (gint32 drawable_ID,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             gboolean interpolate,
-                                             gboolean clip_result);

+


gimp_drawable_transform_flip_default ()

gint32      gimp_drawable_transform_flip_default
+                                            (gint32 drawable_ID,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
+                                             gboolean interpolate,
+                                             gboolean clip_result);

Flip the specified drawable around a given line.

-This procedure is a variant of gimp_drawable_transform_flip() which +This procedure is a variant of gimp_drawable_transform_flip() which uses no interpolation/supersampling at all, or default values (depending on the 'interpolate' parameter).

-

drawable_ID : The affected drawable. -
x0 : horz. coord. of one end of axis. -
y0 : vert. coord. of one end of axis. -
x1 : horz. coord. of other end of axis. -
y1 : vert. coord. of other end of axis. -
interpolate : Whether to use interpolation and supersampling. -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
x0 : horz. coord. of one end of axis. +
y0 : vert. coord. of one end of axis. +
x1 : horz. coord. of other end of axis. +
y1 : vert. coord. of other end of axis. +
interpolate : Whether to use interpolation and supersampling. +
clip_result : Whether to clip results.
Returns : The flipped drawable.

Since GIMP 2.2 -


gimp_drawable_transform_perspective ()

gint32      gimp_drawable_transform_perspective
-                                            (gint32 drawable_ID,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             gdouble x2,
-                                             gdouble y2,
-                                             gdouble x3,
-                                             gdouble y3,
+


gimp_drawable_transform_perspective ()

gint32      gimp_drawable_transform_perspective
+                                            (gint32 drawable_ID,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
+                                             gdouble x2,
+                                             gdouble y2,
+                                             gdouble x3,
+                                             gdouble y3,
                                              GimpTransformDirection transform_direction,
                                              GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);

+ gboolean supersample, + gint recursion_level, + gboolean clip_result);

Perform a possibly non-affine transformation on the specified drawable, with extra parameters.

@@ -650,99 +284,63 @@ specified such that the resulting transformed drawable will appear to have been projected via a perspective transform.

-

drawable_ID : The affected drawable. -
x0 : The new x coordinate of upper-left corner of original bounding box. -
y0 : The new y coordinate of upper-left corner of original bounding box. -
x1 : The new x coordinate of upper-right corner of original bounding box. -
y1 : The new y coordinate of upper-right corner of original bounding box. -
x2 : The new x coordinate of lower-left corner of original bounding box. -
y2 : The new y coordinate of lower-left corner of original bounding box. -
x3 : The new x coordinate of lower-right corner of original bounding box. -
y3 : The new y coordinate of lower-right corner of original bounding box. -
transform_direction : Direction of Transformation. -
interpolation : Type of interpolation. -
supersample : Whether to perform supersample. -
recursion_level : Level of recursion (3 is a nice default). -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
x0 : The new x coordinate of upper-left corner of original bounding box. +
y0 : The new y coordinate of upper-left corner of original bounding box. +
x1 : The new x coordinate of upper-right corner of original bounding box. +
y1 : The new y coordinate of upper-right corner of original bounding box. +
x2 : The new x coordinate of lower-left corner of original bounding box. +
y2 : The new y coordinate of lower-left corner of original bounding box. +
x3 : The new x coordinate of lower-right corner of original bounding box. +
y3 : The new y coordinate of lower-right corner of original bounding box. +
transform_direction : Direction of Transformation. +
interpolation : Type of interpolation. +
supersample : Whether to perform supersample. +
recursion_level : Level of recursion (3 is a nice default). +
clip_result : Whether to clip results.
Returns : The newly mapped drawable.

Since GIMP 2.2 -


gimp_drawable_transform_perspective_default ()

gint32      gimp_drawable_transform_perspective_default
-                                            (gint32 drawable_ID,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             gdouble x2,
-                                             gdouble y2,
-                                             gdouble x3,
-                                             gdouble y3,
-                                             gboolean interpolate,
-                                             gboolean clip_result);

+


gimp_drawable_transform_perspective_default ()

gint32      gimp_drawable_transform_perspective_default
+                                            (gint32 drawable_ID,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
+                                             gdouble x2,
+                                             gdouble y2,
+                                             gdouble x3,
+                                             gdouble y3,
+                                             gboolean interpolate,
+                                             gboolean clip_result);

Perform a possibly non-affine transformation on the specified drawable, with extra parameters.

-This procedure is a variant of gimp_drawable_transform_perspective() +This procedure is a variant of gimp_drawable_transform_perspective() which uses no interpolation/supersampling at all, or default values (depending on the 'interpolate' parameter).

-

drawable_ID : The affected drawable. -
x0 : The new x coordinate of upper-left corner of original bounding box. -
y0 : The new y coordinate of upper-left corner of original bounding box. -
x1 : The new x coordinate of upper-right corner of original bounding box. -
y1 : The new y coordinate of upper-right corner of original bounding box. -
x2 : The new x coordinate of lower-left corner of original bounding box. -
y2 : The new y coordinate of lower-left corner of original bounding box. -
x3 : The new x coordinate of lower-right corner of original bounding box. -
y3 : The new y coordinate of lower-right corner of original bounding box. -
interpolate : Whether to use interpolation and supersampling. -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
x0 : The new x coordinate of upper-left corner of original bounding box. +
y0 : The new y coordinate of upper-left corner of original bounding box. +
x1 : The new x coordinate of upper-right corner of original bounding box. +
y1 : The new y coordinate of upper-right corner of original bounding box. +
x2 : The new x coordinate of lower-left corner of original bounding box. +
y2 : The new y coordinate of lower-left corner of original bounding box. +
x3 : The new x coordinate of lower-right corner of original bounding box. +
y3 : The new y coordinate of lower-right corner of original bounding box. +
interpolate : Whether to use interpolation and supersampling. +
clip_result : Whether to clip results.
Returns : The newly mapped drawable.

Since GIMP 2.2 -


gimp_drawable_transform_rotate_simple ()

gint32      gimp_drawable_transform_rotate_simple
-                                            (gint32 drawable_ID,
+


gimp_drawable_transform_rotate_simple ()

gint32      gimp_drawable_transform_rotate_simple
+                                            (gint32 drawable_ID,
                                              GimpRotationType rotate_type,
-                                             gboolean auto_center,
-                                             gint center_x,
-                                             gint center_y,
-                                             gboolean clip_result);

+ gboolean auto_center, + gint center_x, + gint center_y, + gboolean clip_result);

Rotate the specified drawable about given coordinates through the specified angle.

@@ -754,43 +352,25 @@ this will be equal to the drawable ID supplied as input. Otherwise, this will be the newly created and rotated drawable.

-

drawable_ID : The affected drawable. -
rotate_type : Type of rotation. -
auto_center : Whether to automatically rotate around the selection center. -
center_x : The hor. coordinate of the center of rotation. -
center_y : The vert. coordinate of the center of rotation. -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
rotate_type : Type of rotation. +
auto_center : Whether to automatically rotate around the selection center. +
center_x : The hor. coordinate of the center of rotation. +
center_y : The vert. coordinate of the center of rotation. +
clip_result : Whether to clip results.
Returns : The rotated drawable.

Since GIMP 2.2 -


gimp_drawable_transform_rotate ()

gint32      gimp_drawable_transform_rotate  (gint32 drawable_ID,
-                                             gdouble angle,
-                                             gboolean auto_center,
-                                             gint center_x,
-                                             gint center_y,
+


gimp_drawable_transform_rotate ()

gint32      gimp_drawable_transform_rotate  (gint32 drawable_ID,
+                                             gdouble angle,
+                                             gboolean auto_center,
+                                             gint center_x,
+                                             gint center_y,
                                              GimpTransformDirection transform_direction,
                                              GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);

+ gboolean supersample, + gint recursion_level, + gboolean clip_result);

Rotate the specified drawable about given coordinates through the specified angle.

@@ -802,88 +382,54 @@ this will be equal to the drawable ID supplied as input. Otherwise, this will be the newly created and rotated drawable.

-

drawable_ID : The affected drawable. -
angle : The angle of rotation (radians). -
auto_center : Whether to automatically rotate around the selection center. -
center_x : The hor. coordinate of the center of rotation. -
center_y : The vert. coordinate of the center of rotation. -
transform_direction : Direction of Transformation. -
interpolation : Type of interpolation. -
supersample : Whether to perform supersample. -
recursion_level : Level of recursion (3 is a nice default). -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
angle : The angle of rotation (radians). +
auto_center : Whether to automatically rotate around the selection center. +
center_x : The hor. coordinate of the center of rotation. +
center_y : The vert. coordinate of the center of rotation. +
transform_direction : Direction of Transformation. +
interpolation : Type of interpolation. +
supersample : Whether to perform supersample. +
recursion_level : Level of recursion (3 is a nice default). +
clip_result : Whether to clip results.
Returns : The rotated drawable.

Since GIMP 2.2 -


gimp_drawable_transform_rotate_default ()

gint32      gimp_drawable_transform_rotate_default
-                                            (gint32 drawable_ID,
-                                             gdouble angle,
-                                             gboolean auto_center,
-                                             gint center_x,
-                                             gint center_y,
-                                             gboolean interpolate,
-                                             gboolean clip_result);

+


gimp_drawable_transform_rotate_default ()

gint32      gimp_drawable_transform_rotate_default
+                                            (gint32 drawable_ID,
+                                             gdouble angle,
+                                             gboolean auto_center,
+                                             gint center_x,
+                                             gint center_y,
+                                             gboolean interpolate,
+                                             gboolean clip_result);

Rotate the specified drawable about given coordinates through the specified angle.

-This procedure is a variant of gimp_drawable_transform_rotate() +This procedure is a variant of gimp_drawable_transform_rotate() which uses no interpolation/supersampling at all, or default values (depending on the 'interpolate' parameter).

-

drawable_ID : The affected drawable. -
angle : The angle of rotation (radians). -
auto_center : Whether to automatically rotate around the selection center. -
center_x : The hor. coordinate of the center of rotation. -
center_y : The vert. coordinate of the center of rotation. -
interpolate : Whether to use interpolation and supersampling. -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
angle : The angle of rotation (radians). +
auto_center : Whether to automatically rotate around the selection center. +
center_x : The hor. coordinate of the center of rotation. +
center_y : The vert. coordinate of the center of rotation. +
interpolate : Whether to use interpolation and supersampling. +
clip_result : Whether to clip results.
Returns : The rotated drawable.

Since GIMP 2.2 -


gimp_drawable_transform_scale ()

gint32      gimp_drawable_transform_scale   (gint32 drawable_ID,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
+


gimp_drawable_transform_scale ()

gint32      gimp_drawable_transform_scale   (gint32 drawable_ID,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
                                              GimpTransformDirection transform_direction,
                                              GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);

+ gboolean supersample, + gint recursion_level, + gboolean clip_result);

Scale the specified drawable with extra parameters

This procedure scales the specified drawable if no selection exists. @@ -894,79 +440,51 @@ this will be equal to the drawable ID supplied as input. Otherwise, this will be the newly created and scaled drawable.

-

drawable_ID : The affected drawable. -
x0 : The new x coordinate of upper-left corner of newly scaled region. -
y0 : The new y coordinate of upper-left corner of newly scaled region. -
x1 : The new x coordinate of lower-right corner of newly scaled region. -
y1 : The new y coordinate of lower-right corner of newly scaled region. -
transform_direction : Direction of Transformation. -
interpolation : Type of interpolation. -
supersample : Whether to perform supersample. -
recursion_level : Level of recursion (3 is a nice default). -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
x0 : The new x coordinate of upper-left corner of newly scaled region. +
y0 : The new y coordinate of upper-left corner of newly scaled region. +
x1 : The new x coordinate of lower-right corner of newly scaled region. +
y1 : The new y coordinate of lower-right corner of newly scaled region. +
transform_direction : Direction of Transformation. +
interpolation : Type of interpolation. +
supersample : Whether to perform supersample. +
recursion_level : Level of recursion (3 is a nice default). +
clip_result : Whether to clip results.
Returns : The scaled drawable.

Since GIMP 2.2 -


gimp_drawable_transform_scale_default ()

gint32      gimp_drawable_transform_scale_default
-                                            (gint32 drawable_ID,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             gboolean interpolate,
-                                             gboolean clip_result);

+


gimp_drawable_transform_scale_default ()

gint32      gimp_drawable_transform_scale_default
+                                            (gint32 drawable_ID,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
+                                             gboolean interpolate,
+                                             gboolean clip_result);

Scale the specified drawable with extra parameters

-This procedure is a variant of gimp_drawable_transform_scale() which +This procedure is a variant of gimp_drawable_transform_scale() which uses no interpolation/supersampling at all, or default values (depending on the 'interpolate' parameter).

-

drawable_ID : The affected drawable. -
x0 : The new x coordinate of upper-left corner of newly scaled region. -
y0 : The new y coordinate of upper-left corner of newly scaled region. -
x1 : The new x coordinate of lower-right corner of newly scaled region. -
y1 : The new y coordinate of lower-right corner of newly scaled region. -
interpolate : Whether to use interpolation and supersampling. -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
x0 : The new x coordinate of upper-left corner of newly scaled region. +
y0 : The new y coordinate of upper-left corner of newly scaled region. +
x1 : The new x coordinate of lower-right corner of newly scaled region. +
y1 : The new y coordinate of lower-right corner of newly scaled region. +
interpolate : Whether to use interpolation and supersampling. +
clip_result : Whether to clip results.
Returns : The scaled drawable.

Since GIMP 2.2 -


gimp_drawable_transform_shear ()

gint32      gimp_drawable_transform_shear   (gint32 drawable_ID,
+


gimp_drawable_transform_shear ()

gint32      gimp_drawable_transform_shear   (gint32 drawable_ID,
                                              GimpOrientationType shear_type,
-                                             gdouble magnitude,
+                                             gdouble magnitude,
                                              GimpTransformDirection transform_direction,
                                              GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);

+ gboolean supersample, + gint recursion_level, + gboolean clip_result);

Shear the specified drawable about its center by the specified magnitude, with extra parameters.

@@ -981,85 +499,51 @@ or vertically. The magnitude can be either positive or negative and indicates the extent (in pixels) to shear by.

-

drawable_ID : The affected drawable. -
shear_type : Type of shear. -
magnitude : The magnitude of the shear. -
transform_direction : Direction of Transformation. -
interpolation : Type of interpolation. -
supersample : Whether to perform supersample. -
recursion_level : Level of recursion (3 is a nice default). -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
shear_type : Type of shear. +
magnitude : The magnitude of the shear. +
transform_direction : Direction of Transformation. +
interpolation : Type of interpolation. +
supersample : Whether to perform supersample. +
recursion_level : Level of recursion (3 is a nice default). +
clip_result : Whether to clip results.
Returns : The sheared drawable.

Since GIMP 2.2 -


gimp_drawable_transform_shear_default ()

gint32      gimp_drawable_transform_shear_default
-                                            (gint32 drawable_ID,
+


gimp_drawable_transform_shear_default ()

gint32      gimp_drawable_transform_shear_default
+                                            (gint32 drawable_ID,
                                              GimpOrientationType shear_type,
-                                             gdouble magnitude,
-                                             gboolean interpolate,
-                                             gboolean clip_result);

+ gdouble magnitude, + gboolean interpolate, + gboolean clip_result);

Shear the specified drawable about its center by the specified magnitude, with extra parameters.

-This procedure is a variant of gimp_drawable_transform_shear() which +This procedure is a variant of gimp_drawable_transform_shear() which uses no interpolation/supersampling at all, or default values (depending on the 'interpolate' parameter).

-

drawable_ID : The affected drawable. -
shear_type : Type of shear. -
magnitude : The magnitude of the shear. -
interpolate : Whether to use interpolation and supersampling. -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
shear_type : Type of shear. +
magnitude : The magnitude of the shear. +
interpolate : Whether to use interpolation and supersampling. +
clip_result : Whether to clip results.
Returns : The sheared drawable.

Since GIMP 2.2 -


gimp_drawable_transform_2d ()

gint32      gimp_drawable_transform_2d      (gint32 drawable_ID,
-                                             gdouble source_x,
-                                             gdouble source_y,
-                                             gdouble scale_x,
-                                             gdouble scale_y,
-                                             gdouble angle,
-                                             gdouble dest_x,
-                                             gdouble dest_y,
+


gimp_drawable_transform_2d ()

gint32      gimp_drawable_transform_2d      (gint32 drawable_ID,
+                                             gdouble source_x,
+                                             gdouble source_y,
+                                             gdouble scale_x,
+                                             gdouble scale_y,
+                                             gdouble angle,
+                                             gdouble dest_x,
+                                             gdouble dest_y,
                                              GimpTransformDirection transform_direction,
                                              GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);

+ gboolean supersample, + gint recursion_level, + gboolean clip_result);

Transform the specified drawable in 2d, with extra parameters.

This procedure transforms the specified drawable if no selection @@ -1073,117 +557,67 @@ selection, this will be equal to the drawable ID supplied as input. Otherwise, this will be the newly created and transformed drawable.

-

drawable_ID : The affected drawable. -
source_x : X coordinate of the transformation center. -
source_y : Y coordinate of the transformation center. -
scale_x : Amount to scale in x direction. -
scale_y : Amount to scale in y direction. -
angle : The angle of rotation (radians). -
dest_x : X coordinate of where the center goes. -
dest_y : Y coordinate of where the center goes. -
transform_direction : Direction of Transformation. -
interpolation : Type of interpolation. -
supersample : Whether to perform supersample. -
recursion_level : Level of recursion (3 is a nice default). -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
source_x : X coordinate of the transformation center. +
source_y : Y coordinate of the transformation center. +
scale_x : Amount to scale in x direction. +
scale_y : Amount to scale in y direction. +
angle : The angle of rotation (radians). +
dest_x : X coordinate of where the center goes. +
dest_y : Y coordinate of where the center goes. +
transform_direction : Direction of Transformation. +
interpolation : Type of interpolation. +
supersample : Whether to perform supersample. +
recursion_level : Level of recursion (3 is a nice default). +
clip_result : Whether to clip results.
Returns : The transformed drawable.

Since GIMP 2.2 -


gimp_drawable_transform_2d_default ()

gint32      gimp_drawable_transform_2d_default
-                                            (gint32 drawable_ID,
-                                             gdouble source_x,
-                                             gdouble source_y,
-                                             gdouble scale_x,
-                                             gdouble scale_y,
-                                             gdouble angle,
-                                             gdouble dest_x,
-                                             gdouble dest_y,
-                                             gboolean interpolate,
-                                             gboolean clip_result);

+


gimp_drawable_transform_2d_default ()

gint32      gimp_drawable_transform_2d_default
+                                            (gint32 drawable_ID,
+                                             gdouble source_x,
+                                             gdouble source_y,
+                                             gdouble scale_x,
+                                             gdouble scale_y,
+                                             gdouble angle,
+                                             gdouble dest_x,
+                                             gdouble dest_y,
+                                             gboolean interpolate,
+                                             gboolean clip_result);

Transform the specified drawable in 2d, with extra parameters.

-This procedure is a variant of gimp_drawable_transform_2d() which +This procedure is a variant of gimp_drawable_transform_2d() which uses no interpolation/supersampling at all, or default values (depending on the 'interpolate' parameter).

-

drawable_ID : The affected drawable. -
source_x : X coordinate of the transformation center. -
source_y : Y coordinate of the transformation center. -
scale_x : Amount to scale in x direction. -
scale_y : Amount to scale in y direction. -
angle : The angle of rotation (radians). -
dest_x : X coordinate of where the center goes. -
dest_y : Y coordinate of where the center goes. -
interpolate : Whether to use interpolation and supersampling. -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
source_x : X coordinate of the transformation center. +
source_y : Y coordinate of the transformation center. +
scale_x : Amount to scale in x direction. +
scale_y : Amount to scale in y direction. +
angle : The angle of rotation (radians). +
dest_x : X coordinate of where the center goes. +
dest_y : Y coordinate of where the center goes. +
interpolate : Whether to use interpolation and supersampling. +
clip_result : Whether to clip results.
Returns : The transformed drawable.

Since GIMP 2.2 -


gimp_drawable_transform_matrix ()

gint32      gimp_drawable_transform_matrix  (gint32 drawable_ID,
-                                             gdouble coeff_0_0,
-                                             gdouble coeff_0_1,
-                                             gdouble coeff_0_2,
-                                             gdouble coeff_1_0,
-                                             gdouble coeff_1_1,
-                                             gdouble coeff_1_2,
-                                             gdouble coeff_2_0,
-                                             gdouble coeff_2_1,
-                                             gdouble coeff_2_2,
+


gimp_drawable_transform_matrix ()

gint32      gimp_drawable_transform_matrix  (gint32 drawable_ID,
+                                             gdouble coeff_0_0,
+                                             gdouble coeff_0_1,
+                                             gdouble coeff_0_2,
+                                             gdouble coeff_1_0,
+                                             gdouble coeff_1_1,
+                                             gdouble coeff_1_2,
+                                             gdouble coeff_2_0,
+                                             gdouble coeff_2_1,
+                                             gdouble coeff_2_2,
                                              GimpTransformDirection transform_direction,
                                              GimpInterpolationType interpolation,
-                                             gboolean supersample,
-                                             gint recursion_level,
-                                             gboolean clip_result);

+ gboolean supersample, + gint recursion_level, + gboolean clip_result);

Transform the specified drawable in 2d, with extra parameters.

This procedure transforms the specified drawable if no selection @@ -1195,81 +629,55 @@ selection, this will be equal to the drawable ID supplied as input. Otherwise, this will be the newly created and transformed drawable.

-

drawable_ID : The affected drawable. -
coeff_0_0 : coefficient (0,0) of the transformation matrix. -
coeff_0_1 : coefficient (0,1) of the transformation matrix. -
coeff_0_2 : coefficient (0,2) of the transformation matrix. -
coeff_1_0 : coefficient (1,0) of the transformation matrix. -
coeff_1_1 : coefficient (1,1) of the transformation matrix. -
coeff_1_2 : coefficient (1,2) of the transformation matrix. -
coeff_2_0 : coefficient (2,0) of the transformation matrix. -
coeff_2_1 : coefficient (2,1) of the transformation matrix. -
coeff_2_2 : coefficient (2,2) of the transformation matrix. -
transform_direction : Direction of Transformation. -
interpolation : Type of interpolation. -
supersample : Whether to perform supersample. -
recursion_level : Level of recursion (3 is a nice default). -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
coeff_0_0 : coefficient (0,0) of the transformation matrix. +
coeff_0_1 : coefficient (0,1) of the transformation matrix. +
coeff_0_2 : coefficient (0,2) of the transformation matrix. +
coeff_1_0 : coefficient (1,0) of the transformation matrix. +
coeff_1_1 : coefficient (1,1) of the transformation matrix. +
coeff_1_2 : coefficient (1,2) of the transformation matrix. +
coeff_2_0 : coefficient (2,0) of the transformation matrix. +
coeff_2_1 : coefficient (2,1) of the transformation matrix. +
coeff_2_2 : coefficient (2,2) of the transformation matrix. +
transform_direction : Direction of Transformation. +
interpolation : Type of interpolation. +
supersample : Whether to perform supersample. +
recursion_level : Level of recursion (3 is a nice default). +
clip_result : Whether to clip results.
Returns : The transformed drawable.

Since GIMP 2.2 -


gimp_drawable_transform_matrix_default ()

gint32      gimp_drawable_transform_matrix_default
-                                            (gint32 drawable_ID,
-                                             gdouble coeff_0_0,
-                                             gdouble coeff_0_1,
-                                             gdouble coeff_0_2,
-                                             gdouble coeff_1_0,
-                                             gdouble coeff_1_1,
-                                             gdouble coeff_1_2,
-                                             gdouble coeff_2_0,
-                                             gdouble coeff_2_1,
-                                             gdouble coeff_2_2,
-                                             gboolean interpolate,
-                                             gboolean clip_result);

+


gimp_drawable_transform_matrix_default ()

gint32      gimp_drawable_transform_matrix_default
+                                            (gint32 drawable_ID,
+                                             gdouble coeff_0_0,
+                                             gdouble coeff_0_1,
+                                             gdouble coeff_0_2,
+                                             gdouble coeff_1_0,
+                                             gdouble coeff_1_1,
+                                             gdouble coeff_1_2,
+                                             gdouble coeff_2_0,
+                                             gdouble coeff_2_1,
+                                             gdouble coeff_2_2,
+                                             gboolean interpolate,
+                                             gboolean clip_result);

Transform the specified drawable in 2d, with extra parameters.

-This procedure is a variant of gimp_drawable_transform_matrix() +This procedure is a variant of gimp_drawable_transform_matrix() which uses no interpolation/supersampling at all, or default values (depending on the 'interpolate' parameter).

-

drawable_ID : The affected drawable. -
coeff_0_0 : coefficient (0,0) of the transformation matrix. -
coeff_0_1 : coefficient (0,1) of the transformation matrix. -
coeff_0_2 : coefficient (0,2) of the transformation matrix. -
coeff_1_0 : coefficient (1,0) of the transformation matrix. -
coeff_1_1 : coefficient (1,1) of the transformation matrix. -
coeff_1_2 : coefficient (1,2) of the transformation matrix. -
coeff_2_0 : coefficient (2,0) of the transformation matrix. -
coeff_2_1 : coefficient (2,1) of the transformation matrix. -
coeff_2_2 : coefficient (2,2) of the transformation matrix. -
interpolate : Whether to use interpolation and supersampling. -
clip_result : Whether to clip results. +

drawable_ID : The affected drawable. +
coeff_0_0 : coefficient (0,0) of the transformation matrix. +
coeff_0_1 : coefficient (0,1) of the transformation matrix. +
coeff_0_2 : coefficient (0,2) of the transformation matrix. +
coeff_1_0 : coefficient (1,0) of the transformation matrix. +
coeff_1_1 : coefficient (1,1) of the transformation matrix. +
coeff_1_2 : coefficient (1,2) of the transformation matrix. +
coeff_2_0 : coefficient (2,0) of the transformation matrix. +
coeff_2_1 : coefficient (2,1) of the transformation matrix. +
coeff_2_2 : coefficient (2,2) of the transformation matrix. +
interpolate : Whether to use interpolation and supersampling. +
clip_result : Whether to clip results.
Returns : The transformed drawable.

Since GIMP 2.2 diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpedit.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpedit.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpedit.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpedit.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,118 +1,44 @@ -gimpedit

gimpedit

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

Synopsis

+gimpedit

gimpedit

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

Synopsis

 
 
 
-gboolean    gimp_edit_cut                   (gint32 drawable_ID);
-gboolean    gimp_edit_copy                  (gint32 drawable_ID);
-gboolean    gimp_edit_copy_visible          (gint32 image_ID);
-gint32      gimp_edit_paste                 (gint32 drawable_ID,
-                                             gboolean paste_into);
-gboolean    gimp_edit_clear                 (gint32 drawable_ID);
-gboolean    gimp_edit_fill                  (gint32 drawable_ID,
+gboolean    gimp_edit_cut                   (gint32 drawable_ID);
+gboolean    gimp_edit_copy                  (gint32 drawable_ID);
+gboolean    gimp_edit_copy_visible          (gint32 image_ID);
+gint32      gimp_edit_paste                 (gint32 drawable_ID,
+                                             gboolean paste_into);
+gboolean    gimp_edit_clear                 (gint32 drawable_ID);
+gboolean    gimp_edit_fill                  (gint32 drawable_ID,
                                              GimpFillType fill_type);
-gboolean    gimp_edit_bucket_fill           (gint32 drawable_ID,
+gboolean    gimp_edit_bucket_fill           (gint32 drawable_ID,
                                              GimpBucketFillMode fill_mode,
                                              GimpLayerModeEffects paint_mode,
-                                             gdouble opacity,
-                                             gdouble threshold,
-                                             gboolean sample_merged,
-                                             gdouble x,
-                                             gdouble y);
-gboolean    gimp_edit_blend                 (gint32 drawable_ID,
+                                             gdouble opacity,
+                                             gdouble threshold,
+                                             gboolean sample_merged,
+                                             gdouble x,
+                                             gdouble y);
+gboolean    gimp_edit_blend                 (gint32 drawable_ID,
                                              GimpBlendMode blend_mode,
                                              GimpLayerModeEffects paint_mode,
                                              GimpGradientType gradient_type,
-                                             gdouble opacity,
-                                             gdouble offset,
+                                             gdouble opacity,
+                                             gdouble offset,
                                              GimpRepeatMode repeat,
-                                             gboolean reverse,
-                                             gboolean supersample,
-                                             gint max_depth,
-                                             gdouble threshold,
-                                             gboolean dither,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             gdouble x2,
-                                             gdouble y2);
-gboolean    gimp_edit_stroke                (gint32 drawable_ID);
-

Description

+ gboolean reverse, + gboolean supersample, + gint max_depth, + gdouble threshold, + gboolean dither, + gdouble x1, + gdouble y1, + gdouble x2, + gdouble y2); +gboolean gimp_edit_stroke (gint32 drawable_ID); +

Description

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

Details

gimp_edit_cut ()

gboolean    gimp_edit_cut                   (gint32 drawable_ID);

+

Details

gimp_edit_cut ()

gboolean    gimp_edit_cut                   (gint32 drawable_ID);

Cut from the specified drawable.

If there is a selection in the image, then the area specified by the @@ -122,13 +48,9 @@ specified drawable will be removed and its contents stored in the internal GIMP edit buffer.

-

drawable_ID : The drawable to cut from. +

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

gimp_edit_copy ()

gboolean    gimp_edit_copy                  (gint32 drawable_ID);

+


gimp_edit_copy ()

gboolean    gimp_edit_copy                  (gint32 drawable_ID);

Copy from the specified drawable.

If there is a selection in the image, then the area specified by the @@ -138,13 +60,9 @@ specified drawable's contents will be stored in the internal GIMP edit buffer.

-

drawable_ID : The drawable to copy from. +

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

gimp_edit_copy_visible ()

gboolean    gimp_edit_copy_visible          (gint32 image_ID);

+


gimp_edit_copy_visible ()

gboolean    gimp_edit_copy_visible          (gint32 image_ID);

Copy from the projection.

If there is a selection in the image, then the area specified by the @@ -154,18 +72,12 @@ projection's contents will be stored in the internal GIMP edit buffer.

-

image_ID : The image to copy from. +

image_ID : The image to copy from.
Returns : TRUE if the copy was successful, FALSE if the selection contained only transparent pixels.

Since GIMP 2.2 -


gimp_edit_paste ()

gint32      gimp_edit_paste                 (gint32 drawable_ID,
-                                             gboolean paste_into);

+


gimp_edit_paste ()

gint32      gimp_edit_paste                 (gint32 drawable_ID,
+                                             gboolean paste_into);

Paste buffer to the specified drawable.

This procedure pastes a copy of the internal GIMP edit buffer to the @@ -184,14 +96,10 @@ specified drawable, and a subsequent call to floating_sel_attach is not needed.

-

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

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

gimp_edit_clear ()

gboolean    gimp_edit_clear                 (gint32 drawable_ID);

+


gimp_edit_clear ()

gboolean    gimp_edit_clear                 (gint32 drawable_ID);

Clear selected area of drawable.

This procedure clears the specified drawable. If the drawable has an @@ -200,13 +108,9 @@ to the background color. This procedure only affects regions within a selection if there is a selection active.

-

drawable_ID : The drawable to clear from. +

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

gimp_edit_fill ()

gboolean    gimp_edit_fill                  (gint32 drawable_ID,
+

gimp_edit_fill ()

gboolean    gimp_edit_fill                  (gint32 drawable_ID,
                                              GimpFillType fill_type);

Fill selected area of drawable.

@@ -216,33 +120,19 @@ used. Other fill modes should not be used. This procedure only affects regions within a selection if there is a selection active. If you want to fill the whole drawable, regardless of the selection, -use gimp_drawable_fill().

+use gimp_drawable_fill().

-

drawable_ID : The drawable to fill to. -
fill_type : The type of fill. +

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

gimp_edit_bucket_fill ()

gboolean    gimp_edit_bucket_fill           (gint32 drawable_ID,
+

gimp_edit_bucket_fill ()

gboolean    gimp_edit_bucket_fill           (gint32 drawable_ID,
                                              GimpBucketFillMode fill_mode,
                                              GimpLayerModeEffects paint_mode,
-                                             gdouble opacity,
-                                             gdouble threshold,
-                                             gboolean sample_merged,
-                                             gdouble x,
-                                             gdouble y);

+ gdouble opacity, + gdouble threshold, + gboolean sample_merged, + gdouble x, + gdouble y);

Fill the area specified either by the current selection if there is one, or by a seed fill starting at the specified coordinates.

@@ -259,57 +149,31 @@ coordinates are relative to the image's origin; otherwise, they are relative to the drawable's origin.

-

drawable_ID : The affected drawable. -
fill_mode : The type of fill. -
paint_mode : The paint application mode. -
opacity : The opacity of the final bucket fill. -
threshold : The threshold determines how extensive the seed fill will be. It's value is specified in terms of intensity levels . This parameter is only valid when there is no selection in the specified image. -
sample_merged : Use the composite image, not the drawable. -
x : The x coordinate of this bucket fill's application. This parameter is only valid when there is no selection in the specified image. -
y : The y coordinate of this bucket fill's application. This parameter is only valid when there is no selection in the specified image. +

drawable_ID : The affected drawable. +
fill_mode : The type of fill. +
paint_mode : The paint application mode. +
opacity : The opacity of the final bucket fill. +
threshold : The threshold determines how extensive the seed fill will be. It's value is specified in terms of intensity levels . This parameter is only valid when there is no selection in the specified image. +
sample_merged : Use the composite image, not the drawable. +
x : The x coordinate of this bucket fill's application. This parameter is only valid when there is no selection in the specified image. +
y : The y coordinate of this bucket fill's application. This parameter is only valid when there is no selection in the specified image.
Returns : TRUE on success. -

gimp_edit_blend ()

gboolean    gimp_edit_blend                 (gint32 drawable_ID,
+

gimp_edit_blend ()

gboolean    gimp_edit_blend                 (gint32 drawable_ID,
                                              GimpBlendMode blend_mode,
                                              GimpLayerModeEffects paint_mode,
                                              GimpGradientType gradient_type,
-                                             gdouble opacity,
-                                             gdouble offset,
+                                             gdouble opacity,
+                                             gdouble offset,
                                              GimpRepeatMode repeat,
-                                             gboolean reverse,
-                                             gboolean supersample,
-                                             gint max_depth,
-                                             gdouble threshold,
-                                             gboolean dither,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             gdouble x2,
-                                             gdouble y2);

+ gboolean reverse, + gboolean supersample, + gint max_depth, + gdouble threshold, + gboolean dither, + gdouble x1, + gdouble y1, + gdouble x2, + gdouble y2);

Blend between the starting and ending coordinates with the specified blend mode and gradient type.

@@ -318,28 +182,24 @@ of blend using the starting and ending coordinates as defined for each gradient type.

-

drawable_ID : The affected drawable. -
blend_mode : The type of blend. -
paint_mode : The paint application mode. -
gradient_type : The type of gradient. -
opacity : The opacity of the final blend. -
offset : Offset relates to the starting and ending coordinates specified for the blend. This parameter is mode dependent. -
repeat : Repeat mode. -
reverse : Use the reverse gradient. -
supersample : Do adaptive supersampling. -
max_depth : Maximum recursion levels for supersampling. -
threshold : Supersampling threshold. -
dither : Use dithering to reduce banding. -
x1 : The x coordinate of this blend's starting point. -
y1 : The y coordinate of this blend's starting point. -
x2 : The x coordinate of this blend's ending point. -
y2 : The y coordinate of this blend's ending point. +

drawable_ID : The affected drawable. +
blend_mode : The type of blend. +
paint_mode : The paint application mode. +
gradient_type : The type of gradient. +
opacity : The opacity of the final blend. +
offset : Offset relates to the starting and ending coordinates specified for the blend. This parameter is mode dependent. +
repeat : Repeat mode. +
reverse : Use the reverse gradient. +
supersample : Do adaptive supersampling. +
max_depth : Maximum recursion levels for supersampling. +
threshold : Supersampling threshold. +
dither : Use dithering to reduce banding. +
x1 : The x coordinate of this blend's starting point. +
y1 : The y coordinate of this blend's starting point. +
x2 : The x coordinate of this blend's ending point. +
y2 : The y coordinate of this blend's ending point.
Returns : TRUE on success. -

gimp_edit_stroke ()

gboolean    gimp_edit_stroke                (gint32 drawable_ID);

+


gimp_edit_stroke ()

gboolean    gimp_edit_stroke                (gint32 drawable_ID);

Stroke the current selection

This procedure strokes the current selection, painting along the @@ -347,6 +207,6 @@ paint is applied to the specified drawable regardless of the active selection.

-

drawable_ID : The drawable to stroke to. +

drawable_ID : The drawable to stroke to.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpenums.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpenums.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpenums.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpenums.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,4 +1,4 @@ -gimpenums

gimpenums

gimpenums — Enums and definitions.

Synopsis

+gimpenums

gimpenums

gimpenums — Enums and definitions.

Synopsis

 
 
 
@@ -34,16 +34,12 @@
 enum        GimpSizeType;
 enum        GimpTransferMode;
 enum        GimpTransformDirection;
-const gchar** gimp_enums_get_type_names     (gint *n_type_names);
+const gchar** gimp_enums_get_type_names     (gint *n_type_names);
 
-

Description

+

Description

Enums and definitions. -

Details

enum GimpAddMaskType

typedef enum
+

Details

enum GimpAddMaskType

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

-


enum GimpBlendMode

typedef enum
+


enum GimpBlendMode

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

-


enum GimpBrushApplicationMode

typedef enum
+


enum GimpBrushApplicationMode

typedef enum
 {
   GIMP_BRUSH_HARD,
   GIMP_BRUSH_SOFT
 } GimpBrushApplicationMode;
 

-


enum GimpBucketFillMode

typedef enum
+


enum GimpBucketFillMode

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

-


enum GimpChannelOps

typedef enum
+


enum GimpChannelOps

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

-


enum GimpChannelType

typedef enum
+


enum GimpChannelType

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

-


enum GimpCloneType

typedef enum
+


enum GimpCloneType

typedef enum
 {
   GIMP_IMAGE_CLONE,
   GIMP_PATTERN_CLONE
 } GimpCloneType;
 

-


enum GimpConvertDitherType

typedef enum
+


enum GimpConvertDitherType

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

-


enum GimpConvertPaletteType

typedef enum
+


enum GimpConvertPaletteType

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

-


enum GimpConvolutionType

typedef enum
+


enum GimpConvolutionType

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

-


enum GimpConvolveType

typedef enum
+


enum GimpConvolveType

typedef enum
 {
   GIMP_BLUR_CONVOLVE,
   GIMP_SHARPEN_CONVOLVE
 } GimpConvolveType;
 

-


enum GimpDodgeBurnType

typedef enum
+


enum GimpDodgeBurnType

typedef enum
 {
   GIMP_DODGE,
   GIMP_BURN
 } GimpDodgeBurnType;
 

-


enum GimpFillType

typedef enum
+


enum GimpFillType

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

-


enum GimpGradientSegmentColor

typedef enum
+


enum GimpGradientSegmentColor

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

-


enum GimpGradientSegmentType

typedef enum
+


enum GimpGradientSegmentType

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

-


enum GimpGradientType

typedef enum
+


enum GimpGradientType

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

-


enum GimpHistogramChannel

typedef enum
+


enum GimpHistogramChannel

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

-


enum GimpHueRange

typedef enum
+


enum GimpHueRange

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

-


enum GimpIconType

typedef enum
+


enum GimpIconType

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

-


enum GimpInterpolationType

typedef enum
+


enum GimpInterpolationType

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

-


enum GimpLayerModeEffects

typedef enum
+


enum GimpLayerModeEffects

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

-


enum GimpMaskApplyMode

typedef enum
+


enum GimpMaskApplyMode

typedef enum
 {
   GIMP_MASK_APPLY,
   GIMP_MASK_DISCARD
 } GimpMaskApplyMode;
 

-


enum GimpMergeType

typedef enum
+


enum GimpMergeType

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

-


enum GimpOffsetType

typedef enum
+


enum GimpOffsetType

typedef enum
 {
   GIMP_OFFSET_BACKGROUND,
   GIMP_OFFSET_TRANSPARENT
 } GimpOffsetType;
 

-


enum GimpOrientationType

typedef enum
+


enum GimpOrientationType

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

-


enum GimpPaintApplicationMode

typedef enum
+


enum GimpPaintApplicationMode

typedef enum
 {
   GIMP_PAINT_CONSTANT,
   GIMP_PAINT_INCREMENTAL
 } GimpPaintApplicationMode;
 

-


enum GimpRepeatMode

typedef enum
+


enum GimpRepeatMode

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

-


enum GimpRotationType

typedef enum
+


enum GimpRotationType

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

-


enum GimpRunMode

typedef enum
+


enum GimpRunMode

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

-


enum GimpSizeType

typedef enum
+


enum GimpSizeType

typedef enum
 {
   GIMP_PIXELS,
   GIMP_POINTS
 } GimpSizeType;
 

-


enum GimpTransferMode

typedef enum
+


enum GimpTransferMode

typedef enum
 {
   GIMP_SHADOWS,
   GIMP_MIDTONES,
@@ -333,22 +329,18 @@
 } GimpTransferMode;
 

-


enum GimpTransformDirection

typedef enum
+


enum GimpTransformDirection

typedef enum
 {
   GIMP_TRANSFORM_FORWARD,
   GIMP_TRANSFORM_BACKWARD
 } GimpTransformDirection;
 

-


gimp_enums_get_type_names ()

const gchar** gimp_enums_get_type_names     (gint *n_type_names);

+


gimp_enums_get_type_names ()

const gchar** gimp_enums_get_type_names     (gint *n_type_names);

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

-

n_type_names : return location for the number of names +

n_type_names : return location for the number of names
Returns : an array with type names

Since GIMP 2.2 diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpexport.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpexport.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpexport.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpexport.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,20 +1,14 @@ -gimpexport

gimpexport

gimpexport — Export an image before it is saved.

Synopsis

+gimpexport

gimpexport

gimpexport — Export an image before it is saved.

Synopsis

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

Description

+

Description

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

Details

enum GimpExportCapabilities

typedef enum
+

Details

enum GimpExportCapabilities

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

-


enum GimpExportReturn

typedef enum
+


enum GimpExportReturn

typedef enum
 {
   GIMP_EXPORT_CANCEL,
   GIMP_EXPORT_IGNORE,
@@ -49,15 +43,9 @@
 } GimpExportReturn;
 

-


gimp_export_image ()

GimpExportReturn gimp_export_image          (gint32 *image_ID,
-                                             gint32 *drawable_ID,
-                                             const gchar *format_name,
+


gimp_export_image ()

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

Takes an image and a drawable to be saved together with a description of the capabilities of the image_format. If the @@ -69,7 +57,7 @@ This copy is then converted, the image_ID and drawable_ID are changed to point to the new image and the procedure returns GIMP_EXPORT_EXPORT. The save_plugin has to take care of deleting the -created image using gimp_image_delete() when it has saved it. +created image using gimp_image_delete() when it has saved it.

If the user chooses to Ignore the export problem, the image_ID and drawable_ID is not altered, GIMP_EXPORT_IGNORE is returned and @@ -77,9 +65,9 @@ user chooses Cancel, GIMP_EXPORT_CANCEL is returned and the save_plugin should quit itself with status GIMP_PDB_CANCEL.

-

image_ID : Pointer to the image_ID. -
drawable_ID : Pointer to the drawable_ID. -
format_name : The (short) name of the image_format (e.g. JPEG or GIF). -
capabilities : What can the image_format do? +

image_ID : Pointer to the image_ID. +
drawable_ID : Pointer to the drawable_ID. +
format_name : The (short) name of the image_format (e.g. JPEG or GIF). +
capabilities : What can the image_format do?
Returns : An enum of GimpExportReturn describing the user_action.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfileops.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfileops.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfileops.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfileops.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,113 +1,45 @@ -gimpfileops

gimpfileops

gimpfileops — File operations (load, save, etc.)

Synopsis

+gimpfileops

gimpfileops

gimpfileops — File operations (load, save, etc.)

Synopsis

 
 
 
-gchar*      gimp_temp_name                  (const gchar *extension);
-gint32      gimp_file_load                  (GimpRunMode run_mode,
-                                             const gchar *filename,
-                                             const gchar *raw_filename);
-gboolean    gimp_file_save                  (GimpRunMode run_mode,
-                                             gint32 image_ID,
-                                             gint32 drawable_ID,
-                                             const gchar *filename,
-                                             const gchar *raw_filename);
-gboolean    gimp_register_magic_load_handler
-                                            (const gchar *procedure_name,
-                                             const gchar *extensions,
-                                             const gchar *prefixes,
-                                             const gchar *magics);
-gboolean    gimp_register_load_handler      (const gchar *procedure_name,
-                                             const gchar *extensions,
-                                             const gchar *prefixes);
-gboolean    gimp_register_save_handler      (const gchar *procedure_name,
-                                             const gchar *extensions,
-                                             const gchar *prefixes);
-gboolean    gimp_register_file_handler_mime (const gchar *procedure_name,
-                                             const gchar *mime_type);
-gboolean    gimp_register_thumbnail_loader  (const gchar *load_proc,
-                                             const gchar *thumb_proc);
-

Description

+gchar* gimp_temp_name (const gchar *extension); +gint32 gimp_file_load (GimpRunMode run_mode, + const gchar *filename, + const gchar *raw_filename); +gboolean gimp_file_save (GimpRunMode run_mode, + gint32 image_ID, + gint32 drawable_ID, + const gchar *filename, + const gchar *raw_filename); +gboolean gimp_register_magic_load_handler + (const gchar *procedure_name, + const gchar *extensions, + const gchar *prefixes, + const gchar *magics); +gboolean gimp_register_load_handler (const gchar *procedure_name, + const gchar *extensions, + const gchar *prefixes); +gboolean gimp_register_save_handler (const gchar *procedure_name, + const gchar *extensions, + const gchar *prefixes); +gboolean gimp_register_file_handler_mime (const gchar *procedure_name, + const gchar *mime_type); +gboolean gimp_register_thumbnail_loader (const gchar *load_proc, + const gchar *thumb_proc); +

Description

File operations (load, save, etc.) -

Details

gimp_temp_name ()

gchar*      gimp_temp_name                  (const gchar *extension);

+

Details

gimp_temp_name ()

gchar*      gimp_temp_name                  (const gchar *extension);

Generates a unique filename.

Generates a unique filename using the temp path supplied in the user's gimprc.

-

extension : The extension the file will have. +

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

gimp_file_load ()

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

+


gimp_file_load ()

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

Loads a file by invoking the right load handler.

This procedure invokes the correct file load handler using magic if @@ -118,25 +50,15 @@ http://www.xcf/~gimp/ he wants to fetch a URL, and the full pathname will not look like a URL.\"

-

run_mode : The run mode. -
filename : The name of the file to load. -
raw_filename : The name as entered by the user. +

run_mode : The run mode. +
filename : The name of the file to load. +
raw_filename : The name as entered by the user.
Returns : The output image. -

gimp_file_save ()

gboolean    gimp_file_save                  (GimpRunMode run_mode,
-                                             gint32 image_ID,
-                                             gint32 drawable_ID,
-                                             const gchar *filename,
-                                             const gchar *raw_filename);

+


gimp_file_save ()

gboolean    gimp_file_save                  (GimpRunMode run_mode,
+                                             gint32 image_ID,
+                                             gint32 drawable_ID,
+                                             const gchar *filename,
+                                             const gchar *raw_filename);

Saves a file by extension.

This procedure invokes the correct file save handler according to @@ -146,104 +68,66 @@ this is that if the user types http://www.xcf/~gimp/ she wants to fetch a URL, and the full pathname will not look like a URL.

-

run_mode : The run mode. -
image_ID : Input image. -
drawable_ID : Drawable to save. -
filename : The name of the file to save the image in. -
raw_filename : The name as entered by the user. -
Returns : TRUE on success. -

gimp_register_magic_load_handler ()

gboolean    gimp_register_magic_load_handler
-                                            (const gchar *procedure_name,
-                                             const gchar *extensions,
-                                             const gchar *prefixes,
-                                             const gchar *magics);

+

run_mode : The run mode. +
image_ID : Input image. +
drawable_ID : Drawable to save. +
filename : The name of the file to save the image in. +
raw_filename : The name as entered by the user. +
Returns : TRUE on success. +

gimp_register_magic_load_handler ()

gboolean    gimp_register_magic_load_handler
+                                            (const gchar *procedure_name,
+                                             const gchar *extensions,
+                                             const gchar *prefixes,
+                                             const gchar *magics);

Registers a file load handler procedure.

Registers a procedural database procedure to be called to load files of a particular file format using magic file information.

-

procedure_name : The name of the procedure to be used for loading. -
extensions : comma separated list of extensions this handler can load (i.e. \"jpg,jpeg\"). -
prefixes : comma separated list of prefixes this handler can load (i.e. \"http:,ftp:\"). -
magics : comma separated list of magic file information this handler can load (i.e. \"0,string,GIF\"). -
Returns : TRUE on success. -

gimp_register_load_handler ()

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

+

procedure_name : The name of the procedure to be used for loading. +
extensions : comma separated list of extensions this handler can load (i.e. \"jpg,jpeg\"). +
prefixes : comma separated list of prefixes this handler can load (i.e. \"http:,ftp:\"). +
magics : comma separated list of magic file information this handler can load (i.e. \"0,string,GIF\"). +
Returns : TRUE on success. +

gimp_register_load_handler ()

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

Registers a file load handler procedure.

Registers a procedural database procedure to be called to load files of a particular file format.

-

procedure_name : The name of the procedure to be used for loading. -
extensions : comma separated list of extensions this handler can load (i.e. \"jpg,jpeg\"). -
prefixes : comma separated list of prefixes this handler can load (i.e. \"http:,ftp:\"). -
Returns : TRUE on success. -

gimp_register_save_handler ()

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

+

procedure_name : The name of the procedure to be used for loading. +
extensions : comma separated list of extensions this handler can load (i.e. \"jpg,jpeg\"). +
prefixes : comma separated list of prefixes this handler can load (i.e. \"http:,ftp:\"). +
Returns : TRUE on success. +

gimp_register_save_handler ()

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

Registers a file save handler procedure.

Registers a procedural database procedure to be called to save files in a particular file format.

-

procedure_name : The name of the procedure to be used for saving. -
extensions : comma separated list of extensions this handler can save (i.e. \"jpg,jpeg\"). -
prefixes : comma separated list of prefixes this handler can save (i.e. \"http:,ftp:\"). +

procedure_name : The name of the procedure to be used for saving. +
extensions : comma separated list of extensions this handler can save (i.e. \"jpg,jpeg\"). +
prefixes : comma separated list of prefixes this handler can save (i.e. \"http:,ftp:\").
Returns : TRUE on success. -

gimp_register_file_handler_mime ()

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

+


gimp_register_file_handler_mime ()

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

Associates a MIME type with a file handler procedure.

Registers a MIME type for a file handler procedure. This allows GIMP to determine the MIME type of the file opened or saved using this procedure.

-

procedure_name : The name of the procedure to associate a MIME type with. -
mime_type : A single MIME type, like for example \"image/jpeg\". +

procedure_name : The name of the procedure to associate a MIME type with. +
mime_type : A single MIME type, like for example \"image/jpeg\".
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_register_thumbnail_loader ()

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

+


gimp_register_thumbnail_loader ()

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

Associates a thumbnail loader with a file load procedure.

Some file formats allow for embedded thumbnails, other file formats @@ -253,8 +137,8 @@ This procedure is then associated with the standard load procedure using this function.

-

load_proc : The name of the procedure the thumbnail loader with. -
thumb_proc : The name of the thumbnail load procedure. +

load_proc : The name of the procedure the thumbnail loader with. +
thumb_proc : The name of the thumbnail load procedure.
Returns : TRUE on success.

Since GIMP 2.2 diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,67 +1,29 @@ -gimpfloatingsel

gimpfloatingsel

gimpfloatingsel — Functions for removing or attaching floating selections.

Synopsis

+gimpfloatingsel

gimpfloatingsel

gimpfloatingsel — Functions for removing or attaching floating selections.

Synopsis

 
 
 
-gboolean    gimp_floating_sel_remove        (gint32 floating_sel_ID);
-gboolean    gimp_floating_sel_anchor        (gint32 floating_sel_ID);
-gboolean    gimp_floating_sel_to_layer      (gint32 floating_sel_ID);
-gboolean    gimp_floating_sel_attach        (gint32 layer_ID,
-                                             gint32 drawable_ID);
-gboolean    gimp_floating_sel_rigor         (gint32 floating_sel_ID,
-                                             gboolean undo);
-gboolean    gimp_floating_sel_relax         (gint32 floating_sel_ID,
-                                             gboolean undo);
-

Description

+gboolean gimp_floating_sel_remove (gint32 floating_sel_ID); +gboolean gimp_floating_sel_anchor (gint32 floating_sel_ID); +gboolean gimp_floating_sel_to_layer (gint32 floating_sel_ID); +gboolean gimp_floating_sel_attach (gint32 layer_ID, + gint32 drawable_ID); +gboolean gimp_floating_sel_rigor (gint32 floating_sel_ID, + gboolean undo); +gboolean gimp_floating_sel_relax (gint32 floating_sel_ID, + gboolean undo); +

Description

Functions for removing or attaching floating selections. -

Details

gimp_floating_sel_remove ()

gboolean    gimp_floating_sel_remove        (gint32 floating_sel_ID);

+

Details

gimp_floating_sel_remove ()

gboolean    gimp_floating_sel_remove        (gint32 floating_sel_ID);

Remove the specified floating selection from its associated drawable.

This procedure removes the floating selection completely, without any side effects. The associated drawable is then set to active.

-

floating_sel_ID : The floating selection. +

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

gimp_floating_sel_anchor ()

gboolean    gimp_floating_sel_anchor        (gint32 floating_sel_ID);

+


gimp_floating_sel_anchor ()

gboolean    gimp_floating_sel_anchor        (gint32 floating_sel_ID);

Anchor the specified floating selection to its associated drawable.

This procedure anchors the floating selection to its associated @@ -69,13 +31,9 @@ ClipToBottomLayer. The floating selection layer is no longer valid after this operation.

-

floating_sel_ID : The floating selection. +

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

gimp_floating_sel_to_layer ()

gboolean    gimp_floating_sel_to_layer      (gint32 floating_sel_ID);

+


gimp_floating_sel_to_layer ()

gboolean    gimp_floating_sel_to_layer      (gint32 floating_sel_ID);

Transforms the specified floating selection into a layer.

This procedure transforms the specified floating selection into a @@ -87,52 +45,34 @@ from the underlying image. This might be the case if the floating selection is above an auxillary channel or a layer mask.

-

floating_sel_ID : The floating selection. +

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

gimp_floating_sel_attach ()

gboolean    gimp_floating_sel_attach        (gint32 layer_ID,
-                                             gint32 drawable_ID);

+


gimp_floating_sel_attach ()

gboolean    gimp_floating_sel_attach        (gint32 layer_ID,
+                                             gint32 drawable_ID);

Attach the specified layer as floating to the specified drawable.

This procedure attaches the layer as floating selection to the drawable.

-

layer_ID : The layer (is attached as floating selection). -
drawable_ID : The drawable (where to attach the floating selection). +

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

gimp_floating_sel_rigor ()

gboolean    gimp_floating_sel_rigor         (gint32 floating_sel_ID,
-                                             gboolean undo);

+


gimp_floating_sel_rigor ()

gboolean    gimp_floating_sel_rigor         (gint32 floating_sel_ID,
+                                             gboolean undo);

Rigor the floating selection.

This procedure rigors the floating selection.

-

floating_sel_ID : The floating selection. -
undo : %desc%%. +

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

gimp_floating_sel_relax ()

gboolean    gimp_floating_sel_relax         (gint32 floating_sel_ID,
-                                             gboolean undo);

+


gimp_floating_sel_relax ()

gboolean    gimp_floating_sel_relax         (gint32 floating_sel_ID,
+                                             gboolean undo);

Relax the floating selection.

This procedure relaxes the floating selection.

-

floating_sel_ID : The floating selection. -
undo : %desc%%. +

floating_sel_ID : The floating selection. +
undo : %desc%%.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfontmenu.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfontmenu.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfontmenu.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfontmenu.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,72 +1,56 @@ -gimpfontmenu

gimpfontmenu

gimpfontmenu — A widget for selecting fonts.

Synopsis

+gimpfontmenu

gimpfontmenu

gimpfontmenu — A widget for selecting fonts.

Synopsis

 
 
 
 GtkWidget*  gimp_font_select_widget_new     (const gchar *title,
-                                             const gchar *font_name,
+>GtkWidget*  gimp_font_select_widget_new     (const gchar *title,
+                                             const gchar *font_name,
                                              GimpRunFontCallback callback,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_font_select_widget_close   (GtkWidget *widget);
 void        gimp_font_select_widget_set     (GtkWidget *widget,
-                                             const gchar *font_name);
-

Description

+ const gchar *font_name); +

Description

A widget for selecting fonts. -

Details

gimp_font_select_widget_new ()

Details

gimp_font_select_widget_new ()

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

+ gpointer data);

Creates a new GtkWidget that completely controls the selection of a font. This widget is suitable for placement in a table in a plug-in dialog.

-

title : Title of the dialog to use or NULL means to use the default +

title : Title of the dialog to use or NULL means to use the default title. -
font_name : Initial font name. -
callback : A function to call when the selected font changes. -
data : A pointer to arbitary data to be used in the call to callback. +
font_name : Initial font name. +
callback : A function to call when the selected font changes. +
data : A pointer to arbitary data to be used in the call to callback.
Returns : A GtkWidget that you can use in your UI. -

gimp_font_select_widget_close ()

void        gimp_font_select_widget_close   (

gimp_font_select_widget_close ()

void        gimp_font_select_widget_close   (GtkWidget *widget);

-Closes the popup window associated with widget.

+Closes the popup window associated with widget.

-

widget : A font select widget. -

gimp_font_select_widget_set ()

void        gimp_font_select_widget_set     (
widget : A font select widget. +

gimp_font_select_widget_set ()

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

+ const gchar *font_name);

Sets the current font for the font select widget. Calls the callback function if one was supplied in the call to -gimp_font_select_widget_new().

+gimp_font_select_widget_new().

-

widget : A font select widget. -
font_name : Font name to set; NULL means no change. +

widget : A font select widget. +
font_name : Font name to set; NULL means no change.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfontselect.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfontselect.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfontselect.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfontselect.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,142 +1,74 @@ -gimpfontselect

gimpfontselect

gimpfontselect — Functions providing a font selection dialog.

Synopsis

+gimpfontselect

gimpfontselect

gimpfontselect — Functions providing a font selection dialog.

Synopsis

 
 
 
-void        (*GimpRunFontCallback)          (const gchar *font_name,
-                                             gboolean dialog_closing,
-                                             gpointer user_data);
-const gchar* gimp_font_select_new           (const gchar *title,
-                                             const gchar *font_name,
+void        (*GimpRunFontCallback)          (const gchar *font_name,
+                                             gboolean dialog_closing,
+                                             gpointer user_data);
+const gchar* gimp_font_select_new           (const gchar *title,
+                                             const gchar *font_name,
                                              GimpRunFontCallback callback,
-                                             gpointer data);
-void        gimp_font_select_destroy        (const gchar *font_callback);
-gboolean    gimp_fonts_popup                (const gchar *font_callback,
-                                             const gchar *popup_title,
-                                             const gchar *initial_font);
-gboolean    gimp_fonts_close_popup          (const gchar *font_callback);
-gboolean    gimp_fonts_set_popup            (const gchar *font_callback,
-                                             const gchar *font_name);
-

Description

+ gpointer data); +void gimp_font_select_destroy (const gchar *font_callback); +gboolean gimp_fonts_popup (const gchar *font_callback, + const gchar *popup_title, + const gchar *initial_font); +gboolean gimp_fonts_close_popup (const gchar *font_callback); +gboolean gimp_fonts_set_popup (const gchar *font_callback, + const gchar *font_name); +

Description

Functions providing a font selection dialog. -

Details

GimpRunFontCallback ()

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

- -

font_name : -
dialog_closing : -
user_data : - - -

gimp_font_select_new ()

const gchar* gimp_font_select_new           (const gchar *title,
-                                             const gchar *font_name,
+

Details

GimpRunFontCallback ()

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

+ +

font_name : +
dialog_closing : +
user_data : + + +

gimp_font_select_new ()

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

- -

title : -
font_name : -
callback : -
data : + gpointer data);

+ +

title : +
font_name : +
callback : +
data :
Returns : -

gimp_font_select_destroy ()

void        gimp_font_select_destroy        (const gchar *font_callback);

- -

font_callback : - - -

gimp_fonts_popup ()

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

+


gimp_font_select_destroy ()

void        gimp_font_select_destroy        (const gchar *font_callback);

+ +

font_callback : + + +

gimp_fonts_popup ()

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

Invokes the Gimp font selection.

This procedure popups the font selection dialog.

-

font_callback : The callback PDB proc to call when font selection is made. -
popup_title : Title to give the font popup window. -
initial_font : The name of the font to set as the first selected. +

font_callback : The callback PDB proc to call when font selection is made. +
popup_title : Title to give the font popup window. +
initial_font : The name of the font to set as the first selected.
Returns : TRUE on success. -

gimp_fonts_close_popup ()

gboolean    gimp_fonts_close_popup          (const gchar *font_callback);

+


gimp_fonts_close_popup ()

gboolean    gimp_fonts_close_popup          (const gchar *font_callback);

Popdown the Gimp font selection.

This procedure closes an opened font selection dialog.

-

font_callback : The name of the callback registered for this popup. +

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

gimp_fonts_set_popup ()

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

+


gimp_fonts_set_popup ()

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

Sets the current font selection in a popup.

Sets the current font selection in a popup.

-

font_callback : The name of the callback registered for this popup. -
font_name : The name of the font to set as selected. +

font_callback : The name of the callback registered for this popup. +
font_name : The name of the font to set as selected.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfonts.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfonts.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfonts.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfonts.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,43 +1,27 @@ -gimpfonts

gimpfonts

gimpfonts — Operations related to fonts.

Synopsis

+gimpfonts

gimpfonts

gimpfonts — Operations related to fonts.

Synopsis

 
 
 
-gboolean    gimp_fonts_refresh              (void);
-gchar**     gimp_fonts_get_list             (const gchar *filter,
-                                             gint *num_fonts);
-

Description

- -

Details

gimp_fonts_refresh ()

gboolean    gimp_fonts_refresh              (void);

+gboolean gimp_fonts_refresh (void); +gchar** gimp_fonts_get_list (const gchar *filter, + gint *num_fonts); +

Description

+ +

Details

gimp_fonts_refresh ()

gboolean    gimp_fonts_refresh              (void);

Refresh current fonts. This function always succeeds.

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

Returns : TRUE on success. -

gimp_fonts_get_list ()

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

+


gimp_fonts_get_list ()

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

Retrieve the list of loaded fonts.

This procedure returns a list of the fonts that are currently available.

-

filter : An optional regular expression used to filter the list. -
num_fonts : The number of available fonts. +

filter : An optional regular expression used to filter the list. +
num_fonts : The number of available fonts.
Returns : The list of font names.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgimprc.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgimprc.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgimprc.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgimprc.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,45 +1,19 @@ -gimpgimprc

gimpgimprc

gimpgimprc — Interactions with settings from .gimprc.

Synopsis

+gimpgimprc

gimpgimprc

gimpgimprc — Interactions with settings from .gimprc.

Description

+gchar* gimp_gimprc_query (const gchar *token); +gboolean gimp_gimprc_set (const gchar *token, + const gchar *value); +gchar* gimp_get_default_comment (void); +gchar* gimp_get_module_load_inhibit (void); +gboolean gimp_get_monitor_resolution (gdouble *xres, + gdouble *yres); +gchar* gimp_get_theme_dir (void); +

Description

Interactions with settings from .gimprc. -

Details

gimp_gimprc_query ()

gchar*      gimp_gimprc_query               (const gchar *token);

+

Details

gimp_gimprc_query ()

gchar*      gimp_gimprc_query               (const gchar *token);

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

This procedure is used to locate additional information contained in @@ -52,16 +26,10 @@ string. Entries not corresponding to this format will cause warnings to be issued on gimprc parsing and will not be queryable.

-

token : The token to query for. +

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

gimp_gimprc_set ()

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

+


gimp_gimprc_set ()

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

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

This procedure is used to add or change additional information in @@ -70,33 +38,23 @@ function to store it, and gimp_gimprc_query to retrieve it. This will accept _only_ string values in UTF-8 encoding.

-

token : The token to add or modify. -
value : The value to set the token to. +

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

gimp_get_default_comment ()

gchar*      gimp_get_default_comment        (void);

+


gimp_get_default_comment ()

gchar*      gimp_get_default_comment        (void);

Get the default image comment as specified in the Preferences.

Returns a copy of the default image comment.

Returns : Default Image Comment. -

gimp_get_module_load_inhibit ()

gchar*      gimp_get_module_load_inhibit    (void);

+


gimp_get_module_load_inhibit ()

gchar*      gimp_get_module_load_inhibit    (void);

Get the list of modules which should not be loaded.

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

Returns : The list of modules. -

gimp_get_monitor_resolution ()

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

+


gimp_get_monitor_resolution ()

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

Get the monitor resolution as specified in the Preferences.

Returns the resolution of the monitor in pixels/inch. This value is @@ -104,12 +62,10 @@ in the Preferences) and there's no guarantee for the value to be reasonable.

-

xres : X resolution. -
yres : Y resolution. +

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

gimp_get_theme_dir ()

gchar*      gimp_get_theme_dir              (void);

+


gimp_get_theme_dir ()

gchar*      gimp_get_theme_dir              (void);

Get the directory of the current GUI theme.

Returns a copy of the current GUI theme dir.

diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradient.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradient.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradient.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradient.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,452 +1,184 @@ -gimpgradient

gimpgradient

gimpgradient — Functions operating on a single gradient.

Synopsis

+gimpgradient

gimpgradient

gimpgradient — Functions operating on a single gradient.

Synopsis

 
 
 
-gchar*      gimp_gradient_new               (const gchar *name);
-gchar*      gimp_gradient_duplicate         (const gchar *name);
-gchar*      gimp_gradient_rename            (const gchar *name,
-                                             const gchar *new_name);
-gboolean    gimp_gradient_delete            (const gchar *name);
-gboolean    gimp_gradient_get_uniform_samples
-                                            (const gchar *name,
-                                             gint num_samples,
-                                             gboolean reverse,
-                                             gint *num_color_samples,
-                                             gdouble **color_samples);
-gboolean    gimp_gradient_get_custom_samples
-                                            (const gchar *name,
-                                             gint num_samples,
-                                             const gdouble *positions,
-                                             gboolean reverse,
-                                             gint *num_color_samples,
-                                             gdouble **color_samples);
-gboolean    gimp_gradient_segment_get_left_color
-                                            (const gchar *name,
-                                             gint segment,
+gchar*      gimp_gradient_new               (const gchar *name);
+gchar*      gimp_gradient_duplicate         (const gchar *name);
+gchar*      gimp_gradient_rename            (const gchar *name,
+                                             const gchar *new_name);
+gboolean    gimp_gradient_delete            (const gchar *name);
+gboolean    gimp_gradient_get_uniform_samples
+                                            (const gchar *name,
+                                             gint num_samples,
+                                             gboolean reverse,
+                                             gint *num_color_samples,
+                                             gdouble **color_samples);
+gboolean    gimp_gradient_get_custom_samples
+                                            (const gchar *name,
+                                             gint num_samples,
+                                             const gdouble *positions,
+                                             gboolean reverse,
+                                             gint *num_color_samples,
+                                             gdouble **color_samples);
+gboolean    gimp_gradient_segment_get_left_color
+                                            (const gchar *name,
+                                             gint segment,
                                              GimpRGB *color,
-                                             gdouble *opacity);
-gboolean    gimp_gradient_segment_set_left_color
-                                            (const gchar *name,
-                                             gint segment,
+                                             gdouble *opacity);
+gboolean    gimp_gradient_segment_set_left_color
+                                            (const gchar *name,
+                                             gint segment,
                                              const GimpRGB *color,
-                                             gdouble opacity);
-gboolean    gimp_gradient_segment_get_right_color
-                                            (const gchar *name,
-                                             gint segment,
+                                             gdouble opacity);
+gboolean    gimp_gradient_segment_get_right_color
+                                            (const gchar *name,
+                                             gint segment,
                                              GimpRGB *color,
-                                             gdouble *opacity);
-gboolean    gimp_gradient_segment_set_right_color
-                                            (const gchar *name,
-                                             gint segment,
+                                             gdouble *opacity);
+gboolean    gimp_gradient_segment_set_right_color
+                                            (const gchar *name,
+                                             gint segment,
                                              const GimpRGB *color,
-                                             gdouble opacity);
-gboolean    gimp_gradient_segment_get_left_pos
-                                            (const gchar *name,
-                                             gint segment,
-                                             gdouble *pos);
-gboolean    gimp_gradient_segment_set_left_pos
-                                            (const gchar *name,
-                                             gint segment,
-                                             gdouble pos,
-                                             gdouble *final_pos);
-gboolean    gimp_gradient_segment_get_middle_pos
-                                            (const gchar *name,
-                                             gint segment,
-                                             gdouble *pos);
-gboolean    gimp_gradient_segment_set_middle_pos
-                                            (const gchar *name,
-                                             gint segment,
-                                             gdouble pos,
-                                             gdouble *final_pos);
-gboolean    gimp_gradient_segment_get_right_pos
-                                            (const gchar *name,
-                                             gint segment,
-                                             gdouble *pos);
-gboolean    gimp_gradient_segment_set_right_pos
-                                            (const gchar *name,
-                                             gint segment,
-                                             gdouble pos,
-                                             gdouble *final_pos);
-gboolean    gimp_gradient_segment_get_blending_function
-                                            (const gchar *name,
-                                             gint segment,
+                                             gdouble opacity);
+gboolean    gimp_gradient_segment_get_left_pos
+                                            (const gchar *name,
+                                             gint segment,
+                                             gdouble *pos);
+gboolean    gimp_gradient_segment_set_left_pos
+                                            (const gchar *name,
+                                             gint segment,
+                                             gdouble pos,
+                                             gdouble *final_pos);
+gboolean    gimp_gradient_segment_get_middle_pos
+                                            (const gchar *name,
+                                             gint segment,
+                                             gdouble *pos);
+gboolean    gimp_gradient_segment_set_middle_pos
+                                            (const gchar *name,
+                                             gint segment,
+                                             gdouble pos,
+                                             gdouble *final_pos);
+gboolean    gimp_gradient_segment_get_right_pos
+                                            (const gchar *name,
+                                             gint segment,
+                                             gdouble *pos);
+gboolean    gimp_gradient_segment_set_right_pos
+                                            (const gchar *name,
+                                             gint segment,
+                                             gdouble pos,
+                                             gdouble *final_pos);
+gboolean    gimp_gradient_segment_get_blending_function
+                                            (const gchar *name,
+                                             gint segment,
                                              GimpGradientSegmentType *blend_func);
-gboolean    gimp_gradient_segment_get_coloring_type
-                                            (const gchar *name,
-                                             gint segment,
+gboolean    gimp_gradient_segment_get_coloring_type
+                                            (const gchar *name,
+                                             gint segment,
                                              GimpGradientSegmentColor *coloring_type);
-gboolean    gimp_gradient_segment_range_set_blending_function
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment,
+gboolean    gimp_gradient_segment_range_set_blending_function
+                                            (const gchar *name,
+                                             gint start_segment,
+                                             gint end_segment,
                                              GimpGradientSegmentType blending_function);
-gboolean    gimp_gradient_segment_range_set_coloring_type
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment,
+gboolean    gimp_gradient_segment_range_set_coloring_type
+                                            (const gchar *name,
+                                             gint start_segment,
+                                             gint end_segment,
                                              GimpGradientSegmentColor coloring_type);
-gboolean    gimp_gradient_segment_range_flip
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment);
-gboolean    gimp_gradient_segment_range_replicate
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment,
-                                             gint replicate_times);
-gboolean    gimp_gradient_segment_range_split_midpoint
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment);
-gboolean    gimp_gradient_segment_range_split_uniform
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment,
-                                             gint split_parts);
-gboolean    gimp_gradient_segment_range_delete
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment);
-gboolean    gimp_gradient_segment_range_redistribute_handles
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment);
-gboolean    gimp_gradient_segment_range_blend_colors
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment);
-gboolean    gimp_gradient_segment_range_blend_opacity
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment);
-gdouble     gimp_gradient_segment_range_move
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment,
-                                             gdouble delta,
-                                             gboolean control_compress);
-

Description

+gboolean gimp_gradient_segment_range_flip + (const gchar *name, + gint start_segment, + gint end_segment); +gboolean gimp_gradient_segment_range_replicate + (const gchar *name, + gint start_segment, + gint end_segment, + gint replicate_times); +gboolean gimp_gradient_segment_range_split_midpoint + (const gchar *name, + gint start_segment, + gint end_segment); +gboolean gimp_gradient_segment_range_split_uniform + (const gchar *name, + gint start_segment, + gint end_segment, + gint split_parts); +gboolean gimp_gradient_segment_range_delete + (const gchar *name, + gint start_segment, + gint end_segment); +gboolean gimp_gradient_segment_range_redistribute_handles + (const gchar *name, + gint start_segment, + gint end_segment); +gboolean gimp_gradient_segment_range_blend_colors + (const gchar *name, + gint start_segment, + gint end_segment); +gboolean gimp_gradient_segment_range_blend_opacity + (const gchar *name, + gint start_segment, + gint end_segment); +gdouble gimp_gradient_segment_range_move + (const gchar *name, + gint start_segment, + gint end_segment, + gdouble delta, + gboolean control_compress); +

Description

Functions operating on a single gradient. -

Details

gimp_gradient_new ()

gchar*      gimp_gradient_new               (const gchar *name);

+

Details

gimp_gradient_new ()

gchar*      gimp_gradient_new               (const gchar *name);

Creates a new gradient

This procedure creates a new, uninitialized gradient

-

name : The requested name of the new gradient. +

name : The requested name of the new gradient.
Returns : The actual new gradient name.

Since GIMP 2.2 -


gimp_gradient_duplicate ()

gchar*      gimp_gradient_duplicate         (const gchar *name);

+


gimp_gradient_duplicate ()

gchar*      gimp_gradient_duplicate         (const gchar *name);

Duplicates a gradient

This procedure creates an identical gradient by a different name

-

name : The gradient name. +

name : The gradient name.
Returns : The name of the gradient's copy.

Since GIMP 2.2 -


gimp_gradient_rename ()

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

+


gimp_gradient_rename ()

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

Rename a gradient

This procedure renames a gradient

-

name : The gradient name. -
new_name : The new name of the gradient. +

name : The gradient name. +
new_name : The new name of the gradient.
Returns : The actual new name of the gradient.

Since GIMP 2.2 -


gimp_gradient_delete ()

gboolean    gimp_gradient_delete            (const gchar *name);

+


gimp_gradient_delete ()

gboolean    gimp_gradient_delete            (const gchar *name);

Deletes a gradient

This procedure deletes a gradient

-

name : The gradient name. +

name : The gradient name.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_get_uniform_samples ()

gboolean    gimp_gradient_get_uniform_samples
-                                            (const gchar *name,
-                                             gint num_samples,
-                                             gboolean reverse,
-                                             gint *num_color_samples,
-                                             gdouble **color_samples);

+


gimp_gradient_get_uniform_samples ()

gboolean    gimp_gradient_get_uniform_samples
+                                            (const gchar *name,
+                                             gint num_samples,
+                                             gboolean reverse,
+                                             gint *num_color_samples,
+                                             gdouble **color_samples);

Sample the specified in uniform parts.

This procedure samples the active gradient in the specified number @@ -457,35 +189,21 @@ example, if the number of samples is 3, the procedure will return the colors at positions { 0.0, 0.5, 1.0 }.

-

name : The gradient name. -
num_samples : The number of samples to take. -
reverse : Use the reverse gradient. -
num_color_samples : Length of the color_samples array (4 * num_samples). -
color_samples : Color samples: { R1, G1, B1, A1, ..., Rn, Gn, Bn, An }. +

name : The gradient name. +
num_samples : The number of samples to take. +
reverse : Use the reverse gradient. +
num_color_samples : Length of the color_samples array (4 * num_samples). +
color_samples : Color samples: { R1, G1, B1, A1, ..., Rn, Gn, Bn, An }.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_get_custom_samples ()

gboolean    gimp_gradient_get_custom_samples
-                                            (const gchar *name,
-                                             gint num_samples,
-                                             const gdouble *positions,
-                                             gboolean reverse,
-                                             gint *num_color_samples,
-                                             gdouble **color_samples);

+


gimp_gradient_get_custom_samples ()

gboolean    gimp_gradient_get_custom_samples
+                                            (const gchar *name,
+                                             gint num_samples,
+                                             const gdouble *positions,
+                                             gboolean reverse,
+                                             gint *num_color_samples,
+                                             gdouble **color_samples);

Sample the spacified gradient in custom positions.

This procedure samples the active gradient in the specified number @@ -495,166 +213,116 @@ 1.0. The procedure returns a list of floating-point values which correspond to the RGBA values for each sample.

-

name : The gradient name. -
num_samples : The number of samples to take. -
positions : The list of positions to sample along the gradient. -
reverse : Use the reverse gradient. -
num_color_samples : Length of the color_samples array (4 * num_samples). -
color_samples : Color samples: { R1, G1, B1, A1, ..., Rn, Gn, Bn, An }. +

name : The gradient name. +
num_samples : The number of samples to take. +
positions : The list of positions to sample along the gradient. +
reverse : Use the reverse gradient. +
num_color_samples : Length of the color_samples array (4 * num_samples). +
color_samples : Color samples: { R1, G1, B1, A1, ..., Rn, Gn, Bn, An }.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_get_left_color ()

gboolean    gimp_gradient_segment_get_left_color
-                                            (const gchar *name,
-                                             gint segment,
+


gimp_gradient_segment_get_left_color ()

gboolean    gimp_gradient_segment_get_left_color
+                                            (const gchar *name,
+                                             gint segment,
                                              GimpRGB *color,
-                                             gdouble *opacity);

+ gdouble *opacity);

Retrieves the left endpoint color of the specified gradient and segment

This procedure retrieves the left endpoint color of the specified segment of the specified gradient.

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
color : The return color. -
opacity : The opacity of the endpoint. +

name : The gradient name. +
segment : The index of the segment within the gradient. +
color : The return color. +
opacity : The opacity of the endpoint.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_set_left_color ()

gboolean    gimp_gradient_segment_set_left_color
-                                            (const gchar *name,
-                                             gint segment,
+


gimp_gradient_segment_set_left_color ()

gboolean    gimp_gradient_segment_set_left_color
+                                            (const gchar *name,
+                                             gint segment,
                                              const GimpRGB *color,
-                                             gdouble opacity);

+ gdouble opacity);

Retrieves the left endpoint color of the specified gradient and segment

This procedure retrieves the left endpoint color of the specified segment of the specified gradient.

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
color : The color to set. -
opacity : The opacity to set for the endpoint. +

name : The gradient name. +
segment : The index of the segment within the gradient. +
color : The color to set. +
opacity : The opacity to set for the endpoint.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_get_right_color ()

gboolean    gimp_gradient_segment_get_right_color
-                                            (const gchar *name,
-                                             gint segment,
+


gimp_gradient_segment_get_right_color ()

gboolean    gimp_gradient_segment_get_right_color
+                                            (const gchar *name,
+                                             gint segment,
                                              GimpRGB *color,
-                                             gdouble *opacity);

+ gdouble *opacity);

Retrieves the right endpoint color of the specified gradient and segment

This procedure retrieves the right endpoint color of the specified segment of the specified gradient.

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
color : The return color. -
opacity : The opacity of the endpoint. +

name : The gradient name. +
segment : The index of the segment within the gradient. +
color : The return color. +
opacity : The opacity of the endpoint.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_set_right_color ()

gboolean    gimp_gradient_segment_set_right_color
-                                            (const gchar *name,
-                                             gint segment,
+


gimp_gradient_segment_set_right_color ()

gboolean    gimp_gradient_segment_set_right_color
+                                            (const gchar *name,
+                                             gint segment,
                                              const GimpRGB *color,
-                                             gdouble opacity);

+ gdouble opacity);

Retrieves the right endpoint color of the specified gradient and segment

This procedure retrieves the right endpoint color of the specified segment of the specified gradient.

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
color : The color to set. -
opacity : The opacity to set for the endpoint. +

name : The gradient name. +
segment : The index of the segment within the gradient. +
color : The color to set. +
opacity : The opacity to set for the endpoint.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_get_left_pos ()

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

+


gimp_gradient_segment_get_left_pos ()

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

Retrieves the left endpoint position of the specified gradient and segment

This procedure retrieves the left endpoint position of the specified segment of the specified gradient.

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
pos : The return position. +

name : The gradient name. +
segment : The index of the segment within the gradient. +
pos : The return position.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_set_left_pos ()

gboolean    gimp_gradient_segment_set_left_pos
-                                            (const gchar *name,
-                                             gint segment,
-                                             gdouble pos,
-                                             gdouble *final_pos);

+


gimp_gradient_segment_set_left_pos ()

gboolean    gimp_gradient_segment_set_left_pos
+                                            (const gchar *name,
+                                             gint segment,
+                                             gdouble pos,
+                                             gdouble *final_pos);

Sets the left endpoint position of the specified gradient and segment

@@ -664,52 +332,34 @@ point of the current segement. This procedure returns the final position.

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
pos : The position to set the guidepoint in. -
final_pos : The return position. +

name : The gradient name. +
segment : The index of the segment within the gradient. +
pos : The position to set the guidepoint in. +
final_pos : The return position.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_get_middle_pos ()

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

+


gimp_gradient_segment_get_middle_pos ()

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

Retrieves the middle point position of the specified gradient and segment

This procedure retrieves the middle point position of the specified segment of the specified gradient.

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
pos : The return position. +

name : The gradient name. +
segment : The index of the segment within the gradient. +
pos : The return position.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_set_middle_pos ()

gboolean    gimp_gradient_segment_set_middle_pos
-                                            (const gchar *name,
-                                             gint segment,
-                                             gdouble pos,
-                                             gdouble *final_pos);

+


gimp_gradient_segment_set_middle_pos ()

gboolean    gimp_gradient_segment_set_middle_pos
+                                            (const gchar *name,
+                                             gint segment,
+                                             gdouble pos,
+                                             gdouble *final_pos);

Sets the middle point position of the specified gradient and segment

This procedure sets the middle point position of the specified @@ -717,52 +367,34 @@ between the two endpoints of the segment. This procedure returns the final position.

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
pos : The position to set the guidepoint in. -
final_pos : The return position. +

name : The gradient name. +
segment : The index of the segment within the gradient. +
pos : The position to set the guidepoint in. +
final_pos : The return position.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_get_right_pos ()

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

+


gimp_gradient_segment_get_right_pos ()

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

Retrieves the right endpoint position of the specified gradient and segment

This procedure retrieves the right endpoint position of the specified segment of the specified gradient.

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
pos : The return position. +

name : The gradient name. +
segment : The index of the segment within the gradient. +
pos : The return position.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_set_right_pos ()

gboolean    gimp_gradient_segment_set_right_pos
-                                            (const gchar *name,
-                                             gint segment,
-                                             gdouble pos,
-                                             gdouble *final_pos);

+


gimp_gradient_segment_set_right_pos ()

gboolean    gimp_gradient_segment_set_right_pos
+                                            (const gchar *name,
+                                             gint segment,
+                                             gdouble pos,
+                                             gdouble *final_pos);

Sets the right endpoint position of the specified gradient and segment

@@ -772,327 +404,219 @@ the middle point of the segment to the right. This procedure returns the final position.

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
pos : The position to set the guidepoint in. -
final_pos : The return position. +

name : The gradient name. +
segment : The index of the segment within the gradient. +
pos : The position to set the guidepoint in. +
final_pos : The return position.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_get_blending_function ()

gboolean    gimp_gradient_segment_get_blending_function
-                                            (const gchar *name,
-                                             gint segment,
+


gimp_gradient_segment_get_blending_function ()

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

Retrieves the gradient segment's blending function

This procedure retrieves the blending function of the segment at the specified gradient name and segment index.

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
blend_func : The blending function of the segment. +

name : The gradient name. +
segment : The index of the segment within the gradient. +
blend_func : The blending function of the segment.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_get_coloring_type ()

gboolean    gimp_gradient_segment_get_coloring_type
-                                            (const gchar *name,
-                                             gint segment,
+


gimp_gradient_segment_get_coloring_type ()

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

Retrieves the gradient segment's coloring type

This procedure retrieves the coloring type of the segment at the specified gradient name and segment index.

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
coloring_type : The coloring type of the segment. +

name : The gradient name. +
segment : The index of the segment within the gradient. +
coloring_type : The coloring type of the segment.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_set_blending_function ()

gboolean    gimp_gradient_segment_range_set_blending_function
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment,
+


gimp_gradient_segment_range_set_blending_function ()

gboolean    gimp_gradient_segment_range_set_blending_function
+                                            (const gchar *name,
+                                             gint start_segment,
+                                             gint end_segment,
                                              GimpGradientSegmentType blending_function);

Change the blending function of a segments range

This function changes the blending function of a segment range to the specified blending function.

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
blending_function : The Blending Function. +

name : The gradient name. +
start_segment : The index of the first segment to operate on. +
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
blending_function : The Blending Function.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_set_coloring_type ()

gboolean    gimp_gradient_segment_range_set_coloring_type
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment,
+


gimp_gradient_segment_range_set_coloring_type ()

gboolean    gimp_gradient_segment_range_set_coloring_type
+                                            (const gchar *name,
+                                             gint start_segment,
+                                             gint end_segment,
                                              GimpGradientSegmentColor coloring_type);

Change the coloring type of a segments range

This function changes the coloring type of a segment range to the specified coloring type.

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
coloring_type : The Coloring Type. +

name : The gradient name. +
start_segment : The index of the first segment to operate on. +
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
coloring_type : The Coloring Type.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_flip ()

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

+


gimp_gradient_segment_range_flip ()

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

Flip the segment range

This function flips a segment range.

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +

name : The gradient name. +
start_segment : The index of the first segment to operate on. +
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_replicate ()

gboolean    gimp_gradient_segment_range_replicate
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment,
-                                             gint replicate_times);

+


gimp_gradient_segment_range_replicate ()

gboolean    gimp_gradient_segment_range_replicate
+                                            (const gchar *name,
+                                             gint start_segment,
+                                             gint end_segment,
+                                             gint replicate_times);

Replicate the segment range

This function replicates a segment range a given number of times. Instead of the original segment range, several smaller scaled copies of it will appear in equal widths.

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
replicate_times : The number of times to replicate. +

name : The gradient name. +
start_segment : The index of the first segment to operate on. +
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
replicate_times : The number of times to replicate.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_split_midpoint ()

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

+


gimp_gradient_segment_range_split_midpoint ()

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

Splits each segment in the segment range at midpoint

This function splits each segment in the segment range at its midpoint.

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +

name : The gradient name. +
start_segment : The index of the first segment to operate on. +
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_split_uniform ()

gboolean    gimp_gradient_segment_range_split_uniform
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment,
-                                             gint split_parts);

+


gimp_gradient_segment_range_split_uniform ()

gboolean    gimp_gradient_segment_range_split_uniform
+                                            (const gchar *name,
+                                             gint start_segment,
+                                             gint end_segment,
+                                             gint split_parts);

Splits each segment in the segment range uniformly

This function splits each segment in the segment range uniformly according to the number of times specified by the parameter.

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
split_parts : The number of uniform divisions to split each segment to. +

name : The gradient name. +
start_segment : The index of the first segment to operate on. +
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
split_parts : The number of uniform divisions to split each segment to.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_delete ()

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

+


gimp_gradient_segment_range_delete ()

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

Delete the segment range

This function deletes a segment range.

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +

name : The gradient name. +
start_segment : The index of the first segment to operate on. +
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_redistribute_handles ()

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

+


gimp_gradient_segment_range_redistribute_handles ()

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

Uniformly redistribute the segment range's handles

This function redistributes the handles of the specified segment range of the specified gradient, so they'll be evenly spaced.

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +

name : The gradient name. +
start_segment : The index of the first segment to operate on. +
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_blend_colors ()

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

+


gimp_gradient_segment_range_blend_colors ()

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

Blend the colors of the segment range.

This function blends the colors (but not the opacity) of the segments' range of the gradient. Using it, the colors' transition will be uniform across the range.

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +

name : The gradient name. +
start_segment : The index of the first segment to operate on. +
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_blend_opacity ()

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

+


gimp_gradient_segment_range_blend_opacity ()

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

Blend the opacity of the segment range.

This function blends the opacity (but not the colors) of the segments' range of the gradient. Using it, the opacity's transition will be uniform across the range.

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +

name : The gradient name. +
start_segment : The index of the first segment to operate on. +
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_gradient_segment_range_move ()

gdouble     gimp_gradient_segment_range_move
-                                            (const gchar *name,
-                                             gint start_segment,
-                                             gint end_segment,
-                                             gdouble delta,
-                                             gboolean control_compress);

+


gimp_gradient_segment_range_move ()

gdouble     gimp_gradient_segment_range_move
+                                            (const gchar *name,
+                                             gint start_segment,
+                                             gint end_segment,
+                                             gdouble delta,
+                                             gboolean control_compress);

Move the position of an entire segment range by a delta.

This funtions moves the position of an entire segment range by a delta. The actual delta (which is returned) will be limited by the control points of the neighboring segments.

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
delta : The delta to move the segment range. -
control_compress : Whether or not to compress the neighboring segments. +

name : The gradient name. +
start_segment : The index of the first segment to operate on. +
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
delta : The delta to move the segment range. +
control_compress : Whether or not to compress the neighboring segments.
Returns : The final delta by which the range moved.

Since GIMP 2.2 diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,19 +1,13 @@ -gimpgradientmenu

gimpgradientmenu

gimpgradientmenu — A widget for selecting gradients.

Synopsis

+gimpgradientmenu

gimpgradientmenu

gimpgradientmenu — A widget for selecting gradients.

Synopsis

 
 
 
 GtkWidget*  gimp_gradient_select_widget_new (const gchar *title,
-                                             const gchar *gradient_name,
+>GtkWidget*  gimp_gradient_select_widget_new (const gchar *title,
+                                             const gchar *gradient_name,
                                              GimpRunGradientCallback callback,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_gradient_select_widget_close
                                             (gimp_gradient_select_widget_set (GtkWidget *widget,
-                                             const gchar *gradient_name);
-

Description

+ const gchar *gradient_name); +

Description

A widget for selecting gradients. -

Details

gimp_gradient_select_widget_new ()

Details

gimp_gradient_select_widget_new ()

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

+ gpointer data);

Creates a new GtkWidget that completely controls the selection of a gradient. This widget is suitable for placement in a table in a plug-in dialog.

-

title : Title of the dialog to use or NULL to use the default title. -
gradient_name : Initial gradient name or NULL to use current selection. -
callback : A function to call when the selected gradient changes. -
data : A pointer to arbitary data to be used in the call to - callback. +

title : Title of the dialog to use or NULL to use the default title. +
gradient_name : Initial gradient name or NULL to use current selection. +
callback : A function to call when the selected gradient changes. +
data : A pointer to arbitary data to be used in the call to + callback.
Returns : A GtkWidget that you can use in your UI. -

gimp_gradient_select_widget_close ()

void        gimp_gradient_select_widget_close
+

gimp_gradient_select_widget_close ()

void        gimp_gradient_select_widget_close
                                             (GtkWidget *widget);

-Closes the popup window associated with widget.

+Closes the popup window associated with widget.

-

widget : A gradient select widget. -

gimp_gradient_select_widget_set ()

void        gimp_gradient_select_widget_set (
widget : A gradient select widget. +

gimp_gradient_select_widget_set ()

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

+ const gchar *gradient_name);

Sets the current gradient for the gradient select widget. Calls the callback function if one was supplied in the call to -gimp_gradient_select_widget_new().

+gimp_gradient_select_widget_new().

-

widget : A gradient select widget. -
gradient_name : Gradient name to set. +

widget : A gradient select widget. +
gradient_name : Gradient name to set.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradientselect.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradientselect.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradientselect.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradientselect.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,170 +1,86 @@ -gimpgradientselect

gimpgradientselect

gimpgradientselect — Functions providing a gradient selection dialog.

Synopsis

+gimpgradientselect

gimpgradientselect

gimpgradientselect — Functions providing a gradient selection dialog.

Synopsis

 
 
 
-void        (*GimpRunGradientCallback)      (const gchar *gradient_name,
-                                             gint width,
-                                             const gdouble *grad_data,
-                                             gboolean dialog_closing,
-                                             gpointer user_data);
-const gchar* gimp_gradient_select_new       (const gchar *title,
-                                             const gchar *gradient_name,
-                                             gint sample_size,
+void        (*GimpRunGradientCallback)      (const gchar *gradient_name,
+                                             gint width,
+                                             const gdouble *grad_data,
+                                             gboolean dialog_closing,
+                                             gpointer user_data);
+const gchar* gimp_gradient_select_new       (const gchar *title,
+                                             const gchar *gradient_name,
+                                             gint sample_size,
                                              GimpRunGradientCallback callback,
-                                             gpointer data);
-void        gimp_gradient_select_destroy    (const gchar *gradient_callback);
-gboolean    gimp_gradients_popup            (const gchar *gradient_callback,
-                                             const gchar *popup_title,
-                                             const gchar *initial_gradient,
-                                             gint sample_size);
-gboolean    gimp_gradients_close_popup      (const gchar *gradient_callback);
-gboolean    gimp_gradients_set_popup        (const gchar *gradient_callback,
-                                             const gchar *gradient_name);
-

Description

+ gpointer data); +void gimp_gradient_select_destroy (const gchar *gradient_callback); +gboolean gimp_gradients_popup (const gchar *gradient_callback, + const gchar *popup_title, + const gchar *initial_gradient, + gint sample_size); +gboolean gimp_gradients_close_popup (const gchar *gradient_callback); +gboolean gimp_gradients_set_popup (const gchar *gradient_callback, + const gchar *gradient_name); +

Description

Functions providing a gradient selection dialog. -

Details

GimpRunGradientCallback ()

void        (*GimpRunGradientCallback)      (const gchar *gradient_name,
-                                             gint width,
-                                             const gdouble *grad_data,
-                                             gboolean dialog_closing,
-                                             gpointer user_data);

- -

gradient_name : -
width : -
grad_data : -
dialog_closing : -
user_data : - - -

gimp_gradient_select_new ()

const gchar* gimp_gradient_select_new       (const gchar *title,
-                                             const gchar *gradient_name,
-                                             gint sample_size,
+

Details

GimpRunGradientCallback ()

void        (*GimpRunGradientCallback)      (const gchar *gradient_name,
+                                             gint width,
+                                             const gdouble *grad_data,
+                                             gboolean dialog_closing,
+                                             gpointer user_data);

+ +

gradient_name : +
width : +
grad_data : +
dialog_closing : +
user_data : + + +

gimp_gradient_select_new ()

const gchar* gimp_gradient_select_new       (const gchar *title,
+                                             const gchar *gradient_name,
+                                             gint sample_size,
                                              GimpRunGradientCallback callback,
-                                             gpointer data);

- -

title : -
gradient_name : -
sample_size : -
callback : -
data : + gpointer data);

+ +

title : +
gradient_name : +
sample_size : +
callback : +
data :
Returns : -

gimp_gradient_select_destroy ()

void        gimp_gradient_select_destroy    (const gchar *gradient_callback);

- -

gradient_callback : - - -

gimp_gradients_popup ()

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

+


gimp_gradient_select_destroy ()

void        gimp_gradient_select_destroy    (const gchar *gradient_callback);

+ +

gradient_callback : + + +

gimp_gradients_popup ()

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

Invokes the Gimp gradients selection.

This procedure popups the gradients selection dialog.

-

gradient_callback : The callback PDB proc to call when gradient selection is made. -
popup_title : Title to give the gradient popup window. -
initial_gradient : The name of the pattern to set as the first selected. -
sample_size : Size of the sample to return when the gradient is changed. +

gradient_callback : The callback PDB proc to call when gradient selection is made. +
popup_title : Title to give the gradient popup window. +
initial_gradient : The name of the pattern to set as the first selected. +
sample_size : Size of the sample to return when the gradient is changed.
Returns : TRUE on success. -

gimp_gradients_close_popup ()

gboolean    gimp_gradients_close_popup      (const gchar *gradient_callback);

+


gimp_gradients_close_popup ()

gboolean    gimp_gradients_close_popup      (const gchar *gradient_callback);

Popdown the Gimp gradient selection.

This procedure closes an opened gradient selection dialog.

-

gradient_callback : The name of the callback registered for this popup. +

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

gimp_gradients_set_popup ()

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

+


gimp_gradients_set_popup ()

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

Sets the current gradient selection in a popup.

Sets the current gradient selection in a popup.

-

gradient_callback : The name of the callback registered for this popup. -
gradient_name : The name of the gradient to set as selected. +

gradient_callback : The name of the callback registered for this popup. +
gradient_name : The name of the gradient to set as selected.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradients.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradients.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradients.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradients.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,164 +1,84 @@ -gimpgradients

gimpgradients

gimpgradients — Operations related to gradients.

Synopsis

+gimpgradients

gimpgradients

gimpgradients — Operations related to gradients.

Synopsis

 
 
 
-gboolean    gimp_gradients_refresh          (void);
-gchar**     gimp_gradients_get_list         (const gchar *filter,
-                                             gint *num_gradients);
-gchar*      gimp_gradients_get_gradient     (void);
-gboolean    gimp_gradients_set_gradient     (const gchar *name);
-gdouble*    gimp_gradients_sample_uniform   (gint num_samples,
-                                             gboolean reverse);
-gdouble*    gimp_gradients_sample_custom    (gint num_samples,
-                                             const gdouble *positions,
-                                             gboolean reverse);
-gchar*      gimp_gradients_get_gradient_data
-                                            (const gchar *name,
-                                             gint sample_size,
-                                             gboolean reverse,
-                                             gint *width,
-                                             gdouble **grad_data);
-

Description

+gboolean gimp_gradients_refresh (void); +gchar** gimp_gradients_get_list (const gchar *filter, + gint *num_gradients); +gchar* gimp_gradients_get_gradient (void); +gboolean gimp_gradients_set_gradient (const gchar *name); +gdouble* gimp_gradients_sample_uniform (gint num_samples, + gboolean reverse); +gdouble* gimp_gradients_sample_custom (gint num_samples, + const gdouble *positions, + gboolean reverse); +gchar* gimp_gradients_get_gradient_data + (const gchar *name, + gint sample_size, + gboolean reverse, + gint *width, + gdouble **grad_data); +

Description

Operations related to gradients. -

Details

gimp_gradients_refresh ()

gboolean    gimp_gradients_refresh          (void);

+

Details

gimp_gradients_refresh ()

gboolean    gimp_gradients_refresh          (void);

Refresh current gradients. This function always succeeds.

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

Returns : TRUE on success. -

gimp_gradients_get_list ()

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

+


gimp_gradients_get_list ()

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

Retrieve the list of loaded gradients.

This procedure returns a list of the gradients that are currently loaded. You can later use the 'gimp_context_set_gradient' function to set the active gradient.

-

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

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

gimp_gradients_get_gradient ()

gchar*      gimp_gradients_get_gradient     (void);

Warning

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

-This procedure is deprecated! Use gimp_context_get_gradient() instead.

+


gimp_gradients_get_gradient ()

gchar*      gimp_gradients_get_gradient     (void);

Warning

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

+This procedure is deprecated! Use gimp_context_get_gradient() instead.

Returns : The name of the active gradient. -

gimp_gradients_set_gradient ()

gboolean    gimp_gradients_set_gradient     (const gchar *name);

Warning

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

-This procedure is deprecated! Use gimp_context_set_gradient() instead.

+


gimp_gradients_set_gradient ()

gboolean    gimp_gradients_set_gradient     (const gchar *name);

Warning

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

+This procedure is deprecated! Use gimp_context_set_gradient() instead.

-

name : The name of the gradient to set. +

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

gimp_gradients_sample_uniform ()

gdouble*    gimp_gradients_sample_uniform   (gint num_samples,
-                                             gboolean reverse);

Warning

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

+


gimp_gradients_sample_uniform ()

gdouble*    gimp_gradients_sample_uniform   (gint num_samples,
+                                             gboolean reverse);

Warning

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

This procedure is deprecated! Use -gimp_gradient_get_uniform_samples() instead.

+gimp_gradient_get_uniform_samples() instead.

-

num_samples : The number of samples to take. -
reverse : Use the reverse gradient. +

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

gimp_gradients_sample_custom ()

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

Warning

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

-This procedure is deprecated! Use gimp_gradient_get_custom_samples() +


gimp_gradients_sample_custom ()

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

Warning

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

+This procedure is deprecated! Use gimp_gradient_get_custom_samples() instead.

-

num_samples : The number of samples to take. -
positions : The list of positions to sample along the gradient. -
reverse : Use the reverse gradient. +

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

gimp_gradients_get_gradient_data ()

gchar*      gimp_gradients_get_gradient_data
-                                            (const gchar *name,
-                                             gint sample_size,
-                                             gboolean reverse,
-                                             gint *width,
-                                             gdouble **grad_data);

Warning

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

+


gimp_gradients_get_gradient_data ()

gchar*      gimp_gradients_get_gradient_data
+                                            (const gchar *name,
+                                             gint sample_size,
+                                             gboolean reverse,
+                                             gint *width,
+                                             gdouble **grad_data);

Warning

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

This procedure is deprecated! Use -gimp_gradient_get_uniform_samples() instead.

+gimp_gradient_get_uniform_samples() instead.

-

name : The gradient name (\"\" means current active gradient). -
sample_size : Size of the sample to return when the gradient is changed. -
reverse : Use the reverse gradient. -
width : The gradient sample width (r,g,b,a). -
grad_data : The gradient sample data. +

name : The gradient name (\"\" means current active gradient). +
sample_size : Size of the sample to return when the gradient is changed. +
reverse : Use the reverse gradient. +
width : The gradient sample width (r,g,b,a). +
grad_data : The gradient sample data.
Returns : The gradient name.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpguides.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpguides.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpguides.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpguides.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,115 +1,57 @@ -gimpguides

gimpguides

gimpguides — Functions for manipulating guides.

Synopsis

+gimpguides

gimpguides

gimpguides — Functions for manipulating guides.

Synopsis

 
 
 
-gint32      gimp_image_add_hguide           (gint32 image_ID,
-                                             gint yposition);
-gint32      gimp_image_add_vguide           (gint32 image_ID,
-                                             gint xposition);
-gboolean    gimp_image_delete_guide         (gint32 image_ID,
-                                             gint32 guide_ID);
-gint32      gimp_image_find_next_guide      (gint32 image_ID,
-                                             gint32 guide_ID);
+gint32      gimp_image_add_hguide           (gint32 image_ID,
+                                             gint yposition);
+gint32      gimp_image_add_vguide           (gint32 image_ID,
+                                             gint xposition);
+gboolean    gimp_image_delete_guide         (gint32 image_ID,
+                                             gint32 guide_ID);
+gint32      gimp_image_find_next_guide      (gint32 image_ID,
+                                             gint32 guide_ID);
 GimpOrientationType gimp_image_get_guide_orientation
-                                            (gint32 image_ID,
-                                             gint32 guide_ID);
-gint        gimp_image_get_guide_position   (gint32 image_ID,
-                                             gint32 guide_ID);
-

Description

+ (gint32 image_ID, + gint32 guide_ID); +gint gimp_image_get_guide_position (gint32 image_ID, + gint32 guide_ID); +

Description

Functions for manipulating guides. -

Details

gimp_image_add_hguide ()

gint32      gimp_image_add_hguide           (gint32 image_ID,
-                                             gint yposition);

+

Details

gimp_image_add_hguide ()

gint32      gimp_image_add_hguide           (gint32 image_ID,
+                                             gint yposition);

Add a horizontal guide to an image.

This procedure adds a horizontal guide to an image. It takes the input image and the y-position of the new guide as parameters. It returns the guide ID of the new guide.

-

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

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

gimp_image_add_vguide ()

gint32      gimp_image_add_vguide           (gint32 image_ID,
-                                             gint xposition);

+


gimp_image_add_vguide ()

gint32      gimp_image_add_vguide           (gint32 image_ID,
+                                             gint xposition);

Add a vertical guide to an image.

This procedure adds a vertical guide to an image. It takes the input image and the x-position of the new guide as parameters. It returns the guide ID of the new guide.

-

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

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

gimp_image_delete_guide ()

gboolean    gimp_image_delete_guide         (gint32 image_ID,
-                                             gint32 guide_ID);

+


gimp_image_delete_guide ()

gboolean    gimp_image_delete_guide         (gint32 image_ID,
+                                             gint32 guide_ID);

Deletes a guide from an image.

This procedure takes an image and a guide ID as input and removes the specified guide from the specified image.

-

image_ID : The image. -
guide_ID : The ID of the guide to be removed. +

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

gimp_image_find_next_guide ()

gint32      gimp_image_find_next_guide      (gint32 image_ID,
-                                             gint32 guide_ID);

+


gimp_image_find_next_guide ()

gint32      gimp_image_find_next_guide      (gint32 image_ID,
+                                             gint32 guide_ID);

Find next guide on an image.

This procedure takes an image and a guide ID as input and finds the @@ -118,38 +60,28 @@ first Guide. The procedure will return 0 if given the final guide ID as an argument or the image has no guides.

-

image_ID : The image. -
guide_ID : The ID of the current guide (0 if first invocation). +

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

gimp_image_get_guide_orientation ()

GimpOrientationType gimp_image_get_guide_orientation
-                                            (gint32 image_ID,
-                                             gint32 guide_ID);

+


gimp_image_get_guide_orientation ()

GimpOrientationType gimp_image_get_guide_orientation
+                                            (gint32 image_ID,
+                                             gint32 guide_ID);

Get orientation of a guide on an image.

This procedure takes an image and a guide ID as input and returns the orientations of the guide.

-

image_ID : The image. -
guide_ID : The guide. +

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

gimp_image_get_guide_position ()

gint        gimp_image_get_guide_position   (gint32 image_ID,
-                                             gint32 guide_ID);

+


gimp_image_get_guide_position ()

gint        gimp_image_get_guide_position   (gint32 image_ID,
+                                             gint32 guide_ID);

Get position of a guide on an image.

This procedure takes an image and a guide ID as input and returns the position of the guide relative to the top or left of the image.

-

image_ID : The image. -
guide_ID : The guide. +

image_ID : The image. +
guide_ID : The guide.
Returns : The guide's position relative to top or left of image.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimphelp.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimphelp.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimphelp.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimphelp.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,26 +1,14 @@ -gimphelp

gimphelp

gimphelp — Loading help pages using gimp_help.

Synopsis

+gimphelp

gimphelp

gimphelp — Loading help pages using gimp_help.

Synopsis

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

Description

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

Description

Loading help pages using gimp_help. -

Details

gimp_help ()

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

+

Details

gimp_help ()

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

Load a help page.

This procedure loads the specified help page into the helpbrowser or @@ -30,7 +18,7 @@ If help_domain is NULL and no help domain was registered, the help domain of the main GIMP installation is used.

-

help_domain : The help domain in which help_id is registered. -
help_id : The help page's ID. +

help_domain : The help domain in which help_id is registered. +
help_id : The help page's ID.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimp.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimp.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimp.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimp.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,12 +1,10 @@ -gimp

gimp

gimp — Main functions needed for building a GIMP plug-in. This header includes +gimp

gimp

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

Synopsis

 
 
 
 #define     GIMPVAR
-gchar*      gimp_version                    (void);
+gchar*      gimp_version                    (void);
 extern      const guint gimp_major_version;
 extern      const guint gimp_minor_version;
 extern      const guint gimp_micro_version;
@@ -16,16 +14,10 @@
 void        (*GimpInitProc)                 (void);
 void        (*GimpQuitProc)                 (void);
 void        (*GimpQueryProc)                (void);
-void        (*GimpRunProc)                  (const gchar *name,
-                                             gint n_params,
+void        (*GimpRunProc)                  (const gchar *name,
+                                             gint n_params,
                                              const GimpParam *param,
-                                             gint *n_return_vals,
+                                             gint *n_return_vals,
                                              GimpParam **return_vals);
             GimpPlugInInfo;
             GimpParamDef;
@@ -33,265 +25,143 @@
 union       GimpParamData;
             GimpParam;
 #define     MAIN                            ()
-gint        gimp_main                       (const GimpPlugInInfo *info,
-                                             gint argc,
-                                             gchar *argv[]);
+gint        gimp_main                       (const GimpPlugInInfo *info,
+                                             gint argc,
+                                             gchar *argv[]);
 void        gimp_quit                       (void);
-void        gimp_install_procedure          (const gchar *name,
-                                             const gchar *blurb,
-                                             const gchar *help,
-                                             const gchar *author,
-                                             const gchar *copyright,
-                                             const gchar *date,
-                                             const gchar *menu_label,
-                                             const gchar *image_types,
+void        gimp_install_procedure          (const gchar *name,
+                                             const gchar *blurb,
+                                             const gchar *help,
+                                             const gchar *author,
+                                             const gchar *copyright,
+                                             const gchar *date,
+                                             const gchar *menu_label,
+                                             const gchar *image_types,
                                              GimpPDBProcType type,
-                                             gint n_params,
-                                             gint n_return_vals,
+                                             gint n_params,
+                                             gint n_return_vals,
                                              const GimpParamDef *params,
                                              const GimpParamDef *return_vals);
-void        gimp_install_temp_proc          (const gchar *name,
-                                             const gchar *blurb,
-                                             const gchar *help,
-                                             const gchar *author,
-                                             const gchar *copyright,
-                                             const gchar *date,
-                                             const gchar *menu_label,
-                                             const gchar *image_types,
+void        gimp_install_temp_proc          (const gchar *name,
+                                             const gchar *blurb,
+                                             const gchar *help,
+                                             const gchar *author,
+                                             const gchar *copyright,
+                                             const gchar *date,
+                                             const gchar *menu_label,
+                                             const gchar *image_types,
                                              GimpPDBProcType type,
-                                             gint n_params,
-                                             gint n_return_vals,
+                                             gint n_params,
+                                             gint n_return_vals,
                                              const GimpParamDef *params,
                                              const GimpParamDef *return_vals,
                                              GimpRunProc run_proc);
-void        gimp_uninstall_temp_proc        (const gchar *name);
-GimpParam*  gimp_run_procedure              (const gchar *name,
-                                             gint *n_return_vals,
+void        gimp_uninstall_temp_proc        (const gchar *name);
+GimpParam*  gimp_run_procedure              (const gchar *name,
+                                             gint *n_return_vals,
                                              ...);
-GimpParam*  gimp_run_procedure2             (const gchar *name,
-                                             gint *n_return_vals,
-                                             gint n_params,
+GimpParam*  gimp_run_procedure2             (const gchar *name,
+                                             gint *n_return_vals,
+                                             gint n_params,
                                              const GimpParam *params);
 void        gimp_destroy_params             (GimpParam *params,
-                                             gint n_params);
+                                             gint n_params);
 void        gimp_destroy_paramdefs          (GimpParamDef *paramdefs,
-                                             gint n_params);
-guint       gimp_tile_width                 (void);
-guint       gimp_tile_height                (void);
-gint        gimp_shm_ID                     (void);
-guchar*     gimp_shm_addr                   (void);
-gdouble     gimp_gamma                      (void);
-gboolean    gimp_install_cmap               (void);
-gint        gimp_min_colors                 (void);
-gboolean    gimp_show_tool_tips             (void);
-gboolean    gimp_show_help_button           (void);
+                                             gint n_params);
+guint       gimp_tile_width                 (void);
+guint       gimp_tile_height                (void);
+gint        gimp_shm_ID                     (void);
+guchar*     gimp_shm_addr                   (void);
+gdouble     gimp_gamma                      (void);
+gboolean    gimp_install_cmap               (void);
+gint        gimp_min_colors                 (void);
+gboolean    gimp_show_tool_tips             (void);
+gboolean    gimp_show_help_button           (void);
 GimpCheckSize gimp_check_size               (void);
 GimpCheckType gimp_check_type               (void);
-gint32      gimp_default_display            (void);
-const gchar* gimp_wm_class                  (void);
-const gchar* gimp_display_name              (void);
-gint        gimp_monitor_number             (void);
-const gchar* gimp_get_progname              (void);
+gint32      gimp_default_display            (void);
+const gchar* gimp_wm_class                  (void);
+const gchar* gimp_display_name              (void);
+gint        gimp_monitor_number             (void);
+const gchar* gimp_get_progname              (void);
 void        gimp_extension_enable           (void);
 void        gimp_extension_ack              (void);
-void        gimp_extension_process          (guint timeout);
+void        gimp_extension_process          (guint timeout);
 GimpParasite* gimp_parasite_find            (const gchar *name);
-gboolean    gimp_parasite_list              (gint *num_parasites,
-                                             gchar ***parasites);
-gboolean    gimp_parasite_attach            (GimpParasite* gimp_parasite_find            (const gchar *name);
+gboolean    gimp_parasite_list              (gint *num_parasites,
+                                             gchar ***parasites);
+gboolean    gimp_parasite_attach            (GimpParasite *parasite);
-gboolean    gimp_parasite_detach            (const gchar *name);
-void        gimp_attach_new_parasite        (const gchar *name,
-                                             gint flags,
-                                             gint size,
-                                             gconstpointer data);
-

Description

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

Description

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

Details

GIMPVAR

#define     GIMPVAR

+

Details

GIMPVAR

#define     GIMPVAR

-


gimp_version ()

gchar*      gimp_version                    (void);

+


gimp_version ()

gchar*      gimp_version                    (void);

Returns the host gimp version.

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

Returns : The gimp version. -

gimp_major_version

extern const guint gimp_major_version;
+

gimp_major_version

extern const guint gimp_major_version;
 

-


gimp_minor_version

extern const guint gimp_minor_version;
+


gimp_minor_version

extern const guint gimp_minor_version;
 

-


gimp_micro_version

extern const guint gimp_micro_version;
+


gimp_micro_version

extern const guint gimp_micro_version;
 

-


gimp_get_data

#define gimp_get_data         gimp_procedural_db_get_data
+


gimp_get_data

#define gimp_get_data         gimp_procedural_db_get_data
 

-


gimp_get_data_size

#define gimp_get_data_size    gimp_procedural_db_get_data_size
+


gimp_get_data_size

#define gimp_get_data_size    gimp_procedural_db_get_data_size
 

Returns : -

gimp_set_data

#define gimp_set_data         gimp_procedural_db_set_data
+

gimp_set_data

#define gimp_set_data         gimp_procedural_db_set_data
 

-


GimpInitProc ()

void        (*GimpInitProc)                 (void);

+


GimpInitProc ()

void        (*GimpInitProc)                 (void);

-


GimpQuitProc ()

void        (*GimpQuitProc)                 (void);

+


GimpQuitProc ()

void        (*GimpQuitProc)                 (void);

-


GimpQueryProc ()

void        (*GimpQueryProc)                (void);

+


GimpQueryProc ()

void        (*GimpQueryProc)                (void);

-


GimpRunProc ()

void        (*GimpRunProc)                  (const gchar *name,
-                                             gint n_params,
+


GimpRunProc ()

void        (*GimpRunProc)                  (const gchar *name,
+                                             gint n_params,
                                              const GimpParam *param,
-                                             gint *n_return_vals,
+                                             gint *n_return_vals,
                                              GimpParam **return_vals);

-

name : -
n_params : -
param : -
n_return_vals : -
return_vals : +

name : +
n_params : +
param : +
n_return_vals : +
return_vals : -

GimpPlugInInfo

typedef struct {
+

GimpPlugInInfo

typedef struct {
   /* called when the gimp application initially starts up */
   GimpInitProc  init_proc;
 
@@ -311,14 +181,14 @@
 } GimpPlugInInfo;
 

-


GimpParamDef

typedef struct {
+


GimpParamDef

typedef struct {
   GimpPDBArgType  type;
   gchar          *name;
   gchar          *description;
 } GimpParamDef;
 

-


GimpParamRegion

typedef struct {
+


GimpParamRegion

typedef struct {
   gint32 x;
   gint32 y;
   gint32 width;
@@ -326,7 +196,7 @@
 } GimpParamRegion;
 

-


union GimpParamData

union GimpParamData
+


union GimpParamData

union GimpParamData
 {
   gint32            d_int32;
   gint16            d_int16;
@@ -356,162 +226,116 @@
 };
 

-


GimpParam

typedef struct {
+


GimpParam

typedef struct {
   GimpPDBArgType type;
   GimpParamData  data;
 } GimpParam;
 

-


MAIN()

#define     MAIN()

-A macro that expands to the appropriate main() function for the +


MAIN()

#define     MAIN()

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

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

+MAIN() at the toplevel of your file. No semicolon should be used.

-


gimp_main ()

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

+


gimp_main ()

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

The main procedure that must be called with the PLUG_IN_INFO structure and the 'argc' and 'argv' that are passed to "main".

-

info : the PLUG_IN_INFO structure -
argc : the number of arguments -
argv : the arguments +

info : the PLUG_IN_INFO structure +
argc : the number of arguments +
argv : the arguments
Returns : -

gimp_quit ()

void        gimp_quit                       (void);

+


gimp_quit ()

void        gimp_quit                       (void);

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

-


gimp_install_procedure ()

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


gimp_install_procedure ()

void        gimp_install_procedure          (const gchar *name,
+                                             const gchar *blurb,
+                                             const gchar *help,
+                                             const gchar *author,
+                                             const gchar *copyright,
+                                             const gchar *date,
+                                             const gchar *menu_label,
+                                             const gchar *image_types,
                                              GimpPDBProcType type,
-                                             gint n_params,
-                                             gint n_return_vals,
+                                             gint n_params,
+                                             gint n_return_vals,
                                              const GimpParamDef *params,
                                              const GimpParamDef *return_vals);

Installs a new procedure with the PDB (procedural database).

-Call this function from within your Plug-In's query() function for +Call this function from within your Plug-In's query() function for each procedure your Plug-In implements.

-The name parameter is mandatory and should be unique, or it will +The name parameter is mandatory and should be unique, or it will overwrite an already existing procedure (overwrite procedures only if you know what you're doing).

-The blurb, help, author, copyright and date parameters are +The blurb, help, author, copyright and date parameters are optional but then you shouldn't write procedures without proper documentation, should you.

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

-type must be one of GIMP_PLUGIN or GIMP_EXTENSION. Note that +type must be one of GIMP_PLUGIN or GIMP_EXTENSION. Note that temporary procedures must be installed using -gimp_install_temp_proc(). +gimp_install_temp_proc().

NOTE: Unlike the GIMP 1.2 API, GIMP_EXTENSION no longer means that the procedure's menu prefix is <Toolbox>, but that it will install temporary procedures. Therefore, the GIMP core will wait until the GIMP_EXTENSION procedure has called -gimp_extension_ack(), which means that the procedure has done +gimp_extension_ack(), which means that the procedure has done its initialization, installed its temporary procedures and is ready to run.

-Not calling gimp_extension_ack() from a GIMP_EXTENSION +Not calling gimp_extension_ack() from a GIMP_EXTENSION procedure will cause th GIMP core to lock up.

Additionally, a GIMP_EXTENSION procedure with no parameters -(n_params == 0 and params == NULL) is an "automatic" extension +(n_params == 0 and params == NULL) is an "automatic" extension that will be automatically started on each GIMP startup.

-

name : the procedure's name. -
blurb : a short text describing what the procedure does. -
help : the help text for the procedure (usually considerably - longer than blurb). -
author : the procedure's author(s). -
copyright : the procedure's copyright. -
date : the date the procedure was added. -
menu_label : the label to use for the procedure's menu entry, +

name : the procedure's name. +
blurb : a short text describing what the procedure does. +
help : the help text for the procedure (usually considerably + longer than blurb). +
author : the procedure's author(s). +
copyright : the procedure's copyright. +
date : the date the procedure was added. +
menu_label : the label to use for the procedure's menu entry, or NULL if the procedure has no menu entry. -
image_types : the drawable types the procedure can handle. -
type : the type of the procedure. -
n_params : the number of parameters the procedure takes. -
n_return_vals : the number of return values the procedure returns. -
params : the procedure's parameters. -
return_vals : the procedure's return values. -

gimp_install_temp_proc ()

void        gimp_install_temp_proc          (const gchar *name,
-                                             const gchar *blurb,
-                                             const gchar *help,
-                                             const gchar *author,
-                                             const gchar *copyright,
-                                             const gchar *date,
-                                             const gchar *menu_label,
-                                             const gchar *image_types,
+
image_types : the drawable types the procedure can handle. +
type : the type of the procedure. +
n_params : the number of parameters the procedure takes. +
n_return_vals : the number of return values the procedure returns. +
params : the procedure's parameters. +
return_vals : the procedure's return values. +

gimp_install_temp_proc ()

void        gimp_install_temp_proc          (const gchar *name,
+                                             const gchar *blurb,
+                                             const gchar *help,
+                                             const gchar *author,
+                                             const gchar *copyright,
+                                             const gchar *date,
+                                             const gchar *menu_label,
+                                             const gchar *image_types,
                                              GimpPDBProcType type,
-                                             gint n_params,
-                                             gint n_return_vals,
+                                             gint n_params,
+                                             gint n_return_vals,
                                              const GimpParamDef *params,
                                              const GimpParamDef *return_vals,
                                              GimpRunProc run_proc);

@@ -520,50 +344,44 @@ A temporary procedure is a procedure which is only available while one of your Plug-In's "real" procedures is running.

-See gimp_install_procedure() for most details. +See gimp_install_procedure() for most details.

-type must be GIMP_TEMPORARY or the function +type must be GIMP_TEMPORARY or the function will fail.

-run_proc is the function which will be called to execute the +run_proc is the function which will be called to execute the procedure.

NOTE: Normally, Plug-In communication is triggered by the Plug-In and the GIMP core only responds to the Plug-In's requests. You must explicitely enable receiving of temporary procedure run requests -using either gimp_extension_enable() or -gimp_extension_process(). See this functions' documentation for +using either gimp_extension_enable() or +gimp_extension_process(). See this functions' documentation for details.

-

name : the procedure's name. -
blurb : a short text describing what the procedure does. -
help : the help text for the procedure (usually considerably - longer than blurb). -
author : the procedure's author(s). -
copyright : the procedure's copyright. -
date : the date the procedure was added. -
menu_label : the procedure's menu label, or NULL if the procedure has +

name : the procedure's name. +
blurb : a short text describing what the procedure does. +
help : the help text for the procedure (usually considerably + longer than blurb). +
author : the procedure's author(s). +
copyright : the procedure's copyright. +
date : the date the procedure was added. +
menu_label : the procedure's menu label, or NULL if the procedure has no menu entry. -
image_types : the drawable types the procedure can handle. -
type : the type of the procedure. -
n_params : the number of parameters the procedure takes. -
n_return_vals : the number of return values the procedure returns. -
params : the procedure's parameters. -
return_vals : the procedure's return values. -
run_proc : the function to call for executing the procedure. -

gimp_uninstall_temp_proc ()

void        gimp_uninstall_temp_proc        (const gchar *name);

+

image_types : the drawable types the procedure can handle. +
type : the type of the procedure. +
n_params : the number of parameters the procedure takes. +
n_return_vals : the number of return values the procedure returns. +
params : the procedure's parameters. +
return_vals : the procedure's return values. +
run_proc : the function to call for executing the procedure. +

gimp_uninstall_temp_proc ()

void        gimp_uninstall_temp_proc        (const gchar *name);

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

+installed using gimp_install_temp_proc().

-

name : the procedure's name -

gimp_run_procedure ()

GimpParam*  gimp_run_procedure              (const gchar *name,
-                                             gint *n_return_vals,
+

name : the procedure's name +

gimp_run_procedure ()

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

This function calls a GIMP procedure and returns its return values.

@@ -571,121 +389,93 @@ (type, value, type, value) and must be terminated by GIMP_PDB_END.

This function converts the va_list of parameters into an array -and passes them to gimp_run_procedure2().

+and passes them to gimp_run_procedure2().

-

name : the name of the procedure to run -
n_return_vals : return location for the number of return values -
... : list of procedure parameters +

name : the name of the procedure to run +
n_return_vals : return location for the number of return values +
... : list of procedure parameters
Returns : the procedure's return values. -

gimp_run_procedure2 ()

GimpParam*  gimp_run_procedure2             (const gchar *name,
-                                             gint *n_return_vals,
-                                             gint n_params,
+

gimp_run_procedure2 ()

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

This function calls a GIMP procedure and returns its return values.

-

name : the name of the procedure to run -
n_return_vals : return location for the number of return values -
n_params : the number of parameters the procedure takes. -
params : the procedure's parameters array. +

name : the name of the procedure to run +
n_return_vals : return location for the number of return values +
n_params : the number of parameters the procedure takes. +
params : the procedure's parameters array.
Returns : the procedure's return values. -

gimp_destroy_params ()

void        gimp_destroy_params             (GimpParam *params,
-                                             gint n_params);

-Destroys a GimpParam array as returned by gimp_run_procedure()

- -

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

gimp_destroy_paramdefs ()

void        gimp_destroy_paramdefs          (GimpParamDef *paramdefs,
-                                             gint n_params);

-Destroys a GimpParamDef array as returned by gimp_query_procedure()

- -

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

gimp_tile_width ()

guint       gimp_tile_width                 (void);

+


gimp_destroy_params ()

void        gimp_destroy_params             (GimpParam *params,
+                                             gint n_params);

+Destroys a GimpParam array as returned by gimp_run_procedure()

+ +

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

gimp_destroy_paramdefs ()

void        gimp_destroy_paramdefs          (GimpParamDef *paramdefs,
+                                             gint n_params);

+Destroys a GimpParamDef array as returned by gimp_query_procedure()

+ +

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

gimp_tile_width ()

guint       gimp_tile_width                 (void);

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

Returns : the tile_width -

gimp_tile_height ()

guint       gimp_tile_height                (void);

+


gimp_tile_height ()

guint       gimp_tile_height                (void);

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

Returns : the tile_height -

gimp_shm_ID ()

gint        gimp_shm_ID                     (void);

+


gimp_shm_ID ()

gint        gimp_shm_ID                     (void);

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

Returns : the shared memory ID -

gimp_shm_addr ()

guchar*     gimp_shm_addr                   (void);

+


gimp_shm_addr ()

guchar*     gimp_shm_addr                   (void);

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

Returns : the shared memory address -

gimp_gamma ()

gdouble     gimp_gamma                      (void);

+


gimp_gamma ()

gdouble     gimp_gamma                      (void);

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

NOTE: this feature is unimplemented.

Returns : the gamma value -

gimp_install_cmap ()

gboolean    gimp_install_cmap               (void);

+


gimp_install_cmap ()

gboolean    gimp_install_cmap               (void);

Returns whether or not the Plug-In should allocate an own colormap when running on an 8 bit display. This is a constant value given at Plug-In config time.

-See also: gimp_min_colors()

+See also: gimp_min_colors()

Returns : the install_cmap boolean -

gimp_min_colors ()

gint        gimp_min_colors                 (void);

+


gimp_min_colors ()

gint        gimp_min_colors                 (void);

Returns the minimum number of colors to use when allocating an own colormap on 8 bit displays. This is a constant value given at Plug-In config time.

-See also: gimp_install_cmap()

+See also: gimp_install_cmap()

Returns : the minimum number of colors to allocate -

gimp_show_tool_tips ()

gboolean    gimp_show_tool_tips             (void);

+


gimp_show_tool_tips ()

gboolean    gimp_show_tool_tips             (void);

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

Returns : the show_tool_tips boolean -

gimp_show_help_button ()

gboolean    gimp_show_help_button           (void);

+


gimp_show_help_button ()

gboolean    gimp_show_help_button           (void);

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

Returns : the show_help_button boolean

Since GIMP 2.2 -


gimp_check_size ()


gimp_check_size ()

GimpCheckSize gimp_check_size               (void);

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

Returns : the check_size value

Since GIMP 2.2 -


gimp_check_type ()


gimp_check_type ()

GimpCheckType gimp_check_type               (void);

Returns the type of the checkerboard to be used in previews. @@ -703,42 +493,32 @@

Returns : the check_type value

Since GIMP 2.2 -


gimp_default_display ()

gint32      gimp_default_display            (void);

+


gimp_default_display ()

gint32      gimp_default_display            (void);

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

Returns : the default display ID -

gimp_wm_class ()

const gchar* gimp_wm_class                  (void);

+


gimp_wm_class ()

const gchar* gimp_wm_class                  (void);

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

Returns : the window manager class -

gimp_display_name ()

const gchar* gimp_display_name              (void);

+


gimp_display_name ()

const gchar* gimp_display_name              (void);

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

Returns : the display name -

gimp_monitor_number ()

gint        gimp_monitor_number             (void);

+


gimp_monitor_number ()

gint        gimp_monitor_number             (void);

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

Returns : the monitor number -

gimp_get_progname ()

const gchar* gimp_get_progname              (void);

+


gimp_get_progname ()

const gchar* gimp_get_progname              (void);

Returns the Plug-In's executable name.

Returns : the executable name -

gimp_extension_enable ()

void        gimp_extension_enable           (void);

+


gimp_extension_enable ()

void        gimp_extension_enable           (void);

Enables asnychronous processing of messages from the main GIMP application.

@@ -748,22 +528,20 @@ plug-in are just answers to requests the plug-in made.

If the plug-in however registered temporary procedures using -gimp_install_temp_proc(), it needs to be able to receive requests +gimp_install_temp_proc(), it needs to be able to receive requests to execute them. Usually this will be done by running -gimp_extension_process() in an endless loop. +gimp_extension_process() in an endless loop.

-If the plug-in cannot use gimp_extension_process(), i.e. if it has -a GUI and is hanging around in a GMainLoop, it must call -gimp_extension_enable(). +If the plug-in cannot use gimp_extension_process(), i.e. if it has +a GUI and is hanging around in a GMainLoop, it must call +gimp_extension_enable().

Note that the plug-in does not need to be a GIMP_EXTENSION to register temporary procedures.

-See also: gimp_install_procedure(), gimp_install_temp_proc()

+See also: gimp_install_procedure(), gimp_install_temp_proc()

-


gimp_extension_ack ()

void        gimp_extension_ack              (void);

+


gimp_extension_ack ()

void        gimp_extension_ack              (void);

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

@@ -771,56 +549,44 @@ procedure that was registered as GIMP_EXTENSION.

Subsequently, extensions can process temporary procedure run -requests using either gimp_extension_enable() or -gimp_extension_process(). +requests using either gimp_extension_enable() or +gimp_extension_process().

-See also: gimp_install_procedure(), gimp_install_temp_proc()

+See also: gimp_install_procedure(), gimp_install_temp_proc()

-


gimp_extension_process ()

void        gimp_extension_process          (guint timeout);

+


gimp_extension_process ()

void        gimp_extension_process          (guint timeout);

Processes one message sent by the GIMP and returns.

Call this function in an endless loop after calling -gimp_extension_ack() to process requests for running temporary +gimp_extension_ack() to process requests for running temporary procedures.

-See gimp_extension_enable() for an asynchronous way of doing the +See gimp_extension_enable() for an asynchronous way of doing the same if running an endless loop is not an option.

-See also: gimp_install_procedure(), gimp_install_temp_proc()

+See also: gimp_install_procedure(), gimp_install_temp_proc()

-

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


gimp_parasite_find ()

GimpParasite* gimp_parasite_find            (const gchar *name);

+>GimpParasite* gimp_parasite_find (const gchar *name);

Finds the named parasite.

Finds and returns the named parasite that was previously attached to the gimp.

-

name : The name of the parasite to find. +

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

gimp_parasite_list ()

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

+


gimp_parasite_list ()

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

List all parasites.

Returns a list of all currently attached parasites.

-

num_parasites : The number of attached parasites. -
parasites : The names of currently attached parasites. +

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

gimp_parasite_attach ()

gboolean    gimp_parasite_attach            (

gimp_parasite_attach ()

gboolean    gimp_parasite_attach            (GimpParasite *parasite);

Add a parasite to the gimp. @@ -828,45 +594,33 @@ This procedure attaches a parasite to the gimp. It has no return values.

-

parasite : The parasite to attach to the gimp. +

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

gimp_parasite_detach ()

gboolean    gimp_parasite_detach            (const gchar *name);

+


gimp_parasite_detach ()

gboolean    gimp_parasite_detach            (const gchar *name);

Removes a parasite from the gimp.

This procedure detaches a parasite from the gimp. It has no return values.

-

name : The name of the parasite to detach from the gimp. +

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

gimp_attach_new_parasite ()

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

+


gimp_attach_new_parasite ()

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

Convenience function that creates a parasite and attaches it to the GIMP.

-See Also: gimp_parasite_attach()

+See Also: gimp_parasite_attach()

-

name : the name of the
name : the name of the GimpParasite to create and attach. -
flags : the flags set on the
flags : the flags set on the GimpParasite. -
size : the size of the parasite data in bytes. -
data : a pointer to the data attached with the
size : the size of the parasite data in bytes. +
data : a pointer to the data attached with the GimpParasite.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,61 +1,45 @@ -gimpimagecombobox

gimpimagecombobox

gimpimagecombobox — A widget providing a popup menu of images.

Synopsis

+gimpimagecombobox

gimpimagecombobox

gimpimagecombobox — A widget providing a popup menu of images.

Synopsis

 
 
 
-gboolean    (*GimpImageConstraintFunc)      (gint32 image_id,
-                                             gpointer data);
+gboolean    (*GimpImageConstraintFunc)      (gint32 image_id,
+                                             gpointer data);
 GtkWidget*  gimp_image_combo_box_new        (GimpImageConstraintFunc constraint,
-                                             gpointer data);
-

Description

+ gpointer data); +

Description

A widget providing a popup menu of images. -

Details

GimpImageConstraintFunc ()

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

+

Details

GimpImageConstraintFunc ()

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

-

image_id : -
data : +

image_id : +
data :
Returns : -

gimp_image_combo_box_new ()


gimp_image_combo_box_new ()

GtkWidget*  gimp_image_combo_box_new        (GimpImageConstraintFunc constraint,
-                                             gpointer data);

+ gpointer data);

Creates a new GimpIntComboBox filled with all currently opened -images. If a constraint function is specified, it is called for -each image and only if the function returns TRUE, the image is +images. If a constraint function is specified, it is called for +each image and only if the function returns TRUE, the image is added to the combobox.

-You should use gimp_int_combo_connect() to initialize and connect +You should use gimp_int_combo_connect() to initialize and connect the combo. Use gimp_int_combo_box_set_active() to get the active +>gimp_int_combo_box_set_active() to get the active image ID and gimp_int_combo_box_get_active() to retrieve the ID of +>gimp_int_combo_box_get_active() to retrieve the ID of the selected image.

-

constraint : a GimpImageConstraintFunc or NULL -
data : a pointer that is passed to constraint +

constraint : a GimpImageConstraintFunc or NULL +
data : a pointer that is passed to constraint
Returns : a new GimpIntComboBox. diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpimage.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpimage.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpimage.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpimage.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,578 +1,182 @@ -gimpimage

gimpimage

gimpimage — Operations on complete images.

Synopsis

+gimpimage

gimpimage

gimpimage — Operations on complete images.

Synopsis

 
 
 
-gint*       gimp_image_list                 (gint *num_images);
-gint32      gimp_image_new                  (gint width,
-                                             gint height,
+gint*       gimp_image_list                 (gint *num_images);
+gint32      gimp_image_new                  (gint width,
+                                             gint height,
                                              GimpImageBaseType type);
-gint32      gimp_image_duplicate            (gint32 image_ID);
-gboolean    gimp_image_delete               (gint32 image_ID);
+gint32      gimp_image_duplicate            (gint32 image_ID);
+gboolean    gimp_image_delete               (gint32 image_ID);
 GimpImageBaseType gimp_image_base_type      (gint32 image_ID);
-gint        gimp_image_width                (gint32 image_ID);
-gint        gimp_image_height               (gint32 image_ID);
-gboolean    gimp_image_free_shadow          (gint32 image_ID);
-gboolean    gimp_image_flip                 (gint32 image_ID,
+>GimpImageBaseType gimp_image_base_type      (gint32 image_ID);
+gint        gimp_image_width                (gint32 image_ID);
+gint        gimp_image_height               (gint32 image_ID);
+gboolean    gimp_image_free_shadow          (gint32 image_ID);
+gboolean    gimp_image_flip                 (gint32 image_ID,
                                              GimpOrientationType flip_type);
-gboolean    gimp_image_rotate               (gint32 image_ID,
+gboolean    gimp_image_rotate               (gint32 image_ID,
                                              GimpRotationType rotate_type);
-gboolean    gimp_image_resize               (gint32 image_ID,
-                                             gint new_width,
-                                             gint new_height,
-                                             gint offx,
-                                             gint offy);
-gboolean    gimp_image_resize_to_layers     (gint32 image_ID);
-gboolean    gimp_image_scale                (gint32 image_ID,
-                                             gint new_width,
-                                             gint new_height);
-gboolean    gimp_image_crop                 (gint32 image_ID,
-                                             gint new_width,
-                                             gint new_height,
-                                             gint offx,
-                                             gint offy);
-gint*       gimp_image_get_layers           (gint32 image_ID,
-                                             gint *num_layers);
-gint*       gimp_image_get_channels         (gint32 image_ID,
-                                             gint *num_channels);
-gint32      gimp_image_get_active_drawable  (gint32 image_ID);
-gboolean    gimp_image_unset_active_channel (gint32 image_ID);
-gint32      gimp_image_get_floating_sel     (gint32 image_ID);
-gint32      gimp_image_floating_sel_attached_to
-                                            (gint32 image_ID);
-gboolean    gimp_image_pick_color           (gint32 image_ID,
-                                             gint32 drawable_ID,
-                                             gdouble x,
-                                             gdouble y,
-                                             gboolean sample_merged,
-                                             gboolean sample_average,
-                                             gdouble average_radius,
+gboolean    gimp_image_resize               (gint32 image_ID,
+                                             gint new_width,
+                                             gint new_height,
+                                             gint offx,
+                                             gint offy);
+gboolean    gimp_image_resize_to_layers     (gint32 image_ID);
+gboolean    gimp_image_scale                (gint32 image_ID,
+                                             gint new_width,
+                                             gint new_height);
+gboolean    gimp_image_crop                 (gint32 image_ID,
+                                             gint new_width,
+                                             gint new_height,
+                                             gint offx,
+                                             gint offy);
+gint*       gimp_image_get_layers           (gint32 image_ID,
+                                             gint *num_layers);
+gint*       gimp_image_get_channels         (gint32 image_ID,
+                                             gint *num_channels);
+gint32      gimp_image_get_active_drawable  (gint32 image_ID);
+gboolean    gimp_image_unset_active_channel (gint32 image_ID);
+gint32      gimp_image_get_floating_sel     (gint32 image_ID);
+gint32      gimp_image_floating_sel_attached_to
+                                            (gint32 image_ID);
+gboolean    gimp_image_pick_color           (gint32 image_ID,
+                                             gint32 drawable_ID,
+                                             gdouble x,
+                                             gdouble y,
+                                             gboolean sample_merged,
+                                             gboolean sample_average,
+                                             gdouble average_radius,
                                              GimpRGB *color);
-gint32      gimp_image_pick_correlate_layer (gint32 image_ID,
-                                             gint x,
-                                             gint y);
-gboolean    gimp_image_add_layer            (gint32 image_ID,
-                                             gint32 layer_ID,
-                                             gint position);
-gboolean    gimp_image_remove_layer         (gint32 image_ID,
-                                             gint32 layer_ID);
-gboolean    gimp_image_raise_layer          (gint32 image_ID,
-                                             gint32 layer_ID);
-gboolean    gimp_image_lower_layer          (gint32 image_ID,
-                                             gint32 layer_ID);
-gboolean    gimp_image_raise_layer_to_top   (gint32 image_ID,
-                                             gint32 layer_ID);
-gboolean    gimp_image_lower_layer_to_bottom
-                                            (gint32 image_ID,
-                                             gint32 layer_ID);
-gboolean    gimp_image_add_channel          (gint32 image_ID,
-                                             gint32 channel_ID,
-                                             gint position);
-gboolean    gimp_image_remove_channel       (gint32 image_ID,
-                                             gint32 channel_ID);
-gboolean    gimp_image_raise_channel        (gint32 image_ID,
-                                             gint32 channel_ID);
-gboolean    gimp_image_lower_channel        (gint32 image_ID,
-                                             gint32 layer_ID);
-gint32      gimp_image_flatten              (gint32 image_ID);
-gint32      gimp_image_merge_visible_layers (gint32 image_ID,
+gint32      gimp_image_pick_correlate_layer (gint32 image_ID,
+                                             gint x,
+                                             gint y);
+gboolean    gimp_image_add_layer            (gint32 image_ID,
+                                             gint32 layer_ID,
+                                             gint position);
+gboolean    gimp_image_remove_layer         (gint32 image_ID,
+                                             gint32 layer_ID);
+gboolean    gimp_image_raise_layer          (gint32 image_ID,
+                                             gint32 layer_ID);
+gboolean    gimp_image_lower_layer          (gint32 image_ID,
+                                             gint32 layer_ID);
+gboolean    gimp_image_raise_layer_to_top   (gint32 image_ID,
+                                             gint32 layer_ID);
+gboolean    gimp_image_lower_layer_to_bottom
+                                            (gint32 image_ID,
+                                             gint32 layer_ID);
+gboolean    gimp_image_add_channel          (gint32 image_ID,
+                                             gint32 channel_ID,
+                                             gint position);
+gboolean    gimp_image_remove_channel       (gint32 image_ID,
+                                             gint32 channel_ID);
+gboolean    gimp_image_raise_channel        (gint32 image_ID,
+                                             gint32 channel_ID);
+gboolean    gimp_image_lower_channel        (gint32 image_ID,
+                                             gint32 layer_ID);
+gint32      gimp_image_flatten              (gint32 image_ID);
+gint32      gimp_image_merge_visible_layers (gint32 image_ID,
                                              GimpMergeType merge_type);
-gint32      gimp_image_merge_down           (gint32 image_ID,
-                                             gint32 merge_layer_ID,
+gint32      gimp_image_merge_down           (gint32 image_ID,
+                                             gint32 merge_layer_ID,
                                              GimpMergeType merge_type);
-gboolean    gimp_image_clean_all            (gint32 image_ID);
-gboolean    gimp_image_is_dirty             (gint32 image_ID);
-gint32      gimp_image_get_active_layer     (gint32 image_ID);
-gboolean    gimp_image_set_active_layer     (gint32 image_ID,
-                                             gint32 active_layer_ID);
-gint32      gimp_image_get_active_channel   (gint32 image_ID);
-gboolean    gimp_image_set_active_channel   (gint32 image_ID,
-                                             gint32 active_channel_ID);
-gint32      gimp_image_get_selection        (gint32 image_ID);
-gboolean    gimp_image_get_component_active (gint32 image_ID,
+gboolean    gimp_image_clean_all            (gint32 image_ID);
+gboolean    gimp_image_is_dirty             (gint32 image_ID);
+gint32      gimp_image_get_active_layer     (gint32 image_ID);
+gboolean    gimp_image_set_active_layer     (gint32 image_ID,
+                                             gint32 active_layer_ID);
+gint32      gimp_image_get_active_channel   (gint32 image_ID);
+gboolean    gimp_image_set_active_channel   (gint32 image_ID,
+                                             gint32 active_channel_ID);
+gint32      gimp_image_get_selection        (gint32 image_ID);
+gboolean    gimp_image_get_component_active (gint32 image_ID,
                                              GimpChannelType component);
-gboolean    gimp_image_set_component_active (gint32 image_ID,
+gboolean    gimp_image_set_component_active (gint32 image_ID,
                                              GimpChannelType component,
-                                             gboolean active);
-gboolean    gimp_image_get_component_visible
-                                            (gint32 image_ID,
+                                             gboolean active);
+gboolean    gimp_image_get_component_visible
+                                            (gint32 image_ID,
                                              GimpChannelType component);
-gboolean    gimp_image_set_component_visible
-                                            (gint32 image_ID,
+gboolean    gimp_image_set_component_visible
+                                            (gint32 image_ID,
                                              GimpChannelType component,
-                                             gboolean visible);
-gchar*      gimp_image_get_filename         (gint32 image_ID);
-gboolean    gimp_image_set_filename         (gint32 image_ID,
-                                             const gchar *filename);
-gchar*      gimp_image_get_name             (gint32 image_ID);
-gboolean    gimp_image_get_resolution       (gint32 image_ID,
-                                             gdouble *xresolution,
-                                             gdouble *yresolution);
-gboolean    gimp_image_set_resolution       (gint32 image_ID,
-                                             gdouble xresolution,
-                                             gdouble yresolution);
+                                             gboolean visible);
+gchar*      gimp_image_get_filename         (gint32 image_ID);
+gboolean    gimp_image_set_filename         (gint32 image_ID,
+                                             const gchar *filename);
+gchar*      gimp_image_get_name             (gint32 image_ID);
+gboolean    gimp_image_get_resolution       (gint32 image_ID,
+                                             gdouble *xresolution,
+                                             gdouble *yresolution);
+gboolean    gimp_image_set_resolution       (gint32 image_ID,
+                                             gdouble xresolution,
+                                             gdouble yresolution);
 GimpUnit    gimp_image_get_unit             (gint32 image_ID);
-gboolean    gimp_image_set_unit             (gint32 image_ID,
+>GimpUnit    gimp_image_get_unit             (gint32 image_ID);
+gboolean    gimp_image_set_unit             (gint32 image_ID,
                                              GimpUnit unit);
-gboolean    gimp_image_set_tattoo_state     (gint32 image_ID,
-                                             gint tattoo_state);
-gint        gimp_image_get_tattoo_state     (gint32 image_ID);
-gint32      gimp_image_get_layer_by_tattoo  (gint32 image_ID,
-                                             gint tattoo);
-gint32      gimp_image_get_channel_by_tattoo
-                                            (gint32 image_ID,
-                                             gint tattoo);
-guchar*     gimp_image_get_cmap             (gint32 image_ID,
-                                             gint *num_colors);
-gboolean    gimp_image_set_cmap             (gint32 image_ID,
-                                             const guchar *cmap,
-                                             gint num_colors);
-guchar*     gimp_image_get_colormap         (gint32 image_ID,
-                                             gint *num_colors);
-gboolean    gimp_image_set_colormap         (gint32 image_ID,
-                                             const guchar *colormap,
-                                             gint num_colors);
-guchar*     gimp_image_get_thumbnail_data   (gint32 image_ID,
-                                             gint *width,
-                                             gint *height,
-                                             gint *bpp);
+gboolean    gimp_image_set_tattoo_state     (gint32 image_ID,
+                                             gint tattoo_state);
+gint        gimp_image_get_tattoo_state     (gint32 image_ID);
+gint32      gimp_image_get_layer_by_tattoo  (gint32 image_ID,
+                                             gint tattoo);
+gint32      gimp_image_get_channel_by_tattoo
+                                            (gint32 image_ID,
+                                             gint tattoo);
+guchar*     gimp_image_get_cmap             (gint32 image_ID,
+                                             gint *num_colors);
+gboolean    gimp_image_set_cmap             (gint32 image_ID,
+                                             const guchar *cmap,
+                                             gint num_colors);
+guchar*     gimp_image_get_colormap         (gint32 image_ID,
+                                             gint *num_colors);
+gboolean    gimp_image_set_colormap         (gint32 image_ID,
+                                             const guchar *colormap,
+                                             gint num_colors);
+guchar*     gimp_image_get_thumbnail_data   (gint32 image_ID,
+                                             gint *width,
+                                             gint *height,
+                                             gint *bpp);
 GimpParasite* gimp_image_parasite_find      (gint32 image_ID,
-                                             const gchar *name);
-gboolean    gimp_image_parasite_list        (gint32 image_ID,
-                                             gint *num_parasites,
-                                             gchar ***parasites);
-gboolean    gimp_image_parasite_attach      (gint32 image_ID,
+>GimpParasite* gimp_image_parasite_find      (gint32 image_ID,
+                                             const gchar *name);
+gboolean    gimp_image_parasite_list        (gint32 image_ID,
+                                             gint *num_parasites,
+                                             gchar ***parasites);
+gboolean    gimp_image_parasite_attach      (gint32 image_ID,
                                              GimpParasite *parasite);
-gboolean    gimp_image_parasite_detach      (gint32 image_ID,
-                                             const gchar *name);
-void        gimp_image_attach_new_parasite  (gint32 image_ID,
-                                             const gchar *name,
-                                             gint flags,
-                                             gint size,
-                                             gconstpointer data);
-

Description

+gboolean gimp_image_parasite_detach (gint32 image_ID, + const gchar *name); +void gimp_image_attach_new_parasite (gint32 image_ID, + const gchar *name, + gint flags, + gint size, + gconstpointer data); +

Description

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

Details

gimp_image_list ()

gint*       gimp_image_list                 (gint *num_images);

+

Details

gimp_image_list ()

gint*       gimp_image_list                 (gint *num_images);

Returns the list of images currently open.

This procedure returns the list of images currently open in the GIMP.

-

num_images : The number of images currently open. +

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

gimp_image_new ()

gint32      gimp_image_new                  (gint width,
-                                             gint height,
+

gimp_image_new ()

gint32      gimp_image_new                  (gint width,
+                                             gint height,
                                              GimpImageBaseType type);

@@ -585,27 +189,19 @@ 'gimp_layer_new' commands. They can be added to an image using the 'gimp_image_add_layer' command.

-

width : The width of the image. -
height : The height of the image. -
type : The type of image. +

width : The width of the image. +
height : The height of the image. +
type : The type of image.
Returns : The ID of the newly created image. -

gimp_image_duplicate ()

gint32      gimp_image_duplicate            (gint32 image_ID);

+


gimp_image_duplicate ()

gint32      gimp_image_duplicate            (gint32 image_ID);

Duplicate the specified image

This procedure duplicates the specified image, copying all layers, channels, and image information.

-

image_ID : The image. +

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

gimp_image_delete ()

gboolean    gimp_image_delete               (gint32 image_ID);

+


gimp_image_delete ()

gboolean    gimp_image_delete               (gint32 image_ID);

Delete the specified image.

If there are no displays associated with this image it will be @@ -615,100 +211,66 @@ the display. Removal of the last associated display will then delete the image.

-

image_ID : The image. +

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

gimp_image_base_type ()


gimp_image_base_type ()

GimpImageBaseType gimp_image_base_type      (gint32 image_ID);

+>GimpImageBaseType gimp_image_base_type (gint32 image_ID);

Get the base type of the image.

This procedure returns the image's base type. Layers in the image must be of this subtype, but can have an optional alpha channel.

-

image_ID : The image. +

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

gimp_image_width ()

gint        gimp_image_width                (gint32 image_ID);

+


gimp_image_width ()

gint        gimp_image_width                (gint32 image_ID);

Return the width of the image

This procedure returns the image's width. This value is independent of any of the layers in this image. This is the \"canvas\" width.

-

image_ID : The image. +

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

gimp_image_height ()

gint        gimp_image_height               (gint32 image_ID);

+


gimp_image_height ()

gint        gimp_image_height               (gint32 image_ID);

Return the height of the image

This procedure returns the image's height. This value is independent of any of the layers in this image. This is the \"canvas\" height.

-

image_ID : The image. +

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

gimp_image_free_shadow ()

gboolean    gimp_image_free_shadow          (gint32 image_ID);

+


gimp_image_free_shadow ()

gboolean    gimp_image_free_shadow          (gint32 image_ID);

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

This procedure is intended as a memory saving device. If any shadow memory has been allocated, it will be freed automatically on a call to 'gimp_image_delete'.

-

image_ID : The image. +

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

gimp_image_flip ()

gboolean    gimp_image_flip                 (gint32 image_ID,
+

gimp_image_flip ()

gboolean    gimp_image_flip                 (gint32 image_ID,
                                              GimpOrientationType flip_type);

Flips the image horizontally or vertically.

This procedure flips (mirrors) the image.

-

image_ID : The image. -
flip_type : Type of flip. +

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

gimp_image_rotate ()

gboolean    gimp_image_rotate               (gint32 image_ID,
+

gimp_image_rotate ()

gboolean    gimp_image_rotate               (gint32 image_ID,
                                              GimpRotationType rotate_type);

Rotates the image by the specified degrees.

This procedure rotates the image.

-

image_ID : The image. -
rotate_type : Angle of rotation. +

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

gimp_image_resize ()

gboolean    gimp_image_resize               (gint32 image_ID,
-                                             gint new_width,
-                                             gint new_height,
-                                             gint offx,
-                                             gint offy);

+


gimp_image_resize ()

gboolean    gimp_image_resize               (gint32 image_ID,
+                                             gint new_width,
+                                             gint new_height,
+                                             gint offx,
+                                             gint offy);

Resize the image to the specified extents.

This procedure resizes the image so that it's new width and height @@ -720,17 +282,13 @@ selection mask. All layers within the image are repositioned according to the specified offsets.

-

image_ID : The image. -
new_width : New image width. -
new_height : New image height. -
offx : x offset between upper left corner of old and new images: (new - old). -
offy : y offset between upper left corner of old and new images: (new - old). -
Returns : TRUE on success. -

gimp_image_resize_to_layers ()

gboolean    gimp_image_resize_to_layers     (gint32 image_ID);

+

image_ID : The image. +
new_width : New image width. +
new_height : New image height. +
offx : x offset between upper left corner of old and new images: (new - old). +
offy : y offset between upper left corner of old and new images: (new - old). +
Returns : TRUE on success. +

gimp_image_resize_to_layers ()

gboolean    gimp_image_resize_to_layers     (gint32 image_ID);

Resize the image to fit all layers.

This procedure resizes the image to the bounding box of all layers @@ -738,21 +296,13 @@ size; this includes the image selection mask. All layers within the image are repositioned to the new image area.

-

image_ID : The image. +

image_ID : The image.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_image_scale ()

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

+


gimp_image_scale ()

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

Scale the image to the specified extents.

This procedure scales the image so that its new width and height are @@ -764,27 +314,15 @@ All layers within the image are repositioned according to the specified offsets.

-

image_ID : The image. -
new_width : New image width. -
new_height : New image height. -
Returns : TRUE on success. -

gimp_image_crop ()

gboolean    gimp_image_crop                 (gint32 image_ID,
-                                             gint new_width,
-                                             gint new_height,
-                                             gint offx,
-                                             gint offy);

+

image_ID : The image. +
new_width : New image width. +
new_height : New image height. +
Returns : TRUE on success. +

gimp_image_crop ()

gboolean    gimp_image_crop                 (gint32 image_ID,
+                                             gint new_width,
+                                             gint new_height,
+                                             gint offx,
+                                             gint offy);

Crop the image to the specified extents.

This procedure crops the image so that it's new width and height are @@ -794,50 +332,34 @@ this includes the image selection mask. If any parameters are out of range, an error is returned.

-

image_ID : The image. -
new_width : New image width: (0 < new_width <= width). -
new_height : New image height: (0 < new_height <= height). -
offx : x offset: (0 <= offx <= (width - new_width)). -
offy : y offset: (0 <= offy <= (height - new_height)). -
Returns : TRUE on success. -

gimp_image_get_layers ()

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

+

image_ID : The image. +
new_width : New image width: (0 < new_width <= width). +
new_height : New image height: (0 < new_height <= height). +
offx : x offset: (0 <= offx <= (width - new_width)). +
offy : y offset: (0 <= offy <= (height - new_height)). +
Returns : TRUE on success. +

gimp_image_get_layers ()

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

Returns the list of layers contained in the specified image.

This procedure returns the list of layers contained in the specified image. The order of layers is from topmost to bottommost.

-

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

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

gimp_image_get_channels ()

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

+


gimp_image_get_channels ()

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

Returns the list of channels contained in the specified image.

This procedure returns the list of channels contained in the specified image. This does not include the selection mask, or layer masks. The order is from topmost to bottommost.

-

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

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

gimp_image_get_active_drawable ()

gint32      gimp_image_get_active_drawable  (gint32 image_ID);

+


gimp_image_get_active_drawable ()

gint32      gimp_image_get_active_drawable  (gint32 image_ID);

Get the image's active drawable

This procedure returns the ID of the image's active drawable. This @@ -847,13 +369,9 @@ layer mask and the layer mask is in edit mode, then the layer mask is the active drawable.

-

image_ID : The image. +

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

gimp_image_unset_active_channel ()

gboolean    gimp_image_unset_active_channel (gint32 image_ID);

+


gimp_image_unset_active_channel ()

gboolean    gimp_image_unset_active_channel (gint32 image_ID);

Unsets the active channel in the specified image.

If an active channel exists, it is unset. There then exists no @@ -861,57 +379,33 @@ 'Set Active Channel'. No error is returned in the case of no existing active channel.

-

image_ID : The image. +

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

gimp_image_get_floating_sel ()

gint32      gimp_image_get_floating_sel     (gint32 image_ID);

+


gimp_image_get_floating_sel ()

gint32      gimp_image_get_floating_sel     (gint32 image_ID);

Return the floating selection of the image.

This procedure returns the image's floating selection, if it exists. If it doesn't exist, -1 is returned as the layer ID.

-

image_ID : The image. +

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

gimp_image_floating_sel_attached_to ()

gint32      gimp_image_floating_sel_attached_to
-                                            (gint32 image_ID);

+


gimp_image_floating_sel_attached_to ()

gint32      gimp_image_floating_sel_attached_to
+                                            (gint32 image_ID);

Return the drawable the floating selection is attached to.

This procedure returns the drawable the image's floating selection is attached to, if it exists. If it doesn't exist, -1 is returned as the drawable ID.

-

image_ID : The image. +

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

gimp_image_pick_color ()

gboolean    gimp_image_pick_color           (gint32 image_ID,
-                                             gint32 drawable_ID,
-                                             gdouble x,
-                                             gdouble y,
-                                             gboolean sample_merged,
-                                             gboolean sample_average,
-                                             gdouble average_radius,
+

gimp_image_pick_color ()

gboolean    gimp_image_pick_color           (gint32 image_ID,
+                                             gint32 drawable_ID,
+                                             gdouble x,
+                                             gdouble y,
+                                             gboolean sample_merged,
+                                             gboolean sample_average,
+                                             gdouble average_radius,
                                              GimpRGB *color);

@@ -930,26 +424,18 @@ a merged sampling, the supplied drawable is ignored except for finding the image it belongs to.

-

image_ID : The image. -
drawable_ID : The drawable to pick from. -
x : x coordinate of upper-left corner of rectangle. -
y : y coordinate of upper-left corner of rectangle. -
sample_merged : Use the composite image, not the drawable. -
sample_average : Average the color of all the pixels in a specified radius. -
average_radius : The radius of pixels to average. -
color : The return color. -
Returns : TRUE on success. -

gimp_image_pick_correlate_layer ()

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

+

image_ID : The image. +
drawable_ID : The drawable to pick from. +
x : x coordinate of upper-left corner of rectangle. +
y : y coordinate of upper-left corner of rectangle. +
sample_merged : Use the composite image, not the drawable. +
sample_average : Average the color of all the pixels in a specified radius. +
average_radius : The radius of pixels to average. +
color : The return color. +
Returns : TRUE on success. +

gimp_image_pick_correlate_layer ()

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

Find the layer visible at the specified coordinates.

This procedure finds the layer which is visible at the specified @@ -958,21 +444,13 @@ at the specified coordinates. This procedure will return -1 if no layer is found.

-

image_ID : The image. -
x : The x coordinate for the pick. -
y : The y coordinate for the pick. +

image_ID : The image. +
x : The x coordinate for the pick. +
y : The y coordinate for the pick.
Returns : The layer found at the specified coordinates. -

gimp_image_add_layer ()

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

+


gimp_image_add_layer ()

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

Add the specified layer to the image.

This procedure adds the specified layer to the gimage at the given @@ -981,18 +459,12 @@ no alpha channel, it must be added at position 0. The layer type must be compatible with the image base type.

-

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

gimp_image_remove_layer ()

gboolean    gimp_image_remove_layer         (gint32 image_ID,
-                                             gint32 layer_ID);

+

image_ID : The image. +
layer_ID : The layer. +
position : The layer position. +
Returns : TRUE on success. +

gimp_image_remove_layer ()

gboolean    gimp_image_remove_layer         (gint32 image_ID,
+                                             gint32 layer_ID);

Remove the specified layer from the image.

This procedure removes the specified layer from the image. If the @@ -1001,69 +473,45 @@ layer remaining, the image will become empty and have no active layer.

-

image_ID : The image. -
layer_ID : The layer. +

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

gimp_image_raise_layer ()

gboolean    gimp_image_raise_layer          (gint32 image_ID,
-                                             gint32 layer_ID);

+


gimp_image_raise_layer ()

gboolean    gimp_image_raise_layer          (gint32 image_ID,
+                                             gint32 layer_ID);

Raise the specified layer in the image's layer stack

This procedure raises the specified layer one step in the existing layer stack. It will not move the layer if there is no layer above it, or the layer has no alpha channel.

-

image_ID : The image. -
layer_ID : The layer to raise. +

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

gimp_image_lower_layer ()

gboolean    gimp_image_lower_layer          (gint32 image_ID,
-                                             gint32 layer_ID);

+


gimp_image_lower_layer ()

gboolean    gimp_image_lower_layer          (gint32 image_ID,
+                                             gint32 layer_ID);

Lower the specified layer in the image's layer stack

This procedure lowers the specified layer one step in the existing layer stack. It will not move the layer if there is no layer below it, or the layer has no alpha channel.

-

image_ID : The image. -
layer_ID : The layer to lower. +

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

gimp_image_raise_layer_to_top ()

gboolean    gimp_image_raise_layer_to_top   (gint32 image_ID,
-                                             gint32 layer_ID);

+


gimp_image_raise_layer_to_top ()

gboolean    gimp_image_raise_layer_to_top   (gint32 image_ID,
+                                             gint32 layer_ID);

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

This procedure raises the specified layer to top of the existing layer stack. It will not move the layer if there is no layer above it, or the layer has no alpha channel.

-

image_ID : The image. -
layer_ID : The layer to raise to top. +

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

gimp_image_lower_layer_to_bottom ()

gboolean    gimp_image_lower_layer_to_bottom
-                                            (gint32 image_ID,
-                                             gint32 layer_ID);

+


gimp_image_lower_layer_to_bottom ()

gboolean    gimp_image_lower_layer_to_bottom
+                                            (gint32 image_ID,
+                                             gint32 layer_ID);

Lower the specified layer in the image's layer stack to bottom of stack

@@ -1071,85 +519,55 @@ layer stack. It will not move the layer if there is no layer below it, or the layer has no alpha channel.

-

image_ID : The image. -
layer_ID : The layer to lower to bottom. +

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

gimp_image_add_channel ()

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

+


gimp_image_add_channel ()

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

Add the specified channel to the image.

This procedure adds the specified channel to the image. The position channel is not currently used, so the channel is always inserted at the top of the channel stack.

-

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

gimp_image_remove_channel ()

gboolean    gimp_image_remove_channel       (gint32 image_ID,
-                                             gint32 channel_ID);

+

image_ID : The image. +
channel_ID : The channel. +
position : The channel position. +
Returns : TRUE on success. +

gimp_image_remove_channel ()

gboolean    gimp_image_remove_channel       (gint32 image_ID,
+                                             gint32 channel_ID);

Remove the specified channel from the image.

This procedure removes the specified channel from the image. If the channel doesn't exist, an error is returned.

-

image_ID : The image. -
channel_ID : The channel. +

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

gimp_image_raise_channel ()

gboolean    gimp_image_raise_channel        (gint32 image_ID,
-                                             gint32 channel_ID);

+


gimp_image_raise_channel ()

gboolean    gimp_image_raise_channel        (gint32 image_ID,
+                                             gint32 channel_ID);

Raise the specified channel in the image's channel stack

This procedure raises the specified channel one step in the existing channel stack. It will not move the channel if there is no channel above it.

-

image_ID : The image. -
channel_ID : The channel to raise. +

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

gimp_image_lower_channel ()

gboolean    gimp_image_lower_channel        (gint32 image_ID,
-                                             gint32 layer_ID);

+


gimp_image_lower_channel ()

gboolean    gimp_image_lower_channel        (gint32 image_ID,
+                                             gint32 layer_ID);

Lower the specified layer in the image's layer stack

This procedure lowers the specified layer one step in the existing layer stack. It will not move the layer if there is no layer below it, or the layer has no alpha channel.

-

image_ID : The image. -
layer_ID : The layer to lower. +

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

gimp_image_flatten ()

gint32      gimp_image_flatten              (gint32 image_ID);

+


gimp_image_flatten ()

gint32      gimp_image_flatten              (gint32 image_ID);

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

@@ -1157,13 +575,9 @@ merging with the CLIP_TO_IMAGE merge type. Non-visible layers are discarded, and the resulting image is stripped of its alpha channel.

-

image_ID : The image. +

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

gimp_image_merge_visible_layers ()

gint32      gimp_image_merge_visible_layers (gint32 image_ID,
+

gimp_image_merge_visible_layers ()

gint32      gimp_image_merge_visible_layers (gint32 image_ID,
                                              GimpMergeType merge_type);

Merge the visible image layers into one.

@@ -1174,17 +588,11 @@ extents of the image. A merge type of CLIP_TO_BOTTOM_LAYER clips the final layer to the size of the bottommost layer.

-

image_ID : The image. -
merge_type : The type of merge. +

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

gimp_image_merge_down ()

gint32      gimp_image_merge_down           (gint32 image_ID,
-                                             gint32 merge_layer_ID,
+

gimp_image_merge_down ()

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

Merge the layer passed and the first visible layer below.

@@ -1196,15 +604,11 @@ CLIP_TO_BOTTOM_LAYER clips the final layer to the size of the bottommost layer.

-

image_ID : The image. -
merge_layer_ID : The layer to merge down from. -
merge_type : The type of merge. +

image_ID : The image. +
merge_layer_ID : The layer to merge down from. +
merge_type : The type of merge.
Returns : The resulting layer. -

gimp_image_clean_all ()

gboolean    gimp_image_clean_all            (gint32 image_ID);

+


gimp_image_clean_all ()

gboolean    gimp_image_clean_all            (gint32 image_ID);

Set the image dirty count to 0.

This procedure sets the specified image's dirty count to 0, allowing @@ -1213,41 +617,27 @@ initially be considered dirty, even though layers must be created, filled, and installed in the image.

-

image_ID : The image. +

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

gimp_image_is_dirty ()

gboolean    gimp_image_is_dirty             (gint32 image_ID);

+


gimp_image_is_dirty ()

gboolean    gimp_image_is_dirty             (gint32 image_ID);

Checks if the image has unsaved changes.

This procedure checks the specified image's dirty count to see if it needs to be saved.

-

image_ID : The image. +

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

gimp_image_get_active_layer ()

gint32      gimp_image_get_active_layer     (gint32 image_ID);

+


gimp_image_get_active_layer ()

gint32      gimp_image_get_active_layer     (gint32 image_ID);

Returns the specified image's active layer.

If there is an active layer, its ID will be returned, otherwise, -1. If a channel is currently active, then no layer will be. If a layer mask is active, then this will return the associated layer.

-

image_ID : The image. +

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

gimp_image_set_active_layer ()

gboolean    gimp_image_set_active_layer     (gint32 image_ID,
-                                             gint32 active_layer_ID);

+


gimp_image_set_active_layer ()

gboolean    gimp_image_set_active_layer     (gint32 image_ID,
+                                             gint32 active_layer_ID);

Sets the specified image's active layer.

If the layer exists, it is set as the active layer in the image. Any @@ -1255,29 +645,19 @@ a previously existing floating selection, in which case this procedure will return an execution error.

-

image_ID : The image. -
active_layer_ID : The new image active layer. +

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

gimp_image_get_active_channel ()

gint32      gimp_image_get_active_channel   (gint32 image_ID);

+


gimp_image_get_active_channel ()

gint32      gimp_image_get_active_channel   (gint32 image_ID);

Returns the specified image's active channel.

If there is an active channel, this will return the channel ID, otherwise, -1.

-

image_ID : The image. +

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

gimp_image_set_active_channel ()

gboolean    gimp_image_set_active_channel   (gint32 image_ID,
-                                             gint32 active_channel_ID);

+


gimp_image_set_active_channel ()

gboolean    gimp_image_set_active_channel   (gint32 image_ID,
+                                             gint32 active_channel_ID);

Sets the specified image's active channel.

If the channel exists, it is set as the active channel in the image. @@ -1285,26 +665,18 @@ exception is a previously existing floating selection, in which case this procedure will return an execution error.

-

image_ID : The image. -
active_channel_ID : The new image active channel. +

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

gimp_image_get_selection ()

gint32      gimp_image_get_selection        (gint32 image_ID);

+


gimp_image_get_selection ()

gint32      gimp_image_get_selection        (gint32 image_ID);

Returns the specified image's selection.

This will always return a valid ID for a selection -- which is represented as a channel internally.

-

image_ID : The image. +

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

gimp_image_get_component_active ()

gboolean    gimp_image_get_component_active (gint32 image_ID,
+

gimp_image_get_component_active ()

gboolean    gimp_image_get_component_active (gint32 image_ID,
                                              GimpChannelType component);

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

@@ -1313,18 +685,12 @@ or inactive -- whether or not it can be modified. If the specified component is not valid for the image type, an error is returned.

-

image_ID : The image. -
component : The image component. +

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

gimp_image_set_component_active ()

gboolean    gimp_image_set_component_active (gint32 image_ID,
+

gimp_image_set_component_active ()

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

+ gboolean active);

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

This procedure sets if the specified image's image component (i.e. @@ -1332,16 +698,12 @@ inactive -- whether or not it can be modified. If the specified component is not valid for the image type, an error is returned.

-

image_ID : The image. -
component : The image component. -
active : Component is active. -
Returns : TRUE on success. -

gimp_image_get_component_visible ()

gboolean    gimp_image_get_component_visible
-                                            (gint32 image_ID,
+

image_ID : The image. +
component : The image component. +
active : Component is active. +
Returns : TRUE on success. +

gimp_image_get_component_visible ()

gboolean    gimp_image_get_component_visible
+                                            (gint32 image_ID,
                                              GimpChannelType component);

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

@@ -1351,19 +713,13 @@ specified component is not valid for the image type, an error is returned.

-

image_ID : The image. -
component : The image component. +

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

gimp_image_set_component_visible ()

gboolean    gimp_image_set_component_visible
-                                            (gint32 image_ID,
+

gimp_image_set_component_visible ()

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

+ gboolean visible);

Sets if the specified image's image component is visible.

This procedure sets if the specified image's image component (i.e. @@ -1371,96 +727,64 @@ invisible -- whether or not it can be seen. If the specified component is not valid for the image type, an error is returned.

-

image_ID : The image. -
component : The image component. -
visible : Component is visible. -
Returns : TRUE on success. -

gimp_image_get_filename ()

gchar*      gimp_image_get_filename         (gint32 image_ID);

+

image_ID : The image. +
component : The image component. +
visible : Component is visible. +
Returns : TRUE on success. +

gimp_image_get_filename ()

gchar*      gimp_image_get_filename         (gint32 image_ID);

Returns the specified image's filename.

This procedure returns the specified image's filename in the filesystem encoding. The image has a filename only if it was loaded -or has since been saved. Otherwise, this function returns NULL.

+or has since been saved. Otherwise, this function returns NULL.

-

image_ID : The image. +

image_ID : The image.
Returns : The filename. -

gimp_image_set_filename ()

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

+


gimp_image_set_filename ()

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

Sets the specified image's filename.

This procedure sets the specified image's filename. The filename should be in the filesystem encoding.

-

image_ID : The image. -
filename : The new image filename. +

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

gimp_image_get_name ()

gchar*      gimp_image_get_name             (gint32 image_ID);

+


gimp_image_get_name ()

gchar*      gimp_image_get_name             (gint32 image_ID);

Returns the specified image's name.

This procedure returns the specified image's name.

-

image_ID : The image. +

image_ID : The image.
Returns : The name. -

gimp_image_get_resolution ()

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

+


gimp_image_get_resolution ()

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

Returns the specified image's resolution.

This procedure returns the specified image's resolution in dots per inch. This value is independent of any of the layers in this image.

-

image_ID : The image. -
xresolution : The resolutionin the x-axis, in dots per inch. -
yresolution : The resolutionin the y-axis, in dots per inch. -
Returns : TRUE on success. -

gimp_image_set_resolution ()

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

+

image_ID : The image. +
xresolution : The resolutionin the x-axis, in dots per inch. +
yresolution : The resolutionin the y-axis, in dots per inch. +
Returns : TRUE on success. +

gimp_image_set_resolution ()

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

Sets the specified image's resolution.

This procedure sets the specified image's resolution in dots per inch. This value is independent of any of the layers in this image. No scaling or resizing is performed.

-

image_ID : The image. -
xresolution : The new image resolution in the x-axis, in dots per inch. -
yresolution : The new image resolution in the y-axis, in dots per inch. +

image_ID : The image. +
xresolution : The new image resolution in the x-axis, in dots per inch. +
yresolution : The new image resolution in the y-axis, in dots per inch.
Returns : TRUE on success. -

gimp_image_get_unit ()


gimp_image_get_unit ()

GimpUnit    gimp_image_get_unit             (gint32 image_ID);

+>GimpUnit gimp_image_get_unit (gint32 image_ID);

Returns the specified image's unit.

This procedure returns the specified image's unit. This value is @@ -1468,13 +792,9 @@ procedure definitions for the valid range of unit IDs and a description of the unit system.

-

image_ID : The image. +

image_ID : The image.
Returns : The unit. -

gimp_image_set_unit ()

gboolean    gimp_image_set_unit             (gint32 image_ID,
+

gimp_image_set_unit ()

gboolean    gimp_image_set_unit             (gint32 image_ID,
                                              GimpUnit unit);

@@ -1485,17 +805,11 @@ layers in this image. See the gimp_unit_* procedure definitions for the valid range of unit IDs and a description of the unit system.

-

image_ID : The image. -
unit : The new image unit. +

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

gimp_image_set_tattoo_state ()

gboolean    gimp_image_set_tattoo_state     (gint32 image_ID,
-                                             gint tattoo_state);

+


gimp_image_set_tattoo_state ()

gboolean    gimp_image_set_tattoo_state     (gint32 image_ID,
+                                             gint tattoo_state);

Set the tattoo state associated with the image.

This procedure sets the tattoo state of the image. Use only by @@ -1511,113 +825,69 @@ status check on the tattoo values that have been set to make sure that all is OK.

-

image_ID : The image. -
tattoo_state : The new image tattoo_state. +

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

gimp_image_get_tattoo_state ()

gint        gimp_image_get_tattoo_state     (gint32 image_ID);

+


gimp_image_get_tattoo_state ()

gint        gimp_image_get_tattoo_state     (gint32 image_ID);

Returns the tattoo state associated with the image.

This procedure returns the tattoo state of the image. Use only by save/load plugins that wish to preserve an images tattoo state. Using this function at other times will produce unexpected results.

-

image_ID : The image. +

image_ID : The image.
Returns : The tattoo_state. -

gimp_image_get_layer_by_tattoo ()

gint32      gimp_image_get_layer_by_tattoo  (gint32 image_ID,
-                                             gint tattoo);

+


gimp_image_get_layer_by_tattoo ()

gint32      gimp_image_get_layer_by_tattoo  (gint32 image_ID,
+                                             gint tattoo);

Find a layer with a given tattoo in an image.

This procedure returns the layer with the given tattoo in the specified image.

-

image_ID : The image. -
tattoo : The tattoo of the layer to find. +

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

gimp_image_get_channel_by_tattoo ()

gint32      gimp_image_get_channel_by_tattoo
-                                            (gint32 image_ID,
-                                             gint tattoo);

+


gimp_image_get_channel_by_tattoo ()

gint32      gimp_image_get_channel_by_tattoo
+                                            (gint32 image_ID,
+                                             gint tattoo);

Find a channel with a given tattoo in an image.

This procedure returns the channel with the given tattoo in the specified image.

-

image_ID : The image. -
tattoo : The tattoo of the channel to find. +

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

gimp_image_get_cmap ()

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

Warning

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

-This procedure is deprecated! Use gimp_image_get_colormap() instead.

+


gimp_image_get_cmap ()

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

Warning

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

+This procedure is deprecated! Use gimp_image_get_colormap() instead.

-

image_ID : The image. -
num_colors : Number of colors in the colormap array. +

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

gimp_image_set_cmap ()

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

Warning

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

-This procedure is deprecated! Use gimp_image_set_colormap() instead.

- -

image_ID : The image. -
cmap : The new colormap values. -
num_colors : Number of colors in the colormap array. -
Returns : TRUE on success. -

gimp_image_get_colormap ()

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

+


gimp_image_set_cmap ()

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

Warning

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

+This procedure is deprecated! Use gimp_image_set_colormap() instead.

+ +

image_ID : The image. +
cmap : The new colormap values. +
num_colors : Number of colors in the colormap array. +
Returns : TRUE on success. +

gimp_image_get_colormap ()

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

Returns the image's colormap

This procedure returns an actual pointer to the image's colormap, as well as the number of colors contained in the colormap. If the image is not of base type INDEXED, this pointer will be NULL.

-

image_ID : The image. -
num_colors : Number of colors in the colormap array. +

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

gimp_image_set_colormap ()

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

+


gimp_image_set_colormap ()

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

Sets the entries in the image's colormap.

This procedure sets the entries in the specified image's colormap. @@ -1625,72 +895,46 @@ and corresponds to the number of INT8 triples that must be contained in the \"cmap\" array.

-

image_ID : The image. -
colormap : The new colormap values. -
num_colors : Number of colors in the colormap array. -
Returns : TRUE on success. -

gimp_image_get_thumbnail_data ()

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

- -

image_ID : -
width : -
height : -
bpp : +

image_ID : The image. +
colormap : The new colormap values. +
num_colors : Number of colors in the colormap array. +
Returns : TRUE on success. +

gimp_image_get_thumbnail_data ()

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

+ +

image_ID : +
width : +
height : +
bpp :
Returns : -

gimp_image_parasite_find ()


gimp_image_parasite_find ()

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

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

Finds the named parasite in an image

Finds and returns the named parasite that was previously attached to an image.

-

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

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

gimp_image_parasite_list ()

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

+


gimp_image_parasite_list ()

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

List all parasites.

Returns a list of all currently attached parasites.

-

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

gimp_image_parasite_attach ()

gboolean    gimp_image_parasite_attach      (gint32 image_ID,
+

image_ID : The image. +
num_parasites : The number of attached parasites. +
parasites : The names of currently attached parasites. +
Returns : TRUE on success. +

gimp_image_parasite_attach ()

gboolean    gimp_image_parasite_attach      (gint32 image_ID,
                                              GimpParasite *parasite);

@@ -1699,56 +943,40 @@ This procedure attaches a parasite to an image. It has no return values.

-

image_ID : The image. -
parasite : The parasite to attach to an image. +

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

gimp_image_parasite_detach ()

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

+


gimp_image_parasite_detach ()

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

Removes a parasite from an image.

This procedure detaches a parasite from an image. It has no return values.

-

image_ID : The image. -
name : The name of the parasite to detach from an image. +

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

gimp_image_attach_new_parasite ()

void        gimp_image_attach_new_parasite  (gint32 image_ID,
-                                             const gchar *name,
-                                             gint flags,
-                                             gint size,
-                                             gconstpointer data);

+


gimp_image_attach_new_parasite ()

void        gimp_image_attach_new_parasite  (gint32 image_ID,
+                                             const gchar *name,
+                                             gint flags,
+                                             gint size,
+                                             gconstpointer data);

Convenience function that creates a parasite and attaches it to the GIMP.

-See Also: gimp_image_parasite_attach()

+See Also: gimp_image_parasite_attach()

-

image_ID : the ID of the image to attach the
image_ID : the ID of the image to attach the GimpParasite to. -
name : the name of the
name : the name of the GimpParasite to create and attach. -
flags : the flags set on the
flags : the flags set on the GimpParasite. -
size : the size of the parasite data in bytes. -
data : a pointer to the data attached with the
size : the size of the parasite data in bytes. +
data : a pointer to the data attached with the GimpParasite.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimplayer.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimplayer.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimplayer.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimplayer.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,236 +1,74 @@ -gimplayer

gimplayer

gimplayer — Operations on a single layer.

Synopsis

+gimplayer

gimplayer

gimplayer — Operations on a single layer.

Synopsis

 
 
 
-gint32      gimp_layer_new                  (gint32 image_ID,
-                                             const gchar *name,
-                                             gint width,
-                                             gint height,
+gint32      gimp_layer_new                  (gint32 image_ID,
+                                             const gchar *name,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             gdouble opacity,
+                                             gdouble opacity,
                                              GimpLayerModeEffects mode);
-gint32      gimp_layer_copy                 (gint32 layer_ID);
-gboolean    gimp_layer_scale                (gint32 layer_ID,
-                                             gint new_width,
-                                             gint new_height,
-                                             gboolean local_origin);
-gboolean    gimp_layer_resize               (gint32 layer_ID,
-                                             gint new_width,
-                                             gint new_height,
-                                             gint offx,
-                                             gint offy);
-gboolean    gimp_layer_resize_to_image_size (gint32 layer_ID);
-gboolean    gimp_layer_translate            (gint32 layer_ID,
-                                             gint offx,
-                                             gint offy);
-gboolean    gimp_layer_add_alpha            (gint32 layer_ID);
-gboolean    gimp_layer_set_offsets          (gint32 layer_ID,
-                                             gint offx,
-                                             gint offy);
-gint32      gimp_layer_create_mask          (gint32 layer_ID,
+gint32      gimp_layer_copy                 (gint32 layer_ID);
+gboolean    gimp_layer_scale                (gint32 layer_ID,
+                                             gint new_width,
+                                             gint new_height,
+                                             gboolean local_origin);
+gboolean    gimp_layer_resize               (gint32 layer_ID,
+                                             gint new_width,
+                                             gint new_height,
+                                             gint offx,
+                                             gint offy);
+gboolean    gimp_layer_resize_to_image_size (gint32 layer_ID);
+gboolean    gimp_layer_translate            (gint32 layer_ID,
+                                             gint offx,
+                                             gint offy);
+gboolean    gimp_layer_add_alpha            (gint32 layer_ID);
+gboolean    gimp_layer_set_offsets          (gint32 layer_ID,
+                                             gint offx,
+                                             gint offy);
+gint32      gimp_layer_create_mask          (gint32 layer_ID,
                                              GimpAddMaskType mask_type);
-gint32      gimp_layer_from_mask            (gint32 mask_ID);
-gint32      gimp_layer_get_mask             (gint32 layer_ID);
-gboolean    gimp_layer_add_mask             (gint32 layer_ID,
-                                             gint32 mask_ID);
-gboolean    gimp_layer_remove_mask          (gint32 layer_ID,
+gint32      gimp_layer_from_mask            (gint32 mask_ID);
+gint32      gimp_layer_get_mask             (gint32 layer_ID);
+gboolean    gimp_layer_add_mask             (gint32 layer_ID,
+                                             gint32 mask_ID);
+gboolean    gimp_layer_remove_mask          (gint32 layer_ID,
                                              GimpMaskApplyMode mode);
-gint32      gimp_layer_new_from_drawable    (gint32 drawable_ID,
-                                             gint32 dest_image_ID);
-gboolean    gimp_layer_get_preserve_trans   (gint32 layer_ID);
-gboolean    gimp_layer_set_preserve_trans   (gint32 layer_ID,
-                                             gboolean preserve_trans);
-gboolean    gimp_layer_get_apply_mask       (gint32 layer_ID);
-gboolean    gimp_layer_set_apply_mask       (gint32 layer_ID,
-                                             gboolean apply_mask);
-gboolean    gimp_layer_get_show_mask        (gint32 layer_ID);
-gboolean    gimp_layer_set_show_mask        (gint32 layer_ID,
-                                             gboolean show_mask);
-gboolean    gimp_layer_get_edit_mask        (gint32 layer_ID);
-gboolean    gimp_layer_set_edit_mask        (gint32 layer_ID,
-                                             gboolean edit_mask);
-gdouble     gimp_layer_get_opacity          (gint32 layer_ID);
-gboolean    gimp_layer_set_opacity          (gint32 layer_ID,
-                                             gdouble opacity);
-GimpLayerModeEffects gimp_layer_get_mode    (gint32 layer_ID);
-gboolean    gimp_layer_set_mode             (gint32 layer_ID,
+gint32      gimp_layer_new_from_drawable    (gint32 drawable_ID,
+                                             gint32 dest_image_ID);
+gboolean    gimp_layer_get_preserve_trans   (gint32 layer_ID);
+gboolean    gimp_layer_set_preserve_trans   (gint32 layer_ID,
+                                             gboolean preserve_trans);
+gboolean    gimp_layer_get_apply_mask       (gint32 layer_ID);
+gboolean    gimp_layer_set_apply_mask       (gint32 layer_ID,
+                                             gboolean apply_mask);
+gboolean    gimp_layer_get_show_mask        (gint32 layer_ID);
+gboolean    gimp_layer_set_show_mask        (gint32 layer_ID,
+                                             gboolean show_mask);
+gboolean    gimp_layer_get_edit_mask        (gint32 layer_ID);
+gboolean    gimp_layer_set_edit_mask        (gint32 layer_ID,
+                                             gboolean edit_mask);
+gdouble     gimp_layer_get_opacity          (gint32 layer_ID);
+gboolean    gimp_layer_set_opacity          (gint32 layer_ID,
+                                             gdouble opacity);
+GimpLayerModeEffects gimp_layer_get_mode    (gint32 layer_ID);
+gboolean    gimp_layer_set_mode             (gint32 layer_ID,
                                              GimpLayerModeEffects mode);
-gboolean    gimp_layer_is_floating_sel      (gint32 layer_ID);
-

Description

+gboolean gimp_layer_is_floating_sel (gint32 layer_ID); +

Description

Operations on a single layer. -

Details

gimp_layer_new ()

gint32      gimp_layer_new                  (gint32 image_ID,
-                                             const gchar *name,
-                                             gint width,
-                                             gint height,
+

Details

gimp_layer_new ()

gint32      gimp_layer_new                  (gint32 image_ID,
+                                             const gchar *name,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             gdouble opacity,
+                                             gdouble opacity,
                                              GimpLayerModeEffects mode);

Create a new layer.

@@ -241,19 +79,15 @@ command. Other attributes such as layer mask modes, and offsets should be set with explicit procedure calls.

-

image_ID : The image to which to add the layer. -
name : The layer name. -
width : The layer width. -
height : The layer height. -
type : The layer type. -
opacity : The layer opacity. -
mode : The layer combination mode. +

image_ID : The image to which to add the layer. +
name : The layer name. +
width : The layer width. +
height : The layer height. +
type : The layer type. +
opacity : The layer opacity. +
mode : The layer combination mode.
Returns : The newly created layer. -

gimp_layer_copy ()

gint32      gimp_layer_copy                 (gint32 layer_ID);

+


gimp_layer_copy ()

gint32      gimp_layer_copy                 (gint32 layer_ID);

Copy a layer.

This procedure copies the specified layer and returns the copy. The @@ -262,22 +96,12 @@ a copy of the background layer, remember to add an alpha channel before you add the new layer to the image.

-

layer_ID : The layer to copy. +

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

gimp_layer_scale ()

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

+


gimp_layer_scale ()

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

Scale the layer to the specified extents.

This procedure scales the layer so that it's new width and height @@ -286,28 +110,16 @@ image origin. This operation only works if the layer has been added to an image.

-

layer_ID : The layer. -
new_width : New layer width. -
new_height : New layer height. -
local_origin : Use a local origin (as opposed to the image origin). -
Returns : TRUE on success. -

gimp_layer_resize ()

gboolean    gimp_layer_resize               (gint32 layer_ID,
-                                             gint new_width,
-                                             gint new_height,
-                                             gint offx,
-                                             gint offy);

+

layer_ID : The layer. +
new_width : New layer width. +
new_height : New layer height. +
local_origin : Use a local origin (as opposed to the image origin). +
Returns : TRUE on success. +

gimp_layer_resize ()

gboolean    gimp_layer_resize               (gint32 layer_ID,
+                                             gint new_width,
+                                             gint new_height,
+                                             gint offx,
+                                             gint offy);

Resize the layer to the specified extents.

This procedure resizes the layer so that it's new width and height @@ -315,35 +127,23 @@ which describe the position of the previous layer's content. This operation only works if the layer has been added to an image.

-

layer_ID : The layer. -
new_width : New layer width. -
new_height : New layer height. -
offx : x offset between upper left corner of old and new layers: (old - new). -
offy : y offset between upper left corner of old and new layers: (old - new). -
Returns : TRUE on success. -

gimp_layer_resize_to_image_size ()

gboolean    gimp_layer_resize_to_image_size (gint32 layer_ID);

+

layer_ID : The layer. +
new_width : New layer width. +
new_height : New layer height. +
offx : x offset between upper left corner of old and new layers: (old - new). +
offy : y offset between upper left corner of old and new layers: (old - new). +
Returns : TRUE on success. +

gimp_layer_resize_to_image_size ()

gboolean    gimp_layer_resize_to_image_size (gint32 layer_ID);

Resize a layer to the image size.

This procedure resizes the layer so that it's new width and height are equal to the width and height of its image container.

-

layer_ID : The layer to resize. +

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

gimp_layer_translate ()

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

+


gimp_layer_translate ()

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

Translate the layer by the specified offsets.

This procedure translates the layer by the amounts specified in the @@ -353,15 +153,11 @@ which have the linked flag set to TRUE w ill also be translated by the specified offsets.

-

layer_ID : The layer. -
offx : Offset in x direction. -
offy : Offset in y direction. -
Returns : TRUE on success. -

gimp_layer_add_alpha ()

gboolean    gimp_layer_add_alpha            (gint32 layer_ID);

+

layer_ID : The layer. +
offx : Offset in x direction. +
offy : Offset in y direction. +
Returns : TRUE on success. +

gimp_layer_add_alpha ()

gboolean    gimp_layer_add_alpha            (gint32 layer_ID);

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

This procedure adds an additional component to the specified layer @@ -371,34 +167,22 @@ color. This transforms images of type RGB to RGBA, GRAY to GRAYA, and INDEXED to INDEXEDA.

-

layer_ID : The layer. +

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

gimp_layer_set_offsets ()

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

+


gimp_layer_set_offsets ()

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

Set the layer offsets.

This procedure sets the offsets for the specified layer. The offsets are relative to the image origin and can be any values. This operation is valid only on layers which have been added to an image.

-

layer_ID : The layer. -
offx : Offset in x direction. -
offy : Offset in y direction. -
Returns : TRUE on success. -

gimp_layer_create_mask ()

gint32      gimp_layer_create_mask          (gint32 layer_ID,
+

layer_ID : The layer. +
offx : Offset in x direction. +
offy : Offset in y direction. +
Returns : TRUE on success. +

gimp_layer_create_mask ()

gint32      gimp_layer_create_mask          (gint32 layer_ID,
                                              GimpAddMaskType mask_type);

Create a layer mask for the specified specified layer.

@@ -413,43 +197,29 @@ still needs to be added to the layer. This can be done with a call to 'gimp_layer_add_mask'.

-

layer_ID : The layer to which to add the mask. -
mask_type : The type of mask. +

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

gimp_layer_from_mask ()

gint32      gimp_layer_from_mask            (gint32 mask_ID);

+


gimp_layer_from_mask ()

gint32      gimp_layer_from_mask            (gint32 mask_ID);

Get the specified mask's layer.

This procedure returns the specified mask's layer , or -1 if none exists.

-

mask_ID : Mask for which to return the layer. +

mask_ID : Mask for which to return the layer.
Returns : The mask's layer.

Since GIMP 2.2 -


gimp_layer_get_mask ()

gint32      gimp_layer_get_mask             (gint32 layer_ID);

+


gimp_layer_get_mask ()

gint32      gimp_layer_get_mask             (gint32 layer_ID);

Get the specified layer's mask if it exists.

This procedure returns the specified layer's mask, or -1 if none exists.

-

layer_ID : The layer. +

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

gimp_layer_add_mask ()

gboolean    gimp_layer_add_mask             (gint32 layer_ID,
-                                             gint32 mask_ID);

+


gimp_layer_add_mask ()

gboolean    gimp_layer_add_mask             (gint32 layer_ID,
+                                             gint32 mask_ID);

Add a layer mask to the specified layer.

This procedure adds a layer mask to the specified layer. Layer masks @@ -459,31 +229,21 @@ the same dimensions as the layer. Both the mask and the layer must have been created for use with the specified image.

-

layer_ID : The layer to receive the mask. -
mask_ID : The mask to add to the layer. +

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

gimp_layer_remove_mask ()

gboolean    gimp_layer_remove_mask          (gint32 layer_ID,
+

gimp_layer_remove_mask ()

gboolean    gimp_layer_remove_mask          (gint32 layer_ID,
                                              GimpMaskApplyMode mode);

Remove the specified layer mask from the layer.

This procedure removes the specified layer mask from the layer. If the mask doesn't exist, an error is returned.

-

layer_ID : The layer from which to remove mask. -
mode : Removal mode. +

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

gimp_layer_new_from_drawable ()

gint32      gimp_layer_new_from_drawable    (gint32 drawable_ID,
-                                             gint32 dest_image_ID);

+


gimp_layer_new_from_drawable ()

gint32      gimp_layer_new_from_drawable    (gint32 drawable_ID,
+                                             gint32 dest_image_ID);

Create a new layer by copying an existing drawable.

This procedure creates a new layer as a copy of the specified @@ -492,88 +252,58 @@ 'gimp_image_add_layer' command. Other attributes such as layer mask modes, and offsets should be set with explicit procedure calls.

-

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

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

gimp_layer_get_preserve_trans ()

gboolean    gimp_layer_get_preserve_trans   (gint32 layer_ID);

+


gimp_layer_get_preserve_trans ()

gboolean    gimp_layer_get_preserve_trans   (gint32 layer_ID);

Get the preserve transperancy setting of the specified layer.

This procedure returns the specified layer's preserve transperancy setting.

-

layer_ID : The layer. +

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

gimp_layer_set_preserve_trans ()

gboolean    gimp_layer_set_preserve_trans   (gint32 layer_ID,
-                                             gboolean preserve_trans);

+


gimp_layer_set_preserve_trans ()

gboolean    gimp_layer_set_preserve_trans   (gint32 layer_ID,
+                                             gboolean preserve_trans);

Set the preserve transperancy setting of the specified layer.

This procedure sets the specified layer's preserve transperancy setting.

-

layer_ID : The layer. -
preserve_trans : The new layer's preserve transperancy setting. +

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

gimp_layer_get_apply_mask ()

gboolean    gimp_layer_get_apply_mask       (gint32 layer_ID);

+


gimp_layer_get_apply_mask ()

gboolean    gimp_layer_get_apply_mask       (gint32 layer_ID);

Get the apply mask of the specified layer.

This procedure returns the specified layer's apply mask. If the value is non-zero, then the layer mask for this layer is currently being composited with the layer's alpha channel.

-

layer_ID : The layer. +

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

gimp_layer_set_apply_mask ()

gboolean    gimp_layer_set_apply_mask       (gint32 layer_ID,
-                                             gboolean apply_mask);

+


gimp_layer_set_apply_mask ()

gboolean    gimp_layer_set_apply_mask       (gint32 layer_ID,
+                                             gboolean apply_mask);

Set the apply mask of the specified layer.

This procedure sets the specified layer's apply mask. This controls whether the layer's mask is currently affecting the alpha channel. If there is no layer mask, this function will return an error.

-

layer_ID : The layer. -
apply_mask : The new layer apply mask. +

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

gimp_layer_get_show_mask ()

gboolean    gimp_layer_get_show_mask        (gint32 layer_ID);

+


gimp_layer_get_show_mask ()

gboolean    gimp_layer_get_show_mask        (gint32 layer_ID);

Get the show mask of the specified layer.

This procedure returns the specified layer's show mask. If the value is non-zero, then the layer mask for this layer is currently being shown instead of the layer.

-

layer_ID : The layer. +

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

gimp_layer_set_show_mask ()

gboolean    gimp_layer_set_show_mask        (gint32 layer_ID,
-                                             gboolean show_mask);

+


gimp_layer_set_show_mask ()

gboolean    gimp_layer_set_show_mask        (gint32 layer_ID,
+                                             gboolean show_mask);

Set the show mask of the specified layer.

This procedure sets the specified layer's show mask. This controls @@ -581,30 +311,20 @@ that the mask should be visible. If the layer has no mask, then this function returns an error.

-

layer_ID : The layer. -
show_mask : The new layer show mask. +

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

gimp_layer_get_edit_mask ()

gboolean    gimp_layer_get_edit_mask        (gint32 layer_ID);

+


gimp_layer_get_edit_mask ()

gboolean    gimp_layer_get_edit_mask        (gint32 layer_ID);

Get the show mask of the specified layer.

This procedure returns the specified layer's show mask. If the value is non-zero, then the layer mask for this layer is currently active, and not the layer.

-

layer_ID : The layer. +

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

gimp_layer_set_edit_mask ()

gboolean    gimp_layer_set_edit_mask        (gint32 layer_ID,
-                                             gboolean edit_mask);

+


gimp_layer_set_edit_mask ()

gboolean    gimp_layer_set_edit_mask        (gint32 layer_ID,
+                                             gboolean edit_mask);

Set the show mask of the specified layer.

This procedure sets the specified layer's show mask. This controls @@ -612,68 +332,48 @@ the specified layer has no layer mask, then this procedure will return an error.

-

layer_ID : The layer. -
edit_mask : The new layer show mask. +

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

gimp_layer_get_opacity ()

gdouble     gimp_layer_get_opacity          (gint32 layer_ID);

+


gimp_layer_get_opacity ()

gdouble     gimp_layer_get_opacity          (gint32 layer_ID);

Get the opacity of the specified layer.

This procedure returns the specified layer's opacity.

-

layer_ID : The layer. +

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

gimp_layer_set_opacity ()

gboolean    gimp_layer_set_opacity          (gint32 layer_ID,
-                                             gdouble opacity);

+


gimp_layer_set_opacity ()

gboolean    gimp_layer_set_opacity          (gint32 layer_ID,
+                                             gdouble opacity);

Set the opacity of the specified layer.

This procedure sets the specified layer's opacity.

-

layer_ID : The layer. -
opacity : The new layer opacity. +

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

gimp_layer_get_mode ()

GimpLayerModeEffects gimp_layer_get_mode    (gint32 layer_ID);

+


gimp_layer_get_mode ()

GimpLayerModeEffects gimp_layer_get_mode    (gint32 layer_ID);

Get the combination mode of the specified layer.

This procedure returns the specified layer's combination mode.

-

layer_ID : The layer. +

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

gimp_layer_set_mode ()

gboolean    gimp_layer_set_mode             (gint32 layer_ID,
+

gimp_layer_set_mode ()

gboolean    gimp_layer_set_mode             (gint32 layer_ID,
                                              GimpLayerModeEffects mode);

Set the combination mode of the specified layer.

This procedure sets the specified layer's combination mode.

-

layer_ID : The layer. -
mode : The new layer combination mode. +

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

gimp_layer_is_floating_sel ()

gboolean    gimp_layer_is_floating_sel      (gint32 layer_ID);

+


gimp_layer_is_floating_sel ()

gboolean    gimp_layer_is_floating_sel      (gint32 layer_ID);

Is the specified layer a floating selection?

This procedure returns whether the layer is a floating selection. Floating selections are special cases of layers which are attached to a specific drawable.

-

layer_ID : The layer. +

layer_ID : The layer.
Returns : Non-zero if the layer is a floating selection.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpmenu.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpmenu.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpmenu.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpmenu.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,164 +1,108 @@ -gimpmenu

gimpmenu

gimpmenu — Menus for selecting images, layers, channels and drawables

Synopsis

+gimpmenu

gimpmenu

gimpmenu — Menus for selecting images, layers, channels and drawables

Synopsis

 
 
 
-gboolean    (*GimpConstraintFunc)           (gint32 image_id,
-                                             gint32 drawable_id,
-                                             gpointer data);
-void        (*GimpMenuCallback)             (gint32 any_id,
-                                             gpointer data);
+gboolean    (*GimpConstraintFunc)           (gint32 image_id,
+                                             gint32 drawable_id,
+                                             gpointer data);
+void        (*GimpMenuCallback)             (gint32 any_id,
+                                             gpointer data);
 GtkWidget*  gimp_image_menu_new             (GimpConstraintFunc constraint,
                                              GimpMenuCallback callback,
-                                             gpointer data,
-                                             gint32 active_image);
+                                             gpointer data,
+                                             gint32 active_image);
 GtkWidget*  gimp_layer_menu_new             (GimpConstraintFunc constraint,
                                              GimpMenuCallback callback,
-                                             gpointer data,
-                                             gint32 active_layer);
+                                             gpointer data,
+                                             gint32 active_layer);
 GtkWidget*  gimp_channel_menu_new           (GimpConstraintFunc constraint,
                                              GimpMenuCallback callback,
-                                             gpointer data,
-                                             gint32 active_channel);
+                                             gpointer data,
+                                             gint32 active_channel);
 GtkWidget*  gimp_drawable_menu_new          (GimpConstraintFunc constraint,
                                              GimpMenuCallback callback,
-                                             gpointer data,
-                                             gint32 active_drawable);
-

Description

- -

Details

GimpConstraintFunc ()

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

Warning

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

- -

image_id : -
drawable_id : -
data : + gpointer data, + gint32 active_drawable); +

Description

+ +

Details

GimpConstraintFunc ()

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

Warning

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

+ +

image_id : +
drawable_id : +
data :
Returns : -

GimpMenuCallback ()

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

Warning

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

+


GimpMenuCallback ()

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

Warning

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

-

any_id : -
data : +

any_id : +
data : -

gimp_image_menu_new ()


gimp_image_menu_new ()

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

Warning

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

- -

constraint : -
callback : -
data : -
active_image : + gpointer data, + gint32 active_image);

Warning

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

+ +

constraint : +
callback : +
data : +
active_image :
Returns : -

gimp_layer_menu_new ()


gimp_layer_menu_new ()

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

Warning

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

- -

constraint : -
callback : -
data : -
active_layer : + gpointer data, + gint32 active_layer);

Warning

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

+ +

constraint : +
callback : +
data : +
active_layer :
Returns : -

gimp_channel_menu_new ()


gimp_channel_menu_new ()

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

Warning

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

- -

constraint : -
callback : -
data : -
active_channel : + gpointer data, + gint32 active_channel);

Warning

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

+ +

constraint : +
callback : +
data : +
active_channel :
Returns : -

gimp_drawable_menu_new ()


gimp_drawable_menu_new ()

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

Warning

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

- -

constraint : -
callback : -
data : -
active_drawable : + gpointer data, + gint32 active_drawable);

Warning

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

+ +

constraint : +
callback : +
data : +
active_drawable :
Returns : diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpmessage.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpmessage.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpmessage.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpmessage.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,37 +1,27 @@ -gimpmessage

gimpmessage

gimpmessage — Display a dialog box with a message.

Synopsis

+gimpmessage

gimpmessage

gimpmessage — Display a dialog box with a message.

Description

+

Description

Display a dialog box with a message. -

Details

gimp_message ()

gboolean    gimp_message                    (const gchar *message);

+

Details

gimp_message ()

gboolean    gimp_message                    (const gchar *message);

Displays a dialog box with a message.

Displays a dialog box with a message. Useful for status or error reporting. The message must be in UTF-8 encoding.

-

message : Message to display in the dialog. +

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

gimp_message_get_handler ()


gimp_message_get_handler ()

GimpMessageHandlerType gimp_message_get_handler
                                             (void);

@@ -42,9 +32,7 @@ gimp was started.

Returns : The current handler type. -

gimp_message_set_handler ()

gboolean    gimp_message_set_handler        (

gimp_message_set_handler ()

gboolean    gimp_message_set_handler        (GimpMessageHandlerType handler);

Controls where warning messages are displayed. @@ -53,6 +41,6 @@ can be shown in a dialog box or printed on the console where gimp was started.

-

handler : The new handler type. +

handler : The new handler type.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppalette.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppalette.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppalette.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppalette.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,258 +1,136 @@ -gimppalette

gimppalette

gimppalette — Functions operating on a single palette.

Synopsis

+gimppalette

gimppalette

gimppalette — Functions operating on a single palette.

Synopsis

 
 
 
-gchar*      gimp_palette_new                (const gchar *name);
-gchar*      gimp_palette_duplicate          (const gchar *name);
-gchar*      gimp_palette_rename             (const gchar *name,
-                                             const gchar *new_name);
-gboolean    gimp_palette_delete             (const gchar *name);
-gboolean    gimp_palette_get_info           (const gchar *name,
-                                             gint *num_colors);
-gboolean    gimp_palette_add_entry          (const gchar *name,
-                                             const gchar *entry_name,
+gchar*      gimp_palette_new                (const gchar *name);
+gchar*      gimp_palette_duplicate          (const gchar *name);
+gchar*      gimp_palette_rename             (const gchar *name,
+                                             const gchar *new_name);
+gboolean    gimp_palette_delete             (const gchar *name);
+gboolean    gimp_palette_get_info           (const gchar *name,
+                                             gint *num_colors);
+gboolean    gimp_palette_add_entry          (const gchar *name,
+                                             const gchar *entry_name,
                                              const GimpRGB *color,
-                                             gint *entry_num);
-gboolean    gimp_palette_delete_entry       (const gchar *name,
-                                             gint entry_num);
-gboolean    gimp_palette_entry_get_color    (const gchar *name,
-                                             gint entry_num,
+                                             gint *entry_num);
+gboolean    gimp_palette_delete_entry       (const gchar *name,
+                                             gint entry_num);
+gboolean    gimp_palette_entry_get_color    (const gchar *name,
+                                             gint entry_num,
                                              GimpRGB *color);
-gboolean    gimp_palette_entry_set_color    (const gchar *name,
-                                             gint entry_num,
+gboolean    gimp_palette_entry_set_color    (const gchar *name,
+                                             gint entry_num,
                                              const GimpRGB *color);
-gboolean    gimp_palette_entry_get_name     (const gchar *name,
-                                             gint entry_num,
-                                             gchar **entry_name);
-gboolean    gimp_palette_entry_set_name     (const gchar *name,
-                                             gint entry_num,
-                                             const gchar *entry_name);
-gboolean    gimp_palette_get_foreground     (gimp_palette_entry_get_name     (const gchar *name,
+                                             gint entry_num,
+                                             gchar **entry_name);
+gboolean    gimp_palette_entry_set_name     (const gchar *name,
+                                             gint entry_num,
+                                             const gchar *entry_name);
+gboolean    gimp_palette_get_foreground     (GimpRGB *foreground);
-gboolean    gimp_palette_get_background     (gimp_palette_get_background     (GimpRGB *background);
-gboolean    gimp_palette_set_foreground     (const gimp_palette_set_foreground     (const GimpRGB *foreground);
-gboolean    gimp_palette_set_background     (const gimp_palette_set_background     (const GimpRGB *background);
-gboolean    gimp_palette_set_default_colors (void);
-gboolean    gimp_palette_swap_colors        (void);
-

Description

+gboolean gimp_palette_set_default_colors (void); +gboolean gimp_palette_swap_colors (void); +

Description

Functions operating on a single palette. -

Details

gimp_palette_new ()

gchar*      gimp_palette_new                (const gchar *name);

+

Details

gimp_palette_new ()

gchar*      gimp_palette_new                (const gchar *name);

Creates a new palette

This procedure creates a new, uninitialized palette

-

name : The requested name of the new palette. +

name : The requested name of the new palette.
Returns : The actual new palette name.

Since GIMP 2.2 -


gimp_palette_duplicate ()

gchar*      gimp_palette_duplicate          (const gchar *name);

+


gimp_palette_duplicate ()

gchar*      gimp_palette_duplicate          (const gchar *name);

Duplicates a palette

This procedure creates an identical palette by a different name

-

name : The palette name. +

name : The palette name.
Returns : The name of the palette's copy.

Since GIMP 2.2 -


gimp_palette_rename ()

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

+


gimp_palette_rename ()

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

Rename a palette

This procedure renames a palette

-

name : The palette name. -
new_name : The new name of the palette. +

name : The palette name. +
new_name : The new name of the palette.
Returns : The actual new name of the palette.

Since GIMP 2.2 -


gimp_palette_delete ()

gboolean    gimp_palette_delete             (const gchar *name);

+


gimp_palette_delete ()

gboolean    gimp_palette_delete             (const gchar *name);

Deletes a palette

This procedure deletes a palette

-

name : The palette name. +

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

Since GIMP 2.2 -


gimp_palette_get_info ()

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

+


gimp_palette_get_info ()

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

Retrieve information about the specified palette.

This procedure retrieves information about the specified palette. This includes the name, and the number of colors.

-

name : The palette name. -
num_colors : The number of colors in the palette. +

name : The palette name. +
num_colors : The number of colors in the palette.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_palette_add_entry ()

gboolean    gimp_palette_add_entry          (const gchar *name,
-                                             const gchar *entry_name,
+


gimp_palette_add_entry ()

gboolean    gimp_palette_add_entry          (const gchar *name,
+                                             const gchar *entry_name,
                                              const GimpRGB *color,
-                                             gint *entry_num);

+ gint *entry_num);

Adds a palette entry to the specified palette.

This procedure adds an entry to the specifed palette. It returns an error if the entry palette does not exist.

-

name : The palette name. -
entry_name : The name of the entry. -
color : The new entry's color color. -
entry_num : The index of the added entry. +

name : The palette name. +
entry_name : The name of the entry. +
color : The new entry's color color. +
entry_num : The index of the added entry.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_palette_delete_entry ()

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

+


gimp_palette_delete_entry ()

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

Deletes a palette entry from the specified palette.

This procedure deletes an entry from the specifed palette. It returns an error if the entry palette does not exist.

-

name : The palette name. -
entry_num : The index of the added entry. +

name : The palette name. +
entry_num : The index of the added entry.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_palette_entry_get_color ()

gboolean    gimp_palette_entry_get_color    (const gchar *name,
-                                             gint entry_num,
+


gimp_palette_entry_get_color ()

gboolean    gimp_palette_entry_get_color    (const gchar *name,
+                                             gint entry_num,
                                              GimpRGB *color);

@@ -262,20 +140,14 @@ for the specified palette. It returns an error if the entry does not exist.

-

name : The palette name. -
entry_num : The entry to retrieve. -
color : The color requested. +

name : The palette name. +
entry_num : The entry to retrieve. +
color : The color requested.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_palette_entry_set_color ()

gboolean    gimp_palette_entry_set_color    (const gchar *name,
-                                             gint entry_num,
+


gimp_palette_entry_set_color ()

gboolean    gimp_palette_entry_set_color    (const gchar *name,
+                                             gint entry_num,
                                              const GimpRGB *color);

@@ -285,102 +157,78 @@ the specified palette. It returns an error if the entry does not exist.

-

name : The palette name. -
entry_num : The entry to retrieve. -
color : The new color. +

name : The palette name. +
entry_num : The entry to retrieve. +
color : The new color.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_palette_entry_get_name ()

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

+


gimp_palette_entry_get_name ()

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

Gets the specified palette entry from the specified palette.

This procedure retrieves the name of the zero-based entry specifed for the specified palette. It returns an error if the entry does not exist.

-

name : The palette name. -
entry_num : The entry to retrieve. -
entry_name : The name requested. +

name : The palette name. +
entry_num : The entry to retrieve. +
entry_name : The name requested.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_palette_entry_set_name ()

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

+


gimp_palette_entry_set_name ()

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

Sets the specified palette entry in the specified palette.

This procedure sets the name of the zero-based entry specifed for the specified palette. It returns an error if the entry does not exist.

-

name : The palette name. -
entry_num : The entry to retrieve. -
entry_name : The new name. +

name : The palette name. +
entry_num : The entry to retrieve. +
entry_name : The new name.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_palette_get_foreground ()

gboolean    gimp_palette_get_foreground     (

gimp_palette_get_foreground ()

gboolean    gimp_palette_get_foreground     (GimpRGB *foreground);

Warning

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

+>GimpRGB *foreground);

Warning

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

Get the current GIMP foreground color.

This procedure retrieves the current GIMP foreground color. The foreground color is used in a variety of tools such as paint tools, blending, and bucket fill.

-

foreground : The foreground color. +

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

gimp_palette_get_background ()

gboolean    gimp_palette_get_background     (

gimp_palette_get_background ()

gboolean    gimp_palette_get_background     (GimpRGB *background);

Warning

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

+>GimpRGB *background);

Warning

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

Get the current GIMP background color.

This procedure retrieves the current GIMP background color. The background color is used in a variety of tools such as blending, erasing (with non-alpha images), and image filling.

-

background : The background color. +

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

gimp_palette_set_foreground ()

gboolean    gimp_palette_set_foreground     (const 

gimp_palette_set_foreground ()

gboolean    gimp_palette_set_foreground     (const GimpRGB *foreground);

Warning

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

+>GimpRGB *foreground);

Warning

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

Set the current GIMP foreground color.

This procedure sets the current GIMP foreground color. After this is set, operations which use foreground such as paint tools, blending, and bucket fill will use the new value.

-

foreground : The foreground color. +

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

gimp_palette_set_background ()

gboolean    gimp_palette_set_background     (const 

gimp_palette_set_background ()

gboolean    gimp_palette_set_background     (const GimpRGB *background);

Warning

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

+>GimpRGB *background);

Warning

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

Set the current GIMP background color.

This procedure sets the current GIMP background color. After this is @@ -388,11 +236,9 @@ images, clearing, and erasing (in non-alpha images) will use the new value.

-

background : The background color. +

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

gimp_palette_set_default_colors ()

gboolean    gimp_palette_set_default_colors (void);

Warning

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

+


gimp_palette_set_default_colors ()

gboolean    gimp_palette_set_default_colors (void);

Warning

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

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

@@ -400,9 +246,7 @@ colors to their initial default values, black and white.

Returns : TRUE on success. -

gimp_palette_swap_colors ()

gboolean    gimp_palette_swap_colors        (void);

Warning

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

+


gimp_palette_swap_colors ()

gboolean    gimp_palette_swap_colors        (void);

Warning

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

Swap the current GIMP foreground and background colors.

This procedure swaps the current GIMP foreground and background diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppalettemenu.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppalettemenu.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppalettemenu.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppalettemenu.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,19 +1,13 @@ -gimppalettemenu

gimppalettemenu

gimppalettemenu — A widget for selecting palettes.

Synopsis

+gimppalettemenu

gimppalettemenu

gimppalettemenu — A widget for selecting palettes.

Synopsis

 
 
 
 GtkWidget*  gimp_palette_select_widget_new  (const gchar *title,
-                                             const gchar *palette_name,
+>GtkWidget*  gimp_palette_select_widget_new  (const gchar *title,
+                                             const gchar *palette_name,
                                              GimpRunPaletteCallback callback,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_palette_select_widget_close
                                             (gimp_palette_select_widget_set  (GtkWidget *widget,
-                                             const gchar *palette_name);
-

Description

+ const gchar *palette_name); +

Description

A widget for selecting palettes. -

Details

gimp_palette_select_widget_new ()

Details

gimp_palette_select_widget_new ()

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

+ gpointer data);

Creates a new GtkWidget that completely controls the selection of a palette. This widget is suitable for placement in a table in a plug-in dialog.

-

title : Title of the dialog to use or NULL means to use the default +

title : Title of the dialog to use or NULL means to use the default title. -
palette_name : Initial palette name. -
callback : A function to call when the selected palette changes. -
data : A pointer to arbitary data to be used in the call to callback. +
palette_name : Initial palette name. +
callback : A function to call when the selected palette changes. +
data : A pointer to arbitary data to be used in the call to callback.
Returns : A GtkWidget that you can use in your UI.

Since GIMP 2.2 -


gimp_palette_select_widget_close ()

void        gimp_palette_select_widget_close
+


gimp_palette_select_widget_close ()

void        gimp_palette_select_widget_close
                                             (GtkWidget *widget);

-Closes the popup window associated with widget.

+Closes the popup window associated with widget.

-

widget : A palette select widget. +

widget : A palette select widget.

Since GIMP 2.2 -


gimp_palette_select_widget_set ()

void        gimp_palette_select_widget_set  (

gimp_palette_select_widget_set ()

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

+ const gchar *palette_name);

Sets the current palette for the palette select widget. Calls the callback function if one was supplied in the call to -gimp_palette_select_widget_new().

+gimp_palette_select_widget_new().

-

widget : A palette select widget. -
palette_name : Palette name to set; NULL means no change. +

widget : A palette select widget. +
palette_name : Palette name to set; NULL means no change.

Since GIMP 2.2

diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppaletteselect.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppaletteselect.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppaletteselect.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppaletteselect.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,142 +1,74 @@ -gimppaletteselect

gimppaletteselect

gimppaletteselect — Functions providing a palette selection dialog.

Synopsis

+gimppaletteselect

gimppaletteselect

gimppaletteselect — Functions providing a palette selection dialog.

Synopsis

 
 
 
-void        (*GimpRunPaletteCallback)       (const gchar *palette_name,
-                                             gboolean dialog_closing,
-                                             gpointer user_data);
-const gchar* gimp_palette_select_new        (const gchar *title,
-                                             const gchar *palette_name,
+void        (*GimpRunPaletteCallback)       (const gchar *palette_name,
+                                             gboolean dialog_closing,
+                                             gpointer user_data);
+const gchar* gimp_palette_select_new        (const gchar *title,
+                                             const gchar *palette_name,
                                              GimpRunPaletteCallback callback,
-                                             gpointer data);
-void        gimp_palette_select_destroy     (const gchar *palette_callback);
-gboolean    gimp_palettes_popup             (const gchar *palette_callback,
-                                             const gchar *popup_title,
-                                             const gchar *initial_palette);
-gboolean    gimp_palettes_close_popup       (const gchar *palette_callback);
-gboolean    gimp_palettes_set_popup         (const gchar *palette_callback,
-                                             const gchar *palette_name);
-

Description

+ gpointer data); +void gimp_palette_select_destroy (const gchar *palette_callback); +gboolean gimp_palettes_popup (const gchar *palette_callback, + const gchar *popup_title, + const gchar *initial_palette); +gboolean gimp_palettes_close_popup (const gchar *palette_callback); +gboolean gimp_palettes_set_popup (const gchar *palette_callback, + const gchar *palette_name); +

Description

Functions providing a palette selection dialog. -

Details

GimpRunPaletteCallback ()

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

- -

palette_name : -
dialog_closing : -
user_data : - - -

gimp_palette_select_new ()

const gchar* gimp_palette_select_new        (const gchar *title,
-                                             const gchar *palette_name,
+

Details

GimpRunPaletteCallback ()

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

+ +

palette_name : +
dialog_closing : +
user_data : + + +

gimp_palette_select_new ()

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

- -

title : -
palette_name : -
callback : -
data : + gpointer data);

+ +

title : +
palette_name : +
callback : +
data :
Returns : -

gimp_palette_select_destroy ()

void        gimp_palette_select_destroy     (const gchar *palette_callback);

- -

palette_callback : - - -

gimp_palettes_popup ()

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

+


gimp_palette_select_destroy ()

void        gimp_palette_select_destroy     (const gchar *palette_callback);

+ +

palette_callback : + + +

gimp_palettes_popup ()

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

Invokes the Gimp palette selection.

This procedure popups the palette selection dialog.

-

palette_callback : The callback PDB proc to call when palette selection is made. -
popup_title : Title to give the palette popup window. -
initial_palette : The name of the palette to set as the first selected. +

palette_callback : The callback PDB proc to call when palette selection is made. +
popup_title : Title to give the palette popup window. +
initial_palette : The name of the palette to set as the first selected.
Returns : TRUE on success. -

gimp_palettes_close_popup ()

gboolean    gimp_palettes_close_popup       (const gchar *palette_callback);

+


gimp_palettes_close_popup ()

gboolean    gimp_palettes_close_popup       (const gchar *palette_callback);

Popdown the Gimp palette selection.

This procedure closes an opened palette selection dialog.

-

palette_callback : The name of the callback registered for this popup. +

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

gimp_palettes_set_popup ()

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

+


gimp_palettes_set_popup ()

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

Sets the current palette selection in a popup.

Sets the current palette selection in a popup.

-

palette_callback : The name of the callback registered for this popup. -
palette_name : The name of the palette to set as selected. +

palette_callback : The name of the callback registered for this popup. +
palette_name : The name of the palette to set as selected.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppalettes.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppalettes.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppalettes.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppalettes.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,109 +1,61 @@ -gimppalettes

gimppalettes

gimppalettes — Operations related to palettes.

Synopsis

+gimppalettes

gimppalettes

gimppalettes — Operations related to palettes.

Synopsis

 
 
 
-gboolean    gimp_palettes_refresh           (void);
-gchar**     gimp_palettes_get_list          (const gchar *filter,
-                                             gint *num_palettes);
-gchar*      gimp_palettes_get_palette       (gint *num_colors);
-gboolean    gimp_palettes_set_palette       (const gchar *name);
-gchar*      gimp_palettes_get_palette_entry (const gchar *name,
-                                             gint entry_num,
-                                             gint *num_colors,
+gboolean    gimp_palettes_refresh           (void);
+gchar**     gimp_palettes_get_list          (const gchar *filter,
+                                             gint *num_palettes);
+gchar*      gimp_palettes_get_palette       (gint *num_colors);
+gboolean    gimp_palettes_set_palette       (const gchar *name);
+gchar*      gimp_palettes_get_palette_entry (const gchar *name,
+                                             gint entry_num,
+                                             gint *num_colors,
                                              GimpRGB *color);
-

Description

+

Description

Operations related to palettes. -

Details

gimp_palettes_refresh ()

gboolean    gimp_palettes_refresh           (void);

+

Details

gimp_palettes_refresh ()

gboolean    gimp_palettes_refresh           (void);

Refreshes current palettes. This function always succeeds.

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

Returns : TRUE on success. -

gimp_palettes_get_list ()

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

+


gimp_palettes_get_list ()

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

Retrieves a list of all of the available palettes

This procedure returns a complete listing of available palettes. Each name returned can be used as input to the command 'gimp_context_set_palette'.

-

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

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

gimp_palettes_get_palette ()

gchar*      gimp_palettes_get_palette       (gint *num_colors);

Warning

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

-This procedure is deprecated! Use gimp_context_get_palette() +


gimp_palettes_get_palette ()

gchar*      gimp_palettes_get_palette       (gint *num_colors);

Warning

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

+This procedure is deprecated! Use gimp_context_get_palette() instead.

-

num_colors : The palette num_colors. +

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

gimp_palettes_set_palette ()

gboolean    gimp_palettes_set_palette       (const gchar *name);

Warning

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

-This procedure is deprecated! Use gimp_context_set_palette() instead.

+


gimp_palettes_set_palette ()

gboolean    gimp_palettes_set_palette       (const gchar *name);

Warning

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

+This procedure is deprecated! Use gimp_context_set_palette() instead.

-

name : The palette name. +

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

gimp_palettes_get_palette_entry ()

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

gimp_palettes_get_palette_entry ()

gchar*      gimp_palettes_get_palette_entry (const gchar *name,
+                                             gint entry_num,
+                                             gint *num_colors,
                                              GimpRGB *color);

Warning

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

-This procedure is deprecated! Use gimp_palette_entry_get_color() +>GimpRGB *color);

Warning

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

+This procedure is deprecated! Use gimp_palette_entry_get_color() instead.

-

name : The palette name (\"\" means currently active palette). -
entry_num : The entry to retrieve. -
num_colors : The palette num_colors. -
color : The color requested. +

name : The palette name (\"\" means currently active palette). +
entry_num : The entry to retrieve. +
num_colors : The palette num_colors. +
color : The color requested.
Returns : The palette name.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppaths.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppaths.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppaths.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppaths.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,292 +1,120 @@ -gimppaths

gimppaths

gimppaths — Operations related to paths.

Synopsis

+gimppaths

gimppaths

gimppaths — Operations related to paths.

Synopsis

 
 
 
-gchar**     gimp_path_list                  (gint32 image_ID,
-                                             gint *num_paths);
-gint        gimp_path_get_points            (gint32 image_ID,
-                                             const gchar *name,
-                                             gint *path_closed,
-                                             gint *num_path_point_details,
-                                             gdouble **points_pairs);
-gchar*      gimp_path_get_current           (gint32 image_ID);
-gboolean    gimp_path_set_current           (gint32 image_ID,
-                                             const gchar *name);
-gboolean    gimp_path_set_points            (gint32 image_ID,
-                                             const gchar *name,
-                                             gint ptype,
-                                             gint num_path_points,
-                                             const gdouble *points_pairs);
-gboolean    gimp_path_stroke_current        (gint32 image_ID);
-gint        gimp_path_get_point_at_dist     (gint32 image_ID,
-                                             gdouble distance,
-                                             gint *y_point,
-                                             gdouble *slope);
-gint        gimp_path_get_tattoo            (gint32 image_ID,
-                                             const gchar *name);
-gchar*      gimp_get_path_by_tattoo         (gint32 image_ID,
-                                             gint tattoo);
-gboolean    gimp_path_delete                (gint32 image_ID,
-                                             const gchar *name);
-gint        gimp_path_get_locked            (gint32 image_ID,
-                                             const gchar *name);
-gboolean    gimp_path_set_locked            (gint32 image_ID,
-                                             const gchar *name,
-                                             gint lockstatus);
-gboolean    gimp_path_set_tattoo            (gint32 image_ID,
-                                             const gchar *name,
-                                             gint tattovalue);
-gboolean    gimp_path_to_selection          (gint32 image_ID,
-                                             const gchar *name,
+gchar**     gimp_path_list                  (gint32 image_ID,
+                                             gint *num_paths);
+gint        gimp_path_get_points            (gint32 image_ID,
+                                             const gchar *name,
+                                             gint *path_closed,
+                                             gint *num_path_point_details,
+                                             gdouble **points_pairs);
+gchar*      gimp_path_get_current           (gint32 image_ID);
+gboolean    gimp_path_set_current           (gint32 image_ID,
+                                             const gchar *name);
+gboolean    gimp_path_set_points            (gint32 image_ID,
+                                             const gchar *name,
+                                             gint ptype,
+                                             gint num_path_points,
+                                             const gdouble *points_pairs);
+gboolean    gimp_path_stroke_current        (gint32 image_ID);
+gint        gimp_path_get_point_at_dist     (gint32 image_ID,
+                                             gdouble distance,
+                                             gint *y_point,
+                                             gdouble *slope);
+gint        gimp_path_get_tattoo            (gint32 image_ID,
+                                             const gchar *name);
+gchar*      gimp_get_path_by_tattoo         (gint32 image_ID,
+                                             gint tattoo);
+gboolean    gimp_path_delete                (gint32 image_ID,
+                                             const gchar *name);
+gint        gimp_path_get_locked            (gint32 image_ID,
+                                             const gchar *name);
+gboolean    gimp_path_set_locked            (gint32 image_ID,
+                                             const gchar *name,
+                                             gint lockstatus);
+gboolean    gimp_path_set_tattoo            (gint32 image_ID,
+                                             const gchar *name,
+                                             gint tattovalue);
+gboolean    gimp_path_to_selection          (gint32 image_ID,
+                                             const gchar *name,
                                              GimpChannelOps op,
-                                             gboolean antialias,
-                                             gboolean feather,
-                                             gdouble feather_radius_x,
-                                             gdouble feather_radius_y);
-gboolean    gimp_path_import                (gint32 image_ID,
-                                             const gchar *filename,
-                                             gboolean merge,
-                                             gboolean scale);
-

Description

+ gboolean antialias, + gboolean feather, + gdouble feather_radius_x, + gdouble feather_radius_y); +gboolean gimp_path_import (gint32 image_ID, + const gchar *filename, + gboolean merge, + gboolean scale); +

Description

Operations related to paths. -

Details

gimp_path_list ()

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

+

Details

gimp_path_list ()

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

List the paths associated with the passed image.

List the paths associated with the passed image.

-

image_ID : The ID of the image to list the paths from. -
num_paths : The number of paths returned. +

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

gimp_path_get_points ()

gint        gimp_path_get_points            (gint32 image_ID,
-                                             const gchar *name,
-                                             gint *path_closed,
-                                             gint *num_path_point_details,
-                                             gdouble **points_pairs);

+


gimp_path_get_points ()

gint        gimp_path_get_points            (gint32 image_ID,
+                                             const gchar *name,
+                                             gint *path_closed,
+                                             gint *num_path_point_details,
+                                             gdouble **points_pairs);

List the points associated with the named path.

List the points associated with the named path.

-

image_ID : The ID of the image to list the paths from. -
name : The name of the path whose points should be listed. -
path_closed : Return if the path is closed. (0 = path open, 1 = path closed). -
num_path_point_details : The number of points returned. Each point is made up of (x, y, pnt_type) of floats. -
points_pairs : The points in the path represented as 3 floats. The first is the x pos, next is the y pos, last is the type of the pnt. The type field is dependant on the path type. For beziers (type 1 paths) the type can either be (1.0 = BEZIER_ANCHOR, 2.0 = BEZIER_CONTROL, 3.0 = BEZIER_MOVE). Note all points are returned in pixel resolution. +

image_ID : The ID of the image to list the paths from. +
name : The name of the path whose points should be listed. +
path_closed : Return if the path is closed. (0 = path open, 1 = path closed). +
num_path_point_details : The number of points returned. Each point is made up of (x, y, pnt_type) of floats. +
points_pairs : The points in the path represented as 3 floats. The first is the x pos, next is the y pos, last is the type of the pnt. The type field is dependant on the path type. For beziers (type 1 paths) the type can either be (1.0 = BEZIER_ANCHOR, 2.0 = BEZIER_CONTROL, 3.0 = BEZIER_MOVE). Note all points are returned in pixel resolution.
Returns : The type of the path. Currently only one type (1 = Bezier) is supported. -

gimp_path_get_current ()

gchar*      gimp_path_get_current           (gint32 image_ID);

+


gimp_path_get_current ()

gchar*      gimp_path_get_current           (gint32 image_ID);

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

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

-

image_ID : The ID of the image to get the current path from. +

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

gimp_path_set_current ()

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

+


gimp_path_set_current ()

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

Sets the current path associated with the passed image.

Sets a named path as the current path.

-

image_ID : The ID of the image in which a path will become current. -
name : The name of the path to make current. +

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

gimp_path_set_points ()

gboolean    gimp_path_set_points            (gint32 image_ID,
-                                             const gchar *name,
-                                             gint ptype,
-                                             gint num_path_points,
-                                             const gdouble *points_pairs);

+


gimp_path_set_points ()

gboolean    gimp_path_set_points            (gint32 image_ID,
+                                             const gchar *name,
+                                             gint ptype,
+                                             gint num_path_points,
+                                             const gdouble *points_pairs);

Set the points associated with the named path.

Set the points associated with the named path.

-

image_ID : The ID of the image to set the paths in. -
name : The name of the path to create. If it exists then a unique name will be created - query the list of paths if you want to make sure that the name of the path you create is unique. This will be set as the current path. -
ptype : The type of the path. Currently only one type (1 = Bezier) is supported. -
num_path_points : The number of elements in the array, i.e. the number of points in the path * 3. Each point is made up of (x, y, type) of floats. Currently only the creation of bezier curves is allowed. The type parameter must be set to (1) to indicate a BEZIER type curve. Note that for BEZIER curves, points must be given in the following order: ACCACCAC... If the path is not closed the last control point is missed off. Points consist of three control points (control/anchor/control) so for a curve that is not closed there must be at least two points passed (2 x,y pairs). If (num_path_points/3) % 3 = 0 then the path is assumed to be closed and the points are ACCACCACCACC. -
points_pairs : The points in the path represented as 3 floats. The first is the x pos, next is the y pos, last is the type of the pnt. The type field is dependant on the path type. For beziers (type 1 paths) the type can either be (1.0 = BEZIER_ANCHOR, 2.0 = BEZIER_CONTROL, 3.0= BEZIER_MOVE). Note all points are returned in pixel resolution. +

image_ID : The ID of the image to set the paths in. +
name : The name of the path to create. If it exists then a unique name will be created - query the list of paths if you want to make sure that the name of the path you create is unique. This will be set as the current path. +
ptype : The type of the path. Currently only one type (1 = Bezier) is supported. +
num_path_points : The number of elements in the array, i.e. the number of points in the path * 3. Each point is made up of (x, y, type) of floats. Currently only the creation of bezier curves is allowed. The type parameter must be set to (1) to indicate a BEZIER type curve. Note that for BEZIER curves, points must be given in the following order: ACCACCAC... If the path is not closed the last control point is missed off. Points consist of three control points (control/anchor/control) so for a curve that is not closed there must be at least two points passed (2 x,y pairs). If (num_path_points/3) % 3 = 0 then the path is assumed to be closed and the points are ACCACCACCACC. +
points_pairs : The points in the path represented as 3 floats. The first is the x pos, next is the y pos, last is the type of the pnt. The type field is dependant on the path type. For beziers (type 1 paths) the type can either be (1.0 = BEZIER_ANCHOR, 2.0 = BEZIER_CONTROL, 3.0= BEZIER_MOVE). Note all points are returned in pixel resolution.
Returns : TRUE on success. -

gimp_path_stroke_current ()

gboolean    gimp_path_stroke_current        (gint32 image_ID);

+


gimp_path_stroke_current ()

gboolean    gimp_path_stroke_current        (gint32 image_ID);

Stroke the current path in the passed image.

Stroke the current path in the passed image.

-

image_ID : The ID of the image which contains the path to stroke. +

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

gimp_path_get_point_at_dist ()

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

+


gimp_path_get_point_at_dist ()

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

Get point on a path at a specified distance along the path.

This will return the x,y position of a point at a given distance @@ -296,19 +124,13 @@ path that was created. This might not be obvious. Note the current path is used.

-

image_ID : The ID of the image the paths belongs to. -
distance : The distance along the path. -
y_point : The y position of the point. -
slope : The slope (dy / dx) at the specified point. +

image_ID : The ID of the image the paths belongs to. +
distance : The distance along the path. +
y_point : The y position of the point. +
slope : The slope (dy / dx) at the specified point.
Returns : The x position of the point. -

gimp_path_get_tattoo ()

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

+


gimp_path_get_tattoo ()

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

Returns the tattoo associated with the name path.

This procedure returns the tattoo associated with the specified @@ -316,17 +138,11 @@ path that can be used to uniquely identify a path within an image even between sessions.

-

image_ID : The image. -
name : The name of the path whose tattoo should be obtained. +

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

gimp_get_path_by_tattoo ()

gchar*      gimp_get_path_by_tattoo         (gint32 image_ID,
-                                             gint tattoo);

+


gimp_get_path_by_tattoo ()

gchar*      gimp_get_path_by_tattoo         (gint32 image_ID,
+                                             gint tattoo);

Return the name of the path with the given tattoo.

The procedure returns the name of the path in the specified image @@ -335,73 +151,45 @@ path. An error is returned if no path with the specified tattoo can be found.

-

image_ID : The image. -
tattoo : The tattoo of the required path. +

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

gimp_path_delete ()

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

+


gimp_path_delete ()

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

Delete the named path associated with the passed image.

Delete the named path.

-

image_ID : The ID of the image to delete the path from. -
name : The name of the path to delete. +

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

gimp_path_get_locked ()

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

+


gimp_path_get_locked ()

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

Returns the locked status associated with the named path.

This procedure returns the lock status associated with the specified path. A path can be \"locked\" which means that the transformation tool operations will also apply to the path.

-

image_ID : The image. -
name : The name of the path whose locked status should be obtained. +

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

gimp_path_set_locked ()

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

+


gimp_path_set_locked ()

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

Set the locked status associated with the named path.

This procedure sets the lock status associated with the specified path. A path can be \"locked\" which means that the transformation tool operations will also apply to the path.

-

image_ID : The image. -
name : the name of the path whose locked status should be set. -
lockstatus : The lock status associated with the name path. 0 if the path is not locked. 1 if the path is to be locked. -
Returns : TRUE on success. -

gimp_path_set_tattoo ()

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

+

image_ID : The image. +
name : the name of the path whose locked status should be set. +
lockstatus : The lock status associated with the name path. 0 if the path is not locked. 1 if the path is to be locked. +
Returns : TRUE on success. +

gimp_path_set_tattoo ()

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

Sets the tattoo associated with the named path.

This procedure sets the tattoo associated with the specified path. A @@ -410,66 +198,42 @@ sessions. Note that the value passed to this function must have been obtained from a previous call to path_get_tattoo.

-

image_ID : The image. -
name : the name of the path whose tattoo should be set. -
tattovalue : The tattoo associated with the name path. Only values returned from 'path_get_tattoo' should be used here. +

image_ID : The image. +
name : the name of the path whose tattoo should be set. +
tattovalue : The tattoo associated with the name path. Only values returned from 'path_get_tattoo' should be used here.
Returns : TRUE on success. -

gimp_path_to_selection ()

gboolean    gimp_path_to_selection          (gint32 image_ID,
-                                             const gchar *name,
+

gimp_path_to_selection ()

gboolean    gimp_path_to_selection          (gint32 image_ID,
+                                             const gchar *name,
                                              GimpChannelOps op,
-                                             gboolean antialias,
-                                             gboolean feather,
-                                             gdouble feather_radius_x,
-                                             gdouble feather_radius_y);

+ gboolean antialias, + gboolean feather, + gdouble feather_radius_x, + gdouble feather_radius_y);

Transforms the active path into a selection

This procedure renders the desired path into the current selection.

-

image_ID : The image. -
name : The name of the path which should be made into selection. -
op : The desired operation with current selection. -
antialias : Antialias selection. -
feather : Feather selection. -
feather_radius_x : Feather radius x. -
feather_radius_y : Feather radius y. -
Returns : TRUE on success. -

gimp_path_import ()

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

+

image_ID : The image. +
name : The name of the path which should be made into selection. +
op : The desired operation with current selection. +
antialias : Antialias selection. +
feather : Feather selection. +
feather_radius_x : Feather radius x. +
feather_radius_y : Feather radius y. +
Returns : TRUE on success. +

gimp_path_import ()

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

Import paths from an SVG file.

This procedure imports paths from an SVG file. This is a temporary solution until the new vectors PDB API is in place. Don't rely on this function being available in future GIMP releases.

-

image_ID : The image. -
filename : The name of the SVG file to import. -
merge : Merge paths into a single vectors object. -
scale : Scale the SVG to image dimensions. +

image_ID : The image. +
filename : The name of the SVG file to import. +
merge : Merge paths into a single vectors object. +
scale : Scale the SVG to image dimensions.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppattern.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppattern.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppattern.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppattern.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,101 +1,53 @@ -gimppattern

gimppattern

gimppattern — Functions operating on a single pattern.

Synopsis

+gimppattern

gimppattern

gimppattern — Functions operating on a single pattern.

Synopsis

 
 
 
-gboolean    gimp_pattern_get_info           (const gchar *name,
-                                             gint *width,
-                                             gint *height,
-                                             gint *bpp);
-gboolean    gimp_pattern_get_pixels         (const gchar *name,
-                                             gint *width,
-                                             gint *height,
-                                             gint *bpp,
-                                             gint *num_color_bytes,
-                                             guint8 **color_bytes);
-

Description

+gboolean gimp_pattern_get_info (const gchar *name, + gint *width, + gint *height, + gint *bpp); +gboolean gimp_pattern_get_pixels (const gchar *name, + gint *width, + gint *height, + gint *bpp, + gint *num_color_bytes, + guint8 **color_bytes); +

Description

Functions operating on a single pattern. -

Details

gimp_pattern_get_info ()

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

+

Details

gimp_pattern_get_info ()

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

Retrieve information about the specified pattern.

This procedure retrieves information about the specified pattern. This includes the pattern extents (width and height).

-

name : The pattern name. -
width : The pattern width. -
height : The pattern height. -
bpp : The pattern bpp. +

name : The pattern name. +
width : The pattern width. +
height : The pattern height. +
bpp : The pattern bpp.
Returns : TRUE on success.

Since GIMP 2.2 -


gimp_pattern_get_pixels ()

gboolean    gimp_pattern_get_pixels         (const gchar *name,
-                                             gint *width,
-                                             gint *height,
-                                             gint *bpp,
-                                             gint *num_color_bytes,
-                                             guint8 **color_bytes);

+


gimp_pattern_get_pixels ()

gboolean    gimp_pattern_get_pixels         (const gchar *name,
+                                             gint *width,
+                                             gint *height,
+                                             gint *bpp,
+                                             gint *num_color_bytes,
+                                             guint8 **color_bytes);

Retrieve information about the specified pattern (including pixels).

This procedure retrieves information about the specified. This includes the pattern extents (width and height), its bpp and its pixel data.

-

name : The pattern name. -
width : The pattern width. -
height : The pattern height. -
bpp : The pattern bpp. -
num_color_bytes : Number of pattern bytes. -
color_bytes : The pattern data. +

name : The pattern name. +
width : The pattern width. +
height : The pattern height. +
bpp : The pattern bpp. +
num_color_bytes : Number of pattern bytes. +
color_bytes : The pattern data.
Returns : TRUE on success.

Since GIMP 2.2 diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppatternmenu.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppatternmenu.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppatternmenu.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppatternmenu.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,19 +1,13 @@ -gimppatternmenu

gimppatternmenu

gimppatternmenu — A widget for selecting patterns.

Synopsis

+gimppatternmenu

gimppatternmenu

gimppatternmenu — A widget for selecting patterns.

Synopsis

 
 
 
 GtkWidget*  gimp_pattern_select_widget_new  (const gchar *title,
-                                             const gchar *pattern_name,
+>GtkWidget*  gimp_pattern_select_widget_new  (const gchar *title,
+                                             const gchar *pattern_name,
                                              GimpRunPatternCallback callback,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_pattern_select_widget_close
                                             (gimp_pattern_select_widget_set  (GtkWidget *widget,
-                                             const gchar *pattern_name);
-

Description

+ const gchar *pattern_name); +

Description

A widget for selecting patterns. -

Details

gimp_pattern_select_widget_new ()

Details

gimp_pattern_select_widget_new ()

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

+ gpointer data);

Creates a new GtkWidget that completely controls the selection of a pattern. This widget is suitable for placement in a table in a plug-in dialog.

-

title : Title of the dialog to use or NULL to use the default title. -
pattern_name : Initial pattern name or NULL to use current selection. -
callback : A function to call when the selected pattern changes. -
data : A pointer to arbitary data to be used in the call to callback. +

title : Title of the dialog to use or NULL to use the default title. +
pattern_name : Initial pattern name or NULL to use current selection. +
callback : A function to call when the selected pattern changes. +
data : A pointer to arbitary data to be used in the call to callback.
Returns : A GtkWidget that you can use in your UI. -

gimp_pattern_select_widget_close ()

void        gimp_pattern_select_widget_close
+

gimp_pattern_select_widget_close ()

void        gimp_pattern_select_widget_close
                                             (GtkWidget *widget);

-Closes the popup window associated with widget.

+Closes the popup window associated with widget.

-

widget : A pattern select widget. -

gimp_pattern_select_widget_set ()

void        gimp_pattern_select_widget_set  (
widget : A pattern select widget. +

gimp_pattern_select_widget_set ()

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

+ const gchar *pattern_name);

Sets the current pattern for the pattern select widget. Calls the callback function if one was supplied in the call to -gimp_pattern_select_widget_new().

+gimp_pattern_select_widget_new().

-

widget : A pattern select widget. -
pattern_name : Pattern name to set. NULL means no change. +

widget : A pattern select widget. +
pattern_name : Pattern name to set. NULL means no change.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppatternselect.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppatternselect.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppatternselect.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppatternselect.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,170 +1,86 @@ -gimppatternselect

gimppatternselect

gimppatternselect — Functions providing a pattern selection dialog.

Synopsis

+gimppatternselect

gimppatternselect

gimppatternselect — Functions providing a pattern selection dialog.

Synopsis

 
 
 
-void        (*GimpRunPatternCallback)       (const gchar *pattern_name,
-                                             gint width,
-                                             gint height,
-                                             gint bpp,
-                                             const guchar *mask_data,
-                                             gboolean dialog_closing,
-                                             gpointer user_data);
-const gchar* gimp_pattern_select_new        (const gchar *title,
-                                             const gchar *pattern_name,
+void        (*GimpRunPatternCallback)       (const gchar *pattern_name,
+                                             gint width,
+                                             gint height,
+                                             gint bpp,
+                                             const guchar *mask_data,
+                                             gboolean dialog_closing,
+                                             gpointer user_data);
+const gchar* gimp_pattern_select_new        (const gchar *title,
+                                             const gchar *pattern_name,
                                              GimpRunPatternCallback callback,
-                                             gpointer data);
-void        gimp_pattern_select_destroy     (const gchar *pattern_callback);
-gboolean    gimp_patterns_popup             (const gchar *pattern_callback,
-                                             const gchar *popup_title,
-                                             const gchar *initial_pattern);
-gboolean    gimp_patterns_close_popup       (const gchar *pattern_callback);
-gboolean    gimp_patterns_set_popup         (const gchar *pattern_callback,
-                                             const gchar *pattern_name);
-

Description

+ gpointer data); +void gimp_pattern_select_destroy (const gchar *pattern_callback); +gboolean gimp_patterns_popup (const gchar *pattern_callback, + const gchar *popup_title, + const gchar *initial_pattern); +gboolean gimp_patterns_close_popup (const gchar *pattern_callback); +gboolean gimp_patterns_set_popup (const gchar *pattern_callback, + const gchar *pattern_name); +

Description

Functions providing a pattern selection dialog. -

Details

GimpRunPatternCallback ()

void        (*GimpRunPatternCallback)       (const gchar *pattern_name,
-                                             gint width,
-                                             gint height,
-                                             gint bpp,
-                                             const guchar *mask_data,
-                                             gboolean dialog_closing,
-                                             gpointer user_data);

- -

pattern_name : -
width : -
height : -
bpp : -
mask_data : -
dialog_closing : -
user_data : - - -

gimp_pattern_select_new ()

const gchar* gimp_pattern_select_new        (const gchar *title,
-                                             const gchar *pattern_name,
+

Details

GimpRunPatternCallback ()

void        (*GimpRunPatternCallback)       (const gchar *pattern_name,
+                                             gint width,
+                                             gint height,
+                                             gint bpp,
+                                             const guchar *mask_data,
+                                             gboolean dialog_closing,
+                                             gpointer user_data);

+ +

pattern_name : +
width : +
height : +
bpp : +
mask_data : +
dialog_closing : +
user_data : + + +

gimp_pattern_select_new ()

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

- -

title : -
pattern_name : -
callback : -
data : + gpointer data);

+ +

title : +
pattern_name : +
callback : +
data :
Returns : -

gimp_pattern_select_destroy ()

void        gimp_pattern_select_destroy     (const gchar *pattern_callback);

- -

pattern_callback : - - -

gimp_patterns_popup ()

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

+


gimp_pattern_select_destroy ()

void        gimp_pattern_select_destroy     (const gchar *pattern_callback);

+ +

pattern_callback : + + +

gimp_patterns_popup ()

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

Invokes the Gimp pattern selection.

This procedure popups the pattern selection dialog.

-

pattern_callback : The callback PDB proc to call when pattern selection is made. -
popup_title : Title to give the pattern popup window. -
initial_pattern : The name of the pattern to set as the first selected. +

pattern_callback : The callback PDB proc to call when pattern selection is made. +
popup_title : Title to give the pattern popup window. +
initial_pattern : The name of the pattern to set as the first selected.
Returns : TRUE on success. -

gimp_patterns_close_popup ()

gboolean    gimp_patterns_close_popup       (const gchar *pattern_callback);

+


gimp_patterns_close_popup ()

gboolean    gimp_patterns_close_popup       (const gchar *pattern_callback);

Popdown the Gimp pattern selection.

This procedure closes an opened pattern selection dialog.

-

pattern_callback : The name of the callback registered for this popup. +

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

gimp_patterns_set_popup ()

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

+


gimp_patterns_set_popup ()

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

Sets the current pattern selection in a popup.

Sets the current pattern selection in a popup.

-

pattern_callback : The name of the callback registered for this popup. -
pattern_name : The name of the pattern to set as selected. +

pattern_callback : The name of the callback registered for this popup. +
pattern_name : The name of the pattern to set as selected.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppatterns.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppatterns.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppatterns.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppatterns.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,130 +1,66 @@ -gimppatterns

gimppatterns

gimppatterns — Functions relating to patterns.

Synopsis

+gimppatterns

gimppatterns

gimppatterns — Functions relating to patterns.

Synopsis

 
 
 
-gboolean    gimp_patterns_refresh           (void);
-gchar**     gimp_patterns_get_list          (const gchar *filter,
-                                             gint *num_patterns);
-gchar*      gimp_patterns_get_pattern       (gint *width,
-                                             gint *height);
-gboolean    gimp_patterns_set_pattern       (const gchar *name);
-gchar*      gimp_patterns_get_pattern_data  (const gchar *name,
-                                             gint *width,
-                                             gint *height,
-                                             gint *mask_bpp,
-                                             gint *length,
-                                             guint8 **mask_data);
-

Description

+gboolean gimp_patterns_refresh (void); +gchar** gimp_patterns_get_list (const gchar *filter, + gint *num_patterns); +gchar* gimp_patterns_get_pattern (gint *width, + gint *height); +gboolean gimp_patterns_set_pattern (const gchar *name); +gchar* gimp_patterns_get_pattern_data (const gchar *name, + gint *width, + gint *height, + gint *mask_bpp, + gint *length, + guint8 **mask_data); +

Description

Functions relating to patterns. -

Details

gimp_patterns_refresh ()

gboolean    gimp_patterns_refresh           (void);

+

Details

gimp_patterns_refresh ()

gboolean    gimp_patterns_refresh           (void);

Refresh current patterns. This function always succeeds.

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

Returns : TRUE on success. -

gimp_patterns_get_list ()

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

+


gimp_patterns_get_list ()

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

Retrieve a complete listing of the available patterns.

This procedure returns a complete listing of available GIMP patterns. Each name returned can be used as input to the 'gimp_context_set_pattern'.

-

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

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

gimp_patterns_get_pattern ()

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

Warning

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

-This procedure is deprecated! Use gimp_context_get_pattern() +


gimp_patterns_get_pattern ()

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

Warning

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

+This procedure is deprecated! Use gimp_context_get_pattern() instead.

-

width : The pattern width. -
height : The pattern height. +

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

gimp_patterns_set_pattern ()

gboolean    gimp_patterns_set_pattern       (const gchar *name);

Warning

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

-This procedure is deprecated! Use gimp_context_set_pattern() instead.

+


gimp_patterns_set_pattern ()

gboolean    gimp_patterns_set_pattern       (const gchar *name);

Warning

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

+This procedure is deprecated! Use gimp_context_set_pattern() instead.

-

name : The pattern name. +

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

gimp_patterns_get_pattern_data ()

gchar*      gimp_patterns_get_pattern_data  (const gchar *name,
-                                             gint *width,
-                                             gint *height,
-                                             gint *mask_bpp,
-                                             gint *length,
-                                             guint8 **mask_data);

Warning

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

-This procedure is deprecated! Use gimp_pattern_get_pixels() instead.

- -

name : The pattern name (\"\" means currently active pattern). -
width : The pattern width. -
height : The pattern height. -
mask_bpp : Pattern bytes per pixel. -
length : Length of pattern mask data. -
mask_data : The pattern mask data. +

gimp_patterns_get_pattern_data ()

gchar*      gimp_patterns_get_pattern_data  (const gchar *name,
+                                             gint *width,
+                                             gint *height,
+                                             gint *mask_bpp,
+                                             gint *length,
+                                             guint8 **mask_data);

Warning

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

+This procedure is deprecated! Use gimp_pattern_get_pixels() instead.

+ +

name : The pattern name (\"\" means currently active pattern). +
width : The pattern width. +
height : The pattern height. +
mask_bpp : Pattern bytes per pixel. +
length : Length of pattern mask data. +
mask_data : The pattern mask data.
Returns : The pattern name.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppixbuf.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppixbuf.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppixbuf.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppixbuf.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,59 +1,33 @@ -gimppixbuf

gimppixbuf

gimppixbuf — Get a thumbnail pixbuf for a drawable or image.

Synopsis

+gimppixbuf

gimppixbuf

gimppixbuf — Get a thumbnail pixbuf for a drawable or image.

Synopsis

 
 
 
 enum        GimpPixbufTransparency;
 GdkPixbuf*  gimp_image_get_thumbnail        (gint32 image_ID,
-                                             gint width,
-                                             gint height,
+>GdkPixbuf*  gimp_image_get_thumbnail        (gint32 image_ID,
+                                             gint width,
+                                             gint height,
                                              GimpPixbufTransparency alpha);
 GdkPixbuf*  gimp_drawable_get_thumbnail     (gint32 drawable_ID,
-                                             gint width,
-                                             gint height,
+>GdkPixbuf*  gimp_drawable_get_thumbnail     (gint32 drawable_ID,
+                                             gint width,
+                                             gint height,
                                              GimpPixbufTransparency alpha);
 GdkPixbuf*  gimp_drawable_get_sub_thumbnail (gint32 drawable_ID,
-                                             gint src_x,
-                                             gint src_y,
-                                             gint src_width,
-                                             gint src_height,
-                                             gint dest_width,
-                                             gint dest_height,
+>GdkPixbuf*  gimp_drawable_get_sub_thumbnail (gint32 drawable_ID,
+                                             gint src_x,
+                                             gint src_y,
+                                             gint src_width,
+                                             gint src_height,
+                                             gint dest_width,
+                                             gint dest_height,
                                              GimpPixbufTransparency alpha);
-

Description

+

Description

Get a thumbnail pixbuf for a drawable or image. -

Details

enum GimpPixbufTransparency

typedef enum
+

Details

enum GimpPixbufTransparency

typedef enum
 {
   GIMP_PIXBUF_KEEP_ALPHA,
   GIMP_PIXBUF_SMALL_CHECKS,
@@ -61,91 +35,65 @@
 } GimpPixbufTransparency;
 

-


gimp_image_get_thumbnail ()


gimp_image_get_thumbnail ()

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

-Retrieves a thumbnail pixbuf for the image identified by image_ID. +Retrieves a thumbnail pixbuf for the image identified by image_ID. The thumbnail will be not larger than the requested size.

-

image_ID : the image ID -
width : the requested thumbnail width (<= 512 pixels) -
height : the requested thumbnail height (<= 512 pixels) -
alpha : how to handle an alpha channel +

image_ID : the image ID +
width : the requested thumbnail width (<= 512 pixels) +
height : the requested thumbnail height (<= 512 pixels) +
alpha : how to handle an alpha channel
Returns : a new GdkPixbuf

Since GIMP 2.2 -


gimp_drawable_get_thumbnail ()


gimp_drawable_get_thumbnail ()

GdkPixbuf*  gimp_drawable_get_thumbnail     (gint32 drawable_ID,
-                                             gint width,
-                                             gint height,
+>GdkPixbuf*  gimp_drawable_get_thumbnail     (gint32 drawable_ID,
+                                             gint width,
+                                             gint height,
                                              GimpPixbufTransparency alpha);

Retrieves a thumbnail pixbuf for the drawable identified by -drawable_ID. The thumbnail will be not larger than the requested +drawable_ID. The thumbnail will be not larger than the requested size.

-

drawable_ID : the drawable ID -
width : the requested thumbnail width (<= 512 pixels) -
height : the requested thumbnail height (<= 512 pixels) -
alpha : how to handle an alpha channel +

drawable_ID : the drawable ID +
width : the requested thumbnail width (<= 512 pixels) +
height : the requested thumbnail height (<= 512 pixels) +
alpha : how to handle an alpha channel
Returns : a new GdkPixbuf

Since GIMP 2.2 -


gimp_drawable_get_sub_thumbnail ()


gimp_drawable_get_sub_thumbnail ()

GdkPixbuf*  gimp_drawable_get_sub_thumbnail (gint32 drawable_ID,
-                                             gint src_x,
-                                             gint src_y,
-                                             gint src_width,
-                                             gint src_height,
-                                             gint dest_width,
-                                             gint dest_height,
+>GdkPixbuf*  gimp_drawable_get_sub_thumbnail (gint32 drawable_ID,
+                                             gint src_x,
+                                             gint src_y,
+                                             gint src_width,
+                                             gint src_height,
+                                             gint dest_width,
+                                             gint dest_height,
                                              GimpPixbufTransparency alpha);

Retrieves a thumbnail pixbuf for the drawable identified by -drawable_ID. The thumbnail will be not larger than the requested +drawable_ID. The thumbnail will be not larger than the requested size.

-

drawable_ID : the drawable ID -
src_x : the x coordinate of the area -
src_y : the y coordinate of the area -
src_width : the width of the area -
src_height : the height of the area -
dest_width : the requested thumbnail width (<= 512 pixels) -
dest_height : the requested thumbnail height (<= 512 pixels) -
alpha : how to handle an alpha channel +

drawable_ID : the drawable ID +
src_x : the x coordinate of the area +
src_y : the y coordinate of the area +
src_width : the width of the area +
src_height : the height of the area +
dest_width : the requested thumbnail width (<= 512 pixels) +
dest_height : the requested thumbnail height (<= 512 pixels) +
alpha : how to handle an alpha channel
Returns : a new GdkPixbuf diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,13 +1,11 @@ -gimppixelfetcher

gimppixelfetcher

gimppixelfetcher — Functions for operating on pixel regions.

Synopsis

+gimppixelfetcher

gimppixelfetcher

gimppixelfetcher — Functions for operating on pixel regions.

Synopsis

 
 
 
 enum        GimpPixelFetcherEdgeMode;
             GimpPixelFetcher;
 GimpPixelFetcher* gimp_pixel_fetcher_new    (GimpDrawable *drawable,
-                                             gboolean shadow);
+                                             gboolean shadow);
 void        gimp_pixel_fetcher_set_edge_mode
                                             (GimpPixelFetcher *pf,
                                              GimpPixelFetcherEdgeMode mode);
@@ -16,33 +14,21 @@
 href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB"
 >GimpRGB *color);
 void        gimp_pixel_fetcher_get_pixel    (GimpPixelFetcher *pf,
-                                             gint x,
-                                             gint y,
-                                             guchar *pixel);
+                                             gint x,
+                                             gint y,
+                                             guchar *pixel);
 void        gimp_pixel_fetcher_put_pixel    (GimpPixelFetcher *pf,
-                                             gint x,
-                                             gint y,
-                                             const guchar *pixel);
+                                             gint x,
+                                             gint y,
+                                             const guchar *pixel);
 void        gimp_pixel_fetcher_destroy      (GimpPixelFetcher *pf);
-

Description

+

Description

These functions provide neighbourhood-based algorithms which get dramatically slower on region boundaries, to the point where a special treatment for neighbourhoods which are completely inside a tile is called for. It hides the special treatment of tile borders, making plug-in code more readable and shorter. -

Details

enum GimpPixelFetcherEdgeMode

typedef enum
+

Details

enum GimpPixelFetcherEdgeMode

typedef enum
 {
   GIMP_PIXEL_FETCHER_EDGE_NONE,
   GIMP_PIXEL_FETCHER_EDGE_WRAP,
@@ -52,69 +38,53 @@
 } GimpPixelFetcherEdgeMode;
 

-


GimpPixelFetcher

typedef struct _GimpPixelFetcher GimpPixelFetcher;

+


GimpPixelFetcher

typedef struct _GimpPixelFetcher GimpPixelFetcher;

-


gimp_pixel_fetcher_new ()

GimpPixelFetcher* gimp_pixel_fetcher_new    (GimpDrawable *drawable,
-                                             gboolean shadow);

+


gimp_pixel_fetcher_new ()

GimpPixelFetcher* gimp_pixel_fetcher_new    (GimpDrawable *drawable,
+                                             gboolean shadow);

Initialize a pixel region from the drawable.

-

drawable : the GimpDrawable the new region will be attached to. -
shadow : a gboolean indicating whether the region is attached to - the shadow tiles or the real drawable tiles. +

drawable : the GimpDrawable the new region will be attached to. +
shadow : a gboolean indicating whether the region is attached to + the shadow tiles or the real drawable tiles.
Returns : a pointer to a GimpPixelRgn structure (or NULL). -

gimp_pixel_fetcher_set_edge_mode ()

void        gimp_pixel_fetcher_set_edge_mode
+

gimp_pixel_fetcher_set_edge_mode ()

void        gimp_pixel_fetcher_set_edge_mode
                                             (GimpPixelFetcher *pf,
                                              GimpPixelFetcherEdgeMode mode);

Change the edage mode of a previously initialized pixel region.

-

pf : a pointer to a previously initialized GimpPixelFetcher. -
mode : the new edge mode from GimpPixelFetcherEdgeMode. -

gimp_pixel_fetcher_set_bg_color ()

void        gimp_pixel_fetcher_set_bg_color (GimpPixelFetcher *pf,
+

pf : a pointer to a previously initialized GimpPixelFetcher. +
mode : the new edge mode from GimpPixelFetcherEdgeMode. +

gimp_pixel_fetcher_set_bg_color ()

void        gimp_pixel_fetcher_set_bg_color (GimpPixelFetcher *pf,
                                              const GimpRGB *color);

Change the background color of a previously initialized pixel region.

-

pf : a pointer to a previously initialized GimpPixelFetcher. -
color : the color to be used as bg color. -

gimp_pixel_fetcher_get_pixel ()

void        gimp_pixel_fetcher_get_pixel    (GimpPixelFetcher *pf,
-                                             gint x,
-                                             gint y,
-                                             guchar *pixel);

+

pf : a pointer to a previously initialized GimpPixelFetcher. +
color : the color to be used as bg color. +

gimp_pixel_fetcher_get_pixel ()

void        gimp_pixel_fetcher_get_pixel    (GimpPixelFetcher *pf,
+                                             gint x,
+                                             gint y,
+                                             guchar *pixel);

Get a pixel from the pixel region.

-

pf : a pointer to a previously initialized GimpPixelFetcher. -
x : the x coordinate of the pixel to get. -
y : the y coordinate of the pixel to get. -
pixel : the memory location where to return the pixel. -

gimp_pixel_fetcher_put_pixel ()

void        gimp_pixel_fetcher_put_pixel    (GimpPixelFetcher *pf,
-                                             gint x,
-                                             gint y,
-                                             const guchar *pixel);

+

pf : a pointer to a previously initialized GimpPixelFetcher. +
x : the x coordinate of the pixel to get. +
y : the y coordinate of the pixel to get. +
pixel : the memory location where to return the pixel. +

gimp_pixel_fetcher_put_pixel ()

void        gimp_pixel_fetcher_put_pixel    (GimpPixelFetcher *pf,
+                                             gint x,
+                                             gint y,
+                                             const guchar *pixel);

Set a pixel in the pixel region.

-

pf : a pointer to a previously initialized GimpPixelFetcher. -
x : the x coordinate of the pixel to set. -
y : the y coordinate of the pixel to set. -
pixel : the pixel to set. -

gimp_pixel_fetcher_destroy ()

void        gimp_pixel_fetcher_destroy      (GimpPixelFetcher *pf);

+

pf : a pointer to a previously initialized GimpPixelFetcher. +
x : the x coordinate of the pixel to set. +
y : the y coordinate of the pixel to set. +
pixel : the pixel to set. +

gimp_pixel_fetcher_destroy ()

void        gimp_pixel_fetcher_destroy      (GimpPixelFetcher *pf);

Close a previously initializd pixel region.

-

pf : a pointer to a previously initialized GimpPixelFetcher. +

pf : a pointer to a previously initialized GimpPixelFetcher.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppixelrgn.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppixelrgn.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppixelrgn.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppixelrgn.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,167 +1,71 @@ -gimppixelrgn

gimppixelrgn

gimppixelrgn — Functions for operating on pixel regions.

Synopsis

+gimppixelrgn

gimppixelrgn

gimppixelrgn — Functions for operating on pixel regions.

Synopsis

 
 
 
             GimpPixelRgn;
 void        gimp_pixel_rgn_init             (GimpPixelRgn *pr,
                                              GimpDrawable *drawable,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
-                                             gint dirty,
-                                             gint shadow);
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
+                                             gint dirty,
+                                             gint shadow);
 void        gimp_pixel_rgn_resize           (GimpPixelRgn *pr,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height);
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height);
 void        gimp_pixel_rgn_get_pixel        (GimpPixelRgn *pr,
-                                             guchar *buf,
-                                             gint x,
-                                             gint y);
+                                             guchar *buf,
+                                             gint x,
+                                             gint y);
 void        gimp_pixel_rgn_get_row          (GimpPixelRgn *pr,
-                                             guchar *buf,
-                                             gint x,
-                                             gint y,
-                                             gint width);
+                                             guchar *buf,
+                                             gint x,
+                                             gint y,
+                                             gint width);
 void        gimp_pixel_rgn_get_col          (GimpPixelRgn *pr,
-                                             guchar *buf,
-                                             gint x,
-                                             gint y,
-                                             gint height);
+                                             guchar *buf,
+                                             gint x,
+                                             gint y,
+                                             gint height);
 void        gimp_pixel_rgn_get_rect         (GimpPixelRgn *pr,
-                                             guchar *buf,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height);
+                                             guchar *buf,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height);
 void        gimp_pixel_rgn_set_pixel        (GimpPixelRgn *pr,
-                                             const guchar *buf,
-                                             gint x,
-                                             gint y);
+                                             const guchar *buf,
+                                             gint x,
+                                             gint y);
 void        gimp_pixel_rgn_set_row          (GimpPixelRgn *pr,
-                                             const guchar *buf,
-                                             gint x,
-                                             gint y,
-                                             gint width);
+                                             const guchar *buf,
+                                             gint x,
+                                             gint y,
+                                             gint width);
 void        gimp_pixel_rgn_set_col          (GimpPixelRgn *pr,
-                                             const guchar *buf,
-                                             gint x,
-                                             gint y,
-                                             gint height);
+                                             const guchar *buf,
+                                             gint x,
+                                             gint y,
+                                             gint height);
 void        gimp_pixel_rgn_set_rect         (GimpPixelRgn *pr,
-                                             const guchar *buf,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height);
-gpointer    gimp_pixel_rgns_register        (gint nrgns,
+                                             const guchar *buf,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height);
+gpointer    gimp_pixel_rgns_register        (gint nrgns,
                                              ...);
-gpointer    gimp_pixel_rgns_register2       (gint nrgns,
+gpointer    gimp_pixel_rgns_register2       (gint nrgns,
                                              GimpPixelRgn **prs);
-gpointer    gimp_pixel_rgns_process         (gpointer pri_ptr);
-

Description

+gpointer gimp_pixel_rgns_process (gpointer pri_ptr); +

Description

Functions for operating on pixel regions. These functions provide fast ways of accessing and modifying portions of a drawable. -

Details

GimpPixelRgn

typedef struct {
+

Details

GimpPixelRgn

typedef struct {
   guchar       *data;          /* pointer to region data */
   GimpDrawable *drawable;      /* pointer to drawable */
   guint         bpp;           /* bytes per pixel */
@@ -174,36 +78,24 @@
 } GimpPixelRgn;
 

-


gimp_pixel_rgn_init ()

void        gimp_pixel_rgn_init             (GimpPixelRgn *pr,
+


gimp_pixel_rgn_init ()

void        gimp_pixel_rgn_init             (GimpPixelRgn *pr,
                                              GimpDrawable *drawable,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
-                                             gint dirty,
-                                             gint shadow);

-Initialize the pixel region pointed by pr with the specified parameters. + gint x, + gint y, + gint width, + gint height, + gint dirty, + gint shadow);

+Initialize the pixel region pointed by pr with the specified parameters.

-The dirty and shadow flags can be used as follows: +The dirty and shadow flags can be used as follows:

-- dirty = FALSE, shadow = FALSE: the region will be used to read +- dirty = FALSE, shadow = FALSE: the region will be used to read the actual drawable datas. This is useful for save plug-ins or for filters.

-- dirty = FALSE, shadow = TRUE: the region will be used to read the +- dirty = FALSE, shadow = TRUE: the region will be used to read the shadow tiles. This is used in some filter plug-ins which operate in two passes such as gaussian @@ -213,279 +105,169 @@ one reads from and writes to the shadow tiles.

-- dirty = TRUE, shadow = TRUE: the region will be used to write to +- dirty = TRUE, shadow = TRUE: the region will be used to write to the shadow tiles. It is common practice to write to the shadow tiles and then use - #gimp_drawable_merge_shadow() to + #gimp_drawable_merge_shadow() to merge the changes from the shadow tiles using the current selection as a mask.

-- dirty = TRUE, shadow = FALSE: the region will be used to directly +- dirty = TRUE, shadow = FALSE: the region will be used to directly change the drawable content. Don't do this, since this could prevent the Undo-System from working as expected.

-

pr : a pointer to a GimpPixelRgn variable. -
drawable : the GimpDrawable the new region will be attached to. -
x : the x coordinate of the top-left pixel of the region in the - drawable. -
y : the y coordinate of the top-left pixel of the region in the - drawable. -
width : the width of the region. -
height : the height of the region. -
dirty : a gboolean indicating whether the drawable should be marked +

pr : a pointer to a GimpPixelRgn variable. +
drawable : the GimpDrawable the new region will be attached to. +
x : the x coordinate of the top-left pixel of the region in the + drawable. +
y : the y coordinate of the top-left pixel of the region in the + drawable. +
width : the width of the region. +
height : the height of the region. +
dirty : a gboolean indicating whether the drawable should be marked as "dirty". -
shadow : a gboolean indicating whether the region is attached to the - shadow tiles or the real drawable tiles. -

gimp_pixel_rgn_resize ()

void        gimp_pixel_rgn_resize           (GimpPixelRgn *pr,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height);

+

shadow : a gboolean indicating whether the region is attached to the + shadow tiles or the real drawable tiles. +

gimp_pixel_rgn_resize ()

void        gimp_pixel_rgn_resize           (GimpPixelRgn *pr,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height);

Change the position and size of a previously initialized pixel region.

-

pr : a pointer to a previously initialized GimpPixelRgn. -
x : the x coordinate of the new position of the region's +

pr : a pointer to a previously initialized GimpPixelRgn. +
x : the x coordinate of the new position of the region's top-left corner. -
y : the y coordinate of the new position of the region's +
y : the y coordinate of the new position of the region's top-left corner. -
width : the new width of the region. -
height : the new height of the region. -

gimp_pixel_rgn_get_pixel ()

void        gimp_pixel_rgn_get_pixel        (GimpPixelRgn *pr,
-                                             guchar *buf,
-                                             gint x,
-                                             gint y);

-Fill the buffer pointed by buf with the value of the pixel at (x, y) -in the region pr. buf should be large enough to hold the pixel value -(1 guchar for an indexed or grayscale drawable, 2 guchar for -indexed with alpha or grayscale with alpha drawable, 3 guchar for -rgb drawable and 4 guchar for rgb with alpha drawable.

- -

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the wanted pixel (relative to the drawable) -
y : the y coordinate of the wanted pixel (relative to the drawable) -

gimp_pixel_rgn_get_row ()

void        gimp_pixel_rgn_get_row          (GimpPixelRgn *pr,
-                                             guchar *buf,
-                                             gint x,
-                                             gint y,
-                                             gint width);

+

width : the new width of the region. +
height : the new height of the region. +

gimp_pixel_rgn_get_pixel ()

void        gimp_pixel_rgn_get_pixel        (GimpPixelRgn *pr,
+                                             guchar *buf,
+                                             gint x,
+                                             gint y);

+Fill the buffer pointed by buf with the value of the pixel at (x, y) +in the region pr. buf should be large enough to hold the pixel value +(1 guchar for an indexed or grayscale drawable, 2 guchar for +indexed with alpha or grayscale with alpha drawable, 3 guchar for +rgb drawable and 4 guchar for rgb with alpha drawable.

+ +

pr : a pointer to a previously initialized GimpPixelRgn. +
buf : a pointer to an array of guchar +
x : the x coordinate of the wanted pixel (relative to the drawable) +
y : the y coordinate of the wanted pixel (relative to the drawable) +

gimp_pixel_rgn_get_row ()

void        gimp_pixel_rgn_get_row          (GimpPixelRgn *pr,
+                                             guchar *buf,
+                                             gint x,
+                                             gint y,
+                                             gint width);

Get several pixels of a region in a row. This function fills the buffer -buf with the values of the pixels from (x, y) to (x+width-1, y). -buf should be large enough to hold all these values.

+buf with the values of the pixels from (x, y) to (x+width-1, y). +buf should be large enough to hold all these values.

-

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the first pixel (relative to the drawable). -
y : the y coordinate of the first pixel (relative to the drawable). -
width : the number of pixels to get. -

gimp_pixel_rgn_get_col ()

void        gimp_pixel_rgn_get_col          (GimpPixelRgn *pr,
-                                             guchar *buf,
-                                             gint x,
-                                             gint y,
-                                             gint height);

+

pr : a pointer to a previously initialized GimpPixelRgn. +
buf : a pointer to an array of guchar +
x : the x coordinate of the first pixel (relative to the drawable). +
y : the y coordinate of the first pixel (relative to the drawable). +
width : the number of pixels to get. +

gimp_pixel_rgn_get_col ()

void        gimp_pixel_rgn_get_col          (GimpPixelRgn *pr,
+                                             guchar *buf,
+                                             gint x,
+                                             gint y,
+                                             gint height);

Get several pixels of a region's column. This function fills the buffer -buf with the values of the pixels from (x, y) to (x, y+height-1). -buf should be large enough to hold all these values.

+buf with the values of the pixels from (x, y) to (x, y+height-1). +buf should be large enough to hold all these values.

-

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the first pixel (relative to the drawable). -
y : the y coordinate of the first pixel (relative to the drawable). -
height : the number of pixels to get. -

gimp_pixel_rgn_get_rect ()

void        gimp_pixel_rgn_get_rect         (GimpPixelRgn *pr,
-                                             guchar *buf,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height);

-Get all the pixel values from the rectangle defined by x, y, width and -height. This function fills the buffer buf with the values of the pixels -from (x, y) to (x+width-1, y+height-1). -buf should be large enough to hold all these values (width*height*bpp).

- -

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the first pixel (relative to the drawable). -
y : the y coordinate of the first pixel (relative to the drawable). -
width : the width of the rectangle. -
height : the height of the rectangle. -

gimp_pixel_rgn_set_pixel ()

void        gimp_pixel_rgn_set_pixel        (GimpPixelRgn *pr,
-                                             const guchar *buf,
-                                             gint x,
-                                             gint y);

-Set the pixel at (x, y) to the values from buf.

- -

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar. -
x : the x coordinate of the pixel (relative to the drawable). -
y : the y coordinate of the pixel (relative to the drawable). -

gimp_pixel_rgn_set_row ()

void        gimp_pixel_rgn_set_row          (GimpPixelRgn *pr,
-                                             const guchar *buf,
-                                             gint x,
-                                             gint y,
-                                             gint width);

+

pr : a pointer to a previously initialized GimpPixelRgn. +
buf : a pointer to an array of guchar +
x : the x coordinate of the first pixel (relative to the drawable). +
y : the y coordinate of the first pixel (relative to the drawable). +
height : the number of pixels to get. +

gimp_pixel_rgn_get_rect ()

void        gimp_pixel_rgn_get_rect         (GimpPixelRgn *pr,
+                                             guchar *buf,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height);

+Get all the pixel values from the rectangle defined by x, y, width and +height. This function fills the buffer buf with the values of the pixels +from (x, y) to (x+width-1, y+height-1). +buf should be large enough to hold all these values (width*height*bpp).

+ +

pr : a pointer to a previously initialized GimpPixelRgn. +
buf : a pointer to an array of guchar +
x : the x coordinate of the first pixel (relative to the drawable). +
y : the y coordinate of the first pixel (relative to the drawable). +
width : the width of the rectangle. +
height : the height of the rectangle. +

gimp_pixel_rgn_set_pixel ()

void        gimp_pixel_rgn_set_pixel        (GimpPixelRgn *pr,
+                                             const guchar *buf,
+                                             gint x,
+                                             gint y);

+Set the pixel at (x, y) to the values from buf.

+ +

pr : a pointer to a previously initialized GimpPixelRgn. +
buf : a pointer to an array of guchar. +
x : the x coordinate of the pixel (relative to the drawable). +
y : the y coordinate of the pixel (relative to the drawable). +

gimp_pixel_rgn_set_row ()

void        gimp_pixel_rgn_set_row          (GimpPixelRgn *pr,
+                                             const guchar *buf,
+                                             gint x,
+                                             gint y,
+                                             gint width);

Set several pixels of a region in a row. This function draws the pixels -from (x, y) to (x+width-1, y) using the values of the buffer buf. -buf should be large enough to hold all these values.

+from (x, y) to (x+width-1, y) using the values of the buffer buf. +buf should be large enough to hold all these values.

-

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the first pixel (relative to the drawable). -
y : the y coordinate of the first pixel (relative to the drawable). -
width : the number of pixels to set. -

gimp_pixel_rgn_set_col ()

void        gimp_pixel_rgn_set_col          (GimpPixelRgn *pr,
-                                             const guchar *buf,
-                                             gint x,
-                                             gint y,
-                                             gint height);

+

pr : a pointer to a previously initialized GimpPixelRgn. +
buf : a pointer to an array of guchar +
x : the x coordinate of the first pixel (relative to the drawable). +
y : the y coordinate of the first pixel (relative to the drawable). +
width : the number of pixels to set. +

gimp_pixel_rgn_set_col ()

void        gimp_pixel_rgn_set_col          (GimpPixelRgn *pr,
+                                             const guchar *buf,
+                                             gint x,
+                                             gint y,
+                                             gint height);

Set several pixels of a region's column. This function draws the pixels -from (x, y) to (x, y+height-1) using the values from the buffer buf. -buf should be large enough to hold all these values.

+from (x, y) to (x, y+height-1) using the values from the buffer buf. +buf should be large enough to hold all these values.

-

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the first pixel (relative to the drawable). -
y : the y coordinate of the first pixel (relative to the drawable). -
height : the number of pixels to set. -

gimp_pixel_rgn_set_rect ()

void        gimp_pixel_rgn_set_rect         (GimpPixelRgn *pr,
-                                             const guchar *buf,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height);

-Set all the pixel of the rectangle defined by x, y, width and -height. This function draws the rectangle from (x, y) to -(x+width-1, y+height-1), using the pixel values from the buffer buf. -buf should be large enough to hold all these values (width*height*bpp).

- -

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the first pixel (relative to the drawable). -
y : the y coordinate of the first pixel (relative to the drawable). -
width : the width of the rectangle. -
height : the height of the rectangle. -

gimp_pixel_rgns_register ()

gpointer    gimp_pixel_rgns_register        (gint nrgns,
+

pr : a pointer to a previously initialized GimpPixelRgn. +
buf : a pointer to an array of guchar +
x : the x coordinate of the first pixel (relative to the drawable). +
y : the y coordinate of the first pixel (relative to the drawable). +
height : the number of pixels to set. +

gimp_pixel_rgn_set_rect ()

void        gimp_pixel_rgn_set_rect         (GimpPixelRgn *pr,
+                                             const guchar *buf,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height);

+Set all the pixel of the rectangle defined by x, y, width and +height. This function draws the rectangle from (x, y) to +(x+width-1, y+height-1), using the pixel values from the buffer buf. +buf should be large enough to hold all these values (width*height*bpp).

+ +

pr : a pointer to a previously initialized GimpPixelRgn. +
buf : a pointer to an array of guchar +
x : the x coordinate of the first pixel (relative to the drawable). +
y : the y coordinate of the first pixel (relative to the drawable). +
width : the width of the rectangle. +
height : the height of the rectangle. +

gimp_pixel_rgns_register ()

gpointer    gimp_pixel_rgns_register        (gint nrgns,
                                              ...);

This is the varargs version of gimp_pixel_rgns_register2.

-

nrgns : the number of regions to register. -
... : nrgns pointers to GimpPixelRgn. -
Returns : a gpointer to a regions iterator. -

gimp_pixel_rgns_register2 ()

gpointer    gimp_pixel_rgns_register2       (gint nrgns,
+

nrgns : the number of regions to register. +
... : nrgns pointers to GimpPixelRgn. +
Returns : a gpointer to a regions iterator. +

gimp_pixel_rgns_register2 ()

gpointer    gimp_pixel_rgns_register2       (gint nrgns,
                                              GimpPixelRgn **prs);

It takes a number of initialized regions of the same size and provides a pixel region iterator the iterator can be used to iterate over the @@ -498,23 +280,15 @@

This function has to be used together with gimp_pixel_rgns_process in a loop.

-

nrgns : the number of regions to register. -
prs : an array of nrgns pointers to initialized GimpPixelRgn. -
Returns : a gpointer to a regions iterator. -

gimp_pixel_rgns_process ()

gpointer    gimp_pixel_rgns_process         (gpointer pri_ptr);

+

nrgns : the number of regions to register. +
prs : an array of nrgns pointers to initialized GimpPixelRgn. +
Returns : a gpointer to a regions iterator. +

gimp_pixel_rgns_process ()

gpointer    gimp_pixel_rgns_process         (gpointer pri_ptr);

This function update the regions registered previously with one of the gimp_pixel_rgns_register* functions to their next tile.

-

pri_ptr : a regions iterator returned by gimp_pixel_rgns_register, +

pri_ptr : a regions iterator returned by gimp_pixel_rgns_register, gimp_pixel_rgns_register2 or gimp_pixel_rgns_process. -
Returns : a gpointer to a new regions iterator or NULL if there isn't +
Returns : a gpointer to a new regions iterator or NULL if there isn't any tiles left.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpplugin.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpplugin.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpplugin.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpplugin.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,51 +1,21 @@ -gimpplugin

gimpplugin

gimpplugin — Functions useful for plugins, e.g. registration and progress indicators.

Synopsis

+gimpplugin

gimpplugin

gimpplugin — Functions useful for plugins, e.g. registration and progress indicators.

Synopsis

 
 
 
-gboolean    gimp_plugin_domain_register     (const gchar *domain_name,
-                                             const gchar *domain_path);
-gboolean    gimp_plugin_help_register       (const gchar *domain_name,
-                                             const gchar *domain_uri);
-gboolean    gimp_plugin_icon_register       (const gchar *procedure_name,
+gboolean    gimp_plugin_domain_register     (const gchar *domain_name,
+                                             const gchar *domain_path);
+gboolean    gimp_plugin_help_register       (const gchar *domain_name,
+                                             const gchar *domain_uri);
+gboolean    gimp_plugin_icon_register       (const gchar *procedure_name,
                                              GimpIconType icon_type,
-                                             const guint8 *icon_data);
-gboolean    gimp_plugin_menu_register       (const gchar *procedure_name,
-                                             const gchar *menu_path);
-

Description

+ const guint8 *icon_data); +gboolean gimp_plugin_menu_register (const gchar *procedure_name, + const gchar *menu_path); +

Description

Functions useful for plugins, e.g. registration and progress indicators. -

Details

gimp_plugin_domain_register ()

gboolean    gimp_plugin_domain_register     (const gchar *domain_name,
-                                             const gchar *domain_path);

+

Details

gimp_plugin_domain_register ()

gboolean    gimp_plugin_domain_register     (const gchar *domain_name,
+                                             const gchar *domain_path);

Registers a textdomain for localisation.

This procedure adds a textdomain to the list of domains Gimp @@ -57,57 +27,39 @@ only be called in the query function of a plug-in and it has to be called before any procedure is installed.

-

domain_name : The name of the textdomain (must be unique). -
domain_path : The absolute path to the compiled message catalog (may be NULL). +

domain_name : The name of the textdomain (must be unique). +
domain_path : The absolute path to the compiled message catalog (may be NULL).
Returns : TRUE on success. -

gimp_plugin_help_register ()

gboolean    gimp_plugin_help_register       (const gchar *domain_name,
-                                             const gchar *domain_uri);

+


gimp_plugin_help_register ()

gboolean    gimp_plugin_help_register       (const gchar *domain_name,
+                                             const gchar *domain_uri);

Register a help path for a plug-in.

This procedure changes the help rootdir for the plug-in which calls it. All subsequent calls of gimp_help from this plug-in will be interpreted relative to this rootdir.

-

domain_name : The XML namespace of the plug-in's help pages. -
domain_uri : The root URI of the plug-in's help pages. +

domain_name : The XML namespace of the plug-in's help pages. +
domain_uri : The root URI of the plug-in's help pages.
Returns : TRUE on success. -

gimp_plugin_icon_register ()

gboolean    gimp_plugin_icon_register       (const gchar *procedure_name,
+

gimp_plugin_icon_register ()

gboolean    gimp_plugin_icon_register       (const gchar *procedure_name,
                                              GimpIconType icon_type,
-                                             const guint8 *icon_data);

- -

procedure_name : -
icon_type : -
icon_data : + const guint8 *icon_data);

+ +

procedure_name : +
icon_type : +
icon_data :
Returns : -

gimp_plugin_menu_register ()

gboolean    gimp_plugin_menu_register       (const gchar *procedure_name,
-                                             const gchar *menu_path);

+


gimp_plugin_menu_register ()

gboolean    gimp_plugin_menu_register       (const gchar *procedure_name,
+                                             const gchar *menu_path);

Register an additional menu path for a plug-in procedure.

This procedure installs an additional menu entry for the given procedure.

-

procedure_name : The procedure for which to install the menu path. -
menu_path : The procedure's additional menu path. +

procedure_name : The procedure for which to install the menu path. +
menu_path : The procedure's additional menu path.
Returns : TRUE on success.

Since GIMP 2.2 diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,140 +1,56 @@ -gimpproceduraldb

gimpproceduraldb

gimpproceduraldb — Functions for querying and changing procedural database (PDB) entries.

Synopsis

+gimpproceduraldb

gimpproceduraldb

gimpproceduraldb — Functions for querying and changing procedural database (PDB) entries.

Synopsis

 
 
 
-gchar*      gimp_procedural_db_temp_name    (void);
-gboolean    gimp_procedural_db_proc_info    (const gchar *procedure,
-                                             gchar **blurb,
-                                             gchar **help,
-                                             gchar **author,
-                                             gchar **copyright,
-                                             gchar **date,
+gchar*      gimp_procedural_db_temp_name    (void);
+gboolean    gimp_procedural_db_proc_info    (const gchar *procedure,
+                                             gchar **blurb,
+                                             gchar **help,
+                                             gchar **author,
+                                             gchar **copyright,
+                                             gchar **date,
                                              GimpPDBProcType *proc_type,
-                                             gint *num_args,
-                                             gint *num_values,
+                                             gint *num_args,
+                                             gint *num_values,
                                              GimpParamDef **args,
                                              GimpParamDef **return_vals);
-gboolean    gimp_procedural_db_get_data     (const gchar *identifier,
-                                             gpointer data);
-gboolean    gimp_procedural_db_set_data     (const gchar *identifier,
-                                             gpointer data,
-                                             guint32 bytes);
-gboolean    gimp_procedural_db_dump         (const gchar *filename);
-gboolean    gimp_procedural_db_query        (const gchar *name,
-                                             const gchar *blurb,
-                                             const gchar *help,
-                                             const gchar *author,
-                                             const gchar *copyright,
-                                             const gchar *date,
-                                             const gchar *proc_type,
-                                             gint *num_matches,
-                                             gchar ***procedure_names);
-gboolean    gimp_procedural_db_proc_arg     (const gchar *procedure,
-                                             gint arg_num,
+gboolean    gimp_procedural_db_get_data     (const gchar *identifier,
+                                             gpointer data);
+gboolean    gimp_procedural_db_set_data     (const gchar *identifier,
+                                             gpointer data,
+                                             guint32 bytes);
+gboolean    gimp_procedural_db_dump         (const gchar *filename);
+gboolean    gimp_procedural_db_query        (const gchar *name,
+                                             const gchar *blurb,
+                                             const gchar *help,
+                                             const gchar *author,
+                                             const gchar *copyright,
+                                             const gchar *date,
+                                             const gchar *proc_type,
+                                             gint *num_matches,
+                                             gchar ***procedure_names);
+gboolean    gimp_procedural_db_proc_arg     (const gchar *procedure,
+                                             gint arg_num,
                                              GimpPDBArgType *arg_type,
-                                             gchar **arg_name,
-                                             gchar **arg_desc);
-gboolean    gimp_procedural_db_proc_val     (const gchar *procedure,
-                                             gint val_num,
+                                             gchar **arg_name,
+                                             gchar **arg_desc);
+gboolean    gimp_procedural_db_proc_val     (const gchar *procedure,
+                                             gint val_num,
                                              GimpPDBArgType *val_type,
-                                             gchar **val_name,
-                                             gchar **val_desc);
-gint        gimp_procedural_db_get_data_size
-                                            (const gchar *identifier);
-

Description

+ gchar **val_name, + gchar **val_desc); +gint gimp_procedural_db_get_data_size + (const gchar *identifier); +

Description

Functions for querying and changing procedural database (PDB) entries. -

Details

gimp_procedural_db_temp_name ()

gchar*      gimp_procedural_db_temp_name    (void);

+

Details

gimp_procedural_db_temp_name ()

gchar*      gimp_procedural_db_temp_name    (void);

Generates a unique temporary PDB name.

This procedure generates a temporary PDB entry name that is @@ -142,35 +58,17 @@ dialogs to generate a PDB entry name.

Returns : A unique temporary name for a temporary PDB entry. -

gimp_procedural_db_proc_info ()

gboolean    gimp_procedural_db_proc_info    (const gchar *procedure,
-                                             gchar **blurb,
-                                             gchar **help,
-                                             gchar **author,
-                                             gchar **copyright,
-                                             gchar **date,
+

gimp_procedural_db_proc_info ()

gboolean    gimp_procedural_db_proc_info    (const gchar *procedure,
+                                             gchar **blurb,
+                                             gchar **help,
+                                             gchar **author,
+                                             gchar **copyright,
+                                             gchar **date,
                                              GimpPDBProcType *proc_type,
-                                             gint *num_args,
-                                             gint *num_values,
+                                             gint *num_args,
+                                             gint *num_values,
                                              GimpParamDef **args,
                                              GimpParamDef **return_vals);

Queries the procedural database for information on the specified @@ -182,62 +80,44 @@ returned. Additionally this function returns specific information about each input argument and return value.

-

procedure : The procedure name. -
blurb : A short blurb. -
help : Detailed procedure help. -
author : Author(s) of the procedure. -
copyright : The copyright. -
date : Copyright date. -
proc_type : The procedure type. -
num_args : The number of input arguments. -
num_values : The number of return values. -
args : The input arguments. -
return_vals : The return values. +

procedure : The procedure name. +
blurb : A short blurb. +
help : Detailed procedure help. +
author : Author(s) of the procedure. +
copyright : The copyright. +
date : Copyright date. +
proc_type : The procedure type. +
num_args : The number of input arguments. +
num_values : The number of return values. +
args : The input arguments. +
return_vals : The return values.
Returns : TRUE on success. -

gimp_procedural_db_get_data ()

gboolean    gimp_procedural_db_get_data     (const gchar *identifier,
-                                             gpointer data);

+


gimp_procedural_db_get_data ()

gboolean    gimp_procedural_db_get_data     (const gchar *identifier,
+                                             gpointer data);

Returns data associated with the specified identifier.

This procedure returns any data which may have been associated with the specified identifier. The data is copied into the given memory location.

-

identifier : The identifier associated with data. -
data : A byte array containing data. +

identifier : The identifier associated with data. +
data : A byte array containing data.
Returns : TRUE on success, FALSE if no data has been associated with the identifier -

gimp_procedural_db_set_data ()

gboolean    gimp_procedural_db_set_data     (const gchar *identifier,
-                                             gpointer data,
-                                             guint32 bytes);

+


gimp_procedural_db_set_data ()

gboolean    gimp_procedural_db_set_data     (const gchar *identifier,
+                                             gpointer data,
+                                             guint32 bytes);

Associates the specified identifier with the supplied data.

This procedure associates the supplied data with the provided identifier. The data may be subsequently retrieved by a call to 'procedural-db-get-data'.

-

identifier : The identifier associated with data. -
data : A byte array containing data. -
bytes : The number of bytes in the data +

identifier : The identifier associated with data. +
data : A byte array containing data. +
bytes : The number of bytes in the data
Returns : TRUE on success. -

gimp_procedural_db_dump ()

gboolean    gimp_procedural_db_dump         (const gchar *filename);

+


gimp_procedural_db_dump ()

gboolean    gimp_procedural_db_dump         (const gchar *filename);

Dumps the current contents of the procedural database

This procedure dumps the contents of the procedural database to the @@ -246,37 +126,17 @@ appropriate for use with the supplied \"pdb_self_doc.el\" Elisp script, which generates a texinfo document.

-

filename : The dump filename. +

filename : The dump filename.
Returns : TRUE on success. -

gimp_procedural_db_query ()

gboolean    gimp_procedural_db_query        (const gchar *name,
-                                             const gchar *blurb,
-                                             const gchar *help,
-                                             const gchar *author,
-                                             const gchar *copyright,
-                                             const gchar *date,
-                                             const gchar *proc_type,
-                                             gint *num_matches,
-                                             gchar ***procedure_names);

+


gimp_procedural_db_query ()

gboolean    gimp_procedural_db_query        (const gchar *name,
+                                             const gchar *blurb,
+                                             const gchar *help,
+                                             const gchar *author,
+                                             const gchar *copyright,
+                                             const gchar *date,
+                                             const gchar *proc_type,
+                                             gint *num_matches,
+                                             gchar ***procedure_names);

Queries the procedural database for its contents using regular expression matching.

@@ -293,62 +153,42 @@ are found, then the returned string is NULL and the number of entries is 0.

-

name : The regex for procedure name. -
blurb : The regex for procedure blurb. -
help : The regex for procedure help. -
author : The regex for procedure author. -
copyright : The regex for procedure copyright. -
date : The regex for procedure date. -
proc_type : The regex for procedure type: { 'Internal GIMP procedure', 'GIMP Plug-in', 'GIMP Extension' }. -
num_matches : The number of matching procedures. -
procedure_names : The list of procedure names. +

name : The regex for procedure name. +
blurb : The regex for procedure blurb. +
help : The regex for procedure help. +
author : The regex for procedure author. +
copyright : The regex for procedure copyright. +
date : The regex for procedure date. +
proc_type : The regex for procedure type: { 'Internal GIMP procedure', 'GIMP Plug-in', 'GIMP Extension' }. +
num_matches : The number of matching procedures. +
procedure_names : The list of procedure names.
Returns : TRUE on success. -

gimp_procedural_db_proc_arg ()

gboolean    gimp_procedural_db_proc_arg     (const gchar *procedure,
-                                             gint arg_num,
+

gimp_procedural_db_proc_arg ()

gboolean    gimp_procedural_db_proc_arg     (const gchar *procedure,
+                                             gint arg_num,
                                              GimpPDBArgType *arg_type,
-                                             gchar **arg_name,
-                                             gchar **arg_desc);

+ gchar **arg_name, + gchar **arg_desc);

Queries the procedural database for information on the specified procedure's argument.

This procedure returns information on the specified procedure's argument. The argument type, name, and a description are retrieved.

-

procedure : The procedure name. -
arg_num : The argument number. -
arg_type : The type of argument. -
arg_name : The name of the argument. -
arg_desc : A description of the argument. +

procedure : The procedure name. +
arg_num : The argument number. +
arg_type : The type of argument. +
arg_name : The name of the argument. +
arg_desc : A description of the argument.
Returns : TRUE on success. -

gimp_procedural_db_proc_val ()

gboolean    gimp_procedural_db_proc_val     (const gchar *procedure,
-                                             gint val_num,
+

gimp_procedural_db_proc_val ()

gboolean    gimp_procedural_db_proc_val     (const gchar *procedure,
+                                             gint val_num,
                                              GimpPDBArgType *val_type,
-                                             gchar **val_name,
-                                             gchar **val_desc);

+ gchar **val_name, + gchar **val_desc);

Queries the procedural database for information on the specified procedure's return value.

@@ -356,24 +196,20 @@ return value. The return value type, name, and a description are retrieved.

-

procedure : The procedure name. -
val_num : The return value number. -
val_type : The type of return value. -
val_name : The name of the return value. -
val_desc : A description of the return value. +

procedure : The procedure name. +
val_num : The return value number. +
val_type : The type of return value. +
val_name : The name of the return value. +
val_desc : A description of the return value.
Returns : TRUE on success. -

gimp_procedural_db_get_data_size ()

gint        gimp_procedural_db_get_data_size
-                                            (const gchar *identifier);

+


gimp_procedural_db_get_data_size ()

gint        gimp_procedural_db_get_data_size
+                                            (const gchar *identifier);

Returns size of data associated with the specified identifier.

This procedure returns the size of any data which may have been associated with the specified identifier. If no data has been associated with the identifier, an error is returned.

-

identifier : The identifier associated with data. +

identifier : The identifier associated with data.
Returns : The number of bytes in the data.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpprogress.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpprogress.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpprogress.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpprogress.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,171 +1,99 @@ -gimpprogress

gimpprogress

gimpprogress — Functions for embedding the progress bar into a plug-in's GUI.

Synopsis

+gimpprogress

gimpprogress

gimpprogress — Functions for embedding the progress bar into a plug-in's GUI.

Synopsis

 
 
 
-void        (*GimpProgressStartCallback)    (const gchar *message,
-                                             gboolean cancelable,
-                                             gpointer user_data);
-void        (*GimpProgressEndCallback)      (gpointer user_data);
-void        (*GimpProgressTextCallback)     (const gchar *message,
-                                             gpointer user_data);
-void        (*GimpProgressValueCallback)    (gdouble percentage,
-                                             gpointer user_data);
-gboolean    gimp_progress_init              (const gchar *message);
-gboolean    gimp_progress_update            (gdouble percentage);
-const gchar* gimp_progress_install          (GimpProgressStartCallback start_callback,
+void        (*GimpProgressStartCallback)    (const gchar *message,
+                                             gboolean cancelable,
+                                             gpointer user_data);
+void        (*GimpProgressEndCallback)      (gpointer user_data);
+void        (*GimpProgressTextCallback)     (const gchar *message,
+                                             gpointer user_data);
+void        (*GimpProgressValueCallback)    (gdouble percentage,
+                                             gpointer user_data);
+gboolean    gimp_progress_init              (const gchar *message);
+gboolean    gimp_progress_update            (gdouble percentage);
+const gchar* gimp_progress_install          (GimpProgressStartCallback start_callback,
                                              GimpProgressEndCallback end_callback,
                                              GimpProgressTextCallback text_callback,
                                              GimpProgressValueCallback value_callback,
-                                             gpointer user_data);
-gpointer    gimp_progress_uninstall         (const gchar *progress_callback);
-gboolean    gimp_progress_cancel            (const gchar *progress_callback);
-

Description

+ gpointer user_data); +gpointer gimp_progress_uninstall (const gchar *progress_callback); +gboolean gimp_progress_cancel (const gchar *progress_callback); +

Description

Functions for embedding the progress bar into a plug-in's GUI. -

Details

GimpProgressStartCallback ()

void        (*GimpProgressStartCallback)    (const gchar *message,
-                                             gboolean cancelable,
-                                             gpointer user_data);

- -

message : -
cancelable : -
user_data : - - -

GimpProgressEndCallback ()

void        (*GimpProgressEndCallback)      (gpointer user_data);

- -

user_data : - - -

GimpProgressTextCallback ()

void        (*GimpProgressTextCallback)     (const gchar *message,
-                                             gpointer user_data);

- -

message : -
user_data : - - -

GimpProgressValueCallback ()

void        (*GimpProgressValueCallback)    (gdouble percentage,
-                                             gpointer user_data);

- -

percentage : -
user_data : - - -

gimp_progress_init ()

gboolean    gimp_progress_init              (const gchar *message);

+

Details

GimpProgressStartCallback ()

void        (*GimpProgressStartCallback)    (const gchar *message,
+                                             gboolean cancelable,
+                                             gpointer user_data);

+ +

message : +
cancelable : +
user_data : + + +

GimpProgressEndCallback ()

void        (*GimpProgressEndCallback)      (gpointer user_data);

+ +

user_data : + + +

GimpProgressTextCallback ()

void        (*GimpProgressTextCallback)     (const gchar *message,
+                                             gpointer user_data);

+ +

message : +
user_data : + + +

GimpProgressValueCallback ()

void        (*GimpProgressValueCallback)    (gdouble percentage,
+                                             gpointer user_data);

+ +

percentage : +
user_data : + + +

gimp_progress_init ()

gboolean    gimp_progress_init              (const gchar *message);

Initializes the progress bar for the current plug-in.

Initializes the progress bar for the current plug-in. It is only valid to call this procedure from a plug-in.

-

message : Message to use in the progress dialog. +

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

gimp_progress_update ()

gboolean    gimp_progress_update            (gdouble percentage);

+


gimp_progress_update ()

gboolean    gimp_progress_update            (gdouble percentage);

Updates the progress bar for the current plug-in.

Updates the progress bar for the current plug-in. It is only valid to call this procedure from a plug-in.

-

percentage : Percentage of progress completed which must be between 0.0 and 1.0. +

percentage : Percentage of progress completed which must be between 0.0 and 1.0.
Returns : TRUE on success. -

gimp_progress_install ()

const gchar* gimp_progress_install          (GimpProgressStartCallback start_callback,
+

gimp_progress_install ()

const gchar* gimp_progress_install          (GimpProgressStartCallback start_callback,
                                              GimpProgressEndCallback end_callback,
                                              GimpProgressTextCallback text_callback,
                                              GimpProgressValueCallback value_callback,
-                                             gpointer user_data);

+ gpointer user_data);

-

start_callback : the function to call when progress starts -
end_callback : the function to call when progress finishes -
text_callback : the function to call to change the text -
value_callback : the function to call to change the value -
user_data : a pointer that is returned when uninstalling the progress +

start_callback : the function to call when progress starts +
end_callback : the function to call when progress finishes +
text_callback : the function to call to change the text +
value_callback : the function to call to change the value +
user_data : a pointer that is returned when uninstalling the progress
Returns : the name of the temporary procedure that's been installed

Since GIMP 2.2 -


gimp_progress_uninstall ()

gpointer    gimp_progress_uninstall         (const gchar *progress_callback);

+


gimp_progress_uninstall ()

gpointer    gimp_progress_uninstall         (const gchar *progress_callback);

Uninstalls a temporary progress procedure that was installed using -gimp_progress_install().

+gimp_progress_install().

-

progress_callback : the name of the temporary procedure to uninstall -
Returns : the user_data that was passed to gimp_progress_install(). +

progress_callback : the name of the temporary procedure to uninstall +
Returns : the user_data that was passed to gimp_progress_install().

Since GIMP 2.2 -


gimp_progress_cancel ()

gboolean    gimp_progress_cancel            (const gchar *progress_callback);

+


gimp_progress_cancel ()

gboolean    gimp_progress_cancel            (const gchar *progress_callback);

Cancels a running progress.

This function cancels the currently running progress.

-

progress_callback : The name of the callback registered for this progress. +

progress_callback : The name of the callback registered for this progress.
Returns : TRUE on success.

Since GIMP 2.2 diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpregioniterator.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpregioniterator.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpregioniterator.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpregioniterator.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,289 +1,177 @@ -gimpregioniterator

gimpregioniterator

gimpregioniterator — Functions to traverse a pixel regions.

Synopsis

+gimpregioniterator

gimpregioniterator

gimpregioniterator — Functions to traverse a pixel regions.

Synopsis

 
 
 
             GimpRgnIterator;
-void        (*GimpRgnFunc1)                 (const guchar *src,
-                                             gint bpp,
-                                             gpointer data);
-void        (*GimpRgnFunc2)                 (const guchar *src,
-                                             guchar *dest,
-                                             gint bpp,
-                                             gpointer data);
-void        (*GimpRgnFuncSrc)               (gint x,
-                                             gint y,
-                                             const guchar *src,
-                                             gint bpp,
-                                             gpointer data);
-void        (*GimpRgnFuncDest)              (gint x,
-                                             gint y,
-                                             guchar *dest,
-                                             gint bpp,
-                                             gpointer data);
-void        (*GimpRgnFuncSrcDest)           (gint x,
-                                             gint y,
-                                             const guchar *src,
-                                             guchar *dest,
-                                             gint bpp,
-                                             gpointer data);
+void        (*GimpRgnFunc1)                 (const guchar *src,
+                                             gint bpp,
+                                             gpointer data);
+void        (*GimpRgnFunc2)                 (const guchar *src,
+                                             guchar *dest,
+                                             gint bpp,
+                                             gpointer data);
+void        (*GimpRgnFuncSrc)               (gint x,
+                                             gint y,
+                                             const guchar *src,
+                                             gint bpp,
+                                             gpointer data);
+void        (*GimpRgnFuncDest)              (gint x,
+                                             gint y,
+                                             guchar *dest,
+                                             gint bpp,
+                                             gpointer data);
+void        (*GimpRgnFuncSrcDest)           (gint x,
+                                             gint y,
+                                             const guchar *src,
+                                             guchar *dest,
+                                             gint bpp,
+                                             gpointer data);
 GimpRgnIterator* gimp_rgn_iterator_new      (GimpDrawable *drawable,
                                              GimpRunMode unused);
 void        gimp_rgn_iterator_free          (GimpRgnIterator *iter);
 void        gimp_rgn_iterator_src           (GimpRgnIterator *iter,
                                              GimpRgnFuncSrc func,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_rgn_iterator_dest          (GimpRgnIterator *iter,
                                              GimpRgnFuncDest func,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_rgn_iterator_src_dest      (GimpRgnIterator *iter,
                                              GimpRgnFuncSrcDest func,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_rgn_iterate1               (GimpDrawable *drawable,
                                              GimpRunMode unused,
                                              GimpRgnFunc1 func,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_rgn_iterate2               (GimpDrawable *drawable,
                                              GimpRunMode unused,
                                              GimpRgnFunc2 func,
-                                             gpointer data);
-

Description

+ gpointer data); +

Description

The GimpRgnIterator functions provide a variety of common ways to traverse a PixelRegion, using a pre-defined function pointer per pixel. -

Details

GimpRgnIterator

typedef struct _GimpRgnIterator GimpRgnIterator;

+

Details

GimpRgnIterator

typedef struct _GimpRgnIterator GimpRgnIterator;

-


GimpRgnFunc1 ()

void        (*GimpRgnFunc1)                 (const guchar *src,
-                                             gint bpp,
-                                             gpointer data);

- -

src : -
bpp : -
data : - - -

GimpRgnFunc2 ()

void        (*GimpRgnFunc2)                 (const guchar *src,
-                                             guchar *dest,
-                                             gint bpp,
-                                             gpointer data);

- -

src : -
dest : -
bpp : -
data : - - -

GimpRgnFuncSrc ()

void        (*GimpRgnFuncSrc)               (gint x,
-                                             gint y,
-                                             const guchar *src,
-                                             gint bpp,
-                                             gpointer data);

- -

x : -
y : -
src : -
bpp : -
data : - - -

GimpRgnFuncDest ()

void        (*GimpRgnFuncDest)              (gint x,
-                                             gint y,
-                                             guchar *dest,
-                                             gint bpp,
-                                             gpointer data);

- -

x : -
y : -
dest : -
bpp : -
data : - - -

GimpRgnFuncSrcDest ()

void        (*GimpRgnFuncSrcDest)           (gint x,
-                                             gint y,
-                                             const guchar *src,
-                                             guchar *dest,
-                                             gint bpp,
-                                             gpointer data);

- -

x : -
y : -
src : -
dest : -
bpp : -
data : +


GimpRgnFunc1 ()

void        (*GimpRgnFunc1)                 (const guchar *src,
+                                             gint bpp,
+                                             gpointer data);

+ +

src : +
bpp : +
data : + + +

GimpRgnFunc2 ()

void        (*GimpRgnFunc2)                 (const guchar *src,
+                                             guchar *dest,
+                                             gint bpp,
+                                             gpointer data);

+ +

src : +
dest : +
bpp : +
data : + + +

GimpRgnFuncSrc ()

void        (*GimpRgnFuncSrc)               (gint x,
+                                             gint y,
+                                             const guchar *src,
+                                             gint bpp,
+                                             gpointer data);

+ +

x : +
y : +
src : +
bpp : +
data : + + +

GimpRgnFuncDest ()

void        (*GimpRgnFuncDest)              (gint x,
+                                             gint y,
+                                             guchar *dest,
+                                             gint bpp,
+                                             gpointer data);

+ +

x : +
y : +
dest : +
bpp : +
data : + + +

GimpRgnFuncSrcDest ()

void        (*GimpRgnFuncSrcDest)           (gint x,
+                                             gint y,
+                                             const guchar *src,
+                                             guchar *dest,
+                                             gint bpp,
+                                             gpointer data);

+ +

x : +
y : +
src : +
dest : +
bpp : +
data : -

gimp_rgn_iterator_new ()

GimpRgnIterator* gimp_rgn_iterator_new      (GimpDrawable *drawable,
+

gimp_rgn_iterator_new ()

GimpRgnIterator* gimp_rgn_iterator_new      (GimpDrawable *drawable,
                                              GimpRunMode unused);

-Creates a new GimpRgnIterator for drawable. The GimpRunMode +Creates a new GimpRgnIterator for drawable. The GimpRunMode parameter is ignored.

-

drawable : a GimpDrawable -
unused : ignored +

drawable : a GimpDrawable +
unused : ignored
Returns : a newly allocated GimpRgnIterator. -

gimp_rgn_iterator_free ()

void        gimp_rgn_iterator_free          (GimpRgnIterator *iter);

-Frees the resources allocated for iter.

+


gimp_rgn_iterator_free ()

void        gimp_rgn_iterator_free          (GimpRgnIterator *iter);

+Frees the resources allocated for iter.

-

iter : a GimpRgnIterator -

gimp_rgn_iterator_src ()

void        gimp_rgn_iterator_src           (GimpRgnIterator *iter,
+

iter : a GimpRgnIterator +

gimp_rgn_iterator_src ()

void        gimp_rgn_iterator_src           (GimpRgnIterator *iter,
                                              GimpRgnFuncSrc func,
-                                             gpointer data);

+ gpointer data);

-

iter : -
func : -
data : +

iter : +
func : +
data : -

gimp_rgn_iterator_dest ()

void        gimp_rgn_iterator_dest          (GimpRgnIterator *iter,
+

gimp_rgn_iterator_dest ()

void        gimp_rgn_iterator_dest          (GimpRgnIterator *iter,
                                              GimpRgnFuncDest func,
-                                             gpointer data);

+ gpointer data);

-

iter : -
func : -
data : +

iter : +
func : +
data : -

gimp_rgn_iterator_src_dest ()

void        gimp_rgn_iterator_src_dest      (GimpRgnIterator *iter,
+

gimp_rgn_iterator_src_dest ()

void        gimp_rgn_iterator_src_dest      (GimpRgnIterator *iter,
                                              GimpRgnFuncSrcDest func,
-                                             gpointer data);

+ gpointer data);

-

iter : -
func : -
data : +

iter : +
func : +
data : -

gimp_rgn_iterate1 ()

void        gimp_rgn_iterate1               (GimpDrawable *drawable,
+

gimp_rgn_iterate1 ()

void        gimp_rgn_iterate1               (GimpDrawable *drawable,
                                              GimpRunMode unused,
                                              GimpRgnFunc1 func,
-                                             gpointer data);

+ gpointer data);

-

drawable : -
unused : -
func : -
data : +

drawable : +
unused : +
func : +
data : -

gimp_rgn_iterate2 ()

void        gimp_rgn_iterate2               (GimpDrawable *drawable,
+

gimp_rgn_iterate2 ()

void        gimp_rgn_iterate2               (GimpDrawable *drawable,
                                              GimpRunMode unused,
                                              GimpRgnFunc2 func,
-                                             gpointer data);

- -

drawable : -
unused : -
func : -
data : + gpointer data);

+ +

drawable : +
unused : +
func : +
data :
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpselection.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpselection.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpselection.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpselection.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,169 +1,51 @@ -gimpselection

gimpselection

gimpselection — Functions for manipulating selections.

Synopsis

+gimpselection

gimpselection

gimpselection — Functions for manipulating selections.

Synopsis

 
 
 
-gboolean    gimp_selection_bounds           (gint32 image_ID,
-                                             gboolean *non_empty,
-                                             gint *x1,
-                                             gint *y1,
-                                             gint *x2,
-                                             gint *y2);
-gboolean    gimp_selection_all              (gint32 image_ID);
-gboolean    gimp_selection_none             (gint32 image_ID);
-gboolean    gimp_selection_clear            (gint32 image_ID);
-gboolean    gimp_selection_is_empty         (gint32 image_ID);
-gint32      gimp_selection_float            (gint32 image_ID,
-                                             gint32 drawable_ID,
-                                             gint offx,
-                                             gint offy);
-gboolean    gimp_selection_load             (gint32 channel_ID);
-gint32      gimp_selection_save             (gint32 image_ID);
-gint        gimp_selection_value            (gint32 image_ID,
-                                             gint x,
-                                             gint y);
-gboolean    gimp_selection_grow             (gint32 image_ID,
-                                             gint steps);
-gboolean    gimp_selection_shrink           (gint32 image_ID,
-                                             gint radius);
-gboolean    gimp_selection_invert           (gint32 image_ID);
-gboolean    gimp_selection_feather          (gint32 image_ID,
-                                             gdouble radius);
-gboolean    gimp_selection_sharpen          (gint32 image_ID);
-gboolean    gimp_selection_border           (gint32 image_ID,
-                                             gint radius);
-gboolean    gimp_selection_translate        (gint32 image_ID,
-                                             gint offx,
-                                             gint offy);
-gboolean    gimp_selection_layer_alpha      (gint32 layer_ID);
-gboolean    gimp_selection_combine          (gint32 channel_ID,
+gboolean    gimp_selection_bounds           (gint32 image_ID,
+                                             gboolean *non_empty,
+                                             gint *x1,
+                                             gint *y1,
+                                             gint *x2,
+                                             gint *y2);
+gboolean    gimp_selection_all              (gint32 image_ID);
+gboolean    gimp_selection_none             (gint32 image_ID);
+gboolean    gimp_selection_clear            (gint32 image_ID);
+gboolean    gimp_selection_is_empty         (gint32 image_ID);
+gint32      gimp_selection_float            (gint32 image_ID,
+                                             gint32 drawable_ID,
+                                             gint offx,
+                                             gint offy);
+gboolean    gimp_selection_load             (gint32 channel_ID);
+gint32      gimp_selection_save             (gint32 image_ID);
+gint        gimp_selection_value            (gint32 image_ID,
+                                             gint x,
+                                             gint y);
+gboolean    gimp_selection_grow             (gint32 image_ID,
+                                             gint steps);
+gboolean    gimp_selection_shrink           (gint32 image_ID,
+                                             gint radius);
+gboolean    gimp_selection_invert           (gint32 image_ID);
+gboolean    gimp_selection_feather          (gint32 image_ID,
+                                             gdouble radius);
+gboolean    gimp_selection_sharpen          (gint32 image_ID);
+gboolean    gimp_selection_border           (gint32 image_ID,
+                                             gint radius);
+gboolean    gimp_selection_translate        (gint32 image_ID,
+                                             gint offx,
+                                             gint offy);
+gboolean    gimp_selection_layer_alpha      (gint32 layer_ID);
+gboolean    gimp_selection_combine          (gint32 channel_ID,
                                              GimpChannelOps operation);
-

Description

+

Description

Functions for manipulating selections. -

Details

gimp_selection_bounds ()

gboolean    gimp_selection_bounds           (gint32 image_ID,
-                                             gboolean *non_empty,
-                                             gint *x1,
-                                             gint *y1,
-                                             gint *x2,
-                                             gint *y2);

+

Details

gimp_selection_bounds ()

gboolean    gimp_selection_bounds           (gint32 image_ID,
+                                             gboolean *non_empty,
+                                             gint *x1,
+                                             gint *y1,
+                                             gint *x2,
+                                             gint *y2);

Find the bounding box of the current selection.

This procedure returns whether there is a selection for the @@ -175,72 +57,46 @@ pixel. This means the width of the selection can be calculated as (x2 - x1), its height as (y2 - y1).

-

image_ID : The image. -
non_empty : True if there is a selection. -
x1 : x coordinate of upper left corner of selection bounds. -
y1 : y coordinate of upper left corner of selection bounds. -
x2 : x coordinate of lower right corner of selection bounds. -
y2 : y coordinate of lower right corner of selection bounds. -
Returns : TRUE on success. -

gimp_selection_all ()

gboolean    gimp_selection_all              (gint32 image_ID);

+

image_ID : The image. +
non_empty : True if there is a selection. +
x1 : x coordinate of upper left corner of selection bounds. +
y1 : y coordinate of upper left corner of selection bounds. +
x2 : x coordinate of lower right corner of selection bounds. +
y2 : y coordinate of lower right corner of selection bounds. +
Returns : TRUE on success. +

gimp_selection_all ()

gboolean    gimp_selection_all              (gint32 image_ID);

Select all of the image.

This procedure sets the selection mask to completely encompass the image. Every pixel in the selection channel is set to 255.

-

image_ID : The image. +

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

gimp_selection_none ()

gboolean    gimp_selection_none             (gint32 image_ID);

+


gimp_selection_none ()

gboolean    gimp_selection_none             (gint32 image_ID);

Deselect the entire image.

This procedure deselects the entire image. Every pixel in the selection channel is set to 0.

-

image_ID : The image. +

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

gimp_selection_clear ()

gboolean    gimp_selection_clear            (gint32 image_ID);

Warning

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

+This procedure is deprecated! Use gimp_selection_none() instead.

+ +

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

gimp_selection_clear ()

gboolean    gimp_selection_clear            (gint32 image_ID);

Warning

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

-This procedure is deprecated! Use gimp_selection_none() instead.

- -

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

gimp_selection_is_empty ()

gboolean    gimp_selection_is_empty         (gint32 image_ID);

+


gimp_selection_is_empty ()

gboolean    gimp_selection_is_empty         (gint32 image_ID);

Determine whether the selection is empty.

This procedure returns non-zero if the selection for the specified image is not empty.

-

image_ID : The image. +

image_ID : The image.
Returns : Is the selection empty? -

gimp_selection_float ()

gint32      gimp_selection_float            (gint32 image_ID,
-                                             gint32 drawable_ID,
-                                             gint offx,
-                                             gint offy);

+


gimp_selection_float ()

gint32      gimp_selection_float            (gint32 image_ID,
+                                             gint32 drawable_ID,
+                                             gint offx,
+                                             gint offy);

Float the selection from the specified drawable with initial offsets as specified.

@@ -250,121 +106,79 @@ instantiated as a floating selection. The offsets allow initial positioning of the new floating selection.

-

image_ID : ignored -
drawable_ID : The drawable from which to float selection. -
offx : x offset for translation. -
offy : y offset for translation. +

image_ID : ignored +
drawable_ID : The drawable from which to float selection. +
offx : x offset for translation. +
offy : y offset for translation.
Returns : The floated layer. -

gimp_selection_load ()

gboolean    gimp_selection_load             (gint32 channel_ID);

+


gimp_selection_load ()

gboolean    gimp_selection_load             (gint32 channel_ID);

Transfer the specified channel to the selection mask.

This procedure loads the specified channel into the selection mask.

-

channel_ID : The channel. +

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

gimp_selection_save ()

gint32      gimp_selection_save             (gint32 image_ID);

+


gimp_selection_save ()

gint32      gimp_selection_save             (gint32 image_ID);

Copy the selection mask to a new channel.

This procedure copies the selection mask and stores the content in a new channel. The new channel is automatically inserted into the image's list of channels.

-

image_ID : The image. +

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

gimp_selection_value ()

gint        gimp_selection_value            (gint32 image_ID,
-                                             gint x,
-                                             gint y);

+


gimp_selection_value ()

gint        gimp_selection_value            (gint32 image_ID,
+                                             gint x,
+                                             gint y);

Find the value of the selection at the specified coordinates.

This procedure returns the value of the selection at the specified coordinates. If the coordinates lie out of bounds, 0 is returned.

-

image_ID : The image. -
x : x coordinate of value. -
y : y coordinate of value. +

image_ID : The image. +
x : x coordinate of value. +
y : y coordinate of value.
Returns : Value of the selection. -

gimp_selection_grow ()

gboolean    gimp_selection_grow             (gint32 image_ID,
-                                             gint steps);

+


gimp_selection_grow ()

gboolean    gimp_selection_grow             (gint32 image_ID,
+                                             gint steps);

Grow the image's selection

This procedure grows the selection. Growing involves expanding the boundary in all directions by the specified pixel amount.

-

image_ID : The image. -
steps : Steps of grow (in pixels). +

image_ID : The image. +
steps : Steps of grow (in pixels).
Returns : TRUE on success. -

gimp_selection_shrink ()

gboolean    gimp_selection_shrink           (gint32 image_ID,
-                                             gint radius);

+


gimp_selection_shrink ()

gboolean    gimp_selection_shrink           (gint32 image_ID,
+                                             gint radius);

Shrink the image's selection

This procedure shrinks the selection. Shrinking invovles trimming the existing selection boundary on all sides by the specified number of pixels.

-

image_ID : The image. -
radius : Radius of shrink (in pixels). +

image_ID : The image. +
radius : Radius of shrink (in pixels).
Returns : TRUE on success. -

gimp_selection_invert ()

gboolean    gimp_selection_invert           (gint32 image_ID);

+


gimp_selection_invert ()

gboolean    gimp_selection_invert           (gint32 image_ID);

Invert the selection mask.

This procedure inverts the selection mask. For every pixel in the selection channel, its new value is calculated as (255 - old_value).

-

image_ID : The image. +

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

gimp_selection_feather ()

gboolean    gimp_selection_feather          (gint32 image_ID,
-                                             gdouble radius);

+


gimp_selection_feather ()

gboolean    gimp_selection_feather          (gint32 image_ID,
+                                             gdouble radius);

Feather the image's selection

This procedure feathers the selection. Feathering is implemented using a gaussian blur.

-

image_ID : The image. -
radius : Radius of feather (in pixels). +

image_ID : The image. +
radius : Radius of feather (in pixels).
Returns : TRUE on success. -

gimp_selection_sharpen ()

gboolean    gimp_selection_sharpen          (gint32 image_ID);

+


gimp_selection_sharpen ()

gboolean    gimp_selection_sharpen          (gint32 image_ID);

Sharpen the selection mask.

This procedure sharpens the selection mask. For every pixel in the @@ -372,36 +186,22 @@ a value of 255. This removes any \"anti-aliasing\" that might exist in the selection mask's boundary.

-

image_ID : The image. +

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

gimp_selection_border ()

gboolean    gimp_selection_border           (gint32 image_ID,
-                                             gint radius);

+


gimp_selection_border ()

gboolean    gimp_selection_border           (gint32 image_ID,
+                                             gint radius);

Border the image's selection

This procedure borders the selection. Bordering creates a new selection which is defined along the boundary of the previous selection at every point within the specified radius.

-

image_ID : The image. -
radius : Radius of border (in pixels). +

image_ID : The image. +
radius : Radius of border (in pixels).
Returns : TRUE on success. -

gimp_selection_translate ()

gboolean    gimp_selection_translate        (gint32 image_ID,
-                                             gint offx,
-                                             gint offy);

+


gimp_selection_translate ()

gboolean    gimp_selection_translate        (gint32 image_ID,
+                                             gint offx,
+                                             gint offy);

Translate the selection by the specified offsets.

This procedure actually translates the selection for the specified @@ -410,15 +210,11 @@ the selection which are translated beyond the bounds of the image because of this call are lost.

-

image_ID : The image. -
offx : x offset for translation. -
offy : y offset for translation. -
Returns : TRUE on success. -

gimp_selection_layer_alpha ()

gboolean    gimp_selection_layer_alpha      (gint32 layer_ID);

+

image_ID : The image. +
offx : x offset for translation. +
offy : y offset for translation. +
Returns : TRUE on success. +

gimp_selection_layer_alpha ()

gboolean    gimp_selection_layer_alpha      (gint32 layer_ID);

Transfer the specified layer's alpha channel to the selection mask.

This procedure requires a layer with an alpha channel. The alpha @@ -428,20 +224,16 @@ layer is undefined at a particular image pixel, the associated selection mask value is set to 0.

-

layer_ID : Layer with alpha. +

layer_ID : Layer with alpha.
Returns : TRUE on success. -

gimp_selection_combine ()

gboolean    gimp_selection_combine          (gint32 channel_ID,
+

gimp_selection_combine ()

gboolean    gimp_selection_combine          (gint32 channel_ID,
                                              GimpChannelOps operation);

Combines the specified channel with the selection mask.

This procedure combines the specified channel into the selection mask.

-

channel_ID : The channel. -
operation : The selection operation. +

channel_ID : The channel. +
operation : The selection operation.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimptexttool.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimptexttool.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimptexttool.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimptexttool.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,190 +1,70 @@ -gimptexttool

gimptexttool

gimptexttool — Functions for controlling the text tool.

Synopsis

+gimptexttool

gimptexttool

gimptexttool — Functions for controlling the text tool.

Synopsis

 
 
 
-gint32      gimp_text_fontname              (gint32 image_ID,
-                                             gint32 drawable_ID,
-                                             gdouble x,
-                                             gdouble y,
-                                             const gchar *text,
-                                             gint border,
-                                             gboolean antialias,
-                                             gdouble size,
-                                             GimpSizeType size_type,
-                                             const gchar *fontname);
-gboolean    gimp_text_get_extents_fontname  (const gchar *text,
-                                             gdouble size,
-                                             GimpSizeType size_type,
-                                             const gchar *fontname,
-                                             gint *width,
-                                             gint *height,
-                                             gint *ascent,
-                                             gint *descent);
-gint32      gimp_text                       (gint32 image_ID,
-                                             gint32 drawable_ID,
-                                             gdouble x,
-                                             gdouble y,
-                                             const gchar *text,
-                                             gint border,
-                                             gboolean antialias,
-                                             gdouble size,
-                                             GimpSizeType size_type,
-                                             const gchar *foundry,
-                                             const gchar *family,
-                                             const gchar *weight,
-                                             const gchar *slant,
-                                             const gchar *set_width,
-                                             const gchar *spacing,
-                                             const gchar *registry,
-                                             const gchar *encoding);
-gboolean    gimp_text_get_extents           (const gchar *text,
-                                             gdouble size,
-                                             GimpSizeType size_type,
-                                             const gchar *foundry,
-                                             const gchar *family,
-                                             const gchar *weight,
-                                             const gchar *slant,
-                                             const gchar *set_width,
-                                             const gchar *spacing,
-                                             const gchar *registry,
-                                             const gchar *encoding,
-                                             gint *width,
-                                             gint *height,
-                                             gint *ascent,
-                                             gint *descent);
-

Description

+gint32 gimp_text_fontname (gint32 image_ID, + gint32 drawable_ID, + gdouble x, + gdouble y, + const gchar *text, + gint border, + gboolean antialias, + gdouble size, + GimpSizeType size_type, + const gchar *fontname); +gboolean gimp_text_get_extents_fontname (const gchar *text, + gdouble size, + GimpSizeType size_type, + const gchar *fontname, + gint *width, + gint *height, + gint *ascent, + gint *descent); +gint32 gimp_text (gint32 image_ID, + gint32 drawable_ID, + gdouble x, + gdouble y, + const gchar *text, + gint border, + gboolean antialias, + gdouble size, + GimpSizeType size_type, + const gchar *foundry, + const gchar *family, + const gchar *weight, + const gchar *slant, + const gchar *set_width, + const gchar *spacing, + const gchar *registry, + const gchar *encoding); +gboolean gimp_text_get_extents (const gchar *text, + gdouble size, + GimpSizeType size_type, + const gchar *foundry, + const gchar *family, + const gchar *weight, + const gchar *slant, + const gchar *set_width, + const gchar *spacing, + const gchar *registry, + const gchar *encoding, + gint *width, + gint *height, + gint *ascent, + gint *descent); +

Description

Functions for controlling the text tool. -

Details

gimp_text_fontname ()

gint32      gimp_text_fontname              (gint32 image_ID,
-                                             gint32 drawable_ID,
-                                             gdouble x,
-                                             gdouble y,
-                                             const gchar *text,
-                                             gint border,
-                                             gboolean antialias,
-                                             gdouble size,
+

Details

gimp_text_fontname ()

gint32      gimp_text_fontname              (gint32 image_ID,
+                                             gint32 drawable_ID,
+                                             gdouble x,
+                                             gdouble y,
+                                             const gchar *text,
+                                             gint border,
+                                             gboolean antialias,
+                                             gdouble size,
                                              GimpSizeType size_type,
-                                             const gchar *fontname);

+ const gchar *fontname);

Add text at the specified location as a floating selection or a new layer.

@@ -199,189 +79,109 @@ Finally, a border can be specified around the final rendered text. The border is measured in pixels.

-

image_ID : The image. -
drawable_ID : The affected drawable: (-1 for a new text layer). -
x : The x coordinate for the left of the text bounding box. -
y : The y coordinate for the top of the text bounding box. -
text : The text to generate (in UTF-8 encoding). -
border : The size of the border. -
antialias : Antialiasing. -
size : The size of text in either pixels or points. -
size_type : The units of specified size. -
fontname : The name of the font. +

image_ID : The image. +
drawable_ID : The affected drawable: (-1 for a new text layer). +
x : The x coordinate for the left of the text bounding box. +
y : The y coordinate for the top of the text bounding box. +
text : The text to generate (in UTF-8 encoding). +
border : The size of the border. +
antialias : Antialiasing. +
size : The size of text in either pixels or points. +
size_type : The units of specified size. +
fontname : The name of the font.
Returns : The new text layer or -1 if no layer was created. -

gimp_text_get_extents_fontname ()

gboolean    gimp_text_get_extents_fontname  (const gchar *text,
-                                             gdouble size,
+

gimp_text_get_extents_fontname ()

gboolean    gimp_text_get_extents_fontname  (const gchar *text,
+                                             gdouble size,
                                              GimpSizeType size_type,
-                                             const gchar *fontname,
-                                             gint *width,
-                                             gint *height,
-                                             gint *ascent,
-                                             gint *descent);

+ const gchar *fontname, + gint *width, + gint *height, + gint *ascent, + gint *descent);

Get extents of the bounding box for the specified text.

This tool returns the width and height of a bounding box for the specified text string with the specified font information. Ascent and descent for the specified font are returned as well.

-

text : The text to generate (in UTF-8 encoding). -
size : The size of text in either pixels or points. -
size_type : The units of specified size. -
fontname : The name of the font. -
width : The width of the specified font. -
height : The height of the specified font. -
ascent : The ascent of the specified font. -
descent : The descent of the specified font. +

text : The text to generate (in UTF-8 encoding). +
size : The size of text in either pixels or points. +
size_type : The units of specified size. +
fontname : The name of the font. +
width : The width of the specified font. +
height : The height of the specified font. +
ascent : The ascent of the specified font. +
descent : The descent of the specified font.
Returns : TRUE on success. -

gimp_text ()

gint32      gimp_text                       (gint32 image_ID,
-                                             gint32 drawable_ID,
-                                             gdouble x,
-                                             gdouble y,
-                                             const gchar *text,
-                                             gint border,
-                                             gboolean antialias,
-                                             gdouble size,
-                                             GimpSizeType size_type,
-                                             const gchar *foundry,
-                                             const gchar *family,
-                                             const gchar *weight,
-                                             const gchar *slant,
-                                             const gchar *set_width,
-                                             const gchar *spacing,
-                                             const gchar *registry,
-                                             const gchar *encoding);

Warning

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

-This procedure is deprecated! Use gimp_text_fontname() instead.

- -

image_ID : The image. -
drawable_ID : The affected drawable: (-1 for a new text layer). -
x : The x coordinate for the left of the text bounding box. -
y : The y coordinate for the top of the text bounding box. -
text : The text to generate (in UTF-8 encoding). -
border : The size of the border. -
antialias : Antialiasing. -
size : The size of text in either pixels or points. -
size_type : The units of specified size. -
foundry : The font foundry. -
family : The font family. -
weight : The font weight. -
slant : The font slant. -
set_width : The font set-width. -
spacing : The font spacing. -
registry : The font registry. -
encoding : The font encoding. +

gimp_text ()

gint32      gimp_text                       (gint32 image_ID,
+                                             gint32 drawable_ID,
+                                             gdouble x,
+                                             gdouble y,
+                                             const gchar *text,
+                                             gint border,
+                                             gboolean antialias,
+                                             gdouble size,
+                                             GimpSizeType size_type,
+                                             const gchar *foundry,
+                                             const gchar *family,
+                                             const gchar *weight,
+                                             const gchar *slant,
+                                             const gchar *set_width,
+                                             const gchar *spacing,
+                                             const gchar *registry,
+                                             const gchar *encoding);

Warning

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

+This procedure is deprecated! Use gimp_text_fontname() instead.

+ +

image_ID : The image. +
drawable_ID : The affected drawable: (-1 for a new text layer). +
x : The x coordinate for the left of the text bounding box. +
y : The y coordinate for the top of the text bounding box. +
text : The text to generate (in UTF-8 encoding). +
border : The size of the border. +
antialias : Antialiasing. +
size : The size of text in either pixels or points. +
size_type : The units of specified size. +
foundry : The font foundry. +
family : The font family. +
weight : The font weight. +
slant : The font slant. +
set_width : The font set-width. +
spacing : The font spacing. +
registry : The font registry. +
encoding : The font encoding.
Returns : The new text layer or -1 if no layer was created. -

gimp_text_get_extents ()

gboolean    gimp_text_get_extents           (const gchar *text,
-                                             gdouble size,
+

gimp_text_get_extents ()

gboolean    gimp_text_get_extents           (const gchar *text,
+                                             gdouble size,
                                              GimpSizeType size_type,
-                                             const gchar *foundry,
-                                             const gchar *family,
-                                             const gchar *weight,
-                                             const gchar *slant,
-                                             const gchar *set_width,
-                                             const gchar *spacing,
-                                             const gchar *registry,
-                                             const gchar *encoding,
-                                             gint *width,
-                                             gint *height,
-                                             gint *ascent,
-                                             gint *descent);

Warning

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

-This procedure is deprecated! Use gimp_text_get_extents_fontname() + const gchar *foundry, + const gchar *family, + const gchar *weight, + const gchar *slant, + const gchar *set_width, + const gchar *spacing, + const gchar *registry, + const gchar *encoding, + gint *width, + gint *height, + gint *ascent, + gint *descent);

Warning

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

+This procedure is deprecated! Use gimp_text_get_extents_fontname() instead.

-

text : The text to generate (in UTF-8 encoding). -
size : The size of text in either pixels or points. -
size_type : The units of specified size. -
foundry : The font foundry. -
family : The font family. -
weight : The font weight. -
slant : The font slant. -
set_width : The font set-width. -
spacing : The font spacing. -
registry : The font registry. -
encoding : The font encoding. -
width : The width of the specified font. -
height : The height of the specified font. -
ascent : The ascent of the specified font. -
descent : The descent of the specified font. +

text : The text to generate (in UTF-8 encoding). +
size : The size of text in either pixels or points. +
size_type : The units of specified size. +
foundry : The font foundry. +
family : The font family. +
weight : The font weight. +
slant : The font slant. +
set_width : The font set-width. +
spacing : The font spacing. +
registry : The font registry. +
encoding : The font encoding. +
width : The width of the specified font. +
height : The height of the specified font. +
ascent : The ascent of the specified font. +
descent : The descent of the specified font.
Returns : TRUE on success.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimptile.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimptile.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimptile.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimptile.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,4 +1,4 @@ -gimptile

gimptile

gimptile — Functions for working with tiles.

Synopsis

+gimptile

gimptile

gimptile — Functions for working with tiles.

Synopsis

 
 
 
@@ -6,20 +6,14 @@
 void        gimp_tile_ref                   (GimpTile *tile);
 void        gimp_tile_ref_zero              (GimpTile *tile);
 void        gimp_tile_unref                 (GimpTile *tile,
-                                             gboolean dirty);
+                                             gboolean dirty);
 void        gimp_tile_flush                 (GimpTile *tile);
-void        gimp_tile_cache_size            (gulong kilobytes);
-void        gimp_tile_cache_ntiles          (gulong ntiles);
-

Description

+void gimp_tile_cache_size (gulong kilobytes); +void gimp_tile_cache_ntiles (gulong ntiles); +

Description

Functions for working with tiles. -

Details

GimpTile

typedef struct {
+

Details

GimpTile

typedef struct {
   guint         ewidth;     /* the effective width of the tile */
   guint         eheight;    /* the effective height of the tile */
   guint         bpp;        /* the bytes per pixel (1, 2, 3 or 4 ) */
@@ -32,43 +26,37 @@
 } GimpTile;
 

-


gimp_tile_ref ()

void        gimp_tile_ref                   (GimpTile *tile);

+


gimp_tile_ref ()

void        gimp_tile_ref                   (GimpTile *tile);

-

tile : +

tile : -

gimp_tile_ref_zero ()

void        gimp_tile_ref_zero              (GimpTile *tile);

+


gimp_tile_ref_zero ()

void        gimp_tile_ref_zero              (GimpTile *tile);

-

tile : +

tile : -

gimp_tile_unref ()

void        gimp_tile_unref                 (GimpTile *tile,
-                                             gboolean dirty);

+


gimp_tile_unref ()

void        gimp_tile_unref                 (GimpTile *tile,
+                                             gboolean dirty);

-

tile : -
dirty : +

tile : +
dirty : -

gimp_tile_flush ()

void        gimp_tile_flush                 (GimpTile *tile);

+


gimp_tile_flush ()

void        gimp_tile_flush                 (GimpTile *tile);

-

tile : +

tile : -

gimp_tile_cache_size ()

void        gimp_tile_cache_size            (gulong kilobytes);

+


gimp_tile_cache_size ()

void        gimp_tile_cache_size            (gulong kilobytes);

Sets the size of the tile cache on the plug-in side. The tile cache is used to reduce the number of tiles exchanged between the GIMP core -and the plug-in. See also gimp_tile_cache_ntiles().

+and the plug-in. See also gimp_tile_cache_ntiles().

-

kilobytes : new cache size in kilobytes -

gimp_tile_cache_ntiles ()

void        gimp_tile_cache_ntiles          (gulong ntiles);

+

kilobytes : new cache size in kilobytes +

gimp_tile_cache_ntiles ()

void        gimp_tile_cache_ntiles          (gulong ntiles);

Sets the size of the tile cache on the plug-in side. This function -is similar to gimp_tile_cache_size() but allows to specify the +is similar to gimp_tile_cache_size() but allows to specify the number of tiles directly.

If your plug-in access pixels tile-by-tile, it doesn't need a tile @@ -77,5 +65,5 @@ number of tiles per row. Double this size if your plug-in uses shadow tiles.

-

ntiles : number of tiles that should fit into the cache +

ntiles : number of tiles that should fit into the cache
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimptools.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimptools.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimptools.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimptools.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,456 +1,152 @@ -gimptools

gimptools

gimptools — Access to common toolbox tools.

Synopsis

+gimptools

gimptools

gimptools — Access to common toolbox tools.

Synopsis

 
 
 
-gboolean    gimp_airbrush                   (gint32 drawable_ID,
-                                             gdouble pressure,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gboolean    gimp_airbrush_default           (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gboolean    gimp_by_color_select            (gint32 drawable_ID,
+gboolean    gimp_airbrush                   (gint32 drawable_ID,
+                                             gdouble pressure,
+                                             gint num_strokes,
+                                             const gdouble *strokes);
+gboolean    gimp_airbrush_default           (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);
+gboolean    gimp_by_color_select            (gint32 drawable_ID,
                                              const GimpRGB *color,
-                                             gint threshold,
+                                             gint threshold,
                                              GimpChannelOps operation,
-                                             gboolean antialias,
-                                             gboolean feather,
-                                             gdouble feather_radius,
-                                             gboolean sample_merged);
-gboolean    gimp_clone                      (gint32 drawable_ID,
-                                             gint32 src_drawable_ID,
+                                             gboolean antialias,
+                                             gboolean feather,
+                                             gdouble feather_radius,
+                                             gboolean sample_merged);
+gboolean    gimp_clone                      (gint32 drawable_ID,
+                                             gint32 src_drawable_ID,
                                              GimpCloneType clone_type,
-                                             gdouble src_x,
-                                             gdouble src_y,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gboolean    gimp_clone_default              (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gboolean    gimp_convolve                   (gint32 drawable_ID,
-                                             gdouble pressure,
+                                             gdouble src_x,
+                                             gdouble src_y,
+                                             gint num_strokes,
+                                             const gdouble *strokes);
+gboolean    gimp_clone_default              (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);
+gboolean    gimp_convolve                   (gint32 drawable_ID,
+                                             gdouble pressure,
                                              GimpConvolveType convolve_type,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gboolean    gimp_convolve_default           (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gboolean    gimp_dodgeburn                  (gint32 drawable_ID,
-                                             gdouble exposure,
+                                             gint num_strokes,
+                                             const gdouble *strokes);
+gboolean    gimp_convolve_default           (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);
+gboolean    gimp_dodgeburn                  (gint32 drawable_ID,
+                                             gdouble exposure,
                                              GimpDodgeBurnType dodgeburn_type,
                                              GimpTransferMode dodgeburn_mode,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gboolean    gimp_dodgeburn_default          (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gboolean    gimp_ellipse_select             (gint32 image_ID,
-                                             gdouble x,
-                                             gdouble y,
-                                             gdouble width,
-                                             gdouble height,
+                                             gint num_strokes,
+                                             const gdouble *strokes);
+gboolean    gimp_dodgeburn_default          (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);
+gboolean    gimp_ellipse_select             (gint32 image_ID,
+                                             gdouble x,
+                                             gdouble y,
+                                             gdouble width,
+                                             gdouble height,
                                              GimpChannelOps operation,
-                                             gboolean antialias,
-                                             gboolean feather,
-                                             gdouble feather_radius);
-gboolean    gimp_eraser                     (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes,
+                                             gboolean antialias,
+                                             gboolean feather,
+                                             gdouble feather_radius);
+gboolean    gimp_eraser                     (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes,
                                              GimpBrushApplicationMode hardness,
                                              GimpPaintApplicationMode method);
-gboolean    gimp_eraser_default             (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gint32      gimp_flip                       (gint32 drawable_ID,
+gboolean    gimp_eraser_default             (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);
+gint32      gimp_flip                       (gint32 drawable_ID,
                                              GimpOrientationType flip_type);
-gboolean    gimp_free_select                (gint32 image_ID,
-                                             gint num_segs,
-                                             const gdouble *segs,
+gboolean    gimp_free_select                (gint32 image_ID,
+                                             gint num_segs,
+                                             const gdouble *segs,
                                              GimpChannelOps operation,
-                                             gboolean antialias,
-                                             gboolean feather,
-                                             gdouble feather_radius);
-gboolean    gimp_fuzzy_select               (gint32 drawable_ID,
-                                             gdouble x,
-                                             gdouble y,
-                                             gint threshold,
+                                             gboolean antialias,
+                                             gboolean feather,
+                                             gdouble feather_radius);
+gboolean    gimp_fuzzy_select               (gint32 drawable_ID,
+                                             gdouble x,
+                                             gdouble y,
+                                             gint threshold,
                                              GimpChannelOps operation,
-                                             gboolean antialias,
-                                             gboolean feather,
-                                             gdouble feather_radius,
-                                             gboolean sample_merged);
-gboolean    gimp_paintbrush                 (gint32 drawable_ID,
-                                             gdouble fade_out,
-                                             gint num_strokes,
-                                             const gdouble *strokes,
+                                             gboolean antialias,
+                                             gboolean feather,
+                                             gdouble feather_radius,
+                                             gboolean sample_merged);
+gboolean    gimp_paintbrush                 (gint32 drawable_ID,
+                                             gdouble fade_out,
+                                             gint num_strokes,
+                                             const gdouble *strokes,
                                              GimpPaintApplicationMode method,
-                                             gdouble gradient_length);
-gboolean    gimp_paintbrush_default         (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gboolean    gimp_pencil                     (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gint32      gimp_perspective                (gint32 drawable_ID,
-                                             gboolean interpolation,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             gdouble x2,
-                                             gdouble y2,
-                                             gdouble x3,
-                                             gdouble y3);
-gboolean    gimp_rect_select                (gint32 image_ID,
-                                             gdouble x,
-                                             gdouble y,
-                                             gdouble width,
-                                             gdouble height,
+                                             gdouble gradient_length);
+gboolean    gimp_paintbrush_default         (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);
+gboolean    gimp_pencil                     (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);
+gint32      gimp_perspective                (gint32 drawable_ID,
+                                             gboolean interpolation,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
+                                             gdouble x2,
+                                             gdouble y2,
+                                             gdouble x3,
+                                             gdouble y3);
+gboolean    gimp_rect_select                (gint32 image_ID,
+                                             gdouble x,
+                                             gdouble y,
+                                             gdouble width,
+                                             gdouble height,
                                              GimpChannelOps operation,
-                                             gboolean feather,
-                                             gdouble feather_radius);
-gint32      gimp_rotate                     (gint32 drawable_ID,
-                                             gboolean interpolation,
-                                             gdouble angle);
-gint32      gimp_scale                      (gint32 drawable_ID,
-                                             gboolean interpolation,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1);
-gint32      gimp_shear                      (gint32 drawable_ID,
-                                             gboolean interpolation,
+                                             gboolean feather,
+                                             gdouble feather_radius);
+gint32      gimp_rotate                     (gint32 drawable_ID,
+                                             gboolean interpolation,
+                                             gdouble angle);
+gint32      gimp_scale                      (gint32 drawable_ID,
+                                             gboolean interpolation,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1);
+gint32      gimp_shear                      (gint32 drawable_ID,
+                                             gboolean interpolation,
                                              GimpOrientationType shear_type,
-                                             gdouble magnitude);
-gboolean    gimp_smudge                     (gint32 drawable_ID,
-                                             gdouble pressure,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gboolean    gimp_smudge_default             (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);
-gint32      gimp_transform_2d               (gint32 drawable_ID,
-                                             gboolean interpolation,
-                                             gdouble source_x,
-                                             gdouble source_y,
-                                             gdouble scale_x,
-                                             gdouble scale_y,
-                                             gdouble angle,
-                                             gdouble dest_x,
-                                             gdouble dest_y);
-

Description

+ gdouble magnitude); +gboolean gimp_smudge (gint32 drawable_ID, + gdouble pressure, + gint num_strokes, + const gdouble *strokes); +gboolean gimp_smudge_default (gint32 drawable_ID, + gint num_strokes, + const gdouble *strokes); +gint32 gimp_transform_2d (gint32 drawable_ID, + gboolean interpolation, + gdouble source_x, + gdouble source_y, + gdouble scale_x, + gdouble scale_y, + gdouble angle, + gdouble dest_x, + gdouble dest_y); +

Description

Functions giving access to common toolbox tools. -

Details

gimp_airbrush ()

gboolean    gimp_airbrush                   (gint32 drawable_ID,
-                                             gdouble pressure,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+

Details

gimp_airbrush ()

gboolean    gimp_airbrush                   (gint32 drawable_ID,
+                                             gdouble pressure,
+                                             gint num_strokes,
+                                             const gdouble *strokes);

Paint in the current brush with varying pressure. Paint application is time-dependent.

@@ -459,22 +155,14 @@ pressure results in a thicker layer of paint while low pressure results in a thinner layer.

-

drawable_ID : The affected drawable. -
pressure : The pressure of the airbrush strokes. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_airbrush_default ()

gboolean    gimp_airbrush_default           (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+

drawable_ID : The affected drawable. +
pressure : The pressure of the airbrush strokes. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
Returns : TRUE on success. +

gimp_airbrush_default ()

gboolean    gimp_airbrush_default           (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);

Paint in the current brush with varying pressure. Paint application is time-dependent.

@@ -483,34 +171,20 @@ tools options box. It the option has not been set the default for the option will be used.

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +

drawable_ID : The affected drawable. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }.
Returns : TRUE on success. -

gimp_by_color_select ()

gboolean    gimp_by_color_select            (gint32 drawable_ID,
+

gimp_by_color_select ()

gboolean    gimp_by_color_select            (gint32 drawable_ID,
                                              const GimpRGB *color,
-                                             gint threshold,
+                                             gint threshold,
                                              GimpChannelOps operation,
-                                             gboolean antialias,
-                                             gboolean feather,
-                                             gdouble feather_radius,
-                                             gboolean sample_merged);

+ gboolean antialias, + gboolean feather, + gdouble feather_radius, + gboolean sample_merged);

Create a selection by selecting all pixels (in the specified drawable) with the same (or similar) color to that specified.

@@ -528,36 +202,22 @@ equivalent to sampling for colors after merging all visible layers. In the case of a merged sampling, the supplied drawable is ignored.

-

drawable_ID : The affected drawable. -
color : The color to select. -
threshold : Threshold in intensity levels %desc%%. -
operation : The selection operation. -
antialias : Antialiasing. -
feather : Feather option for selections. -
feather_radius : Radius for feather operation. -
sample_merged : Use the composite image, not the drawable. +

drawable_ID : The affected drawable. +
color : The color to select. +
threshold : Threshold in intensity levels %desc%%. +
operation : The selection operation. +
antialias : Antialiasing. +
feather : Feather option for selections. +
feather_radius : Radius for feather operation. +
sample_merged : Use the composite image, not the drawable.
Returns : TRUE on success. -

gimp_clone ()

gboolean    gimp_clone                      (gint32 drawable_ID,
-                                             gint32 src_drawable_ID,
+

gimp_clone ()

gboolean    gimp_clone                      (gint32 drawable_ID,
+                                             gint32 src_drawable_ID,
                                              GimpCloneType clone_type,
-                                             gdouble src_x,
-                                             gdouble src_y,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+ gdouble src_x, + gdouble src_y, + gint num_strokes, + const gdouble *strokes);

Clone from the source to the dest drawable using the current brush

This tool clones (copies) from the source drawable starting at the @@ -573,25 +233,17 @@ RGB->Indexed--although converting from any type to indexed is significantly slower.

-

drawable_ID : The affected drawable. -
src_drawable_ID : The source drawable. -
clone_type : The type of clone. -
src_x : The x coordinate in the source image. -
src_y : The y coordinate in the source image. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_clone_default ()

gboolean    gimp_clone_default              (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+

drawable_ID : The affected drawable. +
src_drawable_ID : The source drawable. +
clone_type : The type of clone. +
src_x : The x coordinate in the source image. +
src_y : The y coordinate in the source image. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
Returns : TRUE on success. +

gimp_clone_default ()

gboolean    gimp_clone_default              (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);

Clone from the source to the dest drawable using the current brush

This tool clones (copies) from the source drawable starting at the @@ -601,25 +253,15 @@ dialog has not been activated then the dialogs default values will be used.

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +

drawable_ID : The affected drawable. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }.
Returns : TRUE on success. -

gimp_convolve ()

gboolean    gimp_convolve                   (gint32 drawable_ID,
-                                             gdouble pressure,
+

gimp_convolve ()

gboolean    gimp_convolve                   (gint32 drawable_ID,
+                                             gdouble pressure,
                                              GimpConvolveType convolve_type,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+ gint num_strokes, + const gdouble *strokes);

Convolve (Blur, Sharpen) using the current brush.

This tool convolves the specified drawable with either a sharpening @@ -627,23 +269,15 @@ the operation. Like the paintbrush, this tool linearly interpolates between the specified stroke coordinates.

-

drawable_ID : The affected drawable. -
pressure : The pressure. -
convolve_type : Convolve type. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_convolve_default ()

gboolean    gimp_convolve_default           (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+

drawable_ID : The affected drawable. +
pressure : The pressure. +
convolve_type : Convolve type. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
Returns : TRUE on success. +

gimp_convolve_default ()

gboolean    gimp_convolve_default           (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);

Convolve (Blur, Sharpen) using the current brush.

This tool convolves the specified drawable with either a sharpening @@ -652,48 +286,30 @@ from the convolve option dialog. It this dialog has not been activated then the dialogs default values will be used.

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +

drawable_ID : The affected drawable. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }.
Returns : TRUE on success. -

gimp_dodgeburn ()

gboolean    gimp_dodgeburn                  (gint32 drawable_ID,
-                                             gdouble exposure,
+

gimp_dodgeburn ()

gboolean    gimp_dodgeburn                  (gint32 drawable_ID,
+                                             gdouble exposure,
                                              GimpDodgeBurnType dodgeburn_type,
                                              GimpTransferMode dodgeburn_mode,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+ gint num_strokes, + const gdouble *strokes);

Dodgeburn image with varying exposure.

Dodgeburn. More details here later.

-

drawable_ID : The affected drawable. -
exposure : The exposer of the strokes. -
dodgeburn_type : The type either dodge or burn. -
dodgeburn_mode : The mode. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_dodgeburn_default ()

gboolean    gimp_dodgeburn_default          (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+

drawable_ID : The affected drawable. +
exposure : The exposer of the strokes. +
dodgeburn_type : The type either dodge or burn. +
dodgeburn_mode : The mode. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
Returns : TRUE on success. +

gimp_dodgeburn_default ()

gboolean    gimp_dodgeburn_default          (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);

Dodgeburn image with varying exposure. This is the same as the gimp_dodgeburn function except that the exposure, type and mode are taken from the tools option dialog. If the dialog has not been @@ -701,37 +317,19 @@

Dodgeburn. More details here later.

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_ellipse_select ()

gboolean    gimp_ellipse_select             (gint32 image_ID,
-                                             gdouble x,
-                                             gdouble y,
-                                             gdouble width,
-                                             gdouble height,
+

drawable_ID : The affected drawable. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
Returns : TRUE on success. +

gimp_ellipse_select ()

gboolean    gimp_ellipse_select             (gint32 image_ID,
+                                             gdouble x,
+                                             gdouble y,
+                                             gdouble width,
+                                             gdouble height,
                                              GimpChannelOps operation,
-                                             gboolean antialias,
-                                             gboolean feather,
-                                             gdouble feather_radius);

+ gboolean antialias, + gboolean feather, + gdouble feather_radius);

Create an elliptical selection over the specified image.

This tool creates an elliptical selection over the specified image. @@ -744,27 +342,19 @@ combining. The blur is a gaussian blur with the specified feather radius.

-

image_ID : The image. -
x : x coordinate of upper-left corner of ellipse bounding box. -
y : y coordinate of upper-left corner of ellipse bounding box. -
width : The width of the ellipse. -
height : The height of the ellipse. -
operation : The selection operation. -
antialias : Antialiasing. -
feather : Feather option for selections. -
feather_radius : Radius for feather operation. -
Returns : TRUE on success. -

gimp_eraser ()

gboolean    gimp_eraser                     (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes,
+

image_ID : The image. +
x : x coordinate of upper-left corner of ellipse bounding box. +
y : y coordinate of upper-left corner of ellipse bounding box. +
width : The width of the ellipse. +
height : The height of the ellipse. +
operation : The selection operation. +
antialias : Antialiasing. +
feather : Feather option for selections. +
feather_radius : Radius for feather operation. +
Returns : TRUE on success. +

gimp_eraser ()

gboolean    gimp_eraser                     (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes,
                                              GimpBrushApplicationMode hardness,
                                              GimpPaintApplicationMode method);

Erase using the current brush. @@ -775,23 +365,15 @@ of the drawable with the background color. Like paintbrush, this tool linearly interpolates between the specified stroke coordinates.

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
hardness : %desc%%. -
method : %desc%%. -
Returns : TRUE on success. -

gimp_eraser_default ()

gboolean    gimp_eraser_default             (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+

drawable_ID : The affected drawable. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
hardness : %desc%%. +
method : %desc%%. +
Returns : TRUE on success. +

gimp_eraser_default ()

gboolean    gimp_eraser_default             (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);

Erase using the current brush.

This tool erases using the current brush mask. This function @@ -800,43 +382,25 @@ this dialog has not been activated then the dialogs default values will be used.

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +

drawable_ID : The affected drawable. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }.
Returns : TRUE on success. -

gimp_flip ()

gint32      gimp_flip                       (gint32 drawable_ID,
-                                             GimpOrientationType flip_type);

Warning

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

+


gimp_flip ()

gint32      gimp_flip                       (gint32 drawable_ID,
+                                             GimpOrientationType flip_type);

Warning

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

This procedure is deprecated! Use -gimp_drawable_transform_flip_simple() instead.

+gimp_drawable_transform_flip_simple() instead.

-

drawable_ID : The affected drawable. -
flip_type : Type of flip. +

drawable_ID : The affected drawable. +
flip_type : Type of flip.
Returns : The flipped drawable. -

gimp_free_select ()

gboolean    gimp_free_select                (gint32 image_ID,
-                                             gint num_segs,
-                                             const gdouble *segs,
+

gimp_free_select ()

gboolean    gimp_free_select                (gint32 image_ID,
+                                             gint num_segs,
+                                             const gdouble *segs,
                                              GimpChannelOps operation,
-                                             gboolean antialias,
-                                             gboolean feather,
-                                             gdouble feather_radius);

+ gboolean antialias, + gboolean feather, + gdouble feather_radius);

Create a polygonal selection over the specified image.

This tool creates a polygonal selection over the specified image. @@ -851,41 +415,23 @@ combining. The blur is a gaussian blur with the specified feather radius.

-

image_ID : The image. -
num_segs : Number of points (count 1 coordinate as two points). -
segs : Array of points: { p1.x, p1.y, p2.x, p2.y, ..., pn.x, pn.y}. -
operation : The selection operation. -
antialias : Antialiasing. -
feather : Feather option for selections. -
feather_radius : Radius for feather operation. -
Returns : TRUE on success. -

gimp_fuzzy_select ()

gboolean    gimp_fuzzy_select               (gint32 drawable_ID,
-                                             gdouble x,
-                                             gdouble y,
-                                             gint threshold,
+

image_ID : The image. +
num_segs : Number of points (count 1 coordinate as two points). +
segs : Array of points: { p1.x, p1.y, p2.x, p2.y, ..., pn.x, pn.y}. +
operation : The selection operation. +
antialias : Antialiasing. +
feather : Feather option for selections. +
feather_radius : Radius for feather operation. +
Returns : TRUE on success. +

gimp_fuzzy_select ()

gboolean    gimp_fuzzy_select               (gint32 drawable_ID,
+                                             gdouble x,
+                                             gdouble y,
+                                             gint threshold,
                                              GimpChannelOps operation,
-                                             gboolean antialias,
-                                             gboolean feather,
-                                             gdouble feather_radius,
-                                             gboolean sample_merged);

+ gboolean antialias, + gboolean feather, + gdouble feather_radius, + gboolean sample_merged);

Create a fuzzy selection starting at the specified coordinates on the specified drawable.

@@ -908,34 +454,22 @@ coordinates are relative to the image origin; otherwise, they are relative to the drawable's origin.

-

drawable_ID : The affected drawable. -
x : x coordinate of initial seed fill point: (image coordinates). -
y : y coordinate of initial seed fill point: (image coordinates). -
threshold : Threshold in intensity levels %desc%%. -
operation : The selection operation. -
antialias : Antialiasing. -
feather : Feather option for selections. -
feather_radius : Radius for feather operation. -
sample_merged : Use the composite image, not the drawable. -
Returns : TRUE on success. -

gimp_paintbrush ()

gboolean    gimp_paintbrush                 (gint32 drawable_ID,
-                                             gdouble fade_out,
-                                             gint num_strokes,
-                                             const gdouble *strokes,
+

drawable_ID : The affected drawable. +
x : x coordinate of initial seed fill point: (image coordinates). +
y : y coordinate of initial seed fill point: (image coordinates). +
threshold : Threshold in intensity levels %desc%%. +
operation : The selection operation. +
antialias : Antialiasing. +
feather : Feather option for selections. +
feather_radius : Radius for feather operation. +
sample_merged : Use the composite image, not the drawable. +
Returns : TRUE on success. +

gimp_paintbrush ()

gboolean    gimp_paintbrush                 (gint32 drawable_ID,
+                                             gdouble fade_out,
+                                             gint num_strokes,
+                                             const gdouble *strokes,
                                              GimpPaintApplicationMode method,
-                                             gdouble gradient_length);

+ gdouble gradient_length);

Paint in the current brush with optional fade out parameter and pull colors from a gradient.

@@ -950,24 +484,16 @@ is measured in pixels. If the gradient_length is 0, no gradient is used.

-

drawable_ID : The affected drawable. -
fade_out : Fade out parameter. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
method : %desc%%. -
gradient_length : Length of gradient to draw. -
Returns : TRUE on success. -

gimp_paintbrush_default ()

gboolean    gimp_paintbrush_default         (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+

drawable_ID : The affected drawable. +
fade_out : Fade out parameter. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
method : %desc%%. +
gradient_length : Length of gradient to draw. +
Returns : TRUE on success. +

gimp_paintbrush_default ()

gboolean    gimp_paintbrush_default         (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);

Paint in the current brush. The fade out parameter and pull colors from a gradient parameter are set from the paintbrush options dialog. If this dialog has not been activated then the dialog @@ -985,21 +511,13 @@ the gradient over. It is measured in pixels. If the gradient_length is 0, no gradient is used.

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_pencil ()

gboolean    gimp_pencil                     (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+

drawable_ID : The affected drawable. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
Returns : TRUE on success. +

gimp_pencil ()

gboolean    gimp_pencil                     (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);

Paint in the current brush without sub-pixel sampling.

This tool is the standard pencil. It draws linearly interpolated @@ -1009,80 +527,42 @@ values. Any value below half is treated as black; any above half, as white.

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_perspective ()

gint32      gimp_perspective                (gint32 drawable_ID,
-                                             gboolean interpolation,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1,
-                                             gdouble x2,
-                                             gdouble y2,
-                                             gdouble x3,
-                                             gdouble y3);

Warning

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

+

drawable_ID : The affected drawable. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
Returns : TRUE on success. +

gimp_perspective ()

gint32      gimp_perspective                (gint32 drawable_ID,
+                                             gboolean interpolation,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1,
+                                             gdouble x2,
+                                             gdouble y2,
+                                             gdouble x3,
+                                             gdouble y3);

Warning

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

This procedure is deprecated! Use -gimp_drawable_transform_perspective_default() instead.

+gimp_drawable_transform_perspective_default() instead.

-

drawable_ID : The affected drawable. -
interpolation : Whether to use interpolation. -
x0 : The new x coordinate of upper-left corner of original bounding box. -
y0 : The new y coordinate of upper-left corner of original bounding box. -
x1 : The new x coordinate of upper-right corner of original bounding box. -
y1 : The new y coordinate of upper-right corner of original bounding box. -
x2 : The new x coordinate of lower-left corner of original bounding box. -
y2 : The new y coordinate of lower-left corner of original bounding box. -
x3 : The new x coordinate of lower-right corner of original bounding box. -
y3 : The new y coordinate of lower-right corner of original bounding box. +

drawable_ID : The affected drawable. +
interpolation : Whether to use interpolation. +
x0 : The new x coordinate of upper-left corner of original bounding box. +
y0 : The new y coordinate of upper-left corner of original bounding box. +
x1 : The new x coordinate of upper-right corner of original bounding box. +
y1 : The new y coordinate of upper-right corner of original bounding box. +
x2 : The new x coordinate of lower-left corner of original bounding box. +
y2 : The new y coordinate of lower-left corner of original bounding box. +
x3 : The new x coordinate of lower-right corner of original bounding box. +
y3 : The new y coordinate of lower-right corner of original bounding box.
Returns : The newly mapped drawable. -

gimp_rect_select ()

gboolean    gimp_rect_select                (gint32 image_ID,
-                                             gdouble x,
-                                             gdouble y,
-                                             gdouble width,
-                                             gdouble height,
+

gimp_rect_select ()

gboolean    gimp_rect_select                (gint32 image_ID,
+                                             gdouble x,
+                                             gdouble y,
+                                             gdouble width,
+                                             gdouble height,
                                              GimpChannelOps operation,
-                                             gboolean feather,
-                                             gdouble feather_radius);

+ gboolean feather, + gdouble feather_radius);

Create a rectangular selection over the specified image;

This tool creates a rectangular selection over the specified image. @@ -1092,119 +572,71 @@ combining. The blur is a gaussian blur with the specified feather radius.

-

image_ID : The image. -
x : x coordinate of upper-left corner of rectangle. -
y : y coordinate of upper-left corner of rectangle. -
width : The width of the rectangle. -
height : The height of the rectangle. -
operation : The selection operation. -
feather : Feather option for selections. -
feather_radius : Radius for feather operation. -
Returns : TRUE on success. -

gimp_rotate ()

gint32      gimp_rotate                     (gint32 drawable_ID,
-                                             gboolean interpolation,
-                                             gdouble angle);

Warning

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

+

image_ID : The image. +
x : x coordinate of upper-left corner of rectangle. +
y : y coordinate of upper-left corner of rectangle. +
width : The width of the rectangle. +
height : The height of the rectangle. +
operation : The selection operation. +
feather : Feather option for selections. +
feather_radius : Radius for feather operation. +
Returns : TRUE on success. +

gimp_rotate ()

gint32      gimp_rotate                     (gint32 drawable_ID,
+                                             gboolean interpolation,
+                                             gdouble angle);

Warning

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

This procedure is deprecated! Use -gimp_drawable_transform_rotate_default() instead.

+gimp_drawable_transform_rotate_default() instead.

-

drawable_ID : The affected drawable. -
interpolation : Whether to use interpolation. -
angle : The angle of rotation (radians). +

drawable_ID : The affected drawable. +
interpolation : Whether to use interpolation. +
angle : The angle of rotation (radians).
Returns : The rotated drawable. -

gimp_scale ()

gint32      gimp_scale                      (gint32 drawable_ID,
-                                             gboolean interpolation,
-                                             gdouble x0,
-                                             gdouble y0,
-                                             gdouble x1,
-                                             gdouble y1);

Warning

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

+


gimp_scale ()

gint32      gimp_scale                      (gint32 drawable_ID,
+                                             gboolean interpolation,
+                                             gdouble x0,
+                                             gdouble y0,
+                                             gdouble x1,
+                                             gdouble y1);

Warning

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

This procedure is deprecated! Use -gimp_drawable_transform_scale_default() instead.

+gimp_drawable_transform_scale_default() instead.

-

drawable_ID : The affected drawable. -
interpolation : Whether to use interpolation. -
x0 : The new x coordinate of upper-left corner of newly scaled region. -
y0 : The new y coordinate of upper-left corner of newly scaled region. -
x1 : The new x coordinate of lower-right corner of newly scaled region. -
y1 : The new y coordinate of lower-right corner of newly scaled region. +

drawable_ID : The affected drawable. +
interpolation : Whether to use interpolation. +
x0 : The new x coordinate of upper-left corner of newly scaled region. +
y0 : The new y coordinate of upper-left corner of newly scaled region. +
x1 : The new x coordinate of lower-right corner of newly scaled region. +
y1 : The new y coordinate of lower-right corner of newly scaled region.
Returns : The scaled drawable. -

gimp_shear ()

gint32      gimp_shear                      (gint32 drawable_ID,
-                                             gboolean interpolation,
+

gimp_shear ()

gint32      gimp_shear                      (gint32 drawable_ID,
+                                             gboolean interpolation,
                                              GimpOrientationType shear_type,
-                                             gdouble magnitude);

Warning

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

+ gdouble magnitude);

Warning

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

This procedure is deprecated! Use -gimp_drawable_transform_shear_default() instead.

+gimp_drawable_transform_shear_default() instead.

-

drawable_ID : The affected drawable. -
interpolation : Whether to use interpolation. -
shear_type : Type of shear. -
magnitude : The magnitude of the shear. +

drawable_ID : The affected drawable. +
interpolation : Whether to use interpolation. +
shear_type : Type of shear. +
magnitude : The magnitude of the shear.
Returns : The sheared drawable. -

gimp_smudge ()

gboolean    gimp_smudge                     (gint32 drawable_ID,
-                                             gdouble pressure,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+


gimp_smudge ()

gboolean    gimp_smudge                     (gint32 drawable_ID,
+                                             gdouble pressure,
+                                             gint num_strokes,
+                                             const gdouble *strokes);

Smudge image with varying pressure.

This tool simulates a smudge using the current brush. High pressure results in a greater smudge of paint while low pressure results in a lesser smudge.

-

drawable_ID : The affected drawable. -
pressure : The pressure of the smudge strokes. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_smudge_default ()

gboolean    gimp_smudge_default             (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+

drawable_ID : The affected drawable. +
pressure : The pressure of the smudge strokes. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
Returns : TRUE on success. +

gimp_smudge_default ()

gboolean    gimp_smudge_default             (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes);

Smudge image with varying pressure.

This tool simulates a smudge using the current brush. It behaves @@ -1212,50 +644,30 @@ taken from the smudge tool options or the options default if the tools option dialog has not been activated.

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_transform_2d ()

gint32      gimp_transform_2d               (gint32 drawable_ID,
-                                             gboolean interpolation,
-                                             gdouble source_x,
-                                             gdouble source_y,
-                                             gdouble scale_x,
-                                             gdouble scale_y,
-                                             gdouble angle,
-                                             gdouble dest_x,
-                                             gdouble dest_y);

Warning

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

+

drawable_ID : The affected drawable. +
num_strokes : Number of stroke control points (count each coordinate as 2 points). +
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
Returns : TRUE on success. +

gimp_transform_2d ()

gint32      gimp_transform_2d               (gint32 drawable_ID,
+                                             gboolean interpolation,
+                                             gdouble source_x,
+                                             gdouble source_y,
+                                             gdouble scale_x,
+                                             gdouble scale_y,
+                                             gdouble angle,
+                                             gdouble dest_x,
+                                             gdouble dest_y);

Warning

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

This procedure is deprecated! Use -gimp_drawable_transform_2d_default() instead.

+gimp_drawable_transform_2d_default() instead.

-

drawable_ID : The affected drawable. -
interpolation : Whether to use interpolation. -
source_x : X coordinate of the transformation center. -
source_y : Y coordinate of the transformation center. -
scale_x : Amount to scale in x direction. -
scale_y : Amount to scale in y direction. -
angle : The angle of rotation (radians). -
dest_x : X coordinate of where the centre goes. -
dest_y : Y coordinate of where the centre goes. +

drawable_ID : The affected drawable. +
interpolation : Whether to use interpolation. +
source_x : X coordinate of the transformation center. +
source_y : Y coordinate of the transformation center. +
scale_x : Amount to scale in x direction. +
scale_y : Amount to scale in y direction. +
angle : The angle of rotation (radians). +
dest_x : X coordinate of where the centre goes. +
dest_y : Y coordinate of where the centre goes.
Returns : The transformed drawable.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpui.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpui.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpui.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpui.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,61 +1,53 @@ -gimpui

gimpui

gimpui — Common user interface functions. This header includes all other GIMP User +gimpui

gimpui

gimpui — Common user interface functions. This header includes all other GIMP User Interface Library headers.

Synopsis

 
 
 
-void        gimp_ui_init                    (const gchar *prog_name,
-                                             gboolean preview);
-

Description

+void gimp_ui_init (const gchar *prog_name, + gboolean preview); +

Description

Common user interface functions. This header includes all other GIMP User Interface Library headers. -

Details

gimp_ui_init ()

void        gimp_ui_init                    (const gchar *prog_name,
-                                             gboolean preview);

+

Details

gimp_ui_init ()

void        gimp_ui_init                    (const gchar *prog_name,
+                                             gboolean preview);

This function initializes GTK+ with gtk_init() and initializes GDK's +>gtk_init() and initializes GDK's image rendering subsystem (GdkRGB) to follow the GIMP main program's colormap allocation/installation policy.

The GIMP's colormap policy can be determinded by the user with the -gimprc variables min_colors and install_cmap.

+gimprc variables min_colors and install_cmap.

-

prog_name : The name of the plug-in which will be passed as argv[0] to +

prog_name : The name of the plug-in which will be passed as argv[0] to gtk_init(). It's a convention to use the name of the +>gtk_init(). It's a convention to use the name of the executable and _not_ the PDB procedure name or something. -
preview : This parameter is unused and exists for historical +
preview : This parameter is unused and exists for historical reasons only. -

See Also

+

diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpundo.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpundo.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpundo.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpundo.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,50 +1,18 @@ -gimpundo

gimpundo

gimpundo — Control of undo/redo.

Synopsis

+gimpundo

gimpundo

gimpundo — Control of undo/redo.

Description

+gboolean gimp_image_undo_group_start (gint32 image_ID); +gboolean gimp_image_undo_group_end (gint32 image_ID); +gboolean gimp_image_undo_is_enabled (gint32 image_ID); +gboolean gimp_image_undo_disable (gint32 image_ID); +gboolean gimp_image_undo_enable (gint32 image_ID); +gboolean gimp_image_undo_freeze (gint32 image_ID); +gboolean gimp_image_undo_thaw (gint32 image_ID); +

Description

Control of undo/redo. -

Details

gimp_image_undo_group_start ()

gboolean    gimp_image_undo_group_start     (gint32 image_ID);

+

Details

gimp_image_undo_group_start ()

gboolean    gimp_image_undo_group_start     (gint32 image_ID);

Starts a group undo.

This function is used to start a group undo--necessary for logically @@ -52,25 +20,17 @@ call must be used in conjunction with a 'gimp-image-undo-group-end' call.

-

image_ID : The ID of the image in which to open an undo group. +

image_ID : The ID of the image in which to open an undo group.
Returns : TRUE on success. -

gimp_image_undo_group_end ()

gboolean    gimp_image_undo_group_end       (gint32 image_ID);

+


gimp_image_undo_group_end ()

gboolean    gimp_image_undo_group_end       (gint32 image_ID);

Finish a group undo.

This function must be called once for each 'gimp-image-undo-group-start' call that is made.

-

image_ID : The ID of the image in which to close an undo group. +

image_ID : The ID of the image in which to close an undo group.
Returns : TRUE on success. -

gimp_image_undo_is_enabled ()

gboolean    gimp_image_undo_is_enabled      (gint32 image_ID);

+


gimp_image_undo_is_enabled ()

gboolean    gimp_image_undo_is_enabled      (gint32 image_ID);

Check if the image's undo stack is enabled.

This procedure checks if the image's undo stack is currently enabled @@ -78,13 +38,9 @@ each other and want to check if their caller has already used 'gimp_image_undo_disable' or 'gimp_image_undo_freeze'.

-

image_ID : The image. +

image_ID : The image.
Returns : True if undo is enabled for this image. -

gimp_image_undo_disable ()

gboolean    gimp_image_undo_disable         (gint32 image_ID);

+


gimp_image_undo_disable ()

gboolean    gimp_image_undo_disable         (gint32 image_ID);

Disable the image's undo stack.

This procedure disables the image's undo stack, allowing subsequent @@ -93,13 +49,9 @@ image undo stack. This is advantageous because saving undo steps can be time and memory intensive.

-

image_ID : The image. +

image_ID : The image.
Returns : True if the image undo has been disabled. -

gimp_image_undo_enable ()

gboolean    gimp_image_undo_enable          (gint32 image_ID);

+


gimp_image_undo_enable ()

gboolean    gimp_image_undo_enable          (gint32 image_ID);

Enable the image's undo stack.

This procedure enables the image's undo stack, allowing subsequent @@ -107,13 +59,9 @@ conjunction with 'gimp_image_undo_disable' to temporarily disable an image undo stack.

-

image_ID : The image. +

image_ID : The image.
Returns : True if the image undo has been enabled. -

gimp_image_undo_freeze ()

gboolean    gimp_image_undo_freeze          (gint32 image_ID);

+


gimp_image_undo_freeze ()

gboolean    gimp_image_undo_freeze          (gint32 image_ID);

Freeze the image's undo stack.

This procedure freezes the image's undo stack, allowing subsequent @@ -127,13 +75,9 @@ image is back to the same state it was frozen in before thawing, else 'undo' behaviour is undefined.

-

image_ID : The image. +

image_ID : The image.
Returns : True if the image undo has been frozen. -

gimp_image_undo_thaw ()

gboolean    gimp_image_undo_thaw            (gint32 image_ID);

+


gimp_image_undo_thaw ()

gboolean    gimp_image_undo_thaw            (gint32 image_ID);

Thaw the image's undo stack.

This procedure thaws the image's undo stack, allowing subsequent @@ -147,6 +91,6 @@ freezes and thaws and ensuring image consistancy is the responsibility of the caller.

-

image_ID : The image. +

image_ID : The image.
Returns : True if the image undo has been thawed.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp.html gimp-2.2.8/devel-docs/libgimp/html/libgimp.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,4 +1,4 @@ -Part II. GIMP Library

GIMP Library

+Part II. GIMP Library

GIMP Library

GIMP's Procedural Database (PDB) offers an interface to core functions and to functionality provided by plug-ins. The role of libgimp is to provide C bindings for this interface. diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-image.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-image.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-image.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-image.html 2005-06-27 00:18:48.000000000 +0200 @@ -1 +1 @@ -Manupulating Images and all their Properties

Manupulating Images and all their Properties

gimpchannel - Functions for manipulating channels.
gimpcolor - Functions for manipulating color.
gimpconvert - Conversions between RGB, indexed, and grayscale modes.
gimpdisplay - Functions to create, delete and flush new displays (views) on an image.
gimpdrawable - Functions to manipulate drawables.
gimpdrawabletransform -
gimpedit - Edit menu functions (cut, copy, paste, clear, etc.)
gimpfileops - File operations (load, save, etc.)
gimpfloatingsel - Functions for removing or attaching floating selections.
gimpguides - Functions for manipulating guides.
gimpimage - Operations on complete images.
gimplayer - Operations on a single layer.
gimppaths - Operations related to paths.
gimppixelfetcher - Functions for operating on pixel regions.
gimppixelrgn - Functions for operating on pixel regions.
gimpregioniterator - Functions to traverse a pixel regions.
gimpselection - Functions for manipulating selections.
gimptexttool - Functions for controlling the text tool.
gimptile - Functions for working with tiles.
gimptools - Access to common toolbox tools.
gimpundo - Control of undo/redo.
+Manupulating Images and all their Properties

Manupulating Images and all their Properties

gimpchannel - Functions for manipulating channels.
gimpcolor - Functions for manipulating color.
gimpconvert - Conversions between RGB, indexed, and grayscale modes.
gimpdisplay - Functions to create, delete and flush new displays (views) on an image.
gimpdrawable - Functions to manipulate drawables.
gimpdrawabletransform -
gimpedit - Edit menu functions (cut, copy, paste, clear, etc.)
gimpfileops - File operations (load, save, etc.)
gimpfloatingsel - Functions for removing or attaching floating selections.
gimpguides - Functions for manipulating guides.
gimpimage - Operations on complete images.
gimplayer - Operations on a single layer.
gimppaths - Operations related to paths.
gimppixelfetcher - Functions for operating on pixel regions.
gimppixelrgn - Functions for operating on pixel regions.
gimpregioniterator - Functions to traverse a pixel regions.
gimpselection - Functions for manipulating selections.
gimptexttool - Functions for controlling the text tool.
gimptile - Functions for working with tiles.
gimptools - Access to common toolbox tools.
gimpundo - Control of undo/redo.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimp-selectors.html gimp-2.2.8/devel-docs/libgimp/html/libgimp-selectors.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimp-selectors.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimp-selectors.html 2005-06-27 00:18:48.000000000 +0200 @@ -1 +1 @@ -Controlling the Core's Selection Dialogs

Controlling the Core's Selection Dialogs

gimpbrushselect - Functions providing a brush selection dialog.
gimpfontselect - Functions providing a font selection dialog.
gimpgradientselect - Functions providing a gradient selection dialog.
gimppaletteselect - Functions providing a palette selection dialog.
gimppatternselect - Functions providing a pattern selection dialog.
+Controlling the Core's Selection Dialogs

Controlling the Core's Selection Dialogs

gimpbrushselect - Functions providing a brush selection dialog.
gimpfontselect - Functions providing a font selection dialog.
gimpgradientselect - Functions providing a gradient selection dialog.
gimppaletteselect - Functions providing a palette selection dialog.
gimppatternselect - Functions providing a pattern selection dialog.
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimpui-hierarchy.html gimp-2.2.8/devel-docs/libgimp/html/libgimpui-hierarchy.html --- gimp-2.2.7/devel-docs/libgimp/html/libgimpui-hierarchy.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/html/libgimpui-hierarchy.html 2005-06-27 00:18:48.000000000 +0200 @@ -1,7 +1,5 @@ -Object Hierarchy

Object Hierarchy

-    GObject
+Object Hierarchy

Object Hierarchy

+    GObject
         GtkObject
diff -uraN gimp-2.2.7/devel-docs/libgimp/html/libgimpui.html gimp-2.2.8/devel-docs/libgimp/html/libgimpui.html
--- gimp-2.2.7/devel-docs/libgimp/html/libgimpui.html	2005-05-08 23:43:11.000000000 +0200
+++ gimp-2.2.8/devel-docs/libgimp/html/libgimpui.html	2005-06-27 00:18:48.000000000 +0200
@@ -1 +1 @@
-Part III. GIMP User Interface Library

GIMP User Interface Library

+Part III. GIMP User Interface Library

GIMP User Interface Library

diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpbrush.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpbrush.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpbrush.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpbrush.xml 2005-06-27 00:18:47.000000000 +0200 @@ -64,7 +64,7 @@ Details <anchor id="gimp-brush-new"/>gimp_brush_new () -gimp_brush_newgchar* gimp_brush_new (const gchar *name); +gimp_brush_newgchar* gimp_brush_new (const gchar *name); Creates a new brush @@ -83,7 +83,7 @@ <anchor id="gimp-brush-duplicate"/>gimp_brush_duplicate () -gimp_brush_duplicategchar* gimp_brush_duplicate (const gchar *name); +gimp_brush_duplicategchar* gimp_brush_duplicate (const gchar *name); Duplicates a brush @@ -102,7 +102,7 @@ <anchor id="gimp-brush-rename"/>gimp_brush_rename () -gimp_brush_renamegchar* gimp_brush_rename (const gchar *name, +gimp_brush_renamegchar* gimp_brush_rename (const gchar *name, const gchar *new_name); Rename a brush @@ -125,7 +125,7 @@ <anchor id="gimp-brush-delete"/>gimp_brush_delete () -gimp_brush_deletegboolean gimp_brush_delete (const gchar *name); +gimp_brush_deletegboolean gimp_brush_delete (const gchar *name); Deletes a brush @@ -144,7 +144,7 @@ <anchor id="gimp-brush-get-info"/>gimp_brush_get_info () -gimp_brush_get_infogboolean gimp_brush_get_info (const gchar *name, +gimp_brush_get_infogboolean gimp_brush_get_info (const gchar *name, gint *width, gint *height, gint *mask_bpp, @@ -180,7 +180,7 @@ <anchor id="gimp-brush-get-pixels"/>gimp_brush_get_pixels () -gimp_brush_get_pixelsgboolean gimp_brush_get_pixels (const gchar *name, +gimp_brush_get_pixelsgboolean gimp_brush_get_pixels (const gchar *name, gint *width, gint *height, gint *mask_bpp, @@ -232,7 +232,7 @@ <anchor id="gimp-brush-get-spacing"/>gimp_brush_get_spacing () -gimp_brush_get_spacinggboolean gimp_brush_get_spacing (const gchar *name, +gimp_brush_get_spacinggboolean gimp_brush_get_spacing (const gchar *name, gint *spacing); Get the brush spacing. @@ -257,7 +257,7 @@ <anchor id="gimp-brush-set-spacing"/>gimp_brush_set_spacing () -gimp_brush_set_spacinggboolean gimp_brush_set_spacing (const gchar *name, +gimp_brush_set_spacinggboolean gimp_brush_set_spacing (const gchar *name, gint spacing); Set the brush spacing. diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpcolor.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpcolor.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpcolor.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpcolor.xml 2005-06-27 00:18:47.000000000 +0200 @@ -413,7 +413,7 @@ <anchor id="gimp-colorize"/>gimp_colorize () -gimp_colorizegboolean gimp_colorize (gint32 drawable_ID, +gimp_colorizegboolean gimp_colorize (gint32 drawable_ID, gdouble hue, gdouble saturation, gdouble lightness); diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpcontext.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpcontext.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpcontext.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpcontext.xml 2005-06-27 00:18:47.000000000 +0200 @@ -64,7 +64,7 @@ Details <anchor id="gimp-context-push"/>gimp_context_push () -gimp_context_pushgboolean gimp_context_push (void); +gimp_context_pushgboolean gimp_context_push (void); Pushes a context to the top of the plug-in's context stack. @@ -82,7 +82,7 @@ <anchor id="gimp-context-pop"/>gimp_context_pop () -gimp_context_popgboolean gimp_context_pop (void); +gimp_context_popgboolean gimp_context_pop (void); Pops the topmost context from the plug-in's context stack. @@ -99,7 +99,7 @@ <anchor id="gimp-context-get-foreground"/>gimp_context_get_foreground () -gimp_context_get_foregroundgboolean gimp_context_get_foreground (GimpRGB *foreground); +gimp_context_get_foregroundgboolean gimp_context_get_foreground (GimpRGB *foreground); Get the current GIMP foreground color. @@ -120,7 +120,7 @@ <anchor id="gimp-context-set-foreground"/>gimp_context_set_foreground () -gimp_context_set_foregroundgboolean gimp_context_set_foreground (const GimpRGB *foreground); +gimp_context_set_foregroundgboolean gimp_context_set_foreground (const GimpRGB *foreground); Set the current GIMP foreground color. @@ -141,7 +141,7 @@ <anchor id="gimp-context-get-background"/>gimp_context_get_background () -gimp_context_get_backgroundgboolean gimp_context_get_background (GimpRGB *background); +gimp_context_get_backgroundgboolean gimp_context_get_background (GimpRGB *background); Get the current GIMP background color. @@ -162,7 +162,7 @@ <anchor id="gimp-context-set-background"/>gimp_context_set_background () -gimp_context_set_backgroundgboolean gimp_context_set_background (const GimpRGB *background); +gimp_context_set_backgroundgboolean gimp_context_set_background (const GimpRGB *background); Set the current GIMP background color. @@ -184,7 +184,7 @@ <anchor id="gimp-context-set-default-colors"/>gimp_context_set_default_colors () -gimp_context_set_default_colorsgboolean gimp_context_set_default_colors (void); +gimp_context_set_default_colorsgboolean gimp_context_set_default_colors (void); Set the current GIMP foreground and background colors to black and white. @@ -202,7 +202,7 @@ <anchor id="gimp-context-swap-colors"/>gimp_context_swap_colors () -gimp_context_swap_colorsgboolean gimp_context_swap_colors (void); +gimp_context_swap_colorsgboolean gimp_context_swap_colors (void); Swap the current GIMP foreground and background colors. @@ -220,7 +220,7 @@ <anchor id="gimp-context-get-opacity"/>gimp_context_get_opacity () -gimp_context_get_opacitygdouble gimp_context_get_opacity (void); +gimp_context_get_opacitygdouble gimp_context_get_opacity (void); Get the opacity. @@ -237,7 +237,7 @@ <anchor id="gimp-context-set-opacity"/>gimp_context_set_opacity () -gimp_context_set_opacitygboolean gimp_context_set_opacity (gdouble opacity); +gimp_context_set_opacitygboolean gimp_context_set_opacity (gdouble opacity); Set the opacity. @@ -257,7 +257,7 @@ <anchor id="gimp-context-get-paint-mode"/>gimp_context_get_paint_mode () -gimp_context_get_paint_modeGimpLayerModeEffects gimp_context_get_paint_mode +gimp_context_get_paint_modeGimpLayerModeEffects gimp_context_get_paint_mode (void); Get the paint mode. @@ -276,7 +276,7 @@ <anchor id="gimp-context-set-paint-mode"/>gimp_context_set_paint_mode () -gimp_context_set_paint_modegboolean gimp_context_set_paint_mode (GimpLayerModeEffects paint_mode); +gimp_context_set_paint_modegboolean gimp_context_set_paint_mode (GimpLayerModeEffects paint_mode); Set the paint mode. @@ -295,7 +295,7 @@ <anchor id="gimp-context-get-brush"/>gimp_context_get_brush () -gimp_context_get_brushgchar* gimp_context_get_brush (void); +gimp_context_get_brushgchar* gimp_context_get_brush (void); Retrieve the currently active brush. @@ -313,7 +313,7 @@ <anchor id="gimp-context-set-brush"/>gimp_context_set_brush () -gimp_context_set_brushgboolean gimp_context_set_brush (const gchar *name); +gimp_context_set_brushgboolean gimp_context_set_brush (const gchar *name); Set the specified brush as the active brush. @@ -336,7 +336,7 @@ <anchor id="gimp-context-get-pattern"/>gimp_context_get_pattern () -gimp_context_get_patterngchar* gimp_context_get_pattern (void); +gimp_context_get_patterngchar* gimp_context_get_pattern (void); Retrieve the currently active pattern. @@ -354,7 +354,7 @@ <anchor id="gimp-context-set-pattern"/>gimp_context_set_pattern () -gimp_context_set_patterngboolean gimp_context_set_pattern (const gchar *name); +gimp_context_set_patterngboolean gimp_context_set_pattern (const gchar *name); Set the specified pattern as the active pattern. @@ -378,7 +378,7 @@ <anchor id="gimp-context-get-gradient"/>gimp_context_get_gradient () -gimp_context_get_gradientgchar* gimp_context_get_gradient (void); +gimp_context_get_gradientgchar* gimp_context_get_gradient (void); Retrieve the currently active gradient. @@ -394,7 +394,7 @@ <anchor id="gimp-context-set-gradient"/>gimp_context_set_gradient () -gimp_context_set_gradientgboolean gimp_context_set_gradient (const gchar *name); +gimp_context_set_gradientgboolean gimp_context_set_gradient (const gchar *name); Sets the specified gradient as the active gradient. @@ -418,7 +418,7 @@ <anchor id="gimp-context-get-palette"/>gimp_context_get_palette () -gimp_context_get_palettegchar* gimp_context_get_palette (void); +gimp_context_get_palettegchar* gimp_context_get_palette (void); Retrieve the currently active palette. @@ -434,7 +434,7 @@ <anchor id="gimp-context-set-palette"/>gimp_context_set_palette () -gimp_context_set_palettegboolean gimp_context_set_palette (const gchar *name); +gimp_context_set_palettegboolean gimp_context_set_palette (const gchar *name); Set the specified palette as the active palette. @@ -458,7 +458,7 @@ <anchor id="gimp-context-get-font"/>gimp_context_get_font () -gimp_context_get_fontgchar* gimp_context_get_font (void); +gimp_context_get_fontgchar* gimp_context_get_font (void); Retrieve the currently active font. @@ -474,7 +474,7 @@ <anchor id="gimp-context-set-font"/>gimp_context_set_font () -gimp_context_set_fontgboolean gimp_context_set_font (const gchar *name); +gimp_context_set_fontgboolean gimp_context_set_font (const gchar *name); Set the specified font as the active font. diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawablecombobox.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpdrawablecombobox.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawablecombobox.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpdrawablecombobox.xml 2005-06-27 00:18:47.000000000 +0200 @@ -72,7 +72,7 @@ <anchor id="gimp-drawable-combo-box-new"/>gimp_drawable_combo_box_new () -gimp_drawable_combo_box_newGtkWidget* gimp_drawable_combo_box_new (GimpDrawableConstraintFunc constraint, +gimp_drawable_combo_box_newGtkWidget* gimp_drawable_combo_box_new (GimpDrawableConstraintFunc constraint, gpointer data); Creates a new GimpIntComboBox filled with all currently opened @@ -101,7 +101,7 @@ <anchor id="gimp-channel-combo-box-new"/>gimp_channel_combo_box_new () -gimp_channel_combo_box_newGtkWidget* gimp_channel_combo_box_new (GimpDrawableConstraintFunc constraint, +gimp_channel_combo_box_newGtkWidget* gimp_channel_combo_box_new (GimpDrawableConstraintFunc constraint, gpointer data); Creates a new GimpIntComboBox filled with all currently opened @@ -122,7 +122,7 @@ <anchor id="gimp-layer-combo-box-new"/>gimp_layer_combo_box_new () -gimp_layer_combo_box_newGtkWidget* gimp_layer_combo_box_new (GimpDrawableConstraintFunc constraint, +gimp_layer_combo_box_newGtkWidget* gimp_layer_combo_box_new (GimpDrawableConstraintFunc constraint, gpointer data); Creates a new GimpIntComboBox filled with all currently opened diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawablepreview.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpdrawablepreview.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawablepreview.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpdrawablepreview.xml 2005-06-27 00:18:47.000000000 +0200 @@ -79,7 +79,7 @@ <anchor id="gimp-drawable-preview-new"/>gimp_drawable_preview_new () -gimp_drawable_preview_newGtkWidget* gimp_drawable_preview_new (GimpDrawable *drawable, +gimp_drawable_preview_newGtkWidget* gimp_drawable_preview_new (GimpDrawable *drawable, gboolean *toggle); Creates a new GimpDrawablePreview widget for drawable. If @@ -104,7 +104,7 @@ <anchor id="gimp-drawable-preview-get-drawable"/>gimp_drawable_preview_get_drawable () -gimp_drawable_preview_get_drawableGimpDrawable* gimp_drawable_preview_get_drawable +gimp_drawable_preview_get_drawableGimpDrawable* gimp_drawable_preview_get_drawable (GimpDrawablePreview *preview); @@ -122,7 +122,7 @@ <anchor id="gimp-drawable-preview-draw-region"/>gimp_drawable_preview_draw_region () -gimp_drawable_preview_draw_regionvoid gimp_drawable_preview_draw_region +gimp_drawable_preview_draw_regionvoid gimp_drawable_preview_draw_region (GimpDrawablePreview *preview, const GimpPixelRgn *region); diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawabletransform.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpdrawabletransform.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawabletransform.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpdrawabletransform.xml 2005-06-27 00:18:47.000000000 +0200 @@ -201,7 +201,7 @@ Details <anchor id="gimp-drawable-transform-flip-simple"/>gimp_drawable_transform_flip_simple () -gimp_drawable_transform_flip_simplegint32 gimp_drawable_transform_flip_simple +gimp_drawable_transform_flip_simplegint32 gimp_drawable_transform_flip_simple (gint32 drawable_ID, GimpOrientationType flip_type, gboolean auto_center, @@ -245,7 +245,7 @@ <anchor id="gimp-drawable-transform-flip"/>gimp_drawable_transform_flip () -gimp_drawable_transform_flipgint32 gimp_drawable_transform_flip (gint32 drawable_ID, +gimp_drawable_transform_flipgint32 gimp_drawable_transform_flip (gint32 drawable_ID, gdouble x0, gdouble y0, gdouble x1, @@ -309,7 +309,7 @@ <anchor id="gimp-drawable-transform-flip-default"/>gimp_drawable_transform_flip_default () -gimp_drawable_transform_flip_defaultgint32 gimp_drawable_transform_flip_default +gimp_drawable_transform_flip_defaultgint32 gimp_drawable_transform_flip_default (gint32 drawable_ID, gdouble x0, gdouble y0, @@ -355,7 +355,7 @@ <anchor id="gimp-drawable-transform-perspective"/>gimp_drawable_transform_perspective () -gimp_drawable_transform_perspectivegint32 gimp_drawable_transform_perspective +gimp_drawable_transform_perspectivegint32 gimp_drawable_transform_perspective (gint32 drawable_ID, gdouble x0, gdouble y0, @@ -442,7 +442,7 @@ <anchor id="gimp-drawable-transform-perspective-default"/>gimp_drawable_transform_perspective_default () -gimp_drawable_transform_perspective_defaultgint32 gimp_drawable_transform_perspective_default +gimp_drawable_transform_perspective_defaultgint32 gimp_drawable_transform_perspective_default (gint32 drawable_ID, gdouble x0, gdouble y0, @@ -505,7 +505,7 @@ <anchor id="gimp-drawable-transform-rotate-simple"/>gimp_drawable_transform_rotate_simple () -gimp_drawable_transform_rotate_simplegint32 gimp_drawable_transform_rotate_simple +gimp_drawable_transform_rotate_simplegint32 gimp_drawable_transform_rotate_simple (gint32 drawable_ID, GimpRotationType rotate_type, gboolean auto_center, @@ -552,7 +552,7 @@ <anchor id="gimp-drawable-transform-rotate"/>gimp_drawable_transform_rotate () -gimp_drawable_transform_rotategint32 gimp_drawable_transform_rotate (gint32 drawable_ID, +gimp_drawable_transform_rotategint32 gimp_drawable_transform_rotate (gint32 drawable_ID, gdouble angle, gboolean auto_center, gint center_x, @@ -614,7 +614,7 @@ <anchor id="gimp-drawable-transform-rotate-default"/>gimp_drawable_transform_rotate_default () -gimp_drawable_transform_rotate_defaultgint32 gimp_drawable_transform_rotate_default +gimp_drawable_transform_rotate_defaultgint32 gimp_drawable_transform_rotate_default (gint32 drawable_ID, gdouble angle, gboolean auto_center, @@ -661,7 +661,7 @@ <anchor id="gimp-drawable-transform-scale"/>gimp_drawable_transform_scale () -gimp_drawable_transform_scalegint32 gimp_drawable_transform_scale (gint32 drawable_ID, +gimp_drawable_transform_scalegint32 gimp_drawable_transform_scale (gint32 drawable_ID, gdouble x0, gdouble y0, gdouble x1, @@ -722,7 +722,7 @@ <anchor id="gimp-drawable-transform-scale-default"/>gimp_drawable_transform_scale_default () -gimp_drawable_transform_scale_defaultgint32 gimp_drawable_transform_scale_default +gimp_drawable_transform_scale_defaultgint32 gimp_drawable_transform_scale_default (gint32 drawable_ID, gdouble x0, gdouble y0, @@ -768,7 +768,7 @@ <anchor id="gimp-drawable-transform-shear"/>gimp_drawable_transform_shear () -gimp_drawable_transform_sheargint32 gimp_drawable_transform_shear (gint32 drawable_ID, +gimp_drawable_transform_sheargint32 gimp_drawable_transform_shear (gint32 drawable_ID, GimpOrientationType shear_type, gdouble magnitude, GimpTransformDirection transform_direction, @@ -825,7 +825,7 @@ <anchor id="gimp-drawable-transform-shear-default"/>gimp_drawable_transform_shear_default () -gimp_drawable_transform_shear_defaultgint32 gimp_drawable_transform_shear_default +gimp_drawable_transform_shear_defaultgint32 gimp_drawable_transform_shear_default (gint32 drawable_ID, GimpOrientationType shear_type, gdouble magnitude, @@ -864,7 +864,7 @@ <anchor id="gimp-drawable-transform-2d"/>gimp_drawable_transform_2d () -gimp_drawable_transform_2dgint32 gimp_drawable_transform_2d (gint32 drawable_ID, +gimp_drawable_transform_2dgint32 gimp_drawable_transform_2d (gint32 drawable_ID, gdouble source_x, gdouble source_y, gdouble scale_x, @@ -940,7 +940,7 @@ <anchor id="gimp-drawable-transform-2d-default"/>gimp_drawable_transform_2d_default () -gimp_drawable_transform_2d_defaultgint32 gimp_drawable_transform_2d_default +gimp_drawable_transform_2d_defaultgint32 gimp_drawable_transform_2d_default (gint32 drawable_ID, gdouble source_x, gdouble source_y, @@ -998,7 +998,7 @@ <anchor id="gimp-drawable-transform-matrix"/>gimp_drawable_transform_matrix () -gimp_drawable_transform_matrixgint32 gimp_drawable_transform_matrix (gint32 drawable_ID, +gimp_drawable_transform_matrixgint32 gimp_drawable_transform_matrix (gint32 drawable_ID, gdouble coeff_0_0, gdouble coeff_0_1, gdouble coeff_0_2, @@ -1080,7 +1080,7 @@ <anchor id="gimp-drawable-transform-matrix-default"/>gimp_drawable_transform_matrix_default () -gimp_drawable_transform_matrix_defaultgint32 gimp_drawable_transform_matrix_default +gimp_drawable_transform_matrix_defaultgint32 gimp_drawable_transform_matrix_default (gint32 drawable_ID, gdouble coeff_0_0, gdouble coeff_0_1, diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawable.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpdrawable.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawable.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpdrawable.xml 2005-06-27 00:18:48.000000000 +0200 @@ -750,7 +750,7 @@ <anchor id="gimp-drawable-mask-intersect"/>gimp_drawable_mask_intersect () -gimp_drawable_mask_intersectgboolean gimp_drawable_mask_intersect (gint32 drawable_ID, +gimp_drawable_mask_intersectgboolean gimp_drawable_mask_intersect (gint32 drawable_ID, gint *x, gint *y, gint *width, diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpedit.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpedit.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpedit.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpedit.xml 2005-06-27 00:18:48.000000000 +0200 @@ -119,7 +119,7 @@ <anchor id="gimp-edit-copy-visible"/>gimp_edit_copy_visible () -gimp_edit_copy_visiblegboolean gimp_edit_copy_visible (gint32 image_ID); +gimp_edit_copy_visiblegboolean gimp_edit_copy_visible (gint32 image_ID); Copy from the projection. diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpenums.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpenums.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpenums.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpenums.xml 2005-06-27 00:18:48.000000000 +0200 @@ -501,7 +501,7 @@ <anchor id="gimp-enums-get-type-names"/>gimp_enums_get_type_names () -gimp_enums_get_type_namesconst gchar** gimp_enums_get_type_names (gint *n_type_names); +gimp_enums_get_type_namesconst gchar** gimp_enums_get_type_names (gint *n_type_names); This function gives access to the list of enums registered by libgimp. The returned array is static and must not be modified. diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpfileops.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpfileops.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpfileops.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpfileops.xml 2005-06-27 00:18:48.000000000 +0200 @@ -236,7 +236,7 @@ <anchor id="gimp-register-file-handler-mime"/>gimp_register_file_handler_mime () -gimp_register_file_handler_mimegboolean gimp_register_file_handler_mime (const gchar *procedure_name, +gimp_register_file_handler_mimegboolean gimp_register_file_handler_mime (const gchar *procedure_name, const gchar *mime_type); Associates a MIME type with a file handler procedure. @@ -261,7 +261,7 @@ <anchor id="gimp-register-thumbnail-loader"/>gimp_register_thumbnail_loader () -gimp_register_thumbnail_loadergboolean gimp_register_thumbnail_loader (const gchar *load_proc, +gimp_register_thumbnail_loadergboolean gimp_register_thumbnail_loader (const gchar *load_proc, const gchar *thumb_proc); Associates a thumbnail loader with a file load procedure. diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpgradient.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpgradient.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpgradient.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpgradient.xml 2005-06-27 00:18:48.000000000 +0200 @@ -164,7 +164,7 @@ Details <anchor id="gimp-gradient-new"/>gimp_gradient_new () -gimp_gradient_newgchar* gimp_gradient_new (const gchar *name); +gimp_gradient_newgchar* gimp_gradient_new (const gchar *name); Creates a new gradient @@ -183,7 +183,7 @@ <anchor id="gimp-gradient-duplicate"/>gimp_gradient_duplicate () -gimp_gradient_duplicategchar* gimp_gradient_duplicate (const gchar *name); +gimp_gradient_duplicategchar* gimp_gradient_duplicate (const gchar *name); Duplicates a gradient @@ -202,7 +202,7 @@ <anchor id="gimp-gradient-rename"/>gimp_gradient_rename () -gimp_gradient_renamegchar* gimp_gradient_rename (const gchar *name, +gimp_gradient_renamegchar* gimp_gradient_rename (const gchar *name, const gchar *new_name); Rename a gradient @@ -225,7 +225,7 @@ <anchor id="gimp-gradient-delete"/>gimp_gradient_delete () -gimp_gradient_deletegboolean gimp_gradient_delete (const gchar *name); +gimp_gradient_deletegboolean gimp_gradient_delete (const gchar *name); Deletes a gradient @@ -244,7 +244,7 @@ <anchor id="gimp-gradient-get-uniform-samples"/>gimp_gradient_get_uniform_samples () -gimp_gradient_get_uniform_samplesgboolean gimp_gradient_get_uniform_samples +gimp_gradient_get_uniform_samplesgboolean gimp_gradient_get_uniform_samples (const gchar *name, gint num_samples, gboolean reverse, @@ -286,7 +286,7 @@ <anchor id="gimp-gradient-get-custom-samples"/>gimp_gradient_get_custom_samples () -gimp_gradient_get_custom_samplesgboolean gimp_gradient_get_custom_samples +gimp_gradient_get_custom_samplesgboolean gimp_gradient_get_custom_samples (const gchar *name, gint num_samples, const gdouble *positions, @@ -331,7 +331,7 @@ <anchor id="gimp-gradient-segment-get-left-color"/>gimp_gradient_segment_get_left_color () -gimp_gradient_segment_get_left_colorgboolean gimp_gradient_segment_get_left_color +gimp_gradient_segment_get_left_colorgboolean gimp_gradient_segment_get_left_color (const gchar *name, gint segment, GimpRGB *color, @@ -365,7 +365,7 @@ <anchor id="gimp-gradient-segment-set-left-color"/>gimp_gradient_segment_set_left_color () -gimp_gradient_segment_set_left_colorgboolean gimp_gradient_segment_set_left_color +gimp_gradient_segment_set_left_colorgboolean gimp_gradient_segment_set_left_color (const gchar *name, gint segment, const GimpRGB *color, @@ -399,7 +399,7 @@ <anchor id="gimp-gradient-segment-get-right-color"/>gimp_gradient_segment_get_right_color () -gimp_gradient_segment_get_right_colorgboolean gimp_gradient_segment_get_right_color +gimp_gradient_segment_get_right_colorgboolean gimp_gradient_segment_get_right_color (const gchar *name, gint segment, GimpRGB *color, @@ -433,7 +433,7 @@ <anchor id="gimp-gradient-segment-set-right-color"/>gimp_gradient_segment_set_right_color () -gimp_gradient_segment_set_right_colorgboolean gimp_gradient_segment_set_right_color +gimp_gradient_segment_set_right_colorgboolean gimp_gradient_segment_set_right_color (const gchar *name, gint segment, const GimpRGB *color, @@ -467,7 +467,7 @@ <anchor id="gimp-gradient-segment-get-left-pos"/>gimp_gradient_segment_get_left_pos () -gimp_gradient_segment_get_left_posgboolean gimp_gradient_segment_get_left_pos +gimp_gradient_segment_get_left_posgboolean gimp_gradient_segment_get_left_pos (const gchar *name, gint segment, gdouble *pos); @@ -497,7 +497,7 @@ <anchor id="gimp-gradient-segment-set-left-pos"/>gimp_gradient_segment_set_left_pos () -gimp_gradient_segment_set_left_posgboolean gimp_gradient_segment_set_left_pos +gimp_gradient_segment_set_left_posgboolean gimp_gradient_segment_set_left_pos (const gchar *name, gint segment, gdouble pos, @@ -534,7 +534,7 @@ <anchor id="gimp-gradient-segment-get-middle-pos"/>gimp_gradient_segment_get_middle_pos () -gimp_gradient_segment_get_middle_posgboolean gimp_gradient_segment_get_middle_pos +gimp_gradient_segment_get_middle_posgboolean gimp_gradient_segment_get_middle_pos (const gchar *name, gint segment, gdouble *pos); @@ -564,7 +564,7 @@ <anchor id="gimp-gradient-segment-set-middle-pos"/>gimp_gradient_segment_set_middle_pos () -gimp_gradient_segment_set_middle_posgboolean gimp_gradient_segment_set_middle_pos +gimp_gradient_segment_set_middle_posgboolean gimp_gradient_segment_set_middle_pos (const gchar *name, gint segment, gdouble pos, @@ -599,7 +599,7 @@ <anchor id="gimp-gradient-segment-get-right-pos"/>gimp_gradient_segment_get_right_pos () -gimp_gradient_segment_get_right_posgboolean gimp_gradient_segment_get_right_pos +gimp_gradient_segment_get_right_posgboolean gimp_gradient_segment_get_right_pos (const gchar *name, gint segment, gdouble *pos); @@ -629,7 +629,7 @@ <anchor id="gimp-gradient-segment-set-right-pos"/>gimp_gradient_segment_set_right_pos () -gimp_gradient_segment_set_right_posgboolean gimp_gradient_segment_set_right_pos +gimp_gradient_segment_set_right_posgboolean gimp_gradient_segment_set_right_pos (const gchar *name, gint segment, gdouble pos, @@ -666,7 +666,7 @@ <anchor id="gimp-gradient-segment-get-blending-function"/>gimp_gradient_segment_get_blending_function () -gimp_gradient_segment_get_blending_functiongboolean gimp_gradient_segment_get_blending_function +gimp_gradient_segment_get_blending_functiongboolean gimp_gradient_segment_get_blending_function (const gchar *name, gint segment, GimpGradientSegmentType *blend_func); @@ -695,7 +695,7 @@ <anchor id="gimp-gradient-segment-get-coloring-type"/>gimp_gradient_segment_get_coloring_type () -gimp_gradient_segment_get_coloring_typegboolean gimp_gradient_segment_get_coloring_type +gimp_gradient_segment_get_coloring_typegboolean gimp_gradient_segment_get_coloring_type (const gchar *name, gint segment, GimpGradientSegmentColor *coloring_type); @@ -724,7 +724,7 @@ <anchor id="gimp-gradient-segment-range-set-blending-function"/>gimp_gradient_segment_range_set_blending_function () -gimp_gradient_segment_range_set_blending_functiongboolean gimp_gradient_segment_range_set_blending_function +gimp_gradient_segment_range_set_blending_functiongboolean gimp_gradient_segment_range_set_blending_function (const gchar *name, gint start_segment, gint end_segment, @@ -757,7 +757,7 @@ <anchor id="gimp-gradient-segment-range-set-coloring-type"/>gimp_gradient_segment_range_set_coloring_type () -gimp_gradient_segment_range_set_coloring_typegboolean gimp_gradient_segment_range_set_coloring_type +gimp_gradient_segment_range_set_coloring_typegboolean gimp_gradient_segment_range_set_coloring_type (const gchar *name, gint start_segment, gint end_segment, @@ -790,7 +790,7 @@ <anchor id="gimp-gradient-segment-range-flip"/>gimp_gradient_segment_range_flip () -gimp_gradient_segment_range_flipgboolean gimp_gradient_segment_range_flip +gimp_gradient_segment_range_flipgboolean gimp_gradient_segment_range_flip (const gchar *name, gint start_segment, gint end_segment); @@ -818,7 +818,7 @@ <anchor id="gimp-gradient-segment-range-replicate"/>gimp_gradient_segment_range_replicate () -gimp_gradient_segment_range_replicategboolean gimp_gradient_segment_range_replicate +gimp_gradient_segment_range_replicategboolean gimp_gradient_segment_range_replicate (const gchar *name, gint start_segment, gint end_segment, @@ -852,7 +852,7 @@ <anchor id="gimp-gradient-segment-range-split-midpoint"/>gimp_gradient_segment_range_split_midpoint () -gimp_gradient_segment_range_split_midpointgboolean gimp_gradient_segment_range_split_midpoint +gimp_gradient_segment_range_split_midpointgboolean gimp_gradient_segment_range_split_midpoint (const gchar *name, gint start_segment, gint end_segment); @@ -881,7 +881,7 @@ <anchor id="gimp-gradient-segment-range-split-uniform"/>gimp_gradient_segment_range_split_uniform () -gimp_gradient_segment_range_split_uniformgboolean gimp_gradient_segment_range_split_uniform +gimp_gradient_segment_range_split_uniformgboolean gimp_gradient_segment_range_split_uniform (const gchar *name, gint start_segment, gint end_segment, @@ -914,7 +914,7 @@ <anchor id="gimp-gradient-segment-range-delete"/>gimp_gradient_segment_range_delete () -gimp_gradient_segment_range_deletegboolean gimp_gradient_segment_range_delete +gimp_gradient_segment_range_deletegboolean gimp_gradient_segment_range_delete (const gchar *name, gint start_segment, gint end_segment); @@ -942,7 +942,7 @@ <anchor id="gimp-gradient-segment-range-redistribute-handles"/>gimp_gradient_segment_range_redistribute_handles () -gimp_gradient_segment_range_redistribute_handlesgboolean gimp_gradient_segment_range_redistribute_handles +gimp_gradient_segment_range_redistribute_handlesgboolean gimp_gradient_segment_range_redistribute_handles (const gchar *name, gint start_segment, gint end_segment); @@ -971,7 +971,7 @@ <anchor id="gimp-gradient-segment-range-blend-colors"/>gimp_gradient_segment_range_blend_colors () -gimp_gradient_segment_range_blend_colorsgboolean gimp_gradient_segment_range_blend_colors +gimp_gradient_segment_range_blend_colorsgboolean gimp_gradient_segment_range_blend_colors (const gchar *name, gint start_segment, gint end_segment); @@ -1001,7 +1001,7 @@ <anchor id="gimp-gradient-segment-range-blend-opacity"/>gimp_gradient_segment_range_blend_opacity () -gimp_gradient_segment_range_blend_opacitygboolean gimp_gradient_segment_range_blend_opacity +gimp_gradient_segment_range_blend_opacitygboolean gimp_gradient_segment_range_blend_opacity (const gchar *name, gint start_segment, gint end_segment); @@ -1031,7 +1031,7 @@ <anchor id="gimp-gradient-segment-range-move"/>gimp_gradient_segment_range_move () -gimp_gradient_segment_range_movegdouble gimp_gradient_segment_range_move +gimp_gradient_segment_range_movegdouble gimp_gradient_segment_range_move (const gchar *name, gint start_segment, gint end_segment, diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpimagecombobox.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpimagecombobox.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpimagecombobox.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpimagecombobox.xml 2005-06-27 00:18:48.000000000 +0200 @@ -63,7 +63,7 @@ <anchor id="gimp-image-combo-box-new"/>gimp_image_combo_box_new () -gimp_image_combo_box_newGtkWidget* gimp_image_combo_box_new (GimpImageConstraintFunc constraint, +gimp_image_combo_box_newGtkWidget* gimp_image_combo_box_new (GimpImageConstraintFunc constraint, gpointer data); Creates a new GimpIntComboBox filled with all currently opened diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpimage.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpimage.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpimage.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpimage.xml 2005-06-27 00:18:48.000000000 +0200 @@ -433,7 +433,7 @@ <anchor id="gimp-image-resize-to-layers"/>gimp_image_resize_to_layers () -gimp_image_resize_to_layersgboolean gimp_image_resize_to_layers (gint32 image_ID); +gimp_image_resize_to_layersgboolean gimp_image_resize_to_layers (gint32 image_ID); Resize the image to fit all layers. diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimplayer.xml gimp-2.2.8/devel-docs/libgimp/xml/gimplayer.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimplayer.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimplayer.xml 2005-06-27 00:18:48.000000000 +0200 @@ -359,7 +359,7 @@ <anchor id="gimp-layer-from-mask"/>gimp_layer_from_mask () -gimp_layer_from_maskgint32 gimp_layer_from_mask (gint32 mask_ID); +gimp_layer_from_maskgint32 gimp_layer_from_mask (gint32 mask_ID); Get the specified mask's layer. diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimppalettemenu.xml gimp-2.2.8/devel-docs/libgimp/xml/gimppalettemenu.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimppalettemenu.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimppalettemenu.xml 2005-06-27 00:18:48.000000000 +0200 @@ -49,7 +49,7 @@ Details <anchor id="gimp-palette-select-widget-new"/>gimp_palette_select_widget_new () -gimp_palette_select_widget_newGtkWidget* gimp_palette_select_widget_new (const gchar *title, +gimp_palette_select_widget_newGtkWidget* gimp_palette_select_widget_new (const gchar *title, const gchar *palette_name, GimpRunPaletteCallback callback, gpointer data); @@ -80,7 +80,7 @@ <anchor id="gimp-palette-select-widget-close"/>gimp_palette_select_widget_close () -gimp_palette_select_widget_closevoid gimp_palette_select_widget_close +gimp_palette_select_widget_closevoid gimp_palette_select_widget_close (GtkWidget *widget); Closes the popup window associated with widget. @@ -94,7 +94,7 @@ <anchor id="gimp-palette-select-widget-set"/>gimp_palette_select_widget_set () -gimp_palette_select_widget_setvoid gimp_palette_select_widget_set (GtkWidget *widget, +gimp_palette_select_widget_setvoid gimp_palette_select_widget_set (GtkWidget *widget, const gchar *palette_name); Sets the current palette for the palette select widget. Calls the diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimppalette.xml gimp-2.2.8/devel-docs/libgimp/xml/gimppalette.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimppalette.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimppalette.xml 2005-06-27 00:18:48.000000000 +0200 @@ -72,7 +72,7 @@ Details <anchor id="gimp-palette-new"/>gimp_palette_new () -gimp_palette_newgchar* gimp_palette_new (const gchar *name); +gimp_palette_newgchar* gimp_palette_new (const gchar *name); Creates a new palette @@ -91,7 +91,7 @@ <anchor id="gimp-palette-duplicate"/>gimp_palette_duplicate () -gimp_palette_duplicategchar* gimp_palette_duplicate (const gchar *name); +gimp_palette_duplicategchar* gimp_palette_duplicate (const gchar *name); Duplicates a palette @@ -110,7 +110,7 @@ <anchor id="gimp-palette-rename"/>gimp_palette_rename () -gimp_palette_renamegchar* gimp_palette_rename (const gchar *name, +gimp_palette_renamegchar* gimp_palette_rename (const gchar *name, const gchar *new_name); Rename a palette @@ -133,7 +133,7 @@ <anchor id="gimp-palette-delete"/>gimp_palette_delete () -gimp_palette_deletegboolean gimp_palette_delete (const gchar *name); +gimp_palette_deletegboolean gimp_palette_delete (const gchar *name); Deletes a palette @@ -152,7 +152,7 @@ <anchor id="gimp-palette-get-info"/>gimp_palette_get_info () -gimp_palette_get_infogboolean gimp_palette_get_info (const gchar *name, +gimp_palette_get_infogboolean gimp_palette_get_info (const gchar *name, gint *num_colors); Retrieve information about the specified palette. @@ -176,7 +176,7 @@ <anchor id="gimp-palette-add-entry"/>gimp_palette_add_entry () -gimp_palette_add_entrygboolean gimp_palette_add_entry (const gchar *name, +gimp_palette_add_entrygboolean gimp_palette_add_entry (const gchar *name, const gchar *entry_name, const GimpRGB *color, gint *entry_num); @@ -208,7 +208,7 @@ <anchor id="gimp-palette-delete-entry"/>gimp_palette_delete_entry () -gimp_palette_delete_entrygboolean gimp_palette_delete_entry (const gchar *name, +gimp_palette_delete_entrygboolean gimp_palette_delete_entry (const gchar *name, gint entry_num); Deletes a palette entry from the specified palette. @@ -232,7 +232,7 @@ <anchor id="gimp-palette-entry-get-color"/>gimp_palette_entry_get_color () -gimp_palette_entry_get_colorgboolean gimp_palette_entry_get_color (const gchar *name, +gimp_palette_entry_get_colorgboolean gimp_palette_entry_get_color (const gchar *name, gint entry_num, GimpRGB *color); @@ -261,7 +261,7 @@ <anchor id="gimp-palette-entry-set-color"/>gimp_palette_entry_set_color () -gimp_palette_entry_set_colorgboolean gimp_palette_entry_set_color (const gchar *name, +gimp_palette_entry_set_colorgboolean gimp_palette_entry_set_color (const gchar *name, gint entry_num, const GimpRGB *color); @@ -290,7 +290,7 @@ <anchor id="gimp-palette-entry-get-name"/>gimp_palette_entry_get_name () -gimp_palette_entry_get_namegboolean gimp_palette_entry_get_name (const gchar *name, +gimp_palette_entry_get_namegboolean gimp_palette_entry_get_name (const gchar *name, gint entry_num, gchar **entry_name); @@ -319,7 +319,7 @@ <anchor id="gimp-palette-entry-set-name"/>gimp_palette_entry_set_name () -gimp_palette_entry_set_namegboolean gimp_palette_entry_set_name (const gchar *name, +gimp_palette_entry_set_namegboolean gimp_palette_entry_set_name (const gchar *name, gint entry_num, const gchar *entry_name); diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimppattern.xml gimp-2.2.8/devel-docs/libgimp/xml/gimppattern.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimppattern.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimppattern.xml 2005-06-27 00:18:48.000000000 +0200 @@ -51,7 +51,7 @@ Details <anchor id="gimp-pattern-get-info"/>gimp_pattern_get_info () -gimp_pattern_get_infogboolean gimp_pattern_get_info (const gchar *name, +gimp_pattern_get_infogboolean gimp_pattern_get_info (const gchar *name, gint *width, gint *height, gint *bpp); @@ -83,7 +83,7 @@ <anchor id="gimp-pattern-get-pixels"/>gimp_pattern_get_pixels () -gimp_pattern_get_pixelsgboolean gimp_pattern_get_pixels (const gchar *name, +gimp_pattern_get_pixelsgboolean gimp_pattern_get_pixels (const gchar *name, gint *width, gint *height, gint *bpp, diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimppixbuf.xml gimp-2.2.8/devel-docs/libgimp/xml/gimppixbuf.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimppixbuf.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimppixbuf.xml 2005-06-27 00:18:48.000000000 +0200 @@ -70,7 +70,7 @@ <anchor id="gimp-image-get-thumbnail"/>gimp_image_get_thumbnail () -gimp_image_get_thumbnailGdkPixbuf* gimp_image_get_thumbnail (gint32 image_ID, +gimp_image_get_thumbnailGdkPixbuf* gimp_image_get_thumbnail (gint32 image_ID, gint width, gint height, GimpPixbufTransparency alpha); @@ -99,7 +99,7 @@ <anchor id="gimp-drawable-get-thumbnail"/>gimp_drawable_get_thumbnail () -gimp_drawable_get_thumbnailGdkPixbuf* gimp_drawable_get_thumbnail (gint32 drawable_ID, +gimp_drawable_get_thumbnailGdkPixbuf* gimp_drawable_get_thumbnail (gint32 drawable_ID, gint width, gint height, GimpPixbufTransparency alpha); @@ -129,7 +129,7 @@ <anchor id="gimp-drawable-get-sub-thumbnail"/>gimp_drawable_get_sub_thumbnail () -gimp_drawable_get_sub_thumbnailGdkPixbuf* gimp_drawable_get_sub_thumbnail (gint32 drawable_ID, +gimp_drawable_get_sub_thumbnailGdkPixbuf* gimp_drawable_get_sub_thumbnail (gint32 drawable_ID, gint src_x, gint src_y, gint src_width, diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpplugin.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpplugin.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpplugin.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpplugin.xml 2005-06-27 00:18:48.000000000 +0200 @@ -124,7 +124,7 @@ <anchor id="gimp-plugin-menu-register"/>gimp_plugin_menu_register () -gimp_plugin_menu_registergboolean gimp_plugin_menu_register (const gchar *procedure_name, +gimp_plugin_menu_registergboolean gimp_plugin_menu_register (const gchar *procedure_name, const gchar *menu_path); Register an additional menu path for a plug-in procedure. diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpprogressbar.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpprogressbar.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpprogressbar.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpprogressbar.xml 2005-06-27 00:18:48.000000000 +0200 @@ -71,7 +71,7 @@ <anchor id="gimp-progress-bar-new"/>gimp_progress_bar_new () -gimp_progress_bar_newGtkWidget* gimp_progress_bar_new (void); +gimp_progress_bar_newGtkWidget* gimp_progress_bar_new (void); Creates a new GimpProgressBar widget. diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimpprogress.xml gimp-2.2.8/devel-docs/libgimp/xml/gimpprogress.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimpprogress.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimpprogress.xml 2005-06-27 00:18:48.000000000 +0200 @@ -158,7 +158,7 @@ <anchor id="gimp-progress-install"/>gimp_progress_install () -gimp_progress_installconst gchar* gimp_progress_install (GimpProgressStartCallback start_callback, +gimp_progress_installconst gchar* gimp_progress_install (GimpProgressStartCallback start_callback, GimpProgressEndCallback end_callback, GimpProgressTextCallback text_callback, GimpProgressValueCallback value_callback, @@ -190,7 +190,7 @@ <anchor id="gimp-progress-uninstall"/>gimp_progress_uninstall () -gimp_progress_uninstallgpointer gimp_progress_uninstall (const gchar *progress_callback); +gimp_progress_uninstallgpointer gimp_progress_uninstall (const gchar *progress_callback); Uninstalls a temporary progress procedure that was installed using gimp_progress_install(). @@ -207,7 +207,7 @@ <anchor id="gimp-progress-cancel"/>gimp_progress_cancel () -gimp_progress_cancelgboolean gimp_progress_cancel (const gchar *progress_callback); +gimp_progress_cancelgboolean gimp_progress_cancel (const gchar *progress_callback); Cancels a running progress. diff -uraN gimp-2.2.7/devel-docs/libgimp/xml/gimp.xml gimp-2.2.8/devel-docs/libgimp/xml/gimp.xml --- gimp-2.2.7/devel-docs/libgimp/xml/gimp.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimp/xml/gimp.xml 2005-06-27 00:18:48.000000000 +0200 @@ -794,7 +794,7 @@ <anchor id="gimp-show-help-button"/>gimp_show_help_button () -gimp_show_help_buttongboolean gimp_show_help_button (void); +gimp_show_help_buttongboolean gimp_show_help_button (void); Returns whether or not GimpDialog should automatically add a help button if help_func and help_id are given. @@ -808,7 +808,7 @@ <anchor id="gimp-check-size"/>gimp_check_size () -gimp_check_sizeGimpCheckSize gimp_check_size (void); +gimp_check_sizeGimpCheckSize gimp_check_size (void); Returns the size of the checkerboard to be used in previews. This is a constant value given at Plug-In config time. @@ -822,7 +822,7 @@ <anchor id="gimp-check-type"/>gimp_check_type () -gimp_check_typeGimpCheckType gimp_check_type (void); +gimp_check_typeGimpCheckType gimp_check_type (void); Returns the type of the checkerboard to be used in previews. This is a constant value given at Plug-In config time. diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/index.html gimp-2.2.8/devel-docs/libgimpbase/html/index.html --- gimp-2.2.7/devel-docs/libgimpbase/html/index.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/index.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,7 +1,7 @@ -GIMP Base Library Reference Manual

+GIMP Base Library Reference Manual

for GIMP 2.2.4 -


Table of Contents

I. GIMP Base Library
gimpbaseenums - Basic GIMP enumeration data types.
gimpbasetypes - Translation between gettext translation domain identifier and GType.
gimpversion - Macros and constants useful for determining GIMP's version number and -capabilities.
gimplimits - Boundaries of some GIMP data types and some global constants.
gimpchecks - Constants and functions related to rendering checkerboards.
gimpdatafiles - Functions to handle GIMP data files.
gimpenv - Functions to access the GIMP environment.
gimpmemsize - Functions to (de)serialize a given memory size.
gimpparasite - Arbitrary pieces of data which can be attached to various GIMP objects.
gimpparasiteio - Utility functions to (de)serialize certain C structures to/from GimpParasite's.
gimpsignal - Portable signal handling.
gimpunit - Provides a collection of predefined units and functions for creating -user-defined units.
gimputils - Utilities of general interest
gimpprotocol - The communication protocol between GIMP and it's plug-ins.
gimpwire - The lowlevel I/O protocol used for communication between GIMP and -it's plug-ins.
+


Table of Contents

I. GIMP Base Library
gimpbaseenums - Basic GIMP enumeration data types.
gimpbasetypes - Translation between gettext translation domain identifier and GType.
gimpversion - Macros and constants useful for determining GIMP's version number and +capabilities.
gimplimits - Boundaries of some GIMP data types and some global constants.
gimpchecks - Constants and functions related to rendering checkerboards.
gimpdatafiles - Functions to handle GIMP data files.
gimpenv - Functions to access the GIMP environment.
gimpmemsize - Functions to (de)serialize a given memory size.
gimpparasite - Arbitrary pieces of data which can be attached to various GIMP objects.
gimpparasiteio - Utility functions to (de)serialize certain C structures to/from GimpParasite's.
gimpsignal - Portable signal handling.
gimpunit - Provides a collection of predefined units and functions for creating +user-defined units.
gimputils - Utilities of general interest
gimpprotocol - The communication protocol between GIMP and it's plug-ins.
gimpwire - The lowlevel I/O protocol used for communication between GIMP and +it's plug-ins.
diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpbaseenums.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpbaseenums.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpbaseenums.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpbaseenums.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimpbaseenums

gimpbaseenums

gimpbaseenums — Basic GIMP enumeration data types.

Synopsis

+gimpbaseenums

gimpbaseenums

gimpbaseenums — Basic GIMP enumeration data types.

Synopsis

 
 
 
@@ -13,9 +13,9 @@
 enum        GimpProgressCommand;
 enum        GimpStackTraceMode;
 
-

Description

+

Description

Basic GIMP enumeration data types. -

Details

enum GimpCheckSize

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

Details

enum GimpCheckSize

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

-


enum GimpCheckType

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


enum GimpCheckType

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

-


enum GimpImageBaseType

typedef enum
+


enum GimpImageBaseType

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

-


enum GimpImageType

typedef enum
+


enum GimpImageType

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

-


enum GimpMessageHandlerType

typedef enum
+


enum GimpMessageHandlerType

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

-


enum GimpPDBArgType

typedef enum
+


enum GimpPDBArgType

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

-


enum GimpPDBProcType

typedef enum
+


enum GimpPDBProcType

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

-


enum GimpPDBStatusType

typedef enum
+


enum GimpPDBStatusType

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

-


enum GimpProgressCommand

typedef enum
+


enum GimpProgressCommand

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

-


enum GimpStackTraceMode

typedef enum
+


enum GimpStackTraceMode

typedef enum
 {
   GIMP_STACK_TRACE_NEVER,
   GIMP_STACK_TRACE_QUERY,
diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html
--- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html	2005-05-08 23:43:05.000000000 +0200
+++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html	2005-06-27 00:18:40.000000000 +0200
@@ -1,4 +1,4 @@
-gimpbasetypes

gimpbasetypes

gimpbasetypes — Translation between gettext translation domain identifier and GType.

Synopsis

+gimpbasetypes

gimpbasetypes

gimpbasetypes — Translation between gettext translation domain identifier and GType.

Synopsis

 
 
 
@@ -19,23 +19,23 @@
 void        gimp_flags_set_value_descriptions
                                             (GType flags_type,
                                              const GimpFlagsDesc *descriptions);
-

Description

+

Description

Translation between gettext translation domain identifier and GType. -

Details

GimpEnumDesc

typedef struct {
+

Details

GimpEnumDesc

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

-


GimpFlagsDesc

typedef struct {
+


GimpFlagsDesc

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

-


gimp_type_set_translation_domain ()

void        gimp_type_set_translation_domain
+


gimp_type_set_translation_domain ()

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

This function attaches a constant string as a gettext translation @@ -43,55 +43,55 @@ to use it when registering a GTypeEnum with translatable value names.

-

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

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

Since GIMP 2.2 -


gimp_type_get_translation_domain ()

const gchar* gimp_type_get_translation_domain
+


gimp_type_get_translation_domain ()

const gchar* gimp_type_get_translation_domain
                                             (GType type);

Retrieves the gettext translation domain identifier that has been -previously set using gimp_type_set_translation_domain(). You should -not need to use this function directly, use gimp_enum_get_value() -or gimp_enum_value_get_name() instead.

+previously set using gimp_type_set_translation_domain(). You should +not need to use this function directly, use gimp_enum_get_value() +or gimp_enum_value_get_name() instead.

-

type : a GType -
Returns : the translation domain associated with type - or NULL if no domain was set +

type : a GType +
Returns : the translation domain associated with type + or NULL if no domain was set

Since GIMP 2.2 -


gimp_enum_set_value_descriptions ()

void        gimp_enum_set_value_descriptions
+


gimp_enum_set_value_descriptions ()

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

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

-

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

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

Since GIMP 2.2 -


gimp_enum_get_value_descriptions ()

const GimpEnumDesc* gimp_enum_get_value_descriptions
+


gimp_enum_get_value_descriptions ()

const GimpEnumDesc* gimp_enum_get_value_descriptions
                                             (GType enum_type);

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

-

enum_type : a GType -
Returns : a NULL terminated constant array of GimpEnumDesc +

enum_type : a GType +
Returns : a NULL terminated constant array of GimpEnumDesc

Since GIMP 2.2 -


gimp_flags_get_value_descriptions ()

const GimpFlagsDesc* gimp_flags_get_value_descriptions
+


gimp_flags_get_value_descriptions ()

const GimpFlagsDesc* gimp_flags_get_value_descriptions
                                             (GType flags_type);

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

-

flags_type : a GType -
Returns : a NULL terminated constant array of GimpFlagsDesc +

flags_type : a GType +
Returns : a NULL terminated constant array of GimpFlagsDesc

Since GIMP 2.2 -


gimp_flags_set_value_descriptions ()

void        gimp_flags_set_value_descriptions
+


gimp_flags_set_value_descriptions ()

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

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

-

flags_type : a GType -
descriptions : a NULL terminated constant static array of GimpFlagsDesc +

flags_type : a GType +
descriptions : a NULL terminated constant static array of GimpFlagsDesc

Since GIMP 2.2

diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimpchecks

gimpchecks

gimpchecks — Constants and functions related to rendering checkerboards.

Synopsis

+gimpchecks

gimpchecks

gimpchecks — Constants and functions related to rendering checkerboards.

Synopsis

 
 
 
@@ -9,30 +9,30 @@
 void        gimp_checks_get_shades          (GimpCheckType type,
                                              guchar *light,
                                              guchar *dark);
-

Description

+

Description

Constants and functions related to rendering checkerboards. -

Details

GIMP_CHECK_SIZE

#define GIMP_CHECK_SIZE      8
+

Details

GIMP_CHECK_SIZE

#define GIMP_CHECK_SIZE      8
 

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


GIMP_CHECK_SIZE_SM

#define GIMP_CHECK_SIZE_SM   4
+


GIMP_CHECK_SIZE_SM

#define GIMP_CHECK_SIZE_SM   4
 

The default small checkerboard size in pixels. -


GIMP_CHECK_DARK

#define GIMP_CHECK_DARK      0.4
+


GIMP_CHECK_DARK

#define GIMP_CHECK_DARK      0.4
 

The dark gray value for the default checkerboard pattern. -


GIMP_CHECK_LIGHT

#define GIMP_CHECK_LIGHT     0.6
+


GIMP_CHECK_LIGHT

#define GIMP_CHECK_LIGHT     0.6
 

The light gray value for the default checkerboard pattern. -


gimp_checks_get_shades ()

void        gimp_checks_get_shades          (GimpCheckType type,
+


gimp_checks_get_shades ()

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

Retrieves the actual shades of gray to use when drawing a checkerboard for a certain GimpCheckType.

-

type : the checkerboard type -
light : return location for the light shade -
dark : return location for the dark shade +

type : the checkerboard type +
light : return location for the light shade +
dark : return location for the dark shade

Since GIMP 2.2

diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimpdatafiles

gimpdatafiles

gimpdatafiles — Functions to handle GIMP data files.

Synopsis

+gimpdatafiles

gimpdatafiles

gimpdatafiles — Functions to handle GIMP data files.

Synopsis

 
 
 
@@ -11,9 +11,9 @@
                                              GFileTest flags,
                                              GimpDatafileLoaderFunc loader_func,
                                              gpointer user_data);
-

Description

+

Description

Functions to handle GIMP data files. -

Details

GimpDatafileData

typedef struct {
+

Details

GimpDatafileData

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

-


GimpDatafileLoaderFunc ()

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


GimpDatafileLoaderFunc ()

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

-

file_data : -
user_data : +

file_data : +
user_data : -

gimp_datafiles_check_extension ()

gboolean    gimp_datafiles_check_extension  (const gchar *filename,
+

gimp_datafiles_check_extension ()

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

-

filename : -
extension : +

filename : +
extension :
Returns : -

gimp_datafiles_read_directories ()

void        gimp_datafiles_read_directories (const gchar *path_str,
+

gimp_datafiles_read_directories ()

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

-

path_str : -
flags : -
loader_func : -
user_data : +

path_str : +
flags : +
loader_func : +
user_data :
diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimpenv

gimpenv

gimpenv — Functions to access the GIMP environment.

Synopsis

+gimpenv

gimpenv

gimpenv — Functions to access the GIMP environment.

Synopsis

 
 
 
@@ -16,41 +16,41 @@
 gchar*      gimp_path_to_str                (GList *path);
 void        gimp_path_free                  (GList *path);
 gchar*      gimp_path_get_user_writable_dir (GList *path);
-

Description

+

Description

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

Details

gimp_directory ()

const gchar* gimp_directory                 (void);

+

Details

gimp_directory ()

const gchar* gimp_directory                 (void);

Returns the user-specific GIMP settings directory. If the environment variable GIMP2_DIRECTORY exists, it is used. If it is an absolute path, it is used as is. If it is a relative path, it is taken to be a subdirectory of the home directory. If it is a relative path, and no home directory can be determined, it is taken -to be a subdirectory of gimp_data_directory(). +to be a subdirectory of gimp_data_directory().

The usual case is that no GIMP2_DIRECTORY environment variable exists, and then we use the GIMPDIR subdirectory of the home directory. If no home directory exists, we use a per-user -subdirectory of gimp_data_directory(). In any case, we always +subdirectory of gimp_data_directory(). In any case, we always return some non-empty string, whether it corresponds to an existing directory or not.

The returned string is allocated just once, and should *NOT* be -freed with g_free(). The returned string is in the encoding used +freed with g_free(). The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never is on Windows).

Returns : The user-specific GIMP settings directory. -

gimp_personal_rc_file ()

gchar*      gimp_personal_rc_file           (const gchar *basename);

+


gimp_personal_rc_file ()

gchar*      gimp_personal_rc_file           (const gchar *basename);

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

The returned string is allocated dynamically and *SHOULD* be freed -with g_free() after use. The returned string is in the encoding used +with g_free() after use. The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never is on Windows).

-

basename : The basename of a rc_file. +

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

gimp_data_directory ()

const gchar* gimp_data_directory            (void);

+


gimp_data_directory ()

const gchar* gimp_data_directory            (void);

Returns the top directory for GIMP data. If the environment variable GIMP2_DATADIR exists, that is used. It should be an absolute pathname. Otherwise, on Unix the compile-time defined @@ -58,12 +58,12 @@ from the executable's name is used.

The returned string is allocated just once, and should *NOT* be -freed with g_free(). The returned string is in the encoding used +freed with g_free(). The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never is on Windows).

Returns : The top directory for GIMP data. -

gimp_locale_directory ()

const gchar* gimp_locale_directory          (void);

+


gimp_locale_directory ()

const gchar* gimp_locale_directory          (void);

Returns the top directory for GIMP locale files. If the environment variable GIMP2_LOCALEDIR exists, that is used. It should be an absolute pathname. Otherwise, on Unix the compile-time defined @@ -71,12 +71,12 @@ from the executable's name is used.

The returned string is allocated just once, and should *NOT* be -freed with g_free(). The returned string is in the encoding used +freed with g_free(). The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never is on Windows).

Returns : The top directory for GIMP locale files. -

gimp_plug_in_directory ()

const gchar* gimp_plug_in_directory         (void);

+


gimp_plug_in_directory ()

const gchar* gimp_plug_in_directory         (void);

Returns the top directory for GIMP plug_ins and modules. If the environment variable GIMP2_PLUGINDIR exists, that is used. It should be an absolute pathname. Otherwise, on Unix the compile-time @@ -84,12 +84,12 @@ deduced from the executable's name is used.

The returned string is allocated just once, and should *NOT* be -freed with g_free(). The returned string is in the encoding used +freed with g_free(). The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never is on Windows).

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

gimp_sysconf_directory ()

const gchar* gimp_sysconf_directory         (void);

+


gimp_sysconf_directory ()

const gchar* gimp_sysconf_directory         (void);

Returns the top directory for GIMP config files. If the environment variable GIMP2_SYSCONFDIR exists, that is used. It should be an absolute pathname. Otherwise, on Unix the compile-time defined @@ -97,45 +97,45 @@ from the executable's name is used.

The returned string is allocated just once, and should *NOT* be -freed with g_free(). The returned string is in the encoding used +freed with g_free(). The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never is on Windows).

Returns : The top directory for GIMP config files. -

gimp_gtkrc ()

const gchar* gimp_gtkrc                     (void);

+


gimp_gtkrc ()

const gchar* gimp_gtkrc                     (void);

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

The returned string is allocated just once, and should *NOT* be -freed with g_free(). The returned string is in the encoding used +freed with g_free(). The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never is on Windows).

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

gimp_path_parse ()

GList*      gimp_path_parse                 (const gchar *path,
+

gimp_path_parse ()

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

-

path : A list of directories separated by G_SEARCHPATH_SEPARATOR. -
max_paths : The maximum number of directories to return. -
check : TRUE if you want the directories to be checked. -
check_failed : Returns a GList of path elements for which the +

path : A list of directories separated by G_SEARCHPATH_SEPARATOR. +
max_paths : The maximum number of directories to return. +
check : TRUE if you want the directories to be checked. +
check_failed : Returns a GList of path elements for which the check failed. -
Returns : A GList of all directories in path. -

gimp_path_to_str ()

gchar*      gimp_path_to_str                (GList *path);

+

Returns : A GList of all directories in path. +

gimp_path_to_str ()

gchar*      gimp_path_to_str                (GList *path);

-

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

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

gimp_path_free ()

void        gimp_path_free                  (GList *path);

+


gimp_path_free ()

void        gimp_path_free                  (GList *path);

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

-

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

gimp_path_get_user_writable_dir ()

gchar*      gimp_path_get_user_writable_dir (GList *path);

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

+

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

gimp_path_get_user_writable_dir ()

gchar*      gimp_path_get_user_writable_dir (GList *path);

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

-

path : A list of directories as returned by gimp_path_parse(). -
Returns : The first directory in path where the user has write permission. +

path : A list of directories as returned by gimp_path_parse(). +
Returns : The first directory in path where the user has write permission.
diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimplimits

gimplimits

gimplimits — Boundaries of some GIMP data types and some global constants.

Synopsis

+gimplimits

gimplimits

gimplimits — Boundaries of some GIMP data types and some global constants.

Synopsis

 
 
 
@@ -7,33 +7,33 @@
 #define     GIMP_MIN_RESOLUTION
 #define     GIMP_MAX_RESOLUTION
 #define     GIMP_MAX_MEMSIZE
-

Description

+

Description

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

Details

GIMP_MIN_IMAGE_SIZE

#define GIMP_MIN_IMAGE_SIZE  1
+

Details

GIMP_MIN_IMAGE_SIZE

#define GIMP_MIN_IMAGE_SIZE  1
 

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


GIMP_MAX_IMAGE_SIZE

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


GIMP_MAX_IMAGE_SIZE

#define GIMP_MAX_IMAGE_SIZE  262144    /*  2^18  */
 

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


GIMP_MIN_RESOLUTION

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


GIMP_MIN_RESOLUTION

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

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


GIMP_MAX_RESOLUTION

#define GIMP_MAX_RESOLUTION  65536.0
+


GIMP_MAX_RESOLUTION

#define GIMP_MAX_RESOLUTION  65536.0
 

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


GIMP_MAX_MEMSIZE

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


GIMP_MAX_MEMSIZE

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

A large but arbitrary value that can be used when an upper limit for a -memory size (in bytes) is needed. It is smaller than G_MAXDOUBLE since +memory size (in bytes) is needed. It is smaller than G_MAXDOUBLE since the GimpMemsizeEntry doesn't handle larger values. diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimpmemsize

gimpmemsize

gimpmemsize — Functions to (de)serialize a given memory size.

Synopsis

+gimpmemsize

gimpmemsize

gimpmemsize — Functions to (de)serialize a given memory size.

Synopsis

 
 
 
@@ -9,44 +9,44 @@
 #define     GIMP_TYPE_MEMSIZE
 #define     GIMP_VALUE_HOLDS_MEMSIZE        (value)
 
-

Description

+

Description

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

Details

gimp_memsize_serialize ()

gchar*      gimp_memsize_serialize          (guint64 memsize);

+

Details

gimp_memsize_serialize ()

gchar*      gimp_memsize_serialize          (guint64 memsize);

Creates a string representation of a given memory size. This string -can be parsed by gimp_memsize_deserialize() and can thus be used in +can be parsed by gimp_memsize_deserialize() and can thus be used in config files. It should not be displayed to the user. If you need a -nice human-readable string please use gimp_memsize_to_string().

+nice human-readable string please use gimp_memsize_to_string().

-

memsize : memory size in bytes -
Returns : A newly allocated string representation of memsize. +

memsize : memory size in bytes +
Returns : A newly allocated string representation of memsize.

Since GIMP 2.2 -


gimp_memsize_deserialize ()

gboolean    gimp_memsize_deserialize        (const gchar *string,
+


gimp_memsize_deserialize ()

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

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

+gimp_memsize_serialize().

-

string : a string as returned by gimp_memsize_serialize() -
memsize : return location for memory size in bytes -
Returns : TRUE if the string was successfully parsed and - memsize has been set, FALSE otherwise. +

string : a string as returned by gimp_memsize_serialize() +
memsize : return location for memory size in bytes +
Returns : TRUE if the string was successfully parsed and + memsize has been set, FALSE otherwise.

Since GIMP 2.2 -


gimp_memsize_to_string ()

gchar*      gimp_memsize_to_string          (guint64 memsize);

+


gimp_memsize_to_string ()

gchar*      gimp_memsize_to_string          (guint64 memsize);

This function returns a human readable, translated representation -of the passed memsize. Large values are displayed using a +of the passed memsize. Large values are displayed using a reasonable memsize unit, e.g.: "345" becomes "345 Bytes", "4500" becomes "4.4 KB" and so on.

-

memsize : A memory size in bytes. +

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

GIMP_TYPE_MEMSIZE

#define GIMP_TYPE_MEMSIZE               (gimp_memsize_get_type ())
+

GIMP_TYPE_MEMSIZE

#define GIMP_TYPE_MEMSIZE               (gimp_memsize_get_type ())
 

GIMP_TYPE_MEMSIZE is a GType derived from G_TYPE_UINT64. -


GIMP_VALUE_HOLDS_MEMSIZE()

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


GIMP_VALUE_HOLDS_MEMSIZE()

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

-

value : +

value :
diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimpparasite

gimpparasite

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

Synopsis

+gimpparasite

gimpparasite

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

Description

+

Description

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

Details

GimpParasite

typedef struct {
+

Details

GimpParasite

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

-


gimp_parasite_new ()

GimpParasite* gimp_parasite_new             (const gchar *name,
+


gimp_parasite_new ()

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

-

name : -
flags : -
size : -
data : +

name : +
flags : +
size : +
data :
Returns : -

gimp_parasite_free ()

void        gimp_parasite_free              (GimpParasite *parasite);

+


gimp_parasite_free ()

void        gimp_parasite_free              (GimpParasite *parasite);

-

parasite : +

parasite : -

gimp_parasite_copy ()

GimpParasite* gimp_parasite_copy            (const GimpParasite *parasite);

+


gimp_parasite_copy ()

GimpParasite* gimp_parasite_copy            (const GimpParasite *parasite);

-

parasite : +

parasite :
Returns : -

gimp_parasite_compare ()

gboolean    gimp_parasite_compare           (const GimpParasite *a,
+

gimp_parasite_compare ()

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

-

a : -
b : +

a : +
b :
Returns : -

gimp_parasite_is_type ()

gboolean    gimp_parasite_is_type           (const GimpParasite *parasite,
+

gimp_parasite_is_type ()

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

-

parasite : -
name : +

parasite : +
name :
Returns : -

gimp_parasite_is_persistent ()

gboolean    gimp_parasite_is_persistent     (const GimpParasite *parasite);

+


gimp_parasite_is_persistent ()

gboolean    gimp_parasite_is_persistent     (const GimpParasite *parasite);

-

parasite : +

parasite :
Returns : -

gimp_parasite_is_undoable ()

gboolean    gimp_parasite_is_undoable       (const GimpParasite *parasite);

+


gimp_parasite_is_undoable ()

gboolean    gimp_parasite_is_undoable       (const GimpParasite *parasite);

-

parasite : +

parasite :
Returns : -

gimp_parasite_has_flag ()

gboolean    gimp_parasite_has_flag          (const GimpParasite *parasite,
+

gimp_parasite_has_flag ()

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

-

parasite : -
flag : +

parasite : +
flag :
Returns : -

gimp_parasite_flags ()

gulong      gimp_parasite_flags             (const GimpParasite *parasite);

+


gimp_parasite_flags ()

gulong      gimp_parasite_flags             (const GimpParasite *parasite);

-

parasite : +

parasite :
Returns : -

gimp_parasite_name ()

const gchar* gimp_parasite_name             (const GimpParasite *parasite);

+


gimp_parasite_name ()

const gchar* gimp_parasite_name             (const GimpParasite *parasite);

-

parasite : +

parasite :
Returns : -

gimp_parasite_data ()

gconstpointer gimp_parasite_data            (const GimpParasite *parasite);

+


gimp_parasite_data ()

gconstpointer gimp_parasite_data            (const GimpParasite *parasite);

-

parasite : +

parasite :
Returns : -

gimp_parasite_data_size ()

glong       gimp_parasite_data_size         (const GimpParasite *parasite);

+


gimp_parasite_data_size ()

glong       gimp_parasite_data_size         (const GimpParasite *parasite);

-

parasite : +

parasite :
Returns : -

GIMP_PARASITE_PERSISTENT

#define GIMP_PARASITE_PERSISTENT 1
+

GIMP_PARASITE_PERSISTENT

#define GIMP_PARASITE_PERSISTENT 1
 

-


GIMP_PARASITE_UNDOABLE

#define GIMP_PARASITE_UNDOABLE   2
+


GIMP_PARASITE_UNDOABLE

#define GIMP_PARASITE_UNDOABLE   2
 

-


GIMP_PARASITE_ATTACH_PARENT

#define GIMP_PARASITE_ATTACH_PARENT     (0x80 << 8)
+


GIMP_PARASITE_ATTACH_PARENT

#define GIMP_PARASITE_ATTACH_PARENT     (0x80 << 8)
 

-


GIMP_PARASITE_PARENT_PERSISTENT

#define GIMP_PARASITE_PARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 8)
+


GIMP_PARASITE_PARENT_PERSISTENT

#define GIMP_PARASITE_PARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 8)
 

-


GIMP_PARASITE_PARENT_UNDOABLE

#define GIMP_PARASITE_PARENT_UNDOABLE   (GIMP_PARASITE_UNDOABLE << 8)
+


GIMP_PARASITE_PARENT_UNDOABLE

#define GIMP_PARASITE_PARENT_UNDOABLE   (GIMP_PARASITE_UNDOABLE << 8)
 

-


GIMP_PARASITE_ATTACH_GRANDPARENT

#define GIMP_PARASITE_ATTACH_GRANDPARENT     (0x80 << 16)
+


GIMP_PARASITE_ATTACH_GRANDPARENT

#define GIMP_PARASITE_ATTACH_GRANDPARENT     (0x80 << 16)
 

-


GIMP_PARASITE_GRANDPARENT_PERSISTENT

#define GIMP_PARASITE_GRANDPARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 16)
+


GIMP_PARASITE_GRANDPARENT_PERSISTENT

#define GIMP_PARASITE_GRANDPARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 16)
 

-


GIMP_PARASITE_GRANDPARENT_UNDOABLE

#define GIMP_PARASITE_GRANDPARENT_UNDOABLE   (GIMP_PARASITE_UNDOABLE << 16)
+


GIMP_PARASITE_GRANDPARENT_UNDOABLE

#define GIMP_PARASITE_GRANDPARENT_UNDOABLE   (GIMP_PARASITE_UNDOABLE << 16)
 

-

See Also

+

See Also

gimp_image_parasite_attach(), gimp_image_parasite_attach(), gimp_drawable_parasite_attach(), +>gimp_drawable_parasite_attach(), gimp_parasite_attach() and their related functions. +href="../app/app-Gimp-parasites.html#gimp-parasite-attach" +>gimp_parasite_attach() and their related functions.

diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpparasiteio.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpparasiteio.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpparasiteio.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpparasiteio.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimpparasiteio

gimpparasiteio

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

Synopsis

+gimpparasiteio

gimpparasiteio

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

Synopsis

 
 
 
@@ -7,30 +7,30 @@
 void        gimp_pixpipe_params_parse       (const gchar *parameters,
                                              GimpPixPipeParams *params);
 gchar*      gimp_pixpipe_params_build       (GimpPixPipeParams *params);
-

Description

+

Description

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

Details

GIMP_PIXPIPE_MAXDIM

#define GIMP_PIXPIPE_MAXDIM 4
+

Details

GIMP_PIXPIPE_MAXDIM

#define GIMP_PIXPIPE_MAXDIM 4
 

-


gimp_pixpipe_params_init ()

void        gimp_pixpipe_params_init        (GimpPixPipeParams *params);

+


gimp_pixpipe_params_init ()

void        gimp_pixpipe_params_init        (GimpPixPipeParams *params);

-

params : +

params : -

gimp_pixpipe_params_parse ()

void        gimp_pixpipe_params_parse       (const gchar *parameters,
+

gimp_pixpipe_params_parse ()

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

-

parameters : -
params : +

parameters : +
params : -

gimp_pixpipe_params_build ()

gchar*      gimp_pixpipe_params_build       (GimpPixPipeParams *params);

+


gimp_pixpipe_params_build ()

gchar*      gimp_pixpipe_params_build       (GimpPixPipeParams *params);

-

params : +

params :
Returns : -

See Also

+

See Also

GimpParasite

diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpprotocol.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpprotocol.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpprotocol.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpprotocol.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimpprotocol

gimpprotocol

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

Synopsis

+gimpprotocol

gimpprotocol

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

Synopsis

 
 
 
@@ -49,13 +49,13 @@
                                              gpointer user_data);
 gboolean    gp_extension_ack_write          (GIOChannel *channel,
                                              gpointer user_data);
-

Description

+

Description

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

Details

GIMP_PROTOCOL_VERSION

#define GIMP_PROTOCOL_VERSION  0x0011
+

Details

GIMP_PROTOCOL_VERSION

#define GIMP_PROTOCOL_VERSION  0x0011
 

-


GPConfig

typedef struct {
+


GPConfig

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

-


GPTileReq

typedef struct {
+


GPTileReq

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

-


GPTileAck

typedef struct _GPTileAck GPTileAck;

+


GPTileAck

typedef struct _GPTileAck GPTileAck;

-


GPTileData

typedef struct {
+


GPTileData

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

-


GPParam

typedef struct {
+


GPParam

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

-


GPParamDef

typedef struct {
+


GPParamDef

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

-


GPProcRun

typedef struct {
+


GPProcRun

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

-


GPProcReturn

typedef struct {
+


GPProcReturn

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

-


GPProcInstall

typedef struct {
+


GPProcInstall

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

-


GPProcUninstall

typedef struct {
+


GPProcUninstall

typedef struct {
   gchar *name;
 } GPProcUninstall;
 

-


gp_init ()

void        gp_init                         (void);

+


gp_init ()

void        gp_init                         (void);

-


gp_has_init_write ()

gboolean    gp_has_init_write               (GIOChannel *channel,
+


gp_has_init_write ()

gboolean    gp_has_init_write               (GIOChannel *channel,
                                              gpointer user_data);

-

channel : -
user_data : +

channel : +
user_data :
Returns : -

gp_quit_write ()

gboolean    gp_quit_write                   (GIOChannel *channel,
+

gp_quit_write ()

gboolean    gp_quit_write                   (GIOChannel *channel,
                                              gpointer user_data);

-

channel : -
user_data : +

channel : +
user_data :
Returns : -

gp_config_write ()

gboolean    gp_config_write                 (GIOChannel *channel,
+

gp_config_write ()

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

-

channel : -
config : -
user_data : +

channel : +
config : +
user_data :
Returns : -

gp_tile_req_write ()

gboolean    gp_tile_req_write               (GIOChannel *channel,
+

gp_tile_req_write ()

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

-

channel : -
tile_req : -
user_data : +

channel : +
tile_req : +
user_data :
Returns : -

gp_tile_ack_write ()

gboolean    gp_tile_ack_write               (GIOChannel *channel,
+

gp_tile_ack_write ()

gboolean    gp_tile_ack_write               (GIOChannel *channel,
                                              gpointer user_data);

-

channel : -
user_data : +

channel : +
user_data :
Returns : -

gp_tile_data_write ()

gboolean    gp_tile_data_write              (GIOChannel *channel,
+

gp_tile_data_write ()

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

-

channel : -
tile_data : -
user_data : +

channel : +
tile_data : +
user_data :
Returns : -

gp_proc_run_write ()

gboolean    gp_proc_run_write               (GIOChannel *channel,
+

gp_proc_run_write ()

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

-

channel : -
proc_run : -
user_data : +

channel : +
proc_run : +
user_data :
Returns : -

gp_proc_return_write ()

gboolean    gp_proc_return_write            (GIOChannel *channel,
+

gp_proc_return_write ()

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

-

channel : -
proc_return : -
user_data : +

channel : +
proc_return : +
user_data :
Returns : -

gp_temp_proc_run_write ()

gboolean    gp_temp_proc_run_write          (GIOChannel *channel,
+

gp_temp_proc_run_write ()

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

-

channel : -
proc_run : -
user_data : +

channel : +
proc_run : +
user_data :
Returns : -

gp_temp_proc_return_write ()

gboolean    gp_temp_proc_return_write       (GIOChannel *channel,
+

gp_temp_proc_return_write ()

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

-

channel : -
proc_return : -
user_data : +

channel : +
proc_return : +
user_data :
Returns : -

gp_proc_install_write ()

gboolean    gp_proc_install_write           (GIOChannel *channel,
+

gp_proc_install_write ()

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

-

channel : -
proc_install : -
user_data : +

channel : +
proc_install : +
user_data :
Returns : -

gp_proc_uninstall_write ()

gboolean    gp_proc_uninstall_write         (GIOChannel *channel,
+

gp_proc_uninstall_write ()

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

-

channel : -
proc_uninstall : -
user_data : +

channel : +
proc_uninstall : +
user_data :
Returns : -

gp_extension_ack_write ()

gboolean    gp_extension_ack_write          (GIOChannel *channel,
+

gp_extension_ack_write ()

gboolean    gp_extension_ack_write          (GIOChannel *channel,
                                              gpointer user_data);

-

channel : -
user_data : +

channel : +
user_data :
Returns : -

See Also

+

See Also

libgimp-gimpwire

diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimpsignal

gimpsignal

gimpsignal — Portable signal handling.

Synopsis

+gimpsignal

gimpsignal

gimpsignal — Portable signal handling.

Synopsis

 
 
 
@@ -6,19 +6,19 @@
 GimpSignalHandlerFunc gimp_signal_private   (gint signum,
                                              GimpSignalHandlerFunc handler,
                                              gint flags);
-

Description

+

Description

Portable signal handling. -

Details

GimpSignalHandlerFunc ()

void        (*GimpSignalHandlerFunc)        (gint signum);

+

Details

GimpSignalHandlerFunc ()

void        (*GimpSignalHandlerFunc)        (gint signum);

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

signum :The number of the signal. Useful if different signals are handled +SIG_DFL or SIG_IGN). +

signum :The number of the signal. Useful if different signals are handled by a single handler. -

gimp_signal_private ()

GimpSignalHandlerFunc gimp_signal_private   (gint signum,
+

gimp_signal_private ()

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

This function furnishes a workalike for signal(2) but @@ -28,20 +28,20 @@ aid to transition and not new development: that effort should employ sigaction directly. [gosgood 18.04.2000]

-Cause handler to be run when signum is delivered. We +Cause handler to be run when signum is delivered. We use sigaction(2) rather than signal(2) so that we can control the -signal handler's environment completely via flags: some signal(2) +signal handler's environment completely via flags: some signal(2) implementations differ in their sematics, so we need to nail down exactly what we want. [austin 06.04.2000]

-

signum : Selects signal to be handled see man 5 signal (or man 7 signal) -
handler : Handler that maps to signum. Invoked by O/S. +

signum : Selects signal to be handled see man 5 signal (or man 7 signal) +
handler : Handler that maps to signum. Invoked by O/S. Handler gets signal that caused invocation. Corresponds - to the sa_handler field of the sigaction struct. -
flags : Preferences. OR'ed SA_<xxx>. See man sigaction. Corresponds - to the sa_flags field of the sigaction struct. + to the sa_handler field of the sigaction struct. +
flags : Preferences. OR'ed SA_<xxx>. See man sigaction. Corresponds + to the sa_flags field of the sigaction struct.
Returns : A reference to the signal handling function which was - active before the call to gimp_signal_private(). -

See Also

+ active before the call to gimp_signal_private(). +

See Also

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

diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimpunit

gimpunit

gimpunit — Provides a collection of predefined units and functions for creating +gimpunit

gimpunit

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

Synopsis

 
 
@@ -27,11 +27,11 @@
 #define     GIMP_TYPE_UNIT
 #define     GIMP_VALUE_HOLDS_UNIT           (value)
 
-

Description

+

Description

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

Details

enum GimpUnit

typedef enum /*< skip >*/
+

Details

enum GimpUnit

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

-


gimp_unit_get_number_of_units ()

gint        gimp_unit_get_number_of_units   (void);

+


gimp_unit_get_number_of_units ()

gint        gimp_unit_get_number_of_units   (void);

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

Returns : The number of defined units. -

gimp_unit_get_number_of_built_in_units ()

gint        gimp_unit_get_number_of_built_in_units
+

gimp_unit_get_number_of_built_in_units ()

gint        gimp_unit_get_number_of_built_in_units
                                             (void);

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

Returns : The number of built-in units. -

gimp_unit_new ()

GimpUnit    gimp_unit_new                   (gchar *identifier,
+

gimp_unit_new ()

GimpUnit    gimp_unit_new                   (gchar *identifier,
                                              gdouble factor,
                                              gint digits,
                                              gchar *symbol,
@@ -67,96 +67,96 @@
 Returns the integer ID of the new GimpUnit.
 

Note that a new unit is always created with it's deletion flag -set to TRUE. You will have to set it to FALSE with -gimp_unit_set_deletion_flag() to make the unit definition persistent.

+set to TRUE. You will have to set it to FALSE with +gimp_unit_set_deletion_flag() to make the unit definition persistent.

-

identifier : The unit's identifier string. -
factor : The unit's factor (how many units are in one inch). -
digits : The unit's suggested number of digits (see gimp_unit_get_digits()). -
symbol : The symbol of the unit (e.g. "''" for inch). -
abbreviation : The abbreviation of the unit. -
singular : The singular form of the unit. -
plural : The plural form of the unit. +

identifier : The unit's identifier string. +
factor : The unit's factor (how many units are in one inch). +
digits : The unit's suggested number of digits (see gimp_unit_get_digits()). +
symbol : The symbol of the unit (e.g. "''" for inch). +
abbreviation : The abbreviation of the unit. +
singular : The singular form of the unit. +
plural : The plural form of the unit.
Returns : The ID of the new unit. -

gimp_unit_get_deletion_flag ()

gboolean    gimp_unit_get_deletion_flag     (GimpUnit unit);

+


gimp_unit_get_deletion_flag ()

gboolean    gimp_unit_get_deletion_flag     (GimpUnit unit);

-

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

gimp_unit_set_deletion_flag ()

void        gimp_unit_set_deletion_flag     (GimpUnit unit,
+

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

gimp_unit_set_deletion_flag ()

void        gimp_unit_set_deletion_flag     (GimpUnit unit,
                                              gboolean deletion_flag);

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

-Trying to change the deletion_flag of a built-in unit will be silently +Trying to change the deletion_flag of a built-in unit will be silently ignored.

-

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

gimp_unit_get_factor ()

gdouble     gimp_unit_get_factor            (GimpUnit unit);

-A GimpUnit's factor is defined to be: +

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

gimp_unit_get_factor ()

gdouble     gimp_unit_get_factor            (GimpUnit unit);

+A GimpUnit's factor is defined to be:

-distance_in_units == (factor * distance_in_inches) +distance_in_units == (factor * distance_in_inches)

-Returns 0 for unit == GIMP_UNIT_PIXEL.

+Returns 0 for unit == GIMP_UNIT_PIXEL.

-

unit : The unit you want to know the factor of. +

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

gimp_unit_get_digits ()

gint        gimp_unit_get_digits            (GimpUnit unit);

+


gimp_unit_get_digits ()

gint        gimp_unit_get_digits            (GimpUnit unit);

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

-Returns 0 for unit == GIMP_UNIT_PIXEL.

+Returns 0 for unit == GIMP_UNIT_PIXEL.

-

unit : The unit you want to know the digits. +

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

gimp_unit_get_identifier ()

const gchar* gimp_unit_get_identifier       (GimpUnit unit);

+


gimp_unit_get_identifier ()

const gchar* gimp_unit_get_identifier       (GimpUnit unit);

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

-

unit : The unit you want to know the identifier of. +

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

gimp_unit_get_symbol ()

const gchar* gimp_unit_get_symbol           (GimpUnit unit);

+


gimp_unit_get_symbol ()

const gchar* gimp_unit_get_symbol           (GimpUnit unit);

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

NOTE: This string must not be changed or freed.

-

unit : The unit you want to know the symbol of. +

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

gimp_unit_get_abbreviation ()

const gchar* gimp_unit_get_abbreviation     (GimpUnit unit);

+


gimp_unit_get_abbreviation ()

const gchar* gimp_unit_get_abbreviation     (GimpUnit unit);

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

NOTE: This string must not be changed or freed.

-

unit : The unit you want to know the abbreviation of. +

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

gimp_unit_get_singular ()

const gchar* gimp_unit_get_singular         (GimpUnit unit);

+


gimp_unit_get_singular ()

const gchar* gimp_unit_get_singular         (GimpUnit unit);

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

NOTE: This string must not be changed or freed.

-

unit : The unit you want to know the singular form of. +

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

gimp_unit_get_plural ()

const gchar* gimp_unit_get_plural           (GimpUnit unit);

+


gimp_unit_get_plural ()

const gchar* gimp_unit_get_plural           (GimpUnit unit);

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

NOTE: This string must not be changed or freed.

-

unit : The unit you want to know the plural form of. +

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

GIMP_TYPE_UNIT

#define GIMP_TYPE_UNIT               (gimp_unit_get_type ())
+

GIMP_TYPE_UNIT

#define GIMP_TYPE_UNIT               (gimp_unit_get_type ())
 

GIMP_TYPE_UNIT is a GType derived from G_TYPE_INT. -


GIMP_VALUE_HOLDS_UNIT()

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


GIMP_VALUE_HOLDS_UNIT()

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

-

value : +

value : -

See Also

+

See Also

GimpUnitMenu diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimputils.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimputils.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimputils.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimputils.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimputils

gimputils

gimputils — Utilities of general interest

Synopsis

+gimputils

gimputils

gimputils — Utilities of general interest

Synopsis

 
 
 
@@ -35,69 +35,69 @@
                                              GFlagsValue *flags_value);
 const gchar* gimp_flags_value_get_help      (GFlagsClass *flags_class,
                                              GFlagsValue *flags_value);
-

Description

+

Description

-

Details

gimp_any_to_utf8 ()

gchar*      gimp_any_to_utf8                (const gchar *str,
+

Details

gimp_any_to_utf8 ()

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

This function takes any string (UTF-8 or not) and always returns a valid UTF-8 string.

-If str is valid UTF-8, a copy of the string is returned. +If str is valid UTF-8, a copy of the string is returned.

-If UTF-8 validation fails, g_locale_to_utf8() is tried and if it +If UTF-8 validation fails, g_locale_to_utf8() is tried and if it succeeds the resulting string is returned.

-Otherwise, the portion of str that is UTF-8, concatenated +Otherwise, the portion of str that is UTF-8, concatenated with "(invalid UTF-8 string)" is returned. If not even the start -of str is valid UTF-8, only "(invalid UTF-8 string)" is returned.

+of str is valid UTF-8, only "(invalid UTF-8 string)" is returned.

-

str : The string to be converted to UTF-8. -
len : The length of the string, or -1 if the string +

str : The string to be converted to UTF-8. +
len : The length of the string, or -1 if the string is nul-terminated. -
warning_format : The message format for the warning message if conversion - to UTF-8 fails. See the printf() +
warning_format : The message format for the warning message if conversion + to UTF-8 fails. See the printf() documentation. -
... : The parameters to insert into the format string. +
... : The parameters to insert into the format string.
Returns : The UTF-8 string as described above. -

gimp_filename_to_utf8 ()

const gchar* gimp_filename_to_utf8          (const gchar *filename);

+


gimp_filename_to_utf8 ()

const gchar* gimp_filename_to_utf8          (const gchar *filename);

Convert a filename in the filesystem's encoding to UTF-8 temporarily. The return value is a pointer to a string that is guaranteed to be valid only during the current iteration of the -main loop or until the next call to gimp_filename_to_utf8(). +main loop or until the next call to gimp_filename_to_utf8().

The only purpose of this function is to provide an easy way to pass a filename in the filesystem encoding to a function that expects an UTF-8 encoded filename.

-

filename : The filename to be converted to UTF-8. -
Returns : A temporarily valid UTF-8 representation of filename. +

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

gimp_utf8_strtrim ()

gchar*      gimp_utf8_strtrim               (const gchar *str,
+

gimp_utf8_strtrim ()

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

-Creates a (possibly trimmed) copy of str. The string is cut if it -exceeds max_chars characters or on the first newline. The fact +Creates a (possibly trimmed) copy of str. The string is cut if it +exceeds max_chars characters or on the first newline. The fact that the string was trimmed is indicated by appending an ellipsis.

-

str : an UTF-8 encoded string (or NULL) -
max_chars : the maximum number of characters before the string get +

str : an UTF-8 encoded string (or NULL) +
max_chars : the maximum number of characters before the string get trimmed -
Returns : A (possibly trimmed) copy of str which should be freed -using g_free() when it is not needed any longer. -

gimp_escape_uline ()

gchar*      gimp_escape_uline               (const gchar *str);

-This function returns a copy of str with all underline converted +

Returns : A (possibly trimmed) copy of str which should be freed +using g_free() when it is not needed any longer. +

gimp_escape_uline ()

gchar*      gimp_escape_uline               (const gchar *str);

+This function returns a copy of str with all underline converted to two adjacent underlines. This comes in handy when needing to display strings with underlines (like filenames) in a place that would convert them to mnemonics.

-

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

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

Since GIMP 2.2 -


gimp_strip_uline ()

gchar*      gimp_strip_uline                (const gchar *str);

-This function returns a copy of str stripped of underline +


gimp_strip_uline ()

gchar*      gimp_strip_uline                (const gchar *str);

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

@@ -106,102 +106,102 @@ this construct and removes the whole bracket construction to get rid of the mnemonic (see bug 157561).

-

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

gimp_enum_get_desc ()

GimpEnumDesc* gimp_enum_get_desc            (GEnumClass *enum_class,
+

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

gimp_enum_get_desc ()

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

-Retrieves GimpEnumDesc associated with the given value, or NULL.

+Retrieves GimpEnumDesc associated with the given value, or NULL.

-

enum_class : a GEnumClass -
value : a value from enum_class +

enum_class : a GEnumClass +
value : a value from enum_class
Returns : the value's GimpEnumDesc.

Since GIMP 2.2 -


gimp_enum_get_value ()

gboolean    gimp_enum_get_value             (GType enum_type,
+


gimp_enum_get_value ()

gboolean    gimp_enum_get_value             (GType enum_type,
                                              gint value,
                                              const gchar **value_name,
                                              const gchar **value_nick,
                                              const gchar **value_desc,
                                              const gchar **value_help);

-Checks if value is valid for the enum registered as enum_type. +Checks if value is valid for the enum registered as enum_type. If the value exists in that enum, its name, nick and its translated -desc and help are returned (if value_name, value_nick, value_desc -and value_help are not NULL).

+desc and help are returned (if value_name, value_nick, value_desc +and value_help are not NULL).

-

enum_type : the GType of a registered enum -
value : an integer value -
value_name : return location for the value's name (or NULL) -
value_nick : return location for the value's nick (or NULL) -
value_desc : return location for the value's translated desc (or NULL) -
value_help : return location for the value's translated help (or NULL) -
Returns : TRUE if value is valid for the enum_type, - FALSE otherwise +

enum_type : the GType of a registered enum +
value : an integer value +
value_name : return location for the value's name (or NULL) +
value_nick : return location for the value's nick (or NULL) +
value_desc : return location for the value's translated desc (or NULL) +
value_help : return location for the value's translated help (or NULL) +
Returns : TRUE if value is valid for the enum_type, + FALSE otherwise

Since GIMP 2.2 -


gimp_enum_value_get_desc ()

const gchar* gimp_enum_value_get_desc       (GEnumClass *enum_class,
+


gimp_enum_value_get_desc ()

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

-Retrieves the translated desc for a given enum_value.

+Retrieves the translated desc for a given enum_value.

-

enum_class : a GEnumClass -
enum_value : a GEnumValue from enum_class +

enum_class : a GEnumClass +
enum_value : a GEnumValue from enum_class
Returns : the translated desc of the enum value

Since GIMP 2.2 -


gimp_enum_value_get_help ()

const gchar* gimp_enum_value_get_help       (GEnumClass *enum_class,
+


gimp_enum_value_get_help ()

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

-Retrieves the translated help for a given enum_value.

+Retrieves the translated help for a given enum_value.

-

enum_class : a GEnumClass -
enum_value : a GEnumValue from enum_class +

enum_class : a GEnumClass +
enum_value : a GEnumValue from enum_class
Returns : the translated help of the enum value

Since GIMP 2.2 -


gimp_flags_get_first_desc ()

GimpFlagsDesc* gimp_flags_get_first_desc    (GFlagsClass *flags_class,
+


gimp_flags_get_first_desc ()

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

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

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

-

flags_class : a GFlagsClass -
value : a value from flags_class +

flags_class : a GFlagsClass +
value : a value from flags_class
Returns : the value's GimpFlagsDesc.

Since GIMP 2.2 -


gimp_flags_get_first_value ()

gboolean    gimp_flags_get_first_value      (GType flags_type,
+


gimp_flags_get_first_value ()

gboolean    gimp_flags_get_first_value      (GType flags_type,
                                              guint value,
                                              const gchar **value_name,
                                              const gchar **value_nick,
                                              const gchar **value_desc,
                                              const gchar **value_help);

-Checks if value is valid for the flags registered as flags_type. +Checks if value is valid for the flags registered as flags_type. If the value exists in that flags, its name, nick and its translated -desc and help are returned (if value_name, value_nick, value_desc -and value_help are not NULL).

+desc and help are returned (if value_name, value_nick, value_desc +and value_help are not NULL).

-

flags_type : the GType of registered flags -
value : an integer value -
value_name : return location for the value's name (or NULL) -
value_nick : return location for the value's nick (or NULL) -
value_desc : return location for the value's translated desc (or NULL) -
value_help : return location for the value's translated help (or NULL) -
Returns : TRUE if value is valid for the flags_type, - FALSE otherwise +

flags_type : the GType of registered flags +
value : an integer value +
value_name : return location for the value's name (or NULL) +
value_nick : return location for the value's nick (or NULL) +
value_desc : return location for the value's translated desc (or NULL) +
value_help : return location for the value's translated help (or NULL) +
Returns : TRUE if value is valid for the flags_type, + FALSE otherwise

Since GIMP 2.2 -


gimp_flags_value_get_desc ()

const gchar* gimp_flags_value_get_desc      (GFlagsClass *flags_class,
+


gimp_flags_value_get_desc ()

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

-Retrieves the translated desc for a given flags_value.

+Retrieves the translated desc for a given flags_value.

-

flags_class : a GFlagsClass -
flags_value : a GFlagsValue from flags_class +

flags_class : a GFlagsClass +
flags_value : a GFlagsValue from flags_class
Returns : the translated desc of the flags value

Since GIMP 2.2 -


gimp_flags_value_get_help ()

const gchar* gimp_flags_value_get_help      (GFlagsClass *flags_class,
+


gimp_flags_value_get_help ()

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

-Retrieves the translated help for a given flags_value.

+Retrieves the translated help for a given flags_value.

-

flags_class : a GFlagsClass -
flags_value : a GFlagsValue from flags_class +

flags_class : a GFlagsClass +
flags_value : a GFlagsValue from flags_class
Returns : the translated help of the flags value

Since GIMP 2.2 diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimpversion

gimpversion

gimpversion — Macros and constants useful for determining GIMP's version number and +gimpversion

gimpversion

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

Synopsis

 
 
@@ -9,30 +9,30 @@
 #define     GIMP_VERSION
 #define     GIMP_API_VERSION
 #define     GIMP_CHECK_VERSION              (major, minor, micro)
-

Description

+

Description

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

Details

GIMP_MAJOR_VERSION

#define GIMP_MAJOR_VERSION                              (2)
+

Details

GIMP_MAJOR_VERSION

#define GIMP_MAJOR_VERSION                              (2)
 

-


GIMP_MINOR_VERSION

#define GIMP_MINOR_VERSION                              (2)
+


GIMP_MINOR_VERSION

#define GIMP_MINOR_VERSION                              (2)
 

-


GIMP_MICRO_VERSION

#define GIMP_MICRO_VERSION                              (5)
+


GIMP_MICRO_VERSION

#define GIMP_MICRO_VERSION                              (8)
 

-


GIMP_VERSION

#define GIMP_VERSION                                    "2.2.5"
+


GIMP_VERSION

#define GIMP_VERSION                                    "2.2.8"
 

-


GIMP_API_VERSION

#define GIMP_API_VERSION                                "2.0"
+


GIMP_API_VERSION

#define GIMP_API_VERSION                                "2.0"
 

Since: GIMP 2.2 -


GIMP_CHECK_VERSION()

#define     GIMP_CHECK_VERSION(major, minor, micro)

+


GIMP_CHECK_VERSION()

#define     GIMP_CHECK_VERSION(major, minor, micro)

-

major : -
minor : -
micro : +

major : +
minor : +
micro :
diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpwire.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpwire.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase-gimpwire.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpwire.html 2005-06-27 00:18:40.000000000 +0200 @@ -1,4 +1,4 @@ -gimpwire

gimpwire

gimpwire — The lowlevel I/O protocol used for communication between GIMP and +gimpwire

gimpwire

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

Synopsis

 
 
@@ -83,269 +83,269 @@
                                              gchar **data,
                                              gint count,
                                              gpointer user_data);
-

Description

+

Description

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

Details

WireMessage

typedef struct {
+

Details

WireMessage

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

-


WireReadFunc ()

void        (*WireReadFunc)                 (GIOChannel *channel,
+


WireReadFunc ()

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

-

channel : -
msg : -
user_data : +

channel : +
msg : +
user_data : -

WireWriteFunc ()

void        (*WireWriteFunc)                (GIOChannel *channel,
+

WireWriteFunc ()

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

-

channel : -
msg : -
user_data : +

channel : +
msg : +
user_data : -

WireDestroyFunc ()

void        (*WireDestroyFunc)              (WireMessage *msg);

+


WireDestroyFunc ()

void        (*WireDestroyFunc)              (WireMessage *msg);

-

msg : +

msg : -

WireIOFunc ()

gboolean    (*WireIOFunc)                   (GIOChannel *channel,
+

WireIOFunc ()

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

-

channel : -
buf : -
count : -
user_data : +

channel : +
buf : +
count : +
user_data :
Returns : -

WireFlushFunc ()

gboolean    (*WireFlushFunc)                (GIOChannel *channel,
+

WireFlushFunc ()

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

-

channel : -
user_data : +

channel : +
user_data :
Returns : -

wire_register ()

void        wire_register                   (guint32 type,
+

wire_register ()

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

-

type : -
read_func : -
write_func : -
destroy_func : +

type : +
read_func : +
write_func : +
destroy_func : -

wire_set_reader ()

void        wire_set_reader                 (WireIOFunc read_func);

+


wire_set_reader ()

void        wire_set_reader                 (WireIOFunc read_func);

-

read_func : +

read_func : -

wire_set_writer ()

void        wire_set_writer                 (WireIOFunc write_func);

+


wire_set_writer ()

void        wire_set_writer                 (WireIOFunc write_func);

-

write_func : +

write_func : -

wire_set_flusher ()

void        wire_set_flusher                (WireFlushFunc flush_func);

+


wire_set_flusher ()

void        wire_set_flusher                (WireFlushFunc flush_func);

-

flush_func : +

flush_func : -

wire_read ()

gboolean    wire_read                       (GIOChannel *channel,
+

wire_read ()

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

-

channel : -
buf : -
count : -
user_data : +

channel : +
buf : +
count : +
user_data :
Returns : -

wire_write ()

gboolean    wire_write                      (GIOChannel *channel,
+

wire_write ()

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

-

channel : -
buf : -
count : -
user_data : +

channel : +
buf : +
count : +
user_data :
Returns : -

wire_flush ()

gboolean    wire_flush                      (GIOChannel *channel,
+

wire_flush ()

gboolean    wire_flush                      (GIOChannel *channel,
                                              gpointer user_data);

-

channel : -
user_data : +

channel : +
user_data :
Returns : -

wire_error ()

gboolean    wire_error                      (void);

+


wire_error ()

gboolean    wire_error                      (void);

Returns : -

wire_clear_error ()

void        wire_clear_error                (void);

+


wire_clear_error ()

void        wire_clear_error                (void);

-


wire_read_msg ()

gboolean    wire_read_msg                   (GIOChannel *channel,
+


wire_read_msg ()

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

-

channel : -
msg : -
user_data : +

channel : +
msg : +
user_data :
Returns : -

wire_write_msg ()

gboolean    wire_write_msg                  (GIOChannel *channel,
+

wire_write_msg ()

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

-

channel : -
msg : -
user_data : +

channel : +
msg : +
user_data :
Returns : -

wire_destroy ()

void        wire_destroy                    (WireMessage *msg);

+


wire_destroy ()

void        wire_destroy                    (WireMessage *msg);

-

msg : +

msg : -

wire_read_int32 ()

gboolean    wire_read_int32                 (GIOChannel *channel,
+

wire_read_int32 ()

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

-

channel : -
data : -
count : -
user_data : +

channel : +
data : +
count : +
user_data :
Returns : -

wire_read_int16 ()

gboolean    wire_read_int16                 (GIOChannel *channel,
+

wire_read_int16 ()

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

-

channel : -
data : -
count : -
user_data : +

channel : +
data : +
count : +
user_data :
Returns : -

wire_read_int8 ()

gboolean    wire_read_int8                  (GIOChannel *channel,
+

wire_read_int8 ()

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

-

channel : -
data : -
count : -
user_data : +

channel : +
data : +
count : +
user_data :
Returns : -

wire_read_double ()

gboolean    wire_read_double                (GIOChannel *channel,
+

wire_read_double ()

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

-

channel : -
data : -
count : -
user_data : +

channel : +
data : +
count : +
user_data :
Returns : -

wire_read_string ()

gboolean    wire_read_string                (GIOChannel *channel,
+

wire_read_string ()

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

-

channel : -
data : -
count : -
user_data : +

channel : +
data : +
count : +
user_data :
Returns : -

wire_write_int32 ()

gboolean    wire_write_int32                (GIOChannel *channel,
+

wire_write_int32 ()

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

-

channel : -
data : -
count : -
user_data : +

channel : +
data : +
count : +
user_data :
Returns : -

wire_write_int16 ()

gboolean    wire_write_int16                (GIOChannel *channel,
+

wire_write_int16 ()

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

-

channel : -
data : -
count : -
user_data : +

channel : +
data : +
count : +
user_data :
Returns : -

wire_write_int8 ()

gboolean    wire_write_int8                 (GIOChannel *channel,
+

wire_write_int8 ()

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

-

channel : -
data : -
count : -
user_data : +

channel : +
data : +
count : +
user_data :
Returns : -

wire_write_double ()

gboolean    wire_write_double               (GIOChannel *channel,
+

wire_write_double ()

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

-

channel : -
data : -
count : -
user_data : +

channel : +
data : +
count : +
user_data :
Returns : -

wire_write_string ()

gboolean    wire_write_string               (GIOChannel *channel,
+

wire_write_string ()

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

-

channel : -
data : -
count : -
user_data : +

channel : +
data : +
count : +
user_data :
Returns : -

See Also

+

See Also

libgimp-gimpprotocol

diff -uraN gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase.html gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase.html --- gimp-2.2.7/devel-docs/libgimpbase/html/libgimpbase.html 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase.html 2005-06-27 00:18:40.000000000 +0200 @@ -1 +1 @@ -Part I. GIMP Base Library

GIMP Base Library

+Part I. GIMP Base Library

GIMP Base Library

diff -uraN gimp-2.2.7/devel-docs/libgimpbase/xml/gimpversion.xml gimp-2.2.8/devel-docs/libgimpbase/xml/gimpversion.xml --- gimp-2.2.7/devel-docs/libgimpbase/xml/gimpversion.xml 2005-05-08 23:43:05.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpbase/xml/gimpversion.xml 2005-06-27 00:18:40.000000000 +0200 @@ -64,14 +64,14 @@ <anchor id="GIMP-MICRO-VERSION:CAPS"/>GIMP_MICRO_VERSION -GIMP_MICRO_VERSION#define GIMP_MICRO_VERSION (5) +GIMP_MICRO_VERSION#define GIMP_MICRO_VERSION (8) <anchor id="GIMP-VERSION:CAPS"/>GIMP_VERSION -GIMP_VERSION#define GIMP_VERSION "2.2.5" +GIMP_VERSION#define GIMP_VERSION "2.2.8" diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpButton.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpButton.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpButton.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpButton.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpButton

GimpButton

GimpButton — A GimpButton

GimpButton

GimpButton — A GtkButton with a little extra functionality.

Synopsis

 
@@ -13,7 +13,7 @@
 href="../gdk/gdk-Windows.html#GdkModifierType"
 >GdkModifierType state);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkButton
                                  +----GimpButton
                                        +----GimpColorButton
-

Implemented Interfaces

+

Implemented Interfaces

GimpButton implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "extended-clicked"
             void        user_function      (GimpButton *gimpbutton,
@@ -47,29 +47,29 @@
                                             gpointer user_data);
-

Description

+

Description

GimpButton adds an extra signal to the GtkButton widget that allows to distinguish a normal click from a click that was performed with modifier keys pressed. -

Details

GimpButton

typedef struct _GimpButton GimpButton;

+

Details

GimpButton

typedef struct _GimpButton GimpButton;

-


gimp_button_new ()


gimp_button_new ()

GtkWidget*  gimp_button_new                 (void);

Creates a new GimpButton widget.

Returns : A pointer to the new GimpButton widget. -

gimp_button_extended_clicked ()

void        gimp_button_extended_clicked    (GimpButton *button,
+

gimp_button_extended_clicked ()

void        gimp_button_extended_clicked    (GimpButton *button,
                                              GdkModifierType state);

Emits the button's "extended_clicked" signal.

-

button : a GimpButton. -
state : a state as found in GdkEventButton->state, e.g. GDK_SHIFT_MASK. -

Signals

The "extended-clicked" signal

void        user_function                  (GimpButton *gimpbutton,
+

button : a GimpButton. +
state : a state as found in GdkEventButton->state, e.g. GDK_SHIFT_MASK. +

Signals

The "extended-clicked" signal

void        user_function                  (GimpButton *gimpbutton,
                                             GdkModifierType arg1,
@@ -77,7 +77,7 @@
 href="../glib/glib-Basic-Types.html#gpointer"
 >gpointer user_data);

-

gimpbutton :the object which received the signal. -
arg1 :the state of modifier keys when the button was clicked +

gimpbutton :the object which received the signal. +
arg1 :the state of modifier keys when the button was clicked -
user_data :user data set when the signal handler was connected.
+
user_data :user data set when the signal handler was connected.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpCellRendererColor

GimpCellRendererColor

GimpCellRendererColor —

Synopsis

+GimpCellRendererColor

GimpCellRendererColor

GimpCellRendererColor —

Synopsis

 
 
 
@@ -8,7 +8,7 @@
 >GtkCellRenderer* gimp_cell_renderer_color_new
                                             (void);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkCellRenderer
                +----GimpCellRendererColor
-

Properties

+

Properties

 
   "color"                opaque"               gboolean              : Read / Write / Construct
-

Description

+

Description

-

Details

GimpCellRendererColor

typedef struct _GimpCellRendererColor GimpCellRendererColor;

+

Details

GimpCellRendererColor

typedef struct _GimpCellRendererColor GimpCellRendererColor;

-


gimp_cell_renderer_color_new ()


gimp_cell_renderer_color_new ()

GtkCellRenderer* gimp_cell_renderer_color_new
                                             (void);

@@ -46,10 +46,10 @@

Returns : a new GimpCellRendererColor

Since GIMP 2.2 -

Properties

The "color" property

  "color"                

Properties

The "color" property

  "color"                GimpRGB               : Read / Write


The "icon-size" property

  "icon-size"            GimpRGB               : Read / Write


The "icon-size" property

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

Allowed values: >= 0

Default value: 1


The "opaque" property

  "opaque"               gint                  : Read / Write / Construct

Allowed values: >= 0

Default value: 1


The "opaque" property

  "opaque"               gboolean              : Read / Write / Construct

Default value: TRUE

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpCellRendererToggle

GimpCellRendererToggle

GimpCellRendererToggle —

Synopsis

+GimpCellRendererToggle

GimpCellRendererToggle

GimpCellRendererToggle —

Synopsis

 
 
 
@@ -18,7 +18,7 @@
 href="../gdk/gdk-Windows.html#GdkModifierType"
 >GdkModifierType state);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkCellRendererToggle
                      +----GimpCellRendererToggle
-

Properties

+

Properties

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

Signal Prototypes

+

Signal Prototypes

 
 "clicked"   void        user_function      (GimpCellRendererToggle *gimpcellrenderertoggle,
                                             gpointer user_data);
-

Description

+

Description

-

Details

GimpCellRendererToggle

typedef struct _GimpCellRendererToggle GimpCellRendererToggle;

+

Details

GimpCellRendererToggle

typedef struct _GimpCellRendererToggle GimpCellRendererToggle;

-


gimp_cell_renderer_toggle_new ()


gimp_cell_renderer_toggle_new ()

GtkCellRenderer* gimp_cell_renderer_toggle_new
                                             (const GIMP_STOCK_VISIBLE.

+layer's visibility by showing GIMP_STOCK_VISIBLE.

-

stock_id : the stock_id of the icon to use for the active state +

stock_id : the stock_id of the icon to use for the active state
Returns : a new GimpCellRendererToggle

Since GIMP 2.2 -


gimp_cell_renderer_toggle_clicked ()

void        gimp_cell_renderer_toggle_clicked
+


gimp_cell_renderer_toggle_clicked ()

void        gimp_cell_renderer_toggle_clicked
                                             (GimpCellRendererToggle *cell,
                                              const GdkModifierType state);

Emits the "clicked" signal from a GimpCellRendererToggle.

-

cell : a GimpCellRendererToggle -
path : -
state : +

cell : a GimpCellRendererToggle +
path : +
state :

Since GIMP 2.2 -

Properties

The "stock-id" property

  "stock-id"             

Properties

The "stock-id" property

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

Default value: NULL


The "stock-size" property

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

Default value: NULL


The "stock-size" property

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

Allowed values: >= 0

Default value: 4

Signals

The "clicked" signal

void        user_function                  (GimpCellRendererToggle *gimpcellrenderertoggle,
+>gint                  : Read / Write / Construct

Allowed values: >= 0

Default value: 4

Signals

The "clicked" signal

void        user_function                  (GimpCellRendererToggle *gimpcellrenderertoggle,
                                             gchar *arg1,
@@ -104,8 +104,8 @@
 href="../glib/glib-Basic-Types.html#gpointer"
 >gpointer user_data);

-

gimpcellrenderertoggle :the object which received the signal. -
arg1 : -
arg2 : +

gimpcellrenderertoggle :the object which received the signal. +
arg1 : +
arg2 : -
user_data :user data set when the signal handler was connected.
+
user_data :user data set when the signal handler was connected.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpChainButton.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpChainButton.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpChainButton.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpChainButton.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpChainButton

GimpChainButton

GimpChainButton — Widget to visually connect two entry widgets.

Synopsis

+GimpChainButton

GimpChainButton

GimpChainButton — Widget to visually connect two entry widgets.

Synopsis

 
 
 
@@ -15,7 +15,7 @@
 href="../glib/glib-Basic-Types.html#gboolean"
 >gboolean    gimp_chain_button_get_active    (GimpChainButton *button);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkTable
                            +----GimpChainButton
-

Implemented Interfaces

+

Implemented Interfaces

GimpChainButton implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "toggled"   void        user_function      (GimpChainButton *gimpchainbutton,
                                             gpointer user_data);
-

Description

+

Description

This widget provides a button showing either a linked or a broken chain that can be used to link two entries, spinbuttons, colors or other GUI elements and show that they may be locked. Use it for @@ -53,9 +53,9 @@ by checking the state of the GimpChainButton whenever a value changes in one of the connected widgets and adjusting the other value if necessary. -

Details

GimpChainButton

typedef struct _GimpChainButton GimpChainButton;

+

Details

GimpChainButton

typedef struct _GimpChainButton GimpChainButton;

-


enum GimpChainPosition

typedef enum
+


enum GimpChainPosition

typedef enum
 {
   GIMP_CHAIN_TOP,
   GIMP_CHAIN_LEFT,
@@ -64,7 +64,7 @@
 } GimpChainPosition;
 

-


gimp_chain_button_new ()


gimp_chain_button_new ()

GtkWidget*  gimp_chain_button_new           (GimpChainPosition position);

Creates a new GimpChainButton widget. @@ -76,35 +76,35 @@ to the widgets that it is supposed to connect. It may work for more than two widgets, but the look is optimized for two.

-

position : The position you are going to use for the button +

position : The position you are going to use for the button with respect to the widgets you want to chain.
Returns : Pointer to the new GimpChainButton, which is inactive - by default. Use gimp_chain_button_set_active() to + by default. Use gimp_chain_button_set_active() to change its state. -

gimp_chain_button_set_active ()

void        gimp_chain_button_set_active    (GimpChainButton *button,
+

gimp_chain_button_set_active ()

void        gimp_chain_button_set_active    (GimpChainButton *button,
                                              gboolean active);

-Sets the state of the GimpChainButton to be either locked (TRUE) or -unlocked (FALSE) and changes the showed pixmap to reflect the new state.

+Sets the state of the GimpChainButton to be either locked (TRUE) or +unlocked (FALSE) and changes the showed pixmap to reflect the new state.

-

button : Pointer to a GimpChainButton. -
active : The new state. -


gimp_chain_button_get_active ()

gboolean    gimp_chain_button_get_active    (GimpChainButton *button);

Checks the state of the GimpChainButton.

-

button : Pointer to a GimpChainButton. -
Returns : TRUE if the GimpChainButton is active (locked). -

Signals

The "toggled" signal

void        user_function                  (GimpChainButton *gimpchainbutton,
+

button : Pointer to a GimpChainButton. +
Returns : TRUE if the GimpChainButton is active (locked). +

Signals

The "toggled" signal

void        user_function                  (GimpChainButton *gimpchainbutton,
                                             gpointer user_data);

-

gimpchainbutton :the object which received the signal. +

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

See Also

-You may want to use the convenience function gimp_coordinates_new() to set +

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

See Also

+You may want to use the convenience function gimp_coordinates_new() to set up two GimpSizeEntries (see GimpSizeEntry) linked with a GimpChainButton.

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorArea.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorArea.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorArea.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorArea.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpColorArea

GimpColorArea

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

Synopsis

+GimpColorArea

GimpColorArea

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

Synopsis

 
 
 
@@ -31,7 +31,7 @@
 href="../glib/glib-Basic-Types.html#gboolean"
 >gboolean draw_border);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkDrawingArea
                      +----GimpColorArea
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorArea implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

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

Description

+

Description

-

Details

GimpColorArea

typedef struct _GimpColorArea GimpColorArea;

+

Details

GimpColorArea

typedef struct _GimpColorArea GimpColorArea;

-


enum GimpColorAreaType

typedef enum
+


enum GimpColorAreaType

typedef enum
 {
   GIMP_COLOR_AREA_FLAT = 0,
   GIMP_COLOR_AREA_SMALL_CHECKS,
@@ -67,7 +67,7 @@
 } GimpColorAreaType;
 

-


gimp_color_area_new ()



gimp_color_area_set_color ()

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

-Sets area to a different color.

+Sets area to a different color.

-


gimp_color_area_get_color ()

void        gimp_color_area_get_color       (GimpColorArea *area,
                                              GimpRGB *color);

-Retrieves the current color of the area.

+Retrieves the current color of the area.

-


gimp_color_area_has_alpha ()

gboolean    gimp_color_area_has_alpha       (GimpColorArea *area);

-Checks whether the area shows transparency information. This is determined -via the area's GimpColorAreaType.

+Checks whether the area shows transparency information. This is determined +via the area's GimpColorAreaType.

-

area : Pointer to a GimpColorArea. -
Returns : TRUE if area shows transparency information, FALSE otherwise. -

gimp_color_area_set_type ()

void        gimp_color_area_set_type        (GimpColorArea *area,
+

area : Pointer to a GimpColorArea. +
Returns : TRUE if area shows transparency information, FALSE otherwise. +

gimp_color_area_set_type ()

void        gimp_color_area_set_type        (GimpColorArea *area,
                                              GimpColorAreaType type);

-Allows to change the type of area. The GimpColorAreaType determines +Allows to change the type of area. The GimpColorAreaType determines whether the widget shows transparency information and chooses the size of the checkerboard used to do that.

-

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

gimp_color_area_set_draw_border ()

void        gimp_color_area_set_draw_border (GimpColorArea *area,
+

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

gimp_color_area_set_draw_border ()

void        gimp_color_area_set_draw_border (GimpColorArea *area,
                                              gboolean draw_border);

-The area can draw a thin border in the foreground color around +The area can draw a thin border in the foreground color around itself. This function allows to toggle this behaviour on and off. The default is not draw a border.

-

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

Signals

The "color-changed" signal

void        user_function                  (GimpColorArea *gimpcolorarea,
+

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

Signals

The "color-changed" signal

void        user_function                  (GimpColorArea *gimpcolorarea,
                                             gpointer user_data);

-

gimpcolorarea :the object which received the signal. +

gimpcolorarea :the object which received the signal. -
user_data :user data set when the signal handler was connected.
+
user_data :user data set when the signal handler was connected.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorButton.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorButton.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorButton.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorButton.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpColorButton

GimpColorButton

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

Synopsis

+GimpColorButton

GimpColorButton

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

Synopsis

 
 
 
@@ -39,7 +39,7 @@
 void        gimp_color_button_set_type      (GimpColorButton *button,
                                              GimpColorAreaType type);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkButton
                                  +----GimpButton
                                        +----GimpColorButton
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorButton implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

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

Description

+

Description

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

@@ -78,9 +78,9 @@ supports Drag and Drop and has a right-click menu that allows to choose the color from the current FG or BG color. If the user changes the color, the "color_changed" signal is emitted. -

Details

GimpColorButton

typedef struct _GimpColorButton GimpColorButton;

+

Details

GimpColorButton

typedef struct _GimpColorButton GimpColorButton;

-


gimp_color_button_new ()



gimp_color_button_set_color ()

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

-Sets the button to the given color.

+Sets the button to the given color.

-

button : Pointer to a GimpColorButton. -
color : Pointer to the new
button : Pointer to a GimpColorButton. +
color : Pointer to the new GimpRGB color. -

gimp_color_button_get_color ()

void        gimp_color_button_get_color     (GimpColorButton *button,
+

gimp_color_button_get_color ()

void        gimp_color_button_get_color     (GimpColorButton *button,
                                              GimpRGB *color);

-Retrieves the currently set color from the button.

+Retrieves the currently set color from the button.

-


gimp_color_button_set_update ()

void        gimp_color_button_set_update    (GimpColorButton *button,
                                              gboolean continuous);

-When set to TRUE, the button will emit the "color_changed" +When set to TRUE, the button will emit the "color_changed" continuously while the color is changed in the color selection dialog.

-

button : A GimpColorButton widget. -
continuous : The new setting of the continuous_update property. -


gimp_color_button_get_update ()

gboolean    gimp_color_button_get_update    (GimpColorButton *button);

-Returns the color button's continuous_update property.

+Returns the color button's continuous_update property.

-

button : A GimpColorButton widget. -
Returns : the continuous_update property. -


gimp_color_button_has_alpha ()

gboolean    gimp_color_button_has_alpha     (GimpColorButton *button);

-Checks whether the buttons shows transparency information.

+Checks whether the buttons shows transparency information.

-

button : Pointer to a GimpColorButton. -
Returns : TRUE if the button shows transparency information, FALSE +

button : Pointer to a GimpColorButton. +
Returns : TRUE if the button shows transparency information, FALSE otherwise. -

gimp_color_button_set_type ()

void        gimp_color_button_set_type      (GimpColorButton *button,
+

gimp_color_button_set_type ()

void        gimp_color_button_set_type      (GimpColorButton *button,
                                              GimpColorAreaType type);

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

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

-

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

Signals

The "color-changed" signal

void        user_function                  (GimpColorButton *gimpcolorbutton,
+

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

Signals

The "color-changed" signal

void        user_function                  (GimpColorButton *gimpcolorbutton,
                                             gpointer user_data);

-

gimpcolorbutton :the object which received the signal. +

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

See Also

+

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

See Also

libgimpcolor-gimpcolorspace

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorDisplay.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorDisplay.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorDisplay.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorDisplay.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpColorDisplay

GimpColorDisplay

GimpColorDisplay — Pluggable GIMP display color correction modules.

Synopsis

+GimpColorDisplay

GimpColorDisplay

GimpColorDisplay — Pluggable GIMP display color correction modules.

Synopsis

 
 
 
@@ -44,60 +44,60 @@
                                             (GimpColorDisplay *display);
 void        gimp_color_display_changed      (GimpColorDisplay *display);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GimpColorDisplay
-

Properties

+

Properties

 
   "enabled"              gboolean              : Read / Write / Construct
-

Signal Prototypes

+

Signal Prototypes

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

Description

+

Description

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

Details

GimpColorDisplay

typedef struct _GimpColorDisplay GimpColorDisplay;

+

Details

GimpColorDisplay

typedef struct _GimpColorDisplay GimpColorDisplay;

-


gimp_color_display_new ()

GimpColorDisplay* gimp_color_display_new    (

gimp_color_display_new ()

GimpColorDisplay* gimp_color_display_new    (GType display_type);

-

display_type : +

display_type :
Returns : -

gimp_color_display_clone ()

GimpColorDisplay* gimp_color_display_clone  (GimpColorDisplay *display);

+


gimp_color_display_clone ()

GimpColorDisplay* gimp_color_display_clone  (GimpColorDisplay *display);

-

display : +

display :
Returns : -

gimp_color_display_set_enabled ()

void        gimp_color_display_set_enabled  (GimpColorDisplay *display,
+

gimp_color_display_set_enabled ()

void        gimp_color_display_set_enabled  (GimpColorDisplay *display,
                                              gboolean enabled);

-

display : -
enabled : +

display : +
enabled : -

gimp_color_display_get_enabled ()


gimp_color_display_get_enabled ()

gboolean    gimp_color_display_get_enabled  (GimpColorDisplay *display);

-

display : +

display :
Returns : -

gimp_color_display_convert ()

void        gimp_color_display_convert      (GimpColorDisplay *display,
+

gimp_color_display_convert ()

void        gimp_color_display_convert      (GimpColorDisplay *display,
                                              guchar *buf,
@@ -114,60 +114,60 @@
 href="../glib/glib-Basic-Types.html#gint"
 >gint bpl);

-

display : -
buf : -
width : -
height : -
bpp : -
bpl : +

display : +
buf : +
width : +
height : +
bpp : +
bpl : -

gimp_color_display_load_state ()

void        gimp_color_display_load_state   (GimpColorDisplay *display,
+

gimp_color_display_load_state ()

void        gimp_color_display_load_state   (GimpColorDisplay *display,
                                              GimpParasite *state);

-

display : -
state : +

display : +
state : -

gimp_color_display_save_state ()


gimp_color_display_save_state ()

GimpParasite* gimp_color_display_save_state (GimpColorDisplay *display);

-

display : +

display :
Returns : -

gimp_color_display_configure ()


gimp_color_display_configure ()

GtkWidget*  gimp_color_display_configure    (GimpColorDisplay *display);

-

display : +

display :
Returns : -

gimp_color_display_configure_reset ()

void        gimp_color_display_configure_reset
+

gimp_color_display_configure_reset ()

void        gimp_color_display_configure_reset
                                             (GimpColorDisplay *display);

-

display : +

display : -

gimp_color_display_changed ()

void        gimp_color_display_changed      (GimpColorDisplay *display);

+


gimp_color_display_changed ()

void        gimp_color_display_changed      (GimpColorDisplay *display);

-

display : +

display : -

Properties

The "enabled" property

  "enabled"              

Properties

The "enabled" property

  "enabled"              gboolean              : Read / Write / Construct

Default value: TRUE

Signals

The "changed" signal

void        user_function                  (GimpColorDisplay *gimpcolordisplay,
+>gboolean              : Read / Write / Construct

Default value: TRUE

Signals

The "changed" signal

void        user_function                  (GimpColorDisplay *gimpcolordisplay,
                                             gpointer user_data);

-

gimpcolordisplay :the object which received the signal. +

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

See Also

+

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

See Also

GModule diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpColorDisplayStack

GimpColorDisplayStack

GimpColorDisplayStack —

Synopsis

+GimpColorDisplayStack

GimpColorDisplayStack

GimpColorDisplayStack —

Synopsis

 
 
 
@@ -37,13 +37,13 @@
 href="../glib/glib-Basic-Types.html#gint"
 >gint bpl);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GimpColorDisplayStack
-

Signal Prototypes

+

Signal Prototypes

 
 "added"     void        user_function      (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
@@ -70,60 +70,60 @@
                                             gpointer user_data);
-

Description

+

Description

-

Details

GimpColorDisplayStack

typedef struct _GimpColorDisplayStack GimpColorDisplayStack;

+

Details

GimpColorDisplayStack

typedef struct _GimpColorDisplayStack GimpColorDisplayStack;

-


gimp_color_display_stack_new ()

GimpColorDisplayStack* gimp_color_display_stack_new
+


gimp_color_display_stack_new ()

GimpColorDisplayStack* gimp_color_display_stack_new
                                             (void);

Returns : -

gimp_color_display_stack_clone ()

GimpColorDisplayStack* gimp_color_display_stack_clone
+

gimp_color_display_stack_clone ()

GimpColorDisplayStack* gimp_color_display_stack_clone
                                             (GimpColorDisplayStack *stack);

-

stack : +

stack :
Returns : -

gimp_color_display_stack_changed ()

void        gimp_color_display_stack_changed
+

gimp_color_display_stack_changed ()

void        gimp_color_display_stack_changed
                                             (GimpColorDisplayStack *stack);

-

stack : +

stack : -

gimp_color_display_stack_add ()

void        gimp_color_display_stack_add    (GimpColorDisplayStack *stack,
+

gimp_color_display_stack_add ()

void        gimp_color_display_stack_add    (GimpColorDisplayStack *stack,
                                              GimpColorDisplay *display);

-

stack : -
display : +

stack : +
display : -

gimp_color_display_stack_remove ()

void        gimp_color_display_stack_remove (GimpColorDisplayStack *stack,
+

gimp_color_display_stack_remove ()

void        gimp_color_display_stack_remove (GimpColorDisplayStack *stack,
                                              GimpColorDisplay *display);

-

stack : -
display : +

stack : +
display : -

gimp_color_display_stack_reorder_up ()

void        gimp_color_display_stack_reorder_up
+

gimp_color_display_stack_reorder_up ()

void        gimp_color_display_stack_reorder_up
                                             (GimpColorDisplayStack *stack,
                                              GimpColorDisplay *display);

-

stack : -
display : +

stack : +
display : -

gimp_color_display_stack_reorder_down ()

void        gimp_color_display_stack_reorder_down
+

gimp_color_display_stack_reorder_down ()

void        gimp_color_display_stack_reorder_down
                                             (GimpColorDisplayStack *stack,
                                              GimpColorDisplay *display);

-

stack : -
display : +

stack : +
display : -

gimp_color_display_stack_convert ()

void        gimp_color_display_stack_convert
+

gimp_color_display_stack_convert ()

void        gimp_color_display_stack_convert
                                             (GimpColorDisplayStack *stack,
                                              gint bpl);

-

stack : -
buf : -
width : -
height : -
bpp : -
bpl : +

stack : +
buf : +
width : +
height : +
bpp : +
bpl : -

Signals

The "added" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+

Signals

The "added" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
                                             gpointer user_data);

-

gimpcolordisplaystack :the object which received the signal. -
arg1 : -
arg2 : +

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

The "changed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+
user_data :user data set when the signal handler was connected.

The "changed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
                                             gpointer user_data);

-

gimpcolordisplaystack :the object which received the signal. +

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

The "removed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+
user_data :user data set when the signal handler was connected.

The "removed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
                                             gpointer user_data);

-

gimpcolordisplaystack :the object which received the signal. -
arg1 : +

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

The "reordered" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+
user_data :user data set when the signal handler was connected.

The "reordered" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
                                             gpointer user_data);

-

gimpcolordisplaystack :the object which received the signal. -
arg1 : -
arg2 : +

gimpcolordisplaystack :the object which received the signal. +
arg1 : +
arg2 : -
user_data :user data set when the signal handler was connected.
+
user_data :user data set when the signal handler was connected.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpColorHexEntry

GimpColorHexEntry

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

Synopsis

+GimpColorHexEntry

GimpColorHexEntry

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

Synopsis

 
 
 
@@ -15,7 +15,7 @@
 href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB"
 >GimpRGB *color);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkEntry
                      +----GimpColorHexEntry
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorHexEntry implements AtkImplementorIface, GtkEditable and GtkCellEditable.

Signal Prototypes

+>GtkCellEditable.

Signal Prototypes

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

Description

+

Description

Widget for entering a color's hex triplet. -

Details

GimpColorHexEntry

typedef struct _GimpColorHexEntry GimpColorHexEntry;

+

Details

GimpColorHexEntry

typedef struct _GimpColorHexEntry GimpColorHexEntry;

-


gimp_color_hex_entry_new ()


gimp_color_hex_entry_new ()

GtkWidget*  gimp_color_hex_entry_new        (void);

@@ -55,7 +55,7 @@

Returns : a new GimpColorHexEntry widget

Since GIMP 2.2 -


gimp_color_hex_entry_set_color ()

void        gimp_color_hex_entry_set_color  (GimpColorHexEntry *entry,
+


gimp_color_hex_entry_set_color ()

void        gimp_color_hex_entry_set_color  (GimpColorHexEntry *entry,
                                              const GimpRGB *color);

@@ -63,27 +63,27 @@ is different to the previously set color, the "color_changed" signal is emitted.

-

entry : a GimpColorHexEntry widget -
color : pointer to a
entry : a GimpColorHexEntry widget +
color : pointer to a GimpRGB

Since GIMP 2.2 -


gimp_color_hex_entry_get_color ()

void        gimp_color_hex_entry_get_color  (GimpColorHexEntry *entry,
+


gimp_color_hex_entry_get_color ()

void        gimp_color_hex_entry_get_color  (GimpColorHexEntry *entry,
                                              GimpRGB *color);

Retrieves the color value displayed by a GimpColorHexEntry.

-

entry : a GimpColorHexEntry widget -
color : pointer to a
entry : a GimpColorHexEntry widget +
color : pointer to a GimpRGB

Since GIMP 2.2 -

Signals

The "color-changed" signal

void        user_function                  (GimpColorHexEntry *gimpcolorhexentry,
+

Signals

The "color-changed" signal

void        user_function                  (GimpColorHexEntry *gimpcolorhexentry,
                                             gpointer user_data);

-

gimpcolorhexentry :the object which received the signal. +

gimpcolorhexentry :the object which received the signal. -
user_data :user data set when the signal handler was connected.
+
user_data :user data set when the signal handler was connected.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorNotebook.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorNotebook.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorNotebook.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorNotebook.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpColorNotebook

GimpColorNotebook

GimpColorNotebook — A GimpColorSelector implementation.

Synopsis

+GimpColorNotebook

GimpColorNotebook

GimpColorNotebook — A GimpColorSelector implementation.

Synopsis

 
 
 
@@ -14,7 +14,7 @@
 href="../glib/glib-Basic-Types.html#gboolean"
 >gboolean has_page);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkVBox
                                  +----GimpColorSelector
                                        +----GimpColorNotebook
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorNotebook implements - AtkImplementorIface.

Style Properties

+ AtkImplementorIface.

Style Properties

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

Description

+

Description

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

Details

GimpColorNotebook

typedef struct _GimpColorNotebook GimpColorNotebook;

+

Details

GimpColorNotebook

typedef struct _GimpColorNotebook GimpColorNotebook;

-


gimp_color_notebook_set_has_page ()


gimp_color_notebook_set_has_page ()

GtkWidget*  gimp_color_notebook_set_has_page
                                             (GimpColorNotebook *notebook,
@@ -62,17 +62,17 @@
 href="../glib/glib-Basic-Types.html#gboolean"
 >gboolean has_page);

This function adds and removed pages to / from a GimpColorNotebook. -The page_type passed must be a GimpColorSelector subtype.

+The page_type passed must be a GimpColorSelector subtype.

-

notebook : A GimpColorNotebook widget. -
page_type : The
notebook : A GimpColorNotebook widget. +
page_type : The GType of the notebook page to add or remove. -
has_page : Whether the page should be added or removed. -
Returns : The new page widget, if has_page was TRUE, or NULL - if has_page was FALSE. -

Style Properties

The "tab-border" style property

  "tab-border"           
has_page : Whether the page should be added or removed. +
Returns : The new page widget, if has_page was TRUE, or NULL + if has_page was FALSE. +

Style Properties

The "tab-border" style property

  "tab-border"           gint                  : Read

Width of the border around the tab contents.

Allowed values: >= 0

Default value: 0


The "tab-icon-size" style property

  "tab-icon-size"        gint                  : Read

Width of the border around the tab contents.

Allowed values: >= 0

Default value: 0


The "tab-icon-size" style property

  "tab-icon-size"        GtkIconSize           : Read

Size for icons displayed in the tab.

Default value: GTK_ICON_SIZE_BUTTON

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorScale.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorScale.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorScale.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorScale.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpColorScale

GimpColorScale

GimpColorScale — Fancy colored sliders.

Synopsis

+GimpColorScale

GimpColorScale

GimpColorScale — Fancy colored sliders.

Synopsis

 
 
 
@@ -19,7 +19,7 @@
 href="../libgimpcolor/libgimpcolor-GimpHSV.html#GimpHSV"
 >GimpHSV *hsv);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkScale
                            +----GimpColorScale
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorScale implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

-

Details

GimpColorScale

typedef struct _GimpColorScale GimpColorScale;

+

Details

GimpColorScale

typedef struct _GimpColorScale GimpColorScale;

-


gimp_color_scale_new ()


gimp_color_scale_new ()

GtkWidget*  gimp_color_scale_new            (GimpColorSelectorChannel channel);

Creates a new GimpColorScale widget.

-

orientation : the scale's orientation (horizontal or vertical) -
channel : the scale's color channel +

orientation : the scale's orientation (horizontal or vertical) +
channel : the scale's color channel
Returns : a new GimpColorScale widget -

gimp_color_scale_set_channel ()

void        gimp_color_scale_set_channel    (GimpColorScale *scale,
+

gimp_color_scale_set_channel ()

void        gimp_color_scale_set_channel    (GimpColorScale *scale,
                                              GimpColorSelectorChannel channel);

-Changes the color channel displayed by the scale.

+Changes the color channel displayed by the scale.

-

scale : a GimpColorScale widget -
channel : the new color channel -

gimp_color_scale_set_color ()

void        gimp_color_scale_set_color      (GimpColorScale *scale,
+

scale : a GimpColorScale widget +
channel : the new color channel +

gimp_color_scale_set_color ()

void        gimp_color_scale_set_color      (GimpColorScale *scale,
                                              const GimpRGB *rgb,
                                              const GimpHSV *hsv);

-Changes the color value of the scale.

+Changes the color value of the scale.

-

scale : a GimpColorScale widget -
rgb : the new color as
scale : a GimpColorScale widget +
rgb : the new color as GimpRGB -
hsv : the new color as
hsv : the new color as GimpHSV
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorScales.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorScales.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorScales.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorScales.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,10 +1,10 @@ -GimpColorScales

GimpColorScales

GimpColorScales — A GimpColorSelector implementation.

Synopsis

+GimpColorScales

GimpColorScales

GimpColorScales — A GimpColorSelector implementation.

Synopsis

 
 
 
             GimpColorScales;
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkVBox
                                  +----GimpColorSelector
                                        +----GimpColorScales
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorScales implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

The GimpColorScales widget is an implementation of a GimpColorSelector. It shows a group of GimpColorScale widgets that allow to adjust the HSV and RGB color channels. -

Details

GimpColorScales

typedef struct _GimpColorScales GimpColorScales;

+

Details

GimpColorScales

typedef struct _GimpColorScales GimpColorScales;

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorSelect.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorSelect.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorSelect.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorSelect.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,10 +1,10 @@ -GimpColorSelect

GimpColorSelect

GimpColorSelect — A GimpColorSelector implementation.

Synopsis

+GimpColorSelect

GimpColorSelect

GimpColorSelect — A GimpColorSelector implementation.

Synopsis

 
 
 
             GimpColorSelect;
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkVBox
                                  +----GimpColorSelector
                                        +----GimpColorSelect
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorSelect implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

The GimpColorSelect widget is an implementation of a GimpColorSelector. It shows a square area that allows to interactively change two color channels and a smaller area to change the third channel. You can select which channel -should be the third by calling gimp_color_selector_set_channel(). The widget +should be the third by calling gimp_color_selector_set_channel(). The widget will then change the other two channels accordingly. -

Details

GimpColorSelect

typedef struct _GimpColorSelect GimpColorSelect;

+

Details

GimpColorSelect

typedef struct _GimpColorSelect GimpColorSelect;

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorSelection.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorSelection.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorSelection.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorSelection.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpColorSelection

GimpColorSelection

GimpColorSelection — Widget for doing a color selection.

Synopsis

+GimpColorSelection

GimpColorSelection

GimpColorSelection — Widget for doing a color selection.

Synopsis

 
 
 
@@ -37,7 +37,7 @@
 void        gimp_color_selection_color_changed
                                             (GimpColorSelection *selection);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkVBox
                                  +----GimpColorSelection
-

Implemented Interfaces

+

Implemented Interfaces

GimpColorSelection implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "color-changed"
             void        user_function      (GimpColorSelection *gimpcolorselection,
                                             gpointer user_data);
-

Description

+

Description

-

Details

GimpColorSelection

typedef struct _GimpColorSelection GimpColorSelection;

+

Details

GimpColorSelection

typedef struct _GimpColorSelection GimpColorSelection;

-


gimp_color_selection_new ()


gimp_color_selection_new ()

GtkWidget*  gimp_color_selection_new        (void);

Creates a new GimpColorSelection widget.

Returns : The new GimpColorSelection widget. -

gimp_color_selection_set_show_alpha ()

void        gimp_color_selection_set_show_alpha
+

gimp_color_selection_set_show_alpha ()

void        gimp_color_selection_set_show_alpha
                                             (GimpColorSelection *selection,
                                              gboolean show_alpha);

-Sets the show_alpha property of the selection widget.

+Sets the show_alpha property of the selection widget.

-

selection : A GimpColorSelection widget. -
show_alpha : The new show_alpha setting. -


gimp_color_selection_get_show_alpha ()

gboolean    gimp_color_selection_get_show_alpha
                                             (GimpColorSelection *selection);

-Returns the selection's show_alpha property.

+Returns the selection's show_alpha property.

-

selection : A GimpColorSelection widget. +

selection : A GimpColorSelection widget.
Returns : TRUE if the GimpColorSelection has alpha controls. -

gimp_color_selection_set_color ()

void        gimp_color_selection_set_color  (GimpColorSelection *selection,
+

gimp_color_selection_set_color ()

void        gimp_color_selection_set_color  (GimpColorSelection *selection,
                                              const GimpRGB *color);

-Sets the GimpColorSelection's current color to the new color.

+Sets the GimpColorSelection's current color to the new color.

-

selection : A GimpColorSelection widget. -
color : The color to set as current color. -

gimp_color_selection_get_color ()

void        gimp_color_selection_get_color  (GimpColorSelection *selection,
+

selection : A GimpColorSelection widget. +
color : The color to set as current color. +

gimp_color_selection_get_color ()

void        gimp_color_selection_get_color  (GimpColorSelection *selection,
                                              GimpRGB *color);

This function returns the GimpColorSelection's current color.

-

selection : A GimpColorSelection widget. -
color : Return location for the selection's current color. -

gimp_color_selection_set_old_color ()

void        gimp_color_selection_set_old_color
+

selection : A GimpColorSelection widget. +
color : Return location for the selection's current color. +

gimp_color_selection_set_old_color ()

void        gimp_color_selection_set_old_color
                                             (GimpColorSelection *selection,
                                              const GimpRGB *color);

Sets the GimpColorSelection's old color.

-

selection : A GimpColorSelection widget. -
color : The color to set as old color. -

gimp_color_selection_get_old_color ()

void        gimp_color_selection_get_old_color
+

selection : A GimpColorSelection widget. +
color : The color to set as old color. +

gimp_color_selection_get_old_color ()

void        gimp_color_selection_get_old_color
                                             (GimpColorSelection *selection,
                                              GimpRGB *color);

This function returns the GimpColorSelection's old color.

-

selection : A GimpColorSelection widget. -
color : Return location for the selection's old color. -

gimp_color_selection_reset ()

void        gimp_color_selection_reset      (GimpColorSelection *selection);

+

selection : A GimpColorSelection widget. +
color : Return location for the selection's old color. +

gimp_color_selection_reset ()

void        gimp_color_selection_reset      (GimpColorSelection *selection);

Sets the GimpColorSelection's current color to its old color.

-

selection : A GimpColorSelection widget. -

gimp_color_selection_color_changed ()

void        gimp_color_selection_color_changed
+

selection : A GimpColorSelection widget. +

gimp_color_selection_color_changed ()

void        gimp_color_selection_color_changed
                                             (GimpColorSelection *selection);

Emits the "color_changed" signal.

-

selection : A GimpColorSelection widget. -

Signals

The "color-changed" signal

void        user_function                  (GimpColorSelection *gimpcolorselection,
+

selection : A GimpColorSelection widget. +

Signals

The "color-changed" signal

void        user_function                  (GimpColorSelection *gimpcolorselection,
                                             gpointer user_data);

-

gimpcolorselection :the object which received the signal. +

gimpcolorselection :the object which received the signal. -
user_data :user data set when the signal handler was connected.
+
user_data :user data set when the signal handler was connected.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorSelector.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorSelector.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorSelector.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorSelector.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpColorSelector

GimpColorSelector

GimpColorSelector — Pluggable GIMP color selector modules.

Synopsis

+GimpColorSelector

GimpColorSelector

GimpColorSelector — Pluggable GIMP color selector modules.

Synopsis

 
 
 
@@ -47,7 +47,7 @@
 void        gimp_color_selector_channel_changed
                                             (GimpColorSelector *selector);
 
-

Object Hierarchy

+

Implemented Interfaces

+

Implemented Interfaces

GimpColorSelector implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "channel-changed"
             void        user_function      (GimpColorSelector *gimpcolorselector,
@@ -94,18 +94,18 @@
                                             gpointer user_data);
-

Description

+

Description

Functions and definitions for creating pluggable GIMP color selector modules. -

Details

GimpColorSelector

typedef struct _GimpColorSelector GimpColorSelector;

+

Details

GimpColorSelector

typedef struct _GimpColorSelector GimpColorSelector;

-


GIMP_COLOR_SELECTOR_SIZE

#define GIMP_COLOR_SELECTOR_SIZE      150
+


GIMP_COLOR_SELECTOR_SIZE

#define GIMP_COLOR_SELECTOR_SIZE      150
 

The suggested size for a color area in a GimpColorSelector implementation. -


GIMP_COLOR_SELECTOR_BAR_SIZE

#define GIMP_COLOR_SELECTOR_BAR_SIZE  15
+


GIMP_COLOR_SELECTOR_BAR_SIZE

#define GIMP_COLOR_SELECTOR_BAR_SIZE  15
 

The suggested width for a color bar in a GimpColorSelector implementation. -


enum GimpColorSelectorChannel

typedef enum
+


enum GimpColorSelectorChannel

typedef enum
 {
   GIMP_COLOR_SELECTOR_HUE,
   GIMP_COLOR_SELECTOR_SATURATION,
@@ -117,15 +117,15 @@
 } GimpColorSelectorChannel;
 

-

GIMP_COLOR_SELECTOR_HUEthe hue channel -
GIMP_COLOR_SELECTOR_SATURATIONthe saturation channel -
GIMP_COLOR_SELECTOR_VALUEthe value channel -
GIMP_COLOR_SELECTOR_REDthe red channel -
GIMP_COLOR_SELECTOR_GREENthe green channel -
GIMP_COLOR_SELECTOR_BLUEthe blue channel -
GIMP_COLOR_SELECTOR_ALPHAthe alpha channel +

GIMP_COLOR_SELECTOR_HUEthe hue channel +
GIMP_COLOR_SELECTOR_SATURATIONthe saturation channel +
GIMP_COLOR_SELECTOR_VALUEthe value channel +
GIMP_COLOR_SELECTOR_REDthe red channel +
GIMP_COLOR_SELECTOR_GREENthe green channel +
GIMP_COLOR_SELECTOR_BLUEthe blue channel +
GIMP_COLOR_SELECTOR_ALPHAthe alpha channel -

gimp_color_selector_new ()


gimp_color_selector_new ()

GtkWidget*  gimp_color_selector_new         (GimpHSV *hsv,
                                              GimpColorSelectorChannel channel);

-

selector_type : -
rgb : -
hsv : -
channel : +

selector_type : +
rgb : +
hsv : +
channel :
Returns : -

gimp_color_selector_set_toggles_visible ()

void        gimp_color_selector_set_toggles_visible
+

gimp_color_selector_set_toggles_visible ()

void        gimp_color_selector_set_toggles_visible
                                             (GimpColorSelector *selector,
                                              gboolean visible);

-

selector : -
visible : +

selector : +
visible : -

gimp_color_selector_set_toggles_sensitive ()

void        gimp_color_selector_set_toggles_sensitive
+

gimp_color_selector_set_toggles_sensitive ()

void        gimp_color_selector_set_toggles_sensitive
                                             (GimpColorSelector *selector,
                                              gboolean sensitive);

-

selector : -
sensitive : +

selector : +
sensitive : -

gimp_color_selector_set_show_alpha ()

void        gimp_color_selector_set_show_alpha
+

gimp_color_selector_set_show_alpha ()

void        gimp_color_selector_set_show_alpha
                                             (GimpColorSelector *selector,
                                              gboolean show_alpha);

-

selector : -
show_alpha : +

selector : +
show_alpha : -

gimp_color_selector_set_color ()

void        gimp_color_selector_set_color   (GimpColorSelector *selector,
+

gimp_color_selector_set_color ()

void        gimp_color_selector_set_color   (GimpColorSelector *selector,
                                              const GimpRGB *rgb,
@@ -183,31 +183,31 @@
 href="../libgimpcolor/libgimpcolor-GimpHSV.html#GimpHSV"
 >GimpHSV *hsv);

-

selector : -
rgb : -
hsv : +

selector : +
rgb : +
hsv : -

gimp_color_selector_set_channel ()

void        gimp_color_selector_set_channel (GimpColorSelector *selector,
+

gimp_color_selector_set_channel ()

void        gimp_color_selector_set_channel (GimpColorSelector *selector,
                                              GimpColorSelectorChannel channel);

-

selector : -
channel : +

selector : +
channel : -

gimp_color_selector_color_changed ()

void        gimp_color_selector_color_changed
+

gimp_color_selector_color_changed ()

void        gimp_color_selector_color_changed
                                             (GimpColorSelector *selector);

-

selector : +

selector : -

gimp_color_selector_channel_changed ()

void        gimp_color_selector_channel_changed
+

gimp_color_selector_channel_changed ()

void        gimp_color_selector_channel_changed
                                             (GimpColorSelector *selector);

-

selector : +

selector : -

Signals

The "channel-changed" signal

void        user_function                  (GimpColorSelector *gimpcolorselector,
+

Signals

The "channel-changed" signal

void        user_function                  (GimpColorSelector *gimpcolorselector,
                                             gint arg1,
@@ -215,10 +215,10 @@
 href="../glib/glib-Basic-Types.html#gpointer"
 >gpointer user_data);

-

gimpcolorselector :the object which received the signal. -
arg1 : +

gimpcolorselector :the object which received the signal. +
arg1 : -
user_data :user data set when the signal handler was connected.

The "color-changed" signal

void        user_function                  (GimpColorSelector *gimpcolorselector,
+
user_data :user data set when the signal handler was connected.

The "color-changed" signal

void        user_function                  (GimpColorSelector *gimpcolorselector,
                                             gpointer arg1,
@@ -229,11 +229,11 @@
 href="../glib/glib-Basic-Types.html#gpointer"
 >gpointer user_data);

-

gimpcolorselector :the object which received the signal. -
arg1 : -
arg2 : +

gimpcolorselector :the object which received the signal. +
arg1 : +
arg2 : -
user_data :user data set when the signal handler was connected.

See Also

+

user_data :user data set when the signal handler was connected.

See Also

GModule diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpController.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpController.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpController.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpController.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpController

GimpController

GimpController — Pluggable GIMP input controller modules.

Synopsis

+GimpController

GimpController

GimpController — Pluggable GIMP input controller modules.

Synopsis

 
 
 
@@ -32,13 +32,13 @@
 >gboolean    gimp_controller_event           (GimpController *controller,
                                              const GimpControllerEvent *event);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GObject
    +----GimpController
-

Properties

+

Properties

 
   "name"                 state"                gchararray            : Read / Write / Construct
-

Signal Prototypes

+

Signal Prototypes

 
 "event"     gpointer user_data);
-

Description

+

Description

An abstract interface for implementing arbitrary input controllers. -

Details

enum GimpControllerEventType

typedef enum
+

Details

enum GimpControllerEventType

typedef enum
 {
   GIMP_CONTROLLER_EVENT_TRIGGER,
   GIMP_CONTROLLER_EVENT_VALUE
 } GimpControllerEventType;
 

-


GimpControllerEventAny

typedef struct {
+


GimpControllerEventAny

typedef struct {
   GimpControllerEventType  type;
   GimpController          *source;
   gint                     event_id;
 } GimpControllerEventAny;
 

-


GimpControllerEventTrigger

typedef struct {
+


GimpControllerEventTrigger

typedef struct {
   GimpControllerEventType  type;
   GimpController          *source;
   gint                     event_id;
 } GimpControllerEventTrigger;
 

-


GimpControllerEventValue

typedef struct {
+


GimpControllerEventValue

typedef struct {
   GimpControllerEventType  type;
   GimpController          *source;
   gint                     event_id;
@@ -88,7 +88,7 @@
 } GimpControllerEventValue;
 

-


union GimpControllerEvent

union GimpControllerEvent
+


union GimpControllerEvent

union GimpControllerEvent
 {
   GimpControllerEventType    type;
   GimpControllerEventAny     any;
@@ -97,37 +97,37 @@
 };
 

-


GimpController

typedef struct _GimpController GimpController;

+


GimpController

typedef struct _GimpController GimpController;

-


gimp_controller_new ()

GimpController* gimp_controller_new         (

gimp_controller_new ()

GimpController* gimp_controller_new         (GType controller_type);

-

controller_type : +

controller_type :
Returns : -

gimp_controller_get_n_events ()


gimp_controller_get_n_events ()

gint        gimp_controller_get_n_events    (GimpController *controller);

-

controller : +

controller :
Returns : -

gimp_controller_get_event_name ()

const 

gimp_controller_get_event_name ()

const gchar* gimp_controller_get_event_name (GimpController *controller,
                                              gint event_id);

-

controller : -
event_id : +

controller : +
event_id :
Returns : -

gimp_controller_get_event_blurb ()

const 

gimp_controller_get_event_blurb ()

const gchar* gimp_controller_get_event_blurb
                                             (GimpController *controller,
@@ -135,26 +135,26 @@
 href="../glib/glib-Basic-Types.html#gint"
 >gint event_id);

-

controller : -
event_id : +

controller : +
event_id :
Returns : -

gimp_controller_event ()


gimp_controller_event ()

gboolean    gimp_controller_event           (GimpController *controller,
                                              const GimpControllerEvent *event);

-

controller : -
event : +

controller : +
event :
Returns : -

Properties

The "name" property

  "name"                 

Properties

The "name" property

  "name"                 gchararray            : Read / Write / Construct

Default value: "Unnamed Controller"


The "state" property

  "state"                gchararray            : Read / Write / Construct

Default value: "Unnamed Controller"


The "state" property

  "state"                gchararray            : Read / Write / Construct

Default value: "Unknown"

Signals

The "event" signal

gchararray            : Read / Write / Construct

Default value: "Unknown"

Signals

The "event" signal

gboolean    user_function                  (GimpController *gimpcontroller,
                                             gpointer user_data);

-

gimpcontroller :the object which received the signal. -
arg1 : -
user_data :user data set when the signal handler was connected.
Returns : +

gimpcontroller :the object which received the signal. +
arg1 : +
user_data :user data set when the signal handler was connected.
Returns :
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpDialog.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpDialog.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpDialog.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpDialog.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpDialog

GimpDialog

GimpDialog — Constructors for GimpDialog

GimpDialog

GimpDialog — Constructors for GtkDialog's and action_areas as well as other dialog-related stuff.

Synopsis

@@ -53,7 +53,7 @@
 href="../glib/glib-Basic-Types.html#gboolean"
 >gboolean show);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkDialog
                                        +----GimpDialog
-

Implemented Interfaces

+

Implemented Interfaces

GimpDialog implements - AtkImplementorIface.

Properties

+ AtkImplementorIface.

Properties

 
   "help-func"            help-id"              gchararray            : Read / Write / Construct Only
-

Description

+

Description

-

Details

GimpDialog

typedef struct _GimpDialog GimpDialog;

+

Details

GimpDialog

typedef struct _GimpDialog GimpDialog;

-


gimp_dialog_new ()


gimp_dialog_new ()

GtkWidget*  gimp_dialog_new                 (const gchar *help_id,
                                              ...);

-Creates a new GimpDialog widget. +Creates a new GimpDialog widget.

This function simply packs the action_area arguments passed in "..." -into a va_list variable and passes everything to gimp_dialog_new_valist(). +into a va_list variable and passes everything to gimp_dialog_new_valist().

-For a description of the format of the va_list describing the +For a description of the format of the va_list describing the action_area buttons see gtk_dialog_new_with_buttons().

+>gtk_dialog_new_with_buttons().

-

title : The dialog's title which will be set with +

title : The dialog's title which will be set with gtk_window_set_title(). -
role : The dialog's role which will be set with +>gtk_window_set_title(). +
role : The dialog's role which will be set with gtk_window_set_role(). -
parent : The parent widget of this dialog. -
flags : The flags (see the gtk_window_set_role(). +
parent : The parent widget of this dialog. +
flags : The flags (see the GtkDialog documentation). -
help_func : The function which will be called if the user presses "F1". -
help_id : The help_id which will be passed to help_func. -
... : A NULL-terminated va_list destribing the +
help_func : The function which will be called if the user presses "F1". +
help_id : The help_id which will be passed to help_func. +
... : A NULL-terminated va_list destribing the action_area buttons.
Returns : A GimpDialog. -

gimp_dialog_new_valist ()


gimp_dialog_new_valist ()

GtkWidget*  gimp_dialog_new_valist          (const gchar *help_id,
                                              va_list args);

-Creates a new GimpDialog widget. If a GtkWindow is specified as -parent then the dialog will be made transient for this window. +Creates a new GimpDialog widget. If a GtkWindow is specified as +parent then the dialog will be made transient for this window.

-For a description of the format of the va_list describing the +For a description of the format of the va_list describing the action_area buttons see gtk_dialog_new_with_buttons().

+>gtk_dialog_new_with_buttons().

-

title : The dialog's title which will be set with +

title : The dialog's title which will be set with gtk_window_set_title(). -
role : The dialog's role which will be set with +>gtk_window_set_title(). +
role : The dialog's role which will be set with gtk_window_set_role(). -
parent : The parent widget of this dialog or NULL. -
flags : The flags (see the gtk_window_set_role(). +
parent : The parent widget of this dialog or NULL. +
flags : The flags (see the GtkDialog documentation). -
help_func : The function which will be called if the user presses "F1". -
help_id : The help_id which will be passed to help_func. -
args : A va_list destribing the action_area buttons. +
help_func : The function which will be called if the user presses "F1". +
help_id : The help_id which will be passed to help_func. +
args : A va_list destribing the action_area buttons.
Returns : A GimpDialog. -

gimp_dialog_add_buttons_valist ()

void        gimp_dialog_add_buttons_valist  (GimpDialog *dialog,
+

gimp_dialog_add_buttons_valist ()

void        gimp_dialog_add_buttons_valist  (GimpDialog *dialog,
                                              va_list args);

This function is essentially the same as gtk_dialog_add_buttons() +>gtk_dialog_add_buttons() except it takes a va_list instead of '...'

-

dialog : The dialog to add buttons to. -
args : The buttons as va_list. -


gimp_dialog_run ()

gint        gimp_dialog_run                 (GimpDialog *dialog);

This function does exactly the same as gtk_dialog_run() except it +>gtk_dialog_run() except it does not make the dialog modal while the GMainLoop is running.

-

dialog : a GimpDialog +

dialog : a GimpDialog
Returns : response ID -

gimp_dialogs_show_help_button ()

void        gimp_dialogs_show_help_button   (

gimp_dialogs_show_help_button ()

void        gimp_dialogs_show_help_button   (gboolean show);

This function is for internal use only.

-

show : whether a help button should be added when creating a GimpDialog +

show : whether a help button should be added when creating a GimpDialog

Since GIMP 2.2 -

Properties

The "help-func" property

  "help-func"            

Properties

The "help-func" property

  "help-func"            gpointer              : Read / Write / Construct Only


The "help-id" property

  "help-id"              gpointer              : Read / Write / Construct Only


The "help-id" property

  "help-id"              gchararray            : Read / Write / Construct Only

Default value: NULL

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpFileEntry.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpFileEntry.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpFileEntry.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpFileEntry.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpFileEntry

GimpFileEntry

GimpFileEntry — Widget for entering a filename.

Synopsis

+GimpFileEntry

GimpFileEntry

GimpFileEntry — Widget for entering a filename.

Synopsis

 
 
 
@@ -25,7 +25,7 @@
 href="../glib/glib-Basic-Types.html#gchar"
 >gchar *filename);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkHBox
                                  +----GimpFileEntry
-

Implemented Interfaces

+

Implemented Interfaces

GimpFileEntry implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "filename-changed"
             void        user_function      (GimpFileEntry *arg0,
                                             gpointer user_data);
-

Description

+

Description

This widget is used to enter filenames or directories.

There is a GtkFileSelection dialog will be hidden.

-If you specify check_valid as TRUE in gimp_file_entry_new() +If you specify check_valid as TRUE in gimp_file_entry_new() the entered filename will be checked for validity and a pixmap will be shown which indicates if the file exists or not.

Whenever the user changes the filename, the "filename_changed" signal will be emitted. -

Details

GimpFileEntry

typedef struct _GimpFileEntry GimpFileEntry;

+

Details

GimpFileEntry

typedef struct _GimpFileEntry GimpFileEntry;

-


gimp_file_entry_new ()


gimp_file_entry_new ()

GtkWidget*  gimp_file_entry_new             (const gboolean check_valid);

Creates a new GimpFileEntry widget.

-

title : The title of the GtkFileEntry dialog. -
filename : The initial filename. -
dir_only : TRUE if the file entry should accept directories only. -
check_valid : TRUE if the widget should check if the entered file +

title : The title of the GtkFileEntry dialog. +
filename : The initial filename. +
dir_only : TRUE if the file entry should accept directories only. +
check_valid : TRUE if the widget should check if the entered file really exists.
Returns : A pointer to the new GimpFileEntry widget. -

gimp_file_entry_get_filename ()


gimp_file_entry_get_filename ()

gchar*      gimp_file_entry_get_filename    (GimpFileEntry *entry);

Note that you have to g_free() the returned string.

+>g_free() the returned string.

-

entry : The file entry you want to know the filename from. +

entry : The file entry you want to know the filename from.
Returns : The file or directory the user has entered. -

gimp_file_entry_set_filename ()

void        gimp_file_entry_set_filename    (GimpFileEntry *entry,
+

gimp_file_entry_set_filename ()

void        gimp_file_entry_set_filename    (GimpFileEntry *entry,
                                              const gchar *filename);

-If you specified check_valid as TRUE in gimp_file_entry_new() +If you specified check_valid as TRUE in gimp_file_entry_new() the GimpFileEntry will immediately check the validity of the file name.

-

entry : The file entry you want to set the filename for. -
filename : The new filename. -

Signals

The "filename-changed" signal

void        user_function                  (GimpFileEntry *arg0,
+

entry : The file entry you want to set the filename for. +
filename : The new filename. +

Signals

The "filename-changed" signal

void        user_function                  (GimpFileEntry *arg0,
                                             gpointer user_data);

This signal is emitted whenever the user changes the filename.

-

user_data :user data set when the signal handler was connected.

See Also

+

user_data :user data set when the signal handler was connected.

See Also

GimpPathEditor

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpFrame.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpFrame.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpFrame.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpFrame.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpFrame

GimpFrame

GimpFrame — A widget providing a HIG-compliant subclass of GimpFrame

GimpFrame

GimpFrame — A widget providing a HIG-compliant subclass of GtkFrame.

Synopsis

 
@@ -11,7 +11,7 @@
 href="../glib/glib-Basic-Types.html#gchar"
 >gchar *label);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkFrame
                                  +----GimpFrame
-

Implemented Interfaces

+

Implemented Interfaces

GimpFrame implements - AtkImplementorIface.

Style Properties

+ AtkImplementorIface.

Style Properties

 
   "label-bold"           label-spacing"        gint                  : Read
-

Description

+

Description

A widget providing a HIG-compliant subclass of GtkFrame. -

Details

GimpFrame

typedef struct _GimpFrame GimpFrame;

+

Details

GimpFrame

typedef struct _GimpFrame GimpFrame;

-


gimp_frame_new ()


gimp_frame_new ()

GtkWidget*  gimp_frame_new                  (const 

-

label : text to set as the frame's title label (or NULL for no title) +

label : text to set as the frame's title label (or NULL for no title)
Returns : a new GimpFrame widget

Since GIMP 2.2 -

Style Properties

The "label-bold" style property

  "label-bold"           

Style Properties

The "label-bold" style property

  "label-bold"           gboolean              : Read

Default value: TRUE


The "label-spacing" style property

  "label-spacing"        gboolean              : Read

Default value: TRUE


The "label-spacing" style property

  "label-spacing"        gint                  : Read

Allowed values: >= 0

Default value: 6

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpIntComboBox.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpIntComboBox.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpIntComboBox.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpIntComboBox.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpIntComboBox

GimpIntComboBox

GimpIntComboBox — A widget providing a popup menu of integer values (e.g. enums).

Synopsis

+GimpIntComboBox

GimpIntComboBox

GimpIntComboBox — A widget providing a popup menu of integer values (e.g. enums).

Synopsis

 
 
 
@@ -58,7 +58,7 @@
 href="../glib/glib-Basic-Types.html#gpointer"
 >gpointer data);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkComboBox
                                  +----GimpIntComboBox
-

Implemented Interfaces

+

Implemented Interfaces

GimpIntComboBox implements AtkImplementorIface, GtkCellEditable and GtkCellLayout.

Description

+>GtkCellLayout.

Description

A widget providing a popup menu of integer values (e.g. enums). -

Details

GimpIntComboBox

typedef struct _GimpIntComboBox GimpIntComboBox;

+

Details

GimpIntComboBox

typedef struct _GimpIntComboBox GimpIntComboBox;

-


gimp_int_combo_box_new ()


gimp_int_combo_box_new ()

GtkWidget*  gimp_int_combo_box_new          (const gint first_value,
                                              ...);

Creates a GtkComboBox that has integer values associated with each -item. The items to fill the combo box with are specified as a NULL +item. The items to fill the combo box with are specified as a NULL terminated list of label/value pairs.

-

first_label : the label of the first item -
first_value : the value of the first item -
... : a NULL terminated list of more label, value pairs +

first_label : the label of the first item +
first_value : the value of the first item +
... : a NULL terminated list of more label, value pairs
Returns : a new GimpIntComboBox.

Since GIMP 2.2 -


gimp_int_combo_box_new_valist ()


gimp_int_combo_box_new_valist ()

GtkWidget*  gimp_int_combo_box_new_valist   (const gint first_value,
                                              va_list values);

-A variant of gimp_int_combo_box_new() that takes a va_list of +A variant of gimp_int_combo_box_new() that takes a va_list of label/value pairs. Probably only useful for language bindings.

-

first_label : the label of the first item -
first_value : the value of the first item -
values : a va_list with more values +

first_label : the label of the first item +
first_value : the value of the first item +
values : a va_list with more values
Returns : a new GimpIntComboBox.

Since GIMP 2.2 -


gimp_int_combo_box_new_array ()


gimp_int_combo_box_new_array ()

GtkWidget*  gimp_int_combo_box_new_array    (gchar *labels[]);

-A variant of gimp_int_combo_box_new() that takes an array of labels. +A variant of gimp_int_combo_box_new() that takes an array of labels. The array indices are used as values.

-

n_values : the number of values -
labels : an array of labels (array length must be n_values) +

n_values : the number of values +
labels : an array of labels (array length must be n_values)
Returns : a new GimpIntComboBox.

Since GIMP 2.2 -


gimp_int_combo_box_prepend ()

void        gimp_int_combo_box_prepend      (GimpIntComboBox *combo_box,
+


gimp_int_combo_box_prepend ()

void        gimp_int_combo_box_prepend      (GimpIntComboBox *combo_box,
                                              ...);

This function provides a convenient way to prepend items to a -GimpIntComboBox. It prepends a row to the combo_box's list store +GimpIntComboBox. It prepends a row to the combo_box's list store and calls gtk_list_store_set() for you. +>gtk_list_store_set() for you.

The column number must be taken from the enum GimpIntStoreColumns.

-

combo_box : a GimpIntComboBox -
... : pairs of column number and value, terminated with -1 +

combo_box : a GimpIntComboBox +
... : pairs of column number and value, terminated with -1

Since GIMP 2.2 -


gimp_int_combo_box_append ()

void        gimp_int_combo_box_append       (GimpIntComboBox *combo_box,
+


gimp_int_combo_box_append ()

void        gimp_int_combo_box_append       (GimpIntComboBox *combo_box,
                                              ...);

This function provides a convenient way to append items to a -GimpIntComboBox. It appends a row to the combo_box's list store +GimpIntComboBox. It appends a row to the combo_box's list store and calls gtk_list_store_set() for you. +>gtk_list_store_set() for you.

The column number must be taken from the enum GimpIntStoreColumns.

-

combo_box : a GimpIntComboBox -
... : pairs of column number and value, terminated with -1 +

combo_box : a GimpIntComboBox +
... : pairs of column number and value, terminated with -1

Since GIMP 2.2 -


gimp_int_combo_box_set_active ()


gimp_int_combo_box_set_active ()

gboolean    gimp_int_combo_box_set_active   (GimpIntComboBox *combo_box,
                                              gint value);

-Looks up the item that belongs to the given value and makes it the -selected item in the combo_box.

+Looks up the item that belongs to the given value and makes it the +selected item in the combo_box.

-

combo_box : a GimpIntComboBox -
value : an integer value -
Returns : TRUE on success or FALSE if there was no item for +

combo_box : a GimpIntComboBox +
value : an integer value +
Returns : TRUE on success or FALSE if there was no item for this value.

Since GIMP 2.2 -


gimp_int_combo_box_get_active ()


gimp_int_combo_box_get_active ()

gboolean    gimp_int_combo_box_get_active   (GimpIntComboBox *combo_box,
                                              gint *value);

-Retrieves the value of the selected (active) item in the combo_box.

+Retrieves the value of the selected (active) item in the combo_box.

-

combo_box : a GimpIntComboBox -
value : return location for the integer value -
Returns : TRUE if value has been set or FALSE if no item was +

combo_box : a GimpIntComboBox +
value : return location for the integer value +
Returns : TRUE if value has been set or FALSE if no item was active.

Since GIMP 2.2 -


gimp_int_combo_box_connect ()


gimp_int_combo_box_connect ()

gulong      gimp_int_combo_box_connect      (GimpIntComboBox *combo_box,
                                              gpointer data);

-A convenience function that sets the inital value of a -GimpIntComboBox and connects callback to the "changed" +A convenience function that sets the inital value of a +GimpIntComboBox and connects callback to the "changed" signal.

-This function also calls the callback once after setting the -initial value. This is often convenient when working with combo +This function also calls the callback once after setting the +initial value. This is often convenient when working with combo boxes that select a default active item (like for example gimp_drawable_combo_box_new). If you pass an invalid initial -value, the callback will be called with the default item active.

+value, the callback will be called with the default item active.

-

combo_box : a GimpIntComboBox -
value : the value to set -
callback : a callback to connect to the combo_box's "changed" signal -
data : a pointer passed as data to
combo_box : a GimpIntComboBox +
value : the value to set +
callback : a callback to connect to the combo_box's "changed" signal +
data : a pointer passed as data to g_signal_connect() +>g_signal_connect()
Returns : the signal handler ID as returned by g_signal_connect() +>g_signal_connect()

Since GIMP 2.2

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpIntStore.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpIntStore.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpIntStore.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpIntStore.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpIntStore

GimpIntStore

GimpIntStore — A model for integer based name-value pairs (e.g. enums)

Synopsis

+GimpIntStore

GimpIntStore

GimpIntStore — A model for integer based name-value pairs (e.g. enums)

Synopsis

 
 
 
@@ -19,7 +19,7 @@
 href="../gtk/GtkTreeModel.html#GtkTreeIter"
 >GtkTreeIter *iter);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkListStore
          +----GimpIntStore
-

Implemented Interfaces

+

Implemented Interfaces

GimpIntStore implements GtkTreeDragDest and GtkTreeSortable.

Description

+>GtkTreeSortable.

Description

A model for integer based name-value pairs (e.g. enums) -

Details

GimpIntStore

typedef struct _GimpIntStore GimpIntStore;

+

Details

GimpIntStore

typedef struct _GimpIntStore GimpIntStore;

-


enum GimpIntStoreColumns

typedef enum
+


enum GimpIntStoreColumns

typedef enum
 {
   GIMP_INT_STORE_VALUE,
   GIMP_INT_STORE_LABEL,
@@ -53,7 +53,7 @@
 } GimpIntStoreColumns;
 

-


gimp_int_store_new ()


gimp_int_store_new ()

GtkListStore* gimp_int_store_new            (void);

Creates a

Returns : a new GimpIntStore.

Since GIMP 2.2 -


gimp_int_store_lookup_by_value ()


gimp_int_store_lookup_by_value ()

gboolean    gimp_int_store_lookup_by_value  (GtkTreeIter *iter);

-Iterate over the model looking for value.

+Iterate over the model looking for value.

-

model : a GimpIntStore -
value : an integer value to lookup in the model -
iter : return location for the iter of the given value -
Returns : TRUE if the value has been located and iter is - valid, FALSE otherwise. +

model : a GimpIntStore +
value : an integer value to lookup in the model +
iter : return location for the iter of the given value +
Returns : TRUE if the value has been located and iter is + valid, FALSE otherwise.

Since GIMP 2.2

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpMemsizeEntry

GimpMemsizeEntry

GimpMemsizeEntry — A composite widget that allows to enter a memory size.

Synopsis

+GimpMemsizeEntry

GimpMemsizeEntry

GimpMemsizeEntry — A composite widget that allows to enter a memory size.

Synopsis

 
 
 
@@ -22,7 +22,7 @@
 href="../glib/glib-Basic-Types.html#guint64"
 >guint64     gimp_memsize_entry_get_value    (GimpMemsizeEntry *entry);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkHBox
                                  +----GimpMemsizeEntry
-

Implemented Interfaces

+

Implemented Interfaces

GimpMemsizeEntry implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "value-changed"
             void        user_function      (GimpMemsizeEntry *gimpmemsizeentry,
                                             gpointer user_data);
-

Description

+

Description

Similar to a GimpSizeEntry but instead of lengths, this widget is used to let the user enter memory sizes. An option menu allows to switch between Kilobytes, Megabytes and Gigabytes. Used in the GIMP preferences dialog. -

Details

GimpMemsizeEntry

typedef struct _GimpMemsizeEntry GimpMemsizeEntry;

+

Details

GimpMemsizeEntry

typedef struct _GimpMemsizeEntry GimpMemsizeEntry;

The GimpSizeEntry struct is considered private. -


gimp_memsize_entry_new ()


gimp_memsize_entry_new ()

GtkWidget*  gimp_memsize_entry_new          (GtkOptionMenu all setup to allow the user to enter memory sizes.

-

value : the initial value (in Bytes) -
lower : the lower limit for the value (in Bytes) -
upper : the upper limit for the value (in Bytes) +

value : the initial value (in Bytes) +
lower : the lower limit for the value (in Bytes) +
upper : the upper limit for the value (in Bytes)
Returns : Pointer to the new GimpMemsizeEntry. -

gimp_memsize_entry_set_value ()

void        gimp_memsize_entry_set_value    (GimpMemsizeEntry *entry,
+

gimp_memsize_entry_set_value ()

void        gimp_memsize_entry_set_value    (GimpMemsizeEntry *entry,
                                              guint64 value);

-Sets the entry's value. Please note that the GimpMemsizeEntry rounds +Sets the entry's value. Please note that the GimpMemsizeEntry rounds the value to full Kilobytes.

-

entry : a GimpMemsizeEntry -
value : the new value (in Bytes) -


gimp_memsize_entry_get_value ()

guint64     gimp_memsize_entry_get_value    (GimpMemsizeEntry *entry);

Retrieves the current value from a GimpMemsizeEntry.

-

entry : a GimpMemsizeEntry -
Returns : the current value of entry (in Bytes). -

Signals

The "value-changed" signal

void        user_function                  (GimpMemsizeEntry *gimpmemsizeentry,
+

entry : a GimpMemsizeEntry +
Returns : the current value of entry (in Bytes). +

Signals

The "value-changed" signal

void        user_function                  (GimpMemsizeEntry *gimpmemsizeentry,
                                             gpointer user_data);

-

gimpmemsizeentry :the object which received the signal. +

gimpmemsizeentry :the object which received the signal. -
user_data :user data set when the signal handler was connected.
+
user_data :user data set when the signal handler was connected.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpOffsetArea.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpOffsetArea.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpOffsetArea.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpOffsetArea.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpOffsetArea

GimpOffsetArea

GimpOffsetArea — Widget to control image offsets.

Synopsis

+GimpOffsetArea

GimpOffsetArea

GimpOffsetArea — Widget to control image offsets.

Synopsis

 
 
 
@@ -30,7 +30,7 @@
 href="../gdk-pixbuf/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"
 >GdkPixbuf *pixbuf);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkDrawingArea
                      +----GimpOffsetArea
-

Implemented Interfaces

+

Implemented Interfaces

GimpOffsetArea implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "offsets-changed"
             void        user_function      (GimpOffsetArea *gimpoffsetarea,
@@ -60,11 +60,11 @@
                                             gpointer user_data);
-

Description

+

Description

-

Details

GimpOffsetArea

typedef struct _GimpOffsetArea GimpOffsetArea;

+

Details

GimpOffsetArea

typedef struct _GimpOffsetArea GimpOffsetArea;

-


gimp_offset_area_new ()



gimp_offset_area_set_size ()

void        gimp_offset_area_set_size       (GimpOffsetArea *offset_area,
                                              gint width,
@@ -87,13 +87,13 @@
 href="../glib/glib-Basic-Types.html#gint"
 >gint height);

Sets the size of the image/drawable displayed by the GimpOffsetArea. -If the offsets change as a result of this change, the offsets_changed +If the offsets change as a result of this change, the offsets_changed signal is emitted.

-

offset_area : a GimpOffsetArea. -
width : the new width -
height : the new height -

gimp_offset_area_set_offsets ()

void        gimp_offset_area_set_offsets    (GimpOffsetArea *offset_area,
+

offset_area : a GimpOffsetArea. +
width : the new width +
height : the new height +

gimp_offset_area_set_offsets ()

void        gimp_offset_area_set_offsets    (GimpOffsetArea *offset_area,
                                              gint offset_x,
@@ -101,24 +101,24 @@
 href="../glib/glib-Basic-Types.html#gint"
 >gint offset_y);

Sets the offsets of the image/drawable displayed by the GimpOffsetArea. -It does not emit the offsets_changed signal.

+It does not emit the offsets_changed signal.

-

offset_area : a GimpOffsetArea. -
offset_x : the X offset -
offset_y : the Y offset -

gimp_offset_area_set_pixbuf ()

void        gimp_offset_area_set_pixbuf     (GimpOffsetArea *offset_area,
+

offset_area : a GimpOffsetArea. +
offset_x : the X offset +
offset_y : the Y offset +

gimp_offset_area_set_pixbuf ()

void        gimp_offset_area_set_pixbuf     (GimpOffsetArea *offset_area,
                                              GdkPixbuf *pixbuf);

Sets the pixbuf which represents the original image/drawable which is being offset.

-

offset_area : a GimpOffsetArea. -
pixbuf : a
offset_area : a GimpOffsetArea. +
pixbuf : a GdkPixbuf.

Since GIMP 2.2 -

Signals

The "offsets-changed" signal

void        user_function                  (GimpOffsetArea *gimpoffsetarea,
+

Signals

The "offsets-changed" signal

void        user_function                  (GimpOffsetArea *gimpoffsetarea,
                                             gint arg1,
@@ -129,8 +129,8 @@
 href="../glib/glib-Basic-Types.html#gpointer"
 >gpointer user_data);

-

gimpoffsetarea :the object which received the signal. -
arg1 : -
arg2 : +

gimpoffsetarea :the object which received the signal. +
arg1 : +
arg2 : -
user_data :user data set when the signal handler was connected.
+
user_data :user data set when the signal handler was connected.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPathEditor.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPathEditor.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPathEditor.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPathEditor.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpPathEditor

GimpPathEditor

GimpPathEditor — Widget for editing a file search path.

Synopsis

+GimpPathEditor

GimpPathEditor

GimpPathEditor — Widget for editing a file search path.

Synopsis

 
 
 
@@ -43,7 +43,7 @@
 href="../glib/glib-Basic-Types.html#gboolean"
 >gboolean writable);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkVBox
                                  +----GimpPathEditor
-

Implemented Interfaces

+

Implemented Interfaces

GimpPathEditor implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "path-changed"
             void        user_function      (GimpPathEditor *arg0,
@@ -78,7 +78,7 @@
                                             gpointer user_data);
-

Description

+

Description

This widget is used to edit file search paths.

It shows a list of all directories which are in the search path. You @@ -90,9 +90,9 @@

Whenever the user adds, deletes, changes or reorders a directory of the search path, the "path_changed" signal will be emitted. -

Details

GimpPathEditor

typedef struct _GimpPathEditor GimpPathEditor;

+

Details

GimpPathEditor

typedef struct _GimpPathEditor GimpPathEditor;

-


gimp_path_editor_new ()



gimp_path_editor_get_path ()

gchar*      gimp_path_editor_get_path       (GimpPathEditor *editor);

The elements of the returned search path string are separated with the @@ -119,39 +119,39 @@

Note that you have to g_free() the returned string.

+>g_free() the returned string.

-

editor : The path editor you want to get the search path from. +

editor : The path editor you want to get the search path from.
Returns : The search path the user has selected in the path editor. -

gimp_path_editor_set_path ()

void        gimp_path_editor_set_path       (GimpPathEditor *editor,
+

gimp_path_editor_set_path ()

void        gimp_path_editor_set_path       (GimpPathEditor *editor,
                                              const gchar *path);

The elements of the initial search path must be separated with the G_SEARCHPATH_SEPARATOR character.

-

editor : The path editor you want to set the search path from. -
path : The new path to set. -


gimp_path_editor_get_writable_path ()

gchar*      gimp_path_editor_get_writable_path
                                             (GimpPathEditor *editor);

-

editor : +

editor :
Returns : -

gimp_path_editor_set_writable_path ()

void        gimp_path_editor_set_writable_path
+

gimp_path_editor_set_writable_path ()

void        gimp_path_editor_set_writable_path
                                             (GimpPathEditor *editor,
                                              const gchar *path);

-

editor : -
path : +

editor : +
path : -

gimp_path_editor_get_dir_writable ()


gimp_path_editor_get_dir_writable ()

gboolean    gimp_path_editor_get_dir_writable
                                             (GimpPathEditor *editor,
@@ -159,12 +159,12 @@
 href="../glib/glib-Basic-Types.html#gchar"
 >gchar *directory);

-

editor : -
directory : +

editor : +
directory :
Returns : -

gimp_path_editor_set_dir_writable ()

void        gimp_path_editor_set_dir_writable
+

gimp_path_editor_set_dir_writable ()

void        gimp_path_editor_set_dir_writable
                                             (GimpPathEditor *editor,
                                              const gboolean writable);

-

editor : -
directory : -
writable : +

editor : +
directory : +
writable : -

Signals

The "path-changed" signal

void        user_function                  (GimpPathEditor *arg0,
+

Signals

The "path-changed" signal

void        user_function                  (GimpPathEditor *arg0,
                                             gpointer user_data);

This signal is emitted whenever the user adds, deletes, modifies or reorders an element of the search path.

-

user_data :user data set when the signal handler was connected.

The "writable-changed" signal

void        user_function                  (GimpPathEditor *arg0,
+

user_data :user data set when the signal handler was connected.

The "writable-changed" signal

void        user_function                  (GimpPathEditor *arg0,
                                             gpointer user_data);

This signal is emitted whenever the "writable" column of a directory is changed, either by the user clicking on it or by calling -gimp_path_editor_set_dir_writable().

+gimp_path_editor_set_dir_writable().

-

user_data :user data set when the signal handler was connected.

See Also

+

user_data :user data set when the signal handler was connected.

See Also

GimpFileEntry

G_SEARCHPATH_SEPARATOR diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPickButton.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPickButton.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPickButton.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPickButton.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpPickButton

GimpPickButton

GimpPickButton — Widget to pick a color from screen.

Synopsis

+GimpPickButton

GimpPickButton

GimpPickButton — Widget to pick a color from screen.

Synopsis

 
 
 
@@ -7,7 +7,7 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget*  gimp_pick_button_new            (void);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkButton
                                  +----GimpPickButton
-

Implemented Interfaces

+

Implemented Interfaces

GimpPickButton implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "color-picked"
             void        user_function      (GimpPickButton *gimppickbutton,
@@ -40,19 +40,19 @@
                                             gpointer user_data);
-

Description

+

Description

GimpPickButton is a specialized button. When clicked, it changes the cursor to a color-picker pipette and allows the user to pick a color from any point on the screen. -

Details

GimpPickButton

typedef struct _GimpPickButton GimpPickButton;

+

Details

GimpPickButton

typedef struct _GimpPickButton GimpPickButton;

-


gimp_pick_button_new ()


gimp_pick_button_new ()

GtkWidget*  gimp_pick_button_new            (void);

Creates a new GimpPickButton widget.

Returns : A new GimpPickButton widget. -

Signals

The "color-picked" signal

void        user_function                  (GimpPickButton *gimppickbutton,
+

Signals

The "color-picked" signal

void        user_function                  (GimpPickButton *gimppickbutton,
                                             gpointer arg1,
@@ -60,9 +60,9 @@
 href="../glib/glib-Basic-Types.html#gpointer"
 >gpointer user_data);

-

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPixmap.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPixmap.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPixmap.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPixmap.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpPixmap

GimpPixmap

GimpPixmap — Widget which creates a GimpPixmap

GimpPixmap

GimpPixmap — Widget which creates a GtkPixmap from XPM data.

Synopsis

 
@@ -15,7 +15,7 @@
 href="../glib/glib-Basic-Types.html#gchar"
 >gchar **xpm_data);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkImage
                            +----GimpPixmap
-

Implemented Interfaces

+

Implemented Interfaces

GimpPixmap implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

Widget which creates a GtkPixmap from XPM data. @@ -48,29 +48,29 @@ Note that the drawback of the easy interface is that the actual GdkPixmap -and it's mask have to be constructed every time you call gimp_pixmap_new() +and it's mask have to be constructed every time you call gimp_pixmap_new() and cannot be cached in memory without doing bad hacks. -

Details

GimpPixmap

typedef struct _GimpPixmap GimpPixmap;

Warning

GimpPixmap is deprecated and should not be used in newly-written code.

+

Details

GimpPixmap

typedef struct _GimpPixmap GimpPixmap;

Warning

GimpPixmap is deprecated and should not be used in newly-written code.

-


gimp_pixmap_new ()


gimp_pixmap_new ()

GtkWidget*  gimp_pixmap_new                 (gchar **xpm_data);

Warning

gimp_pixmap_new is deprecated and should not be used in newly-written code.

+>gchar **xpm_data);

Warning

gimp_pixmap_new is deprecated and should not be used in newly-written code.

Creates a new GimpPixmap widget.

-

xpm_data : A pointer to a XPM data structure as found in XPM files. +

xpm_data : A pointer to a XPM data structure as found in XPM files.
Returns : A pointer to the new GimpPixmap widget. -

gimp_pixmap_set ()

void        gimp_pixmap_set                 (GimpPixmap *pixmap,
+

gimp_pixmap_set ()

void        gimp_pixmap_set                 (GimpPixmap *pixmap,
                                              gchar **xpm_data);

Warning

gimp_pixmap_set is deprecated and should not be used in newly-written code.

+>gchar **xpm_data);

Warning

gimp_pixmap_set is deprecated and should not be used in newly-written code.

Sets a new image for an existing GimpPixmap widget.

-

pixmap : The pixmap widget you want to set the new xpm_data for. -
xpm_data : A pointer to a XPM data structure as found in XPM files. -

See Also

-gimp_pixmap_button_new() +

pixmap : The pixmap widget you want to set the new xpm_data for. +
xpm_data : A pointer to a XPM data structure as found in XPM files. +

See Also

+gimp_pixmap_button_new()

GimpPreviewArea

GimpPreviewArea

GimpPreviewArea — A general purpose preview widget which caches its pixel data.

Synopsis

+GimpPreviewArea

GimpPreviewArea

GimpPreviewArea — A general purpose preview widget which caches its pixel data.

Synopsis

 
 
 
@@ -141,7 +141,7 @@
 href="../gdk/gdk-Event-Structures.html#GdkEventButton"
 >GdkEventButton *event);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkDrawingArea
                      +----GimpPreviewArea
-

Implemented Interfaces

+

Implemented Interfaces

GimpPreviewArea implements - AtkImplementorIface.

Properties

+ AtkImplementorIface.

Properties

 
   "check-size"           check-type"           GimpCheckType         : Read / Write
-

Description

+

Description

A general purpose preview widget which caches its pixel data. -

Details

GimpPreviewArea

typedef struct _GimpPreviewArea GimpPreviewArea;

+

Details

GimpPreviewArea

typedef struct _GimpPreviewArea GimpPreviewArea;

-


gimp_preview_area_new ()


gimp_preview_area_new ()

GtkWidget*  gimp_preview_area_new           (void);

@@ -178,7 +178,7 @@

Returns : a new GimpPreviewArea widget. Since GIMP 2.2 -

gimp_preview_area_draw ()

void        gimp_preview_area_draw          (GimpPreviewArea *area,
+

gimp_preview_area_draw ()

void        gimp_preview_area_draw          (GimpPreviewArea *area,
                                              gint x,
@@ -200,23 +200,23 @@
                                              gint rowstride);

-Draws buf on area and queues a redraw on the given rectangle. +Draws buf on area and queues a redraw on the given rectangle.

Since GIMP 2.2

-


gimp_preview_area_fill ()

void        gimp_preview_area_fill          (GimpPreviewArea *area,
                                              gint x,
@@ -238,20 +238,20 @@
                                              guchar blue);

-Fills area in the given color and queues a redraw on the given +Fills area in the given color and queues a redraw on the given rectangle.

Since GIMP 2.2

-

area : a GimpPreviewArea widget. -
x : x offset in preview -
y : y offset in preview -
width : buffer width -
height : buffer height -
red : red component of the fill color (0-255) -
green : green component of the fill color (0-255) -
blue : red component of the fill color (0-255) -

gimp_preview_area_blend ()

void        gimp_preview_area_blend         (GimpPreviewArea *area,
+

area : a GimpPreviewArea widget. +
x : x offset in preview +
y : y offset in preview +
width : buffer width +
height : buffer height +
red : red component of the fill color (0-255) +
green : green component of the fill color (0-255) +
blue : red component of the fill color (0-255) +

gimp_preview_area_blend ()

void        gimp_preview_area_blend         (GimpPreviewArea *area,
                                              gint x,
@@ -282,31 +282,31 @@
                                              guchar opacity);

-Composites buf1 on buf2 with the given opacity, draws the result -to area and queues a redraw on the given rectangle. +Composites buf1 on buf2 with the given opacity, draws the result +to area and queues a redraw on the given rectangle.

Since GIMP 2.2

-


gimp_preview_area_mask ()

void        gimp_preview_area_mask          (GimpPreviewArea *area,
                                              gint x,
@@ -340,35 +340,35 @@
                                              gint rowstride_mask);

-Composites buf1 on buf2 with the given mask, draws the result on -area and queues a redraw on the given rectangle. +Composites buf1 on buf2 with the given mask, draws the result on +area and queues a redraw on the given rectangle.

Since GIMP 2.2

-


gimp_preview_area_set_offsets ()

void        gimp_preview_area_set_offsets   (GimpPreviewArea *area,
                                              gint x,
@@ -378,11 +378,11 @@
 Sets the offsets of the previewed area. This information is used
 when drawing the checkerboard and to determine the dither offsets.

-

area : a GimpPreviewArea -
x : horizontal offset -
y : vertical offset +

area : a GimpPreviewArea +
x : horizontal offset +
y : vertical offset

Since GIMP 2.2 -


gimp_preview_area_set_colormap ()

void        gimp_preview_area_set_colormap  (GimpPreviewArea *area,
+


gimp_preview_area_set_colormap ()

void        gimp_preview_area_set_colormap  (GimpPreviewArea *area,
                                              const guchar *colormap,
@@ -390,17 +390,17 @@
 href="../glib/glib-Basic-Types.html#gint"
 >gint num_colors);

Sets the colormap for the GimpPreviewArea widget. You need to -call this function before you use gimp_preview_area_draw() with -an image type of GIMP_INDEXED_IMAGE or GIMP_INDEXEDA_IMAGE. +call this function before you use gimp_preview_area_draw() with +an image type of GIMP_INDEXED_IMAGE or GIMP_INDEXEDA_IMAGE.

Since GIMP 2.2

-

area : a GimpPreviewArea -
colormap : a
area : a GimpPreviewArea +
colormap : a guchar buffer that contains the colormap -
num_colors : the number of colors in the colormap -

gimp_preview_area_set_max_size ()

void        gimp_preview_area_set_max_size  (GimpPreviewArea *area,
+
num_colors : the number of colors in the colormap +

gimp_preview_area_set_max_size ()

void        gimp_preview_area_set_max_size  (GimpPreviewArea *area,
                                              gint width,
@@ -412,22 +412,22 @@
 maximum size. If a larger size is allocated for the widget, the
 preview will draw itself centered into the allocated area.

-

area : a GimpPreviewArea widget -
width : the maximum width in pixels or -1 to unset the limit -
height : the maximum height in pixels or -1 to unset the limit +

area : a GimpPreviewArea widget +
width : the maximum width in pixels or -1 to unset the limit +
height : the maximum height in pixels or -1 to unset the limit

Since GIMP 2.2 -


gimp_preview_area_menu_popup ()

void        gimp_preview_area_menu_popup    (GimpPreviewArea *area,
+


gimp_preview_area_menu_popup ()

void        gimp_preview_area_menu_popup    (GimpPreviewArea *area,
                                              GdkEventButton *event);

Creates a popup menu that allows to configure the size and type of -the checkerboard pattern that the area uses to visualize transparency.

+the checkerboard pattern that the area uses to visualize transparency.

-

area : a GimpPreviewArea -
event : the button event that causes the menu to popup or NULL +

area : a GimpPreviewArea +
event : the button event that causes the menu to popup or NULL

Since GIMP 2.2 -

Properties

The "check-size" property

  "check-size"           

Properties

The "check-size" property

  "check-size"           GimpCheckSize         : Read / Write

Default value: GIMP_CHECK_SIZE_MEDIUM_CHECKS


The "check-type" property

  "check-type"           GimpCheckSize         : Read / Write

Default value: GIMP_CHECK_SIZE_MEDIUM_CHECKS


The "check-type" property

  "check-type"           GimpCheckType         : Read / Write

Default value: GIMP_CHECK_TYPE_GRAY_CHECKS

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPreview.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPreview.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPreview.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPreview.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpPreview

GimpPreview

GimpPreview — A widget providing a GimpPreviewArea plus framework to update the preview.

Synopsis

+GimpPreview

GimpPreview

GimpPreview — A widget providing a GimpPreviewArea plus framework to update the preview.

Synopsis

 
 
 
@@ -51,7 +51,7 @@
 href="../gdk/gdk-Cursors.html#GdkCursor"
 >GdkCursor *cursor);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkVBox
                                  +----GimpPreview
-

Implemented Interfaces

+

Implemented Interfaces

GimpPreview implements - AtkImplementorIface.

Properties

+ AtkImplementorIface.

Properties

 
   "update"               gboolean              : Read / Write / Construct
-

Style Properties

+

Style Properties

 
   "size"                 gint                  : Read
-

Signal Prototypes

+

Signal Prototypes

 
 "invalidated"
             void        user_function      (GimpPreview *gimppreview,
                                             gpointer user_data);
-

Description

+

Description

A widget providing a GimpPreviewArea plus framework to update the preview. -

Details

GimpPreview

typedef struct _GimpPreview GimpPreview;

+

Details

GimpPreview

typedef struct _GimpPreview GimpPreview;

-


gimp_preview_get_update ()


gimp_preview_get_update ()

gboolean    gimp_preview_get_update         (GimpPreview *preview);

-

preview : a GimpPreview widget +

preview : a GimpPreview widget
Returns : the state of the "Preview" check button.

Since GIMP 2.2 -


gimp_preview_set_update ()

void        gimp_preview_set_update         (GimpPreview *preview,
+


gimp_preview_set_update ()

void        gimp_preview_set_update         (GimpPreview *preview,
                                              gboolean update);

Sets the state of the "Preview" check button.

-

preview : a GimpPreview widget -
update : TRUE if the preview should invalidate itself when being - scrolled or when gimp_preview_invalidate() is being called +

preview : a GimpPreview widget +
update : TRUE if the preview should invalidate itself when being + scrolled or when gimp_preview_invalidate() is being called

Since GIMP 2.2 -


gimp_preview_set_bounds ()

void        gimp_preview_set_bounds         (GimpPreview *preview,
+


gimp_preview_set_bounds ()

void        gimp_preview_set_bounds         (GimpPreview *preview,
                                              gint xmin,
@@ -129,15 +129,15 @@
 >gint ymax);

Sets the lower and upper limits for the previewed area. The difference between the upper and lower value is used to set the -maximum size of the GimpPreviewArea used in the preview.

+maximum size of the GimpPreviewArea used in the preview.

-

preview : a GimpPreview widget -
xmin : -
ymin : -
xmax : -
ymax : +

preview : a GimpPreview widget +
xmin : +
ymin : +
xmax : +
ymax :

Since GIMP 2.2 -


gimp_preview_get_size ()

void        gimp_preview_get_size           (GimpPreview *preview,
+


gimp_preview_get_size ()

void        gimp_preview_get_size           (GimpPreview *preview,
                                              gint *width,
@@ -146,11 +146,11 @@
 >gint *height);

-

preview : a GimpPreview widget -
width : return location for the preview area width -
height : return location for the preview area height +

preview : a GimpPreview widget +
width : return location for the preview area width +
height : return location for the preview area height

Since GIMP 2.2 -


gimp_preview_get_position ()

void        gimp_preview_get_position       (GimpPreview *preview,
+


gimp_preview_get_position ()

void        gimp_preview_get_position       (GimpPreview *preview,
                                              gint *x,
@@ -159,23 +159,23 @@
 >gint *y);

-

preview : a GimpPreview widget -
x : return location for the horizontal offset -
y : return location for the vertical offset +

preview : a GimpPreview widget +
x : return location for the horizontal offset +
y : return location for the vertical offset

Since GIMP 2.2 -


gimp_preview_draw ()

void        gimp_preview_draw               (GimpPreview *preview);

+


gimp_preview_draw ()

void        gimp_preview_draw               (GimpPreview *preview);

Calls the GimpPreview::draw method. GimpPreview itself doesn't implement a default draw method so the behaviour is determined by the derived class implementing this method.

GimpDrawablePreview implements gimp_preview_draw() by drawing the -original, unmodified drawable to the preview.

+>GimpDrawablePreview implements gimp_preview_draw() by drawing the +original, unmodified drawable to the preview.

-

preview : a GimpPreview widget +

preview : a GimpPreview widget

Since GIMP 2.2 -


gimp_preview_draw_buffer ()

void        gimp_preview_draw_buffer        (GimpPreview *preview,
+


gimp_preview_draw_buffer ()

void        gimp_preview_draw_buffer        (GimpPreview *preview,
                                              const guchar *buffer,
@@ -186,45 +186,45 @@
 doesn't implement this method so the behaviour is determined by the
 derived class implementing this method.

-

preview : a GimpPreview widget -
buffer : a pixel buffer the size of the preview -
rowstride : the buffer's rowstride +

preview : a GimpPreview widget +
buffer : a pixel buffer the size of the preview +
rowstride : the buffer's rowstride

Since GIMP 2.2 -


gimp_preview_invalidate ()

void        gimp_preview_invalidate         (GimpPreview *preview);

+


gimp_preview_invalidate ()

void        gimp_preview_invalidate         (GimpPreview *preview);

This function starts or renews a short low-priority timeout. When the timeout expires, the GimpPreview::invalidated signal is emitted -which will usually cause the preview to be updated. +which will usually cause the preview to be updated.

This function does nothing unless the "Preview" button is checked.

During the emission of the signal a busy cursor is set on the -toplevel window containing the preview and on the preview area +toplevel window containing the preview and on the preview area itself.

-

preview : a GimpPreview widget +

preview : a GimpPreview widget

Since GIMP 2.2 -


gimp_preview_set_default_cursor ()

void        gimp_preview_set_default_cursor (GimpPreview *preview,
+


gimp_preview_set_default_cursor ()

void        gimp_preview_set_default_cursor (GimpPreview *preview,
                                              GdkCursor *cursor);

Sets the default mouse cursor for the preview. Note that this will -be overriden by a GDK_FLEUR if the preview has scrollbars, or by a -GDK_WATCH when the preview is invalidated.

+be overriden by a GDK_FLEUR if the preview has scrollbars, or by a +GDK_WATCH when the preview is invalidated.

-

preview : a GimpPreview widget -
cursor : a
preview : a GimpPreview widget +
cursor : a GdkCursor or NULL +>GdkCursor or NULL

Since GIMP 2.2 -

Properties

The "update" property

  "update"               

Properties

The "update" property

  "update"               gboolean              : Read / Write / Construct

Default value: TRUE

Style Properties

The "size" style property

  "size"                 gboolean              : Read / Write / Construct

Default value: TRUE

Style Properties

The "size" style property

  "size"                 gint                  : Read

Allowed values: [1,1024]

Default value: 150

Signals

The "invalidated" signal

void        user_function                  (GimpPreview *gimppreview,
+>gint                  : Read

Allowed values: [1,1024]

Default value: 150

Signals

The "invalidated" signal

void        user_function                  (GimpPreview *gimppreview,
                                             gpointer user_data);

-

gimppreview :the object which received the signal. +

gimppreview :the object which received the signal. -
user_data :user data set when the signal handler was connected.
+
user_data :user data set when the signal handler was connected.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpSizeEntry.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpSizeEntry.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpSizeEntry.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpSizeEntry.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpSizeEntry

GimpSizeEntry

GimpSizeEntry — Widget for entering pixel values and resolutions.

Synopsis

+GimpSizeEntry

GimpSizeEntry

GimpSizeEntry — Widget for entering pixel values and resolutions.

Synopsis

 
 
 
@@ -147,7 +147,7 @@
 href="../glib/glib-Basic-Types.html#gint"
 >gint field);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkTable
                            +----GimpSizeEntry
-

Implemented Interfaces

+

Implemented Interfaces

GimpSizeEntry implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "refval-changed"
             void        user_function      (GimpSizeEntry *gimpsizeentry,
@@ -184,7 +184,7 @@
                                             gpointer user_data);
-

Description

+

Description

This widget is used to enter pixel distances/sizes and resolutions.

You can specify the number of fields the widget should provide. For @@ -199,24 +199,24 @@ For each field, there can be one or two GtkSpinButton's to enter -"value" and "reference value". If you specify show_refval as FALSE -in gimp_size_entry_new() there will be only one show_refval as FALSE +in gimp_size_entry_new() there will be only one GtkSpinButton and the GimpUnitMenu will contain an item for selecting GIMP_UNIT_PIXEL.

The "reference value" is either of GIMP_UNIT_PIXEL or dpi, depending -on which GimpSizeEntryUpdatePolicy you specify in gimp_size_entry_new(). +on which GimpSizeEntryUpdatePolicy you specify in gimp_size_entry_new(). The "value" is either the size in pixels mapped to the size in a real-world-unit (see GimpUnit) or the dpi value mapped to pixels per real-world-unit. -

Details

GimpSizeEntry

typedef struct _GimpSizeEntry GimpSizeEntry;

+

Details

GimpSizeEntry

typedef struct _GimpSizeEntry GimpSizeEntry;

-


GimpSizeEntryField

typedef struct _GimpSizeEntryField GimpSizeEntryField;

+


GimpSizeEntryField

typedef struct _GimpSizeEntryField GimpSizeEntryField;

-


enum GimpSizeEntryUpdatePolicy

typedef enum
+


enum GimpSizeEntryUpdatePolicy

typedef enum
 {
   GIMP_SIZE_ENTRY_UPDATE_NONE       = 0,
   GIMP_SIZE_ENTRY_UPDATE_SIZE       = 1,
@@ -224,7 +224,7 @@
 } GimpSizeEntryUpdatePolicy;
 

-


gimp_size_entry_new ()


gimp_size_entry_new ()

GtkWidget*  gimp_size_entry_new             (

-1. gimp_size_entry_new() +1. gimp_size_entry_new()

-2. (for each additional input field) gimp_size_entry_add_field() +2. (for each additional input field) gimp_size_entry_add_field()

-3. gimp_size_entry_set_unit() +3. gimp_size_entry_set_unit()

For each input field:

-4. gimp_size_entry_set_resolution() +4. gimp_size_entry_set_resolution()

-5. gimp_size_entry_set_refval_boundaries() - (or gimp_size_entry_set_value_boundaries()) +5. gimp_size_entry_set_refval_boundaries() + (or gimp_size_entry_set_value_boundaries())

-6. gimp_size_entry_set_size() +6. gimp_size_entry_set_size()

-7. gimp_size_entry_set_refval() (or gimp_size_entry_set_value()) +7. gimp_size_entry_set_refval() (or gimp_size_entry_set_value())

The GimpSizeEntry is derived from GimpUnitMenu to allow the caller to add labels or a GimpChainButton.

-

number_of_fields : The number of input fields. -
unit : The initial unit. -
unit_format : A printf-like unit-format string as is used with - gimp_unit_menu_new(). -
menu_show_pixels : TRUE if the unit menu shold contain an item for - GIMP_UNIT_PIXEL (ignored if the update_policy is not +

number_of_fields : The number of input fields. +
unit : The initial unit. +
unit_format : A printf-like unit-format string as is used with + gimp_unit_menu_new(). +
menu_show_pixels : TRUE if the unit menu shold contain an item for + GIMP_UNIT_PIXEL (ignored if the update_policy is not GIMP_SIZE_ENTRY_UPDATE_NONE). -
menu_show_percent : TRUE if the unit menu shold contain an item for +
menu_show_percent : TRUE if the unit menu shold contain an item for GIMP_UNIT_PERCENT. -
show_refval : TRUE if you want an extra "reference value" +
show_refval : TRUE if you want an extra "reference value" spinbutton per input field. -
spinbutton_width : The minimal horizontal size of the
spinbutton_width : The minimal horizontal size of the GtkSpinButton's. -
update_policy : How the automatic pixel <-> real-world-unit +
update_policy : How the automatic pixel <-> real-world-unit calculations should be done.
Returns : A Pointer to the new GimpSizeEntry widget. -

gimp_size_entry_add_field ()

void        gimp_size_entry_add_field       (GimpSizeEntry *gse,
+

gimp_size_entry_add_field ()

void        gimp_size_entry_add_field       (GimpSizeEntry *gse,
                                              GtkSpinButton *value_spinbutton,
@@ -303,17 +303,17 @@
 >GtkSpinButton *refval_spinbutton);

Adds an input field to the GimpSizeEntry.

-The new input field will have the index 0. If you specified show_refval -as TRUE in gimp_size_entry_new() you have to pass an additional +The new input field will have the index 0. If you specified show_refval +as TRUE in gimp_size_entry_new() you have to pass an additional GtkSpinButton to hold the reference value. If show_refval was FALSE, -refval_spinbutton will be ignored.

+>GtkSpinButton to hold the reference value. If show_refval was FALSE, +refval_spinbutton will be ignored.

-

gse : The sizeentry you want to add a field to. -
value_spinbutton : The spinbutton to display the field's value. -
refval_spinbutton : The spinbutton to display the field's reference value. -


gimp_size_entry_attach_label ()

GtkWidget*  gimp_size_entry_attach_label    (GimpSizeEntry *gse,
                                              const GtkTable).

-

gse : The sizeentry you want to add a label to. -
text : The text of the label. -
row : The row where the label will be attached. -
column : The column where the label will be attached. -
alignment : The horizontal alignment of the label. +

gse : The sizeentry you want to add a label to. +
text : The text of the label. +
row : The row where the label will be attached. +
column : The column where the label will be attached. +
alignment : The horizontal alignment of the label.
Returns : A pointer to the new GtkLabel widget. -

gimp_size_entry_set_resolution ()

void        gimp_size_entry_set_resolution  (GimpSizeEntry *gse,
+

gimp_size_entry_set_resolution ()

void        gimp_size_entry_set_resolution  (GimpSizeEntry *gse,
                                              gint field,
@@ -352,9 +352,9 @@
                                              gboolean keep_size);

-Sets the resolution (in dpi) for field # field of the GimpSizeEntry. +Sets the resolution (in dpi) for field # field of the GimpSizeEntry.

-The resolution passed will be clamped to fit in +The resolution passed will be clamped to fit in [GIMP_MIN_RESOLUTION..GIMP_MAX_RESOLUTION].

This function does nothing if the GimpSizeEntryUpdatePolicy specified in -gimp_size_entry_new() doesn't equal to GIMP_SIZE_ENTRY_UPDATE_SIZE.

+gimp_size_entry_new() doesn't equal to GIMP_SIZE_ENTRY_UPDATE_SIZE.

-

gse : The sizeentry you want to set a resolution for. -
field : The index of the field you want to set the resolution for. -
resolution : The new resolution (in dpi) for the chosen field. -
keep_size : TRUE if the field's size in pixels should stay the same. - FALSE if the field's size in units should stay the same. -

gimp_size_entry_set_size ()

void        gimp_size_entry_set_size        (GimpSizeEntry *gse,
+

gse : The sizeentry you want to set a resolution for. +
field : The index of the field you want to set the resolution for. +
resolution : The new resolution (in dpi) for the chosen field. +
keep_size : TRUE if the field's size in pixels should stay the same. + FALSE if the field's size in units should stay the same. +

gimp_size_entry_set_size ()

void        gimp_size_entry_set_size        (GimpSizeEntry *gse,
                                              gint field,
@@ -379,21 +379,21 @@
                                              gdouble upper);

-Sets the pixel values for field # field of the GimpSizeEntry +Sets the pixel values for field # field of the GimpSizeEntry which will be treated as 0% and 100%.

-These values will be used if you specified menu_show_percent as TRUE -in gimp_size_entry_new() and the user has selected GIMP_UNIT_PERCENT in +These values will be used if you specified menu_show_percent as TRUE +in gimp_size_entry_new() and the user has selected GIMP_UNIT_PERCENT in the GimpSizeEntry's GimpUnitMenu.

This function does nothing if the GimpSizeEntryUpdatePolicy specified in -gimp_size_entry_new() doesn't equal to GIMP_SIZE_ENTRY_UPDATE_SIZE.

+gimp_size_entry_new() doesn't equal to GIMP_SIZE_ENTRY_UPDATE_SIZE.

-

gse : The sizeentry you want to set a size for. -
field : The index of the field you want to set the size for. -
lower : The reference value which will be treated as 0%. -
upper : The reference value which will be treated as 100%. -

gimp_size_entry_set_value_boundaries ()

void        gimp_size_entry_set_value_boundaries
+

gse : The sizeentry you want to set a size for. +
field : The index of the field you want to set the size for. +
lower : The reference value which will be treated as 0%. +
upper : The reference value which will be treated as 100%. +

gimp_size_entry_set_value_boundaries ()

void        gimp_size_entry_set_value_boundaries
                                             (GimpSizeEntry *gse,
                                              gdouble upper);

-Limits the range of possible values which can be entered in field # field +Limits the range of possible values which can be entered in field # field of the GimpSizeEntry.

-The current value of the field will be clamped to fit in the field's +The current value of the field will be clamped to fit in the field's new boundaries.

NOTE: In most cases you won't be interested in these values because the GimpSizeEntry's purpose is to shield the programmer from unit - calculations. Use gimp_size_entry_set_refval_boundaries() instead. + calculations. Use gimp_size_entry_set_refval_boundaries() instead. Whatever you do, don't mix these calls. A size entry should either be clamped by the value or the reference value.

-

gse : The sizeentry you want to set value boundaries for. -
field : The index of the field you want to set value boundaries for. -
lower : The new lower boundary of the value of the chosen field. -
upper : The new upper boundary of the value of the chosen field. -


gimp_size_entry_get_value ()

gdouble     gimp_size_entry_get_value       (GimpSizeEntry *gse,
                                              gint field);

-Returns the value of field # field of the GimpSizeEntry. +Returns the value of field # field of the GimpSizeEntry.

-The value returned is a distance or resolution +The value returned is a distance or resolution in the GimpUnit the user has selected in the GimpSizeEntry's @@ -436,21 +436,21 @@

NOTE: In most cases you won't be interested in this value because the GimpSizeEntry's purpose is to shield the programmer from unit - calculations. Use gimp_size_entry_get_refval() instead.

+ calculations. Use gimp_size_entry_get_refval() instead.

-

gse : The sizeentry you want to know a value of. -
field : The index of the field you want to know the value of. -
Returns : The value of the chosen field. -

gimp_size_entry_set_value ()

void        gimp_size_entry_set_value       (GimpSizeEntry *gse,
+

gse : The sizeentry you want to know a value of. +
field : The index of the field you want to know the value of. +
Returns : The value of the chosen field. +

gimp_size_entry_set_value ()

void        gimp_size_entry_set_value       (GimpSizeEntry *gse,
                                              gint field,
                                              gdouble value);

-Sets the value for field # field of the GimpSizeEntry. +Sets the value for field # field of the GimpSizeEntry.

-The value passed is treated to be a distance or resolution +The value passed is treated to be a distance or resolution in the GimpUnit the user has selected in the GimpSizeEntry's @@ -458,12 +458,12 @@

NOTE: In most cases you won't be interested in this value because the GimpSizeEntry's purpose is to shield the programmer from unit - calculations. Use gimp_size_entry_set_refval() instead.

+ calculations. Use gimp_size_entry_set_refval() instead.

-

gse : The sizeentry you want to set a value for. -
field : The index of the field you want to set a value for. -
value : The new value for field. -

gimp_size_entry_set_refval_boundaries ()

void        gimp_size_entry_set_refval_boundaries
+

gse : The sizeentry you want to set a value for. +
field : The index of the field you want to set a value for. +
value : The new value for field. +

gimp_size_entry_set_refval_boundaries ()

void        gimp_size_entry_set_refval_boundaries
                                             (GimpSizeEntry *gse,
                                              gdouble upper);

Limits the range of possible reference values which can be entered in -field # field of the GimpSizeEntry. +field # field of the GimpSizeEntry.

-The current reference value of the field will be clamped to fit in the -field's new boundaries.

+The current reference value of the field will be clamped to fit in the +field's new boundaries.

-

gse : The sizeentry you want to set the reference value boundaries for. -
field : The index of the field you want to set the reference value +

gse : The sizeentry you want to set the reference value boundaries for. +
field : The index of the field you want to set the reference value boundaries for. -
lower : The new lower boundary of the reference value of the chosen field. -
upper : The new upper boundary of the reference value of the chosen field. -

gimp_size_entry_set_refval_digits ()

void        gimp_size_entry_set_refval_digits
+
lower : The new lower boundary of the reference value of the chosen field. +
upper : The new upper boundary of the reference value of the chosen field. +

gimp_size_entry_set_refval_digits ()

void        gimp_size_entry_set_refval_digits
                                             (GimpSizeEntry *gse,
                                              gint digits);

-Sets the decimal digits of field # field of the GimpSizeEntry to -digits. +Sets the decimal digits of field # field of the GimpSizeEntry to +digits.

If you don't specify this value explicitly, the reference value's number of digits will equal to 0 for GIMP_SIZE_ENTRY_UPDATE_SIZE and to 2 for GIMP_SIZE_ENTRY_UPDATE_RESOLUTION.

-

gse : The sizeentry you want to set the reference value digits for. -
field : The index of the field you want to set the reference value for. -
digits : The new number of decimal digits for the
gse : The sizeentry you want to set the reference value digits for. +
field : The index of the field you want to set the reference value for. +
digits : The new number of decimal digits for the GtkSpinButton which - displays field's reference value. -

gimp_size_entry_get_refval ()

field's reference value.
+

gimp_size_entry_get_refval ()

gdouble     gimp_size_entry_get_refval      (GimpSizeEntry *gse,
                                              gint field);

-Returns the reference value for field # field of the GimpSizeEntry. +Returns the reference value for field # field of the GimpSizeEntry.

The reference value is either a distance in pixels or a resolution in dpi, depending on which GimpSizeEntryUpdatePolicy you chose in -gimp_size_entry_new().

+gimp_size_entry_new().

-

gse : The sizeentry you want to know a reference value of. -
field : The index of the field you want to know the reference value of. -
Returns : The reference value of the chosen field. -

gimp_size_entry_set_refval ()

void        gimp_size_entry_set_refval      (GimpSizeEntry *gse,
+

gse : The sizeentry you want to know a reference value of. +
field : The index of the field you want to know the reference value of. +
Returns : The reference value of the chosen field. +

gimp_size_entry_set_refval ()

void        gimp_size_entry_set_refval      (GimpSizeEntry *gse,
                                              gint field,
                                              gdouble refval);

-Sets the reference value for field # field of the GimpSizeEntry. +Sets the reference value for field # field of the GimpSizeEntry.

-The refval passed is either a distance in pixels or a resolution in dpi, +The refval passed is either a distance in pixels or a resolution in dpi, depending on which GimpSizeEntryUpdatePolicy you chose in -gimp_size_entry_new().

+gimp_size_entry_new().

-

gse : The sizeentry you want to set a reference value for. -
field : The index of the field you want to set the reference value for. -
refval : The new reference value for field. -


gimp_size_entry_get_unit ()

GimpUnit    gimp_size_entry_get_unit        (GimpSizeEntry *gse);

Returns the GimpUnit the user has selected in the GimpSizeEntry's GimpUnitMenu.

-

gse : The sizeentry you want to know the unit of. +

gse : The sizeentry you want to know the unit of.
Returns : The sizeentry's unit. -

gimp_size_entry_set_unit ()

void        gimp_size_entry_set_unit        (GimpSizeEntry *gse,
+

gimp_size_entry_set_unit ()

void        gimp_size_entry_set_unit        (GimpSizeEntry *gse,
                                              GimpUnit unit);

Sets the GimpSizeEntry's unit. The reference value for all fields will stay the same but the value in units or pixels per unit will change according to which GimpSizeEntryUpdatePolicy you chose in -gimp_size_entry_new().

+gimp_size_entry_new().

-

gse : The sizeentry you want to change the unit for. -
unit : The new unit. -

gimp_size_entry_set_pixel_digits ()

void        gimp_size_entry_set_pixel_digits
+

gse : The sizeentry you want to change the unit for. +
unit : The new unit. +

gimp_size_entry_set_pixel_digits ()

void        gimp_size_entry_set_pixel_digits
                                             (GimpSizeEntry *gse,
                                              gint digits);

-Similar to gimp_unit_menu_set_pixel_digits(), this function allows +Similar to gimp_unit_menu_set_pixel_digits(), this function allows you set up a GimpSizeEntry so that sub-pixel sizes can be entered.

-

gse : a GimpSizeEntry -
digits : the number of digits to display for a pixel size -

gimp_size_entry_grab_focus ()

void        gimp_size_entry_grab_focus      (GimpSizeEntry *gse);

+

gse : a GimpSizeEntry +
digits : the number of digits to display for a pixel size +

gimp_size_entry_grab_focus ()

void        gimp_size_entry_grab_focus      (GimpSizeEntry *gse);

This function is rather ugly and just a workaround for the fact that it's impossible to implement gtk_widget_grab_focus() for a gtk_widget_grab_focus() for a GtkTable.

-

gse : The sizeentry you want to grab the keyboard focus. -


gimp_size_entry_get_help_widget ()

GtkWidget*  gimp_size_entry_get_help_widget (GimpSizeEntry *gse,
                                              gint field);

You shouldn't fiddle with the internals of a GimpSizeEntry but -if you want to set tooltips using gimp_help_set_help_data() you +if you want to set tooltips using gimp_help_set_help_data() you can use this function to get a pointer to the spinbuttons.

-

gse : a GimpSizeEntry -
field : the index of the widget you want to get a pointer to +

gse : a GimpSizeEntry +
field : the index of the widget you want to get a pointer to
Returns : a GtkWidget pointer that you can attach a tooltip to. -

Signals

The "refval-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
+

Signals

The "refval-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
                                             gpointer user_data);

-

gimpsizeentry :the object which received the signal. +

gimpsizeentry :the object which received the signal. -
user_data :user data set when the signal handler was connected.

The "unit-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
+
user_data :user data set when the signal handler was connected.

The "unit-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
                                             gpointer user_data);

-

gimpsizeentry :the object which received the signal. +

gimpsizeentry :the object which received the signal. -
user_data :user data set when the signal handler was connected.

The "value-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
+
user_data :user data set when the signal handler was connected.

The "value-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
                                             gpointer user_data);

-

gimpsizeentry :the object which received the signal. +

gimpsizeentry :the object which received the signal. -
user_data :user data set when the signal handler was connected.

See Also

+

user_data :user data set when the signal handler was connected.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpUnitMenu.html gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpUnitMenu.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpUnitMenu.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpUnitMenu.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpUnitMenu

GimpUnitMenu

GimpUnitMenu — Widget for selecting a GimpUnitMenu

GimpUnitMenu

GimpUnitMenu — Widget for selecting a GimpUnit.

Synopsis

 
@@ -37,7 +37,7 @@
 href="../glib/glib-Basic-Types.html#gint"
 >gint digits);
 
-

Object Hierarchy

+

Object Hierarchy

 
   GtkOptionMenu
                                        +----GimpUnitMenu
-

Implemented Interfaces

+

Implemented Interfaces

GimpUnitMenu implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

Signal Prototypes

 
 "unit-changed"
             void        user_function      (GimpUnitMenu *arg0,
                                             gpointer user_data);
-

Description

+

Description

This widget provides a GtkOptionMenu which contains a list of GimpUnit's.

You can specify the string that will be displayed for each unit by -passing a printf-like format string to gimp_unit_menu_new(). +passing a printf-like format string to gimp_unit_menu_new().

The constructor also lets you choose if the menu should contain items for GIMP_UNIT_PIXEL, GIMP_UNIT_PERCENT and a "More..." item which will @@ -86,9 +86,9 @@

Whenever the user selects a unit from the menu or the dialog, the "unit_changed" signal will be emitted. -

Details

GimpUnitMenu

typedef struct _GimpUnitMenu GimpUnitMenu;

+

Details

GimpUnitMenu

typedef struct _GimpUnitMenu GimpUnitMenu;

-


gimp_unit_menu_new ()


gimp_unit_menu_new ()

GtkWidget*  gimp_unit_menu_new              (const gboolean show_custom);

Creates a new GimpUnitMenu widget.

-The format string supports the following percent expansions: +The format string supports the following percent expansions:

% fFactor (how many units make up an inch)
% ySymbol (e.g. "''" for GIMP_UNIT_INCH)
% aAbbreviation
% sSingular
% pPlural
%%Literal percent

-

format : A printf-like format string which is used to create the unit +

format : A printf-like format string which is used to create the unit strings. -
unit : The initially selected unit. -
show_pixels : TRUE if the unit menu should contain an item for +
unit : The initially selected unit. +
show_pixels : TRUE if the unit menu should contain an item for GIMP_UNIT_PIXEL. -
show_percent : TRUE in the unit menu should contain an item for +
show_percent : TRUE in the unit menu should contain an item for GIMP_UNIT_PERCENT. -
show_custom : TRUE if the unit menu should contain a "More..." item for +
show_custom : TRUE if the unit menu should contain a "More..." item for opening the user-defined-unit selection dialog.
Returns : A pointer to the new GimpUnitMenu widget. -

gimp_unit_menu_set_unit ()

void        gimp_unit_menu_set_unit         (GimpUnitMenu *menu,
+

gimp_unit_menu_set_unit ()

void        gimp_unit_menu_set_unit         (GimpUnitMenu *menu,
                                              GimpUnit unit);

@@ -129,32 +129,32 @@ href="../libgimpbase/libgimpbase-gimpunit.html#GimpUnit" >GimpUnit for the specified GimpUnitMenu.

-

menu : The unit menu you want to set the unit for. -
unit : The new unit. -


gimp_unit_menu_get_unit ()

GimpUnit    gimp_unit_menu_get_unit         (GimpUnitMenu *menu);

Returns the GimpUnit the user has selected from the GimpUnitMenu.

-

menu : The unit menu you want to know the unit of. +

menu : The unit menu you want to know the unit of.
Returns : The unit the user has selected. -

gimp_unit_menu_get_pixel_digits ()


gimp_unit_menu_get_pixel_digits ()

gint        gimp_unit_menu_get_pixel_digits (GimpUnitMenu *menu);

Retrieve the number of digits for a pixel size as set by -gimp_unit_set_pixel_digits().

+gimp_unit_set_pixel_digits().

-

menu : a GimpUnitMenu +

menu : a GimpUnitMenu
Returns : the configured number of digits for a pixel size -

gimp_unit_menu_set_pixel_digits ()

void        gimp_unit_menu_set_pixel_digits (GimpUnitMenu *menu,
+

gimp_unit_menu_set_pixel_digits ()

void        gimp_unit_menu_set_pixel_digits (GimpUnitMenu *menu,
                                              gint digits);

A GimpUnitMenu can be setup to control the number of digits shown by attached spinbuttons. Please refer to the documentation of -gimp_unit_menu_update() to see how this is done. +gimp_unit_menu_update() to see how this is done.

This function allows to specify the number of digits shown for a size in pixels. Usually this is 0 (only full pixels). If you want @@ -162,9 +162,9 @@ spinbuttons, specify the number of digits after the decimal point here. You should do this after attaching your spinbuttons.

-

menu : a GimpUnitMenu -
digits : the number of digits to display for a pixel size -

Signals

The "unit-changed" signal

void        user_function                  (GimpUnitMenu *arg0,
+

menu : a GimpUnitMenu +
digits : the number of digits to display for a pixel size +

Signals

The "unit-changed" signal

void        user_function                  (GimpUnitMenu *arg0,
                                             gpointer user_data);

@@ -173,12 +173,12 @@ >GimpUnit from the GimpUnitMenu.

-

user_data :user data set when the signal handler was connected.

See Also

+

user_data :user data set when the signal handler was connected.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/index.html gimp-2.2.8/devel-docs/libgimpwidgets/html/index.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/index.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/index.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,7 +1,7 @@ -GIMP Widgets Library Reference Manual

+GIMP Widgets Library Reference Manual

for GIMP 2.2.4 -


Table of Contents

I. GIMP Widgets
Object Hierarchy
GimpButton - A GtkButton with a little extra functionality.
GimpChainButton - Widget to visually connect two entry widgets.
GimpColorArea - Displays a GimpRGB color, optionally with alpha-channel.
GimpColorButton - Widget for selecting a color from a simple button.
GimpColorHexEntry - Widget for entering a color's hex triplet.
GimpColorScale - Fancy colored sliders.
GimpColorSelection - Widget for doing a color selection.
GimpDialog - Constructors for GtkDialog's and action_areas as well as other -dialog-related stuff.
GimpFileEntry - Widget for entering a filename.
GimpFrame - A widget providing a HIG-compliant subclass of GtkFrame.
GimpIntComboBox - A widget providing a popup menu of integer values (e.g. enums).
GimpIntStore - A model for integer based name-value pairs (e.g. enums)
GimpMemsizeEntry - A composite widget that allows to enter a memory size.
GimpOffsetArea - Widget to control image offsets.
GimpPathEditor - Widget for editing a file search path.
GimpPickButton - Widget to pick a color from screen.
GimpPixmap - Widget which creates a GtkPixmap from XPM data.
GimpPreviewArea - A general purpose preview widget which caches its pixel data.
GimpPreview - A widget providing a GimpPreviewArea plus framework to update the preview.
GimpScrolledPreview - A widget providing a GimpPreview enhanced by scrolling capabilities.
GimpUnitMenu - Widget for selecting a GimpUnit.
Cell Renderers for GtkTreeView
GimpCellRendererColor -
GimpCellRendererToggle -
II. GIMP Display Filters
GimpColorDisplay - Pluggable GIMP display color correction modules.
GimpColorDisplayStack -
III. GIMP Color Selectors
GimpColorSelector - Pluggable GIMP color selector modules.
GimpColorNotebook - A GimpColorSelector implementation.
GimpColorScales - A GimpColorSelector implementation.
GimpColorSelect - A GimpColorSelector implementation.
IV. GIMP Controllers
GimpController - Pluggable GIMP input controller modules.
V. GIMP Widgets Utilities
GimpHelpUI - Functions for setting GtkTooltips and help identifier used by GIMP help -system.
GimpQueryBox - Some simple dialogs to enter a single int, double, string or boolean value.
GimpSizeEntry - Widget for entering pixel values and resolutions.
GimpStock - Prebuilt common menu/toolbar items and corresponding icons
GimpWidgets - A collection of convenient widget constructors, standard callbacks and -helper functions.
VI. Deprecated API
gimpoldwidgets - Old API that is still available but declared as deprecated.
+


Table of Contents

I. GIMP Widgets
Object Hierarchy
GimpButton - A GtkButton with a little extra functionality.
GimpChainButton - Widget to visually connect two entry widgets.
GimpColorArea - Displays a GimpRGB color, optionally with alpha-channel.
GimpColorButton - Widget for selecting a color from a simple button.
GimpColorHexEntry - Widget for entering a color's hex triplet.
GimpColorScale - Fancy colored sliders.
GimpColorSelection - Widget for doing a color selection.
GimpDialog - Constructors for GtkDialog's and action_areas as well as other +dialog-related stuff.
GimpFileEntry - Widget for entering a filename.
GimpFrame - A widget providing a HIG-compliant subclass of GtkFrame.
GimpIntComboBox - A widget providing a popup menu of integer values (e.g. enums).
GimpIntStore - A model for integer based name-value pairs (e.g. enums)
GimpMemsizeEntry - A composite widget that allows to enter a memory size.
GimpOffsetArea - Widget to control image offsets.
GimpPathEditor - Widget for editing a file search path.
GimpPickButton - Widget to pick a color from screen.
GimpPixmap - Widget which creates a GtkPixmap from XPM data.
GimpPreviewArea - A general purpose preview widget which caches its pixel data.
GimpPreview - A widget providing a GimpPreviewArea plus framework to update the preview.
GimpScrolledPreview - A widget providing a GimpPreview enhanced by scrolling capabilities.
GimpUnitMenu - Widget for selecting a GimpUnit.
Cell Renderers for GtkTreeView
GimpCellRendererColor -
GimpCellRendererToggle -
II. GIMP Display Filters
GimpColorDisplay - Pluggable GIMP display color correction modules.
GimpColorDisplayStack -
III. GIMP Color Selectors
GimpColorSelector - Pluggable GIMP color selector modules.
GimpColorNotebook - A GimpColorSelector implementation.
GimpColorScales - A GimpColorSelector implementation.
GimpColorSelect - A GimpColorSelector implementation.
IV. GIMP Controllers
GimpController - Pluggable GIMP input controller modules.
V. GIMP Widgets Utilities
GimpHelpUI - Functions for setting GtkTooltips and help identifier used by GIMP help +system.
GimpQueryBox - Some simple dialogs to enter a single int, double, string or boolean value.
GimpSizeEntry - Widget for entering pixel values and resolutions.
GimpStock - Prebuilt common menu/toolbar items and corresponding icons
GimpWidgets - A collection of convenient widget constructors, standard callbacks and +helper functions.
VI. Deprecated API
gimpoldwidgets - Old API that is still available but declared as deprecated.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-cell-renderers.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-cell-renderers.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-cell-renderers.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-cell-renderers.html 2005-06-27 00:18:47.000000000 +0200 @@ -1 +1 @@ -Cell Renderers for GtkTreeView

Cell Renderers for GtkTreeView

+Cell Renderers for GtkTreeView

Cell Renderers for GtkTreeView

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-colordisplay.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-colordisplay.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-colordisplay.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-colordisplay.html 2005-06-27 00:18:47.000000000 +0200 @@ -1 +1 @@ -Part II. GIMP Display Filters

GIMP Display Filters

+Part II. GIMP Display Filters

GIMP Display Filters

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-colorselector.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-colorselector.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-colorselector.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-colorselector.html 2005-06-27 00:18:47.000000000 +0200 @@ -1 +1 @@ -Part III. GIMP Color Selectors

GIMP Color Selectors

+Part III. GIMP Color Selectors

GIMP Color Selectors

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-controller.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-controller.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-controller.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-controller.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,3 +1,3 @@ -Part IV. GIMP Controllers

GIMP Controllers

+Part IV. GIMP Controllers

GIMP Controllers

Note that the controller API is work in progress.

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-deprecated.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-deprecated.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-deprecated.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-deprecated.html 2005-06-27 00:18:47.000000000 +0200 @@ -1 +1 @@ -Part VI. Deprecated API

Deprecated API

+Part VI. Deprecated API

Deprecated API

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpHelpUI

GimpHelpUI

GimpHelpUI — Functions for setting GimpHelpUI

GimpHelpUI

GimpHelpUI — Functions for setting GtkTooltips and help identifier used by GIMP help system.

Synopsis

@@ -43,50 +43,50 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget *widget);
 
-

Description

+

Description

-

Details

GimpHelpFunc ()

void        (*GimpHelpFunc)                 (const 

Details

GimpHelpFunc ()

void        (*GimpHelpFunc)                 (const gchar *help_id,
                                              gpointer help_data);

-This is the prototype for all functions you pass as help_func to the -various GIMP dialog constructors like gimp_dialog_new(), -gimp_query_int_box() etc. +This is the prototype for all functions you pass as help_func to the +various GIMP dialog constructors like gimp_dialog_new(), +gimp_query_int_box() etc.

Help IDs are textual identifiers the help system uses to figure which page to display.

-All these dialog constructors functions call gimp_help_connect(). +All these dialog constructors functions call gimp_help_connect().

-In most cases it will be ok to use gimp_standard_help_func() which does -nothing but passing the help_id string to gimp_standard_help_func() which does +nothing but passing the help_id string to gimp_help(). If your +>gimp_help(). If your plug-in needs some more sophisticated help handling you can provide -your own help_func which has to call help_func which has to call gimp_help() to actually display +>gimp_help() to actually display the help. -

help_id : -
help_data : +

help_id : +
help_data : -

GIMP_HELP_ID

#define GIMP_HELP_ID (gimp_help_id_quark ())
+

GIMP_HELP_ID

#define GIMP_HELP_ID (gimp_help_id_quark ())
 

Since: GIMP 2.2 -


gimp_help_enable_tooltips ()

void        gimp_help_enable_tooltips       (void);

+


gimp_help_enable_tooltips ()

void        gimp_help_enable_tooltips       (void);

This function calls gtk_tooltips_enable().

+>gtk_tooltips_enable().

-


gimp_help_disable_tooltips ()

void        gimp_help_disable_tooltips      (void);

+


gimp_help_disable_tooltips ()

void        gimp_help_disable_tooltips      (void);

This function calls gtk_tooltips_disable().

+>gtk_tooltips_disable().

-


gimp_standard_help_func ()

void        gimp_standard_help_func         (const 

gimp_standard_help_func ()

void        gimp_standard_help_func         (const gchar *help_id,
                                              gimp_help(). It is the right function to use in almost all cases.

+>gimp_help(). It is the right function to use in almost all cases.

-

help_id : A unique help identifier. -
help_data : The help_data passed to gimp_help_connect(). -


gimp_help_connect ()

void        gimp_help_connect               (GtkWidget *widget,
                                              GimpHelpFunc help_func,
@@ -113,14 +113,14 @@
 constructors. You only have to call it for windows/dialogs you created
 "manually".

-

widget : The widget you want to connect the help accelerator for. Will +

widget : The widget you want to connect the help accelerator for. Will be a GtkWindow in most cases. -
help_func : The function which will be called if the user presses "F1". -
help_id : The help_id which will be passed to help_func. -
help_data : The help_data pointer which will be passed to help_func. -

gimp_help_set_help_data ()

void        gimp_help_set_help_data         (
help_func : The function which will be called if the user presses "F1". +
help_id : The help_id which will be passed to help_func. +
help_data : The help_data pointer which will be passed to help_func. +

gimp_help_set_help_data ()

void        gimp_help_set_help_data         (GtkWidget *widget,
                                              const gchar *help_id);

The reason why we don't use gtk_tooltips_set_tip() is that it's -impossible to set a private_tip (aka help_id) without a visible -tooltip. +>gtk_tooltips_set_tip() is that it's +impossible to set a private_tip (aka help_id) without a visible +tooltip.

-This function can be called with NULL for tooltip. Use this feature +This function can be called with NULL for tooltip. Use this feature if you want to set a help link for a widget which shouldn't have a visible tooltip.

-


gimp_context_help ()

void        gimp_context_help               (GtkWidget *widget);

This function invokes the context help inspector. @@ -154,13 +154,13 @@ The mouse cursor will turn turn into a question mark and the user can click on any widget of the application which started the inspector.

-If the widget the user clicked on has a help_id string attached -(see gimp_help_set_help_data()), the corresponding help page will +If the widget the user clicked on has a help_id string attached +(see gimp_help_set_help_data()), the corresponding help page will be displayed. Otherwise the help system will ascend the widget hierarchy -until it finds an attached help_id string (which should be the +until it finds an attached help_id string (which should be the case at least for every window/dialog).

-

widget : Any
widget : Any GtkWidget on the screen.
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -gimpoldwidgets

gimpoldwidgets

gimpoldwidgets — Old API that is still available but declared as deprecated.

Synopsis

+gimpoldwidgets

gimpoldwidgets

gimpoldwidgets — Old API that is still available but declared as deprecated.

Synopsis

 
 
 
@@ -90,9 +90,9 @@
                                              gpointer data);
-

Description

+

Description

These functions are not defined if you define GIMP_DISABLE_DEPRECATED. -

Details

gimp_int_option_menu_new ()

Details

gimp_int_option_menu_new ()

GtkWidget*  gimp_int_option_menu_new        (gint initial,
-                                             ...);

Warning

gimp_int_option_menu_new is deprecated and should not be used in newly-written code.

+ ...);

Warning

gimp_int_option_menu_new is deprecated and should not be used in newly-written code.

Convenience function to create a GtkOptionMenu or a GtkMenu. This function does the same thing as the deprecated function -gimp_option_menu_new2(), but it takes integers as item_data +gimp_option_menu_new2(), but it takes integers as item_data instead of pointers, since that is a very common case (mapping an enum to a menu).

-


gimp_int_option_menu_set_history ()

void        gimp_int_option_menu_set_history
                                             (GtkOptionMenu *option_menu,
                                              gint item_data);

Warning

gimp_int_option_menu_set_history is deprecated and should not be used in newly-written code.

+>gint item_data);

Warning

gimp_int_option_menu_set_history is deprecated and should not be used in newly-written code.

Iterates over all entries in a GtkOptionMenu and selects the one with the -matching item_data. Probably only makes sense to use with a item_data. Probably only makes sense to use with a GtkOptionMenu -that was created using gimp_int_option_menu_new(). This function does the -same thing as gimp_option_menu_set_history(), but takes integers as -item_data instead of pointers.

- -

option_menu : A GtkOptionMenu as returned by gimp_int_option_menu_new(). -
item_data : The item_data of the menu item you want to select. -

GimpIntOptionMenuSensitivityCallback ()

gimp_int_option_menu_new(). This function does the
+same thing as gimp_option_menu_set_history(), but takes integers as
+item_data instead of pointers.

+ +

option_menu : A GtkOptionMenu as returned by gimp_int_option_menu_new(). +
item_data : The item_data of the menu item you want to select. +

GimpIntOptionMenuSensitivityCallback ()

gboolean    (*GimpIntOptionMenuSensitivityCallback)
                                             (gint item_data,
                                              gpointer callback_data);

Warning

GimpIntOptionMenuSensitivityCallback is deprecated and should not be used in newly-written code.

+>gpointer callback_data);

Warning

GimpIntOptionMenuSensitivityCallback is deprecated and should not be used in newly-written code.

-

item_data : -
callback_data : +

item_data : +
callback_data :
Returns : -

gimp_int_option_menu_set_sensitive ()

void        gimp_int_option_menu_set_sensitive
+

gimp_int_option_menu_set_sensitive ()

void        gimp_int_option_menu_set_sensitive
                                             (GtkOptionMenu *option_menu,
                                              GimpIntOptionMenuSensitivityCallback callback,
                                              gpointer callback_data);

Warning

gimp_int_option_menu_set_sensitive is deprecated and should not be used in newly-written code.

-Calls the given callback for each item in the menu and passes it the -item_data and the callback_data. The menu item's sensitivity is set +>gpointer callback_data);

Warning

gimp_int_option_menu_set_sensitive is deprecated and should not be used in newly-written code.

+Calls the given callback for each item in the menu and passes it the +item_data and the callback_data. The menu item's sensitivity is set according to the return value of this function. This function does the -same thing as gimp_option_menu_set_sensitive(), but takes integers as -item_data instead of pointers.

+same thing as gimp_option_menu_set_sensitive(), but takes integers as +item_data instead of pointers.

-


gimp_option_menu_new ()

GtkWidget*  gimp_option_menu_new            (gboolean menu_only,
-                                             ...);

Warning

gimp_option_menu_new is deprecated and should not be used in newly-written code.

+ ...);

Warning

gimp_option_menu_new is deprecated and should not be used in newly-written code.

Convenience function to create a GtkOptionMenu or a GtkMenu.

-



gimp_option_menu_set_history ()

void        gimp_option_menu_set_history    (GtkOptionMenu *option_menu,
                                              gpointer item_data);

Warning

gimp_option_menu_set_history is deprecated and should not be used in newly-written code.

+>gpointer item_data);

Warning

gimp_option_menu_set_history is deprecated and should not be used in newly-written code.

Iterates over all entries in a GtkOptionMenu and selects the one -with the matching item_data. Probably only makes sense to use with +with the matching item_data. Probably only makes sense to use with a GtkOptionMenu that was created using gimp_option_menu_new() or -gimp_option_menu_new2().

+>GtkOptionMenu that was created using gimp_option_menu_new() or +gimp_option_menu_new2().

-


GimpOptionMenuSensitivityCallback ()

gboolean    (*GimpOptionMenuSensitivityCallback)
                                             (gpointer item_data,
                                              gpointer callback_data);

Warning

GimpOptionMenuSensitivityCallback is deprecated and should not be used in newly-written code.

+>gpointer callback_data);

Warning

GimpOptionMenuSensitivityCallback is deprecated and should not be used in newly-written code.

-

item_data : -
callback_data : +

item_data : +
callback_data :
Returns : -

gimp_option_menu_set_sensitive ()

void        gimp_option_menu_set_sensitive  (

gimp_option_menu_set_sensitive ()

void        gimp_option_menu_set_sensitive  (GtkOptionMenu *option_menu,
                                              GimpOptionMenuSensitivityCallback callback,
                                              gpointer callback_data);

Warning

gimp_option_menu_set_sensitive is deprecated and should not be used in newly-written code.

-Calls the given callback for each item in the menu and passes it the -item_data and the callback_data. The menu item's sensitivity is set +>gpointer callback_data);

Warning

gimp_option_menu_set_sensitive is deprecated and should not be used in newly-written code.

+Calls the given callback for each item in the menu and passes it the +item_data and the callback_data. The menu item's sensitivity is set according to the return value of this function.

-


gimp_menu_item_update ()

void        gimp_menu_item_update           (GtkWidget *widget,
                                              gpointer data);

Warning

gimp_menu_item_update is deprecated and should not be used in newly-written code.

+>gpointer data);

Warning

gimp_menu_item_update is deprecated and should not be used in newly-written code.

-

See Also

GimpIntComboBox

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpQueryBox

GimpQueryBox

GimpQueryBox — Some simple dialogs to enter a single int, double, string or boolean value.

Synopsis

+GimpQueryBox

GimpQueryBox

GimpQueryBox — Some simple dialogs to enter a single int, double, string or boolean value.

Synopsis

 
 
 
@@ -230,7 +230,7 @@
 href="../glib/glib-Basic-Types.html#gpointer"
 >gpointer data);
 #define     GIMP_QUERY_BOX_VBOX             (qbox)
-

Description

+

Description

These functions provide simple dialogs for entering a single string, integer, double, boolean or pixel size value.

@@ -239,13 +239,13 @@ >GtkDialog which has to be shown with gtk_widget_show() by the caller. +>gtk_widget_show() by the caller.

The dialogs contain an entry widget for the kind of value they ask for and "OK" and "Cancel" buttons. On "Cancel", all query boxes except the boolean one silently destroy themselves. On "OK" the user defined callback function is called and returns the entered value. -

Details

GimpQueryStringCallback ()

void        (*GimpQueryStringCallback)      (

Details

GimpQueryStringCallback ()

void        (*GimpQueryStringCallback)      (GtkWidget *query_box,
                                              const gpointer data);

Note that you have to g_free() the returned string. -

query_box :The query box. -
string :The entered string. -
data :The user data. +>g_free() the returned string. +

query_box :The query box. +
string :The entered string. +
data :The user data. -

GimpQueryIntCallback ()

void        (*GimpQueryIntCallback)         (

GimpQueryIntCallback ()

void        (*GimpQueryIntCallback)         (GtkWidget *query_box,
                                              gpointer data);

-

query_box :The query box. -
value :The entered integer value. -
data :The user data. +

query_box :The query box. +
value :The entered integer value. +
data :The user data. -

GimpQueryDoubleCallback ()

void        (*GimpQueryDoubleCallback)      (

GimpQueryDoubleCallback ()

void        (*GimpQueryDoubleCallback)      (GtkWidget *query_box,
                                              gpointer data);

-

query_box :The query box. -
value :The entered double value. -
data :The user data. +

query_box :The query box. +
value :The entered double value. +
data :The user data. -

GimpQuerySizeCallback ()

void        (*GimpQuerySizeCallback)        (

GimpQuerySizeCallback ()

void        (*GimpQuerySizeCallback)        (GtkWidget *query_box,
                                              gpointer data);

-

query_box :The query box. -
size :The entered size in pixels. -
unit :The selected unit from the GimpUnitMenu. -
data :The user data. +

query_box :The query box. +
size :The entered size in pixels. +
unit :The selected unit from the GimpUnitMenu. +
data :The user data. -

GimpQueryBooleanCallback ()

void        (*GimpQueryBooleanCallback)     (

GimpQueryBooleanCallback ()

void        (*GimpQueryBooleanCallback)     (GtkWidget *query_box,
                                              gpointer data);

-

query_box :The query box. -
value :The entered boolean value. -
data :The user data. +

query_box :The query box. +
value :The entered boolean value. +
data :The user data. -

gimp_query_string_box ()


gimp_query_string_box ()

GtkWidget*  gimp_query_string_box           (const GtkDialog that queries the user for a string value.

-

title : The query box dialog's title. -
parent : The dialog's parent widget. -
help_func : The help function to show this dialog's help page. -
help_id : A string identifying this dialog's help page. -
message : A string which will be shown above the dialog's entry widget. -
initial : The initial value. -
object : The object this query box is associated with. -
signal : The object's signal which will cause the query box to be closed. -
callback : The function which will be called when the user selects "OK". -
data : The callback's user data. +

title : The query box dialog's title. +
parent : The dialog's parent widget. +
help_func : The help function to show this dialog's help page. +
help_id : A string identifying this dialog's help page. +
message : A string which will be shown above the dialog's entry widget. +
initial : The initial value. +
object : The object this query box is associated with. +
signal : The object's signal which will cause the query box to be closed. +
callback : The function which will be called when the user selects "OK". +
data : The callback's user data.
Returns : A pointer to the new GtkDialog. -

gimp_query_int_box ()


gimp_query_int_box ()

GtkWidget*  gimp_query_int_box              (const GtkDialog that queries the user for an integer value.

-

title : The query box dialog's title. -
parent : The dialog's parent widget. -
help_func : The help function to show this dialog's help page. -
help_id : A string identifying this dialog's help page. -
message : A string which will be shown above the dialog's entry widget. -
initial : The initial value. -
lower : The lower boundary of the range of possible values. -
upper : The upper boundray of the range of possible values. -
object : The object this query box is associated with. -
signal : The object's signal which will cause the query box to be closed. -
callback : The function which will be called when the user selects "OK". -
data : The callback's user data. +

title : The query box dialog's title. +
parent : The dialog's parent widget. +
help_func : The help function to show this dialog's help page. +
help_id : A string identifying this dialog's help page. +
message : A string which will be shown above the dialog's entry widget. +
initial : The initial value. +
lower : The lower boundary of the range of possible values. +
upper : The upper boundray of the range of possible values. +
object : The object this query box is associated with. +
signal : The object's signal which will cause the query box to be closed. +
callback : The function which will be called when the user selects "OK". +
data : The callback's user data.
Returns : A pointer to the new GtkDialog. -

gimp_query_double_box ()


gimp_query_double_box ()

GtkWidget*  gimp_query_double_box           (const GtkDialog that queries the user for a double value.

-

title : The query box dialog's title. -
parent : The dialog's parent widget. -
help_func : The help function to show this dialog's help page. -
help_id : A string identifying this dialog's help page. -
message : A string which will be shown above the dialog's entry widget. -
initial : The initial value. -
lower : The lower boundary of the range of possible values. -
upper : The upper boundray of the range of possible values. -
digits : The number of decimal digits the
title : The query box dialog's title. +
parent : The dialog's parent widget. +
help_func : The help function to show this dialog's help page. +
help_id : A string identifying this dialog's help page. +
message : A string which will be shown above the dialog's entry widget. +
initial : The initial value. +
lower : The lower boundary of the range of possible values. +
upper : The upper boundray of the range of possible values. +
digits : The number of decimal digits the GtkSpinButton will provide. -
object : The object this query box is associated with. -
signal : The object's signal which will cause the query box to be closed. -
callback : The function which will be called when the user selects "OK". -
data : The callback's user data. +
object : The object this query box is associated with. +
signal : The object's signal which will cause the query box to be closed. +
callback : The function which will be called when the user selects "OK". +
data : The callback's user data.
Returns : A pointer to the new GtkDialog. -

gimp_query_size_box ()


gimp_query_size_box ()

GtkWidget*  gimp_query_size_box             (const GtkDialog that queries the user for a size using a
 GimpSizeEntry.

-

title : The query box dialog's title. -
parent : The dialog's parent widget. -
help_func : The help function to show this dialog's help page. -
help_id : A string identifying this dialog's help page. -
message : A string which will be shown above the dialog's entry widget. -
initial : The initial value. -
lower : The lower boundary of the range of possible values. -
upper : The upper boundray of the range of possible values. -
digits : The number of decimal digits the GimpSizeEntry provide in +

title : The query box dialog's title. +
parent : The dialog's parent widget. +
help_func : The help function to show this dialog's help page. +
help_id : A string identifying this dialog's help page. +
message : A string which will be shown above the dialog's entry widget. +
initial : The initial value. +
lower : The lower boundary of the range of possible values. +
upper : The upper boundray of the range of possible values. +
digits : The number of decimal digits the GimpSizeEntry provide in "pixel" mode. -
unit : The unit initially shown by the GimpUnitMenu. -
resolution : The resolution (in dpi) which will be used for pixel/unit +
unit : The unit initially shown by the GimpUnitMenu. +
resolution : The resolution (in dpi) which will be used for pixel/unit calculations. -
dot_for_dot : TRUE if the GimpUnitMenu's initial unit should be "pixels". -
object : The object this query box is associated with. -
signal : The object's signal which will cause the query box +
dot_for_dot : TRUE if the GimpUnitMenu's initial unit should be "pixels". +
object : The object this query box is associated with. +
signal : The object's signal which will cause the query box to be closed. -
callback : The function which will be called when the user selects "OK". -
data : The callback's user data. +
callback : The function which will be called when the user selects "OK". +
data : The callback's user data.
Returns : A pointer to the new GtkDialog. -

gimp_query_boolean_box ()


gimp_query_boolean_box ()

GtkWidget*  gimp_query_boolean_box          (const GtkDialog that asks the user to do a boolean decision.

-

title : The query box dialog's title. -
parent : The dialog's parent widget. -
help_func : The help function to show this dialog's help page. -
help_id : A string identifying this dialog's help page. -
stock_id : A stock_id to specify an icon to appear on the left +

title : The query box dialog's title. +
parent : The dialog's parent widget. +
help_func : The help function to show this dialog's help page. +
help_id : A string identifying this dialog's help page. +
stock_id : A stock_id to specify an icon to appear on the left on the dialog's message. -
message : A string which will be shown in the query box. -
true_button : The string to be shown in the dialog's left button. -
false_button : The string to be shown in the dialog's right button. -
object : The object this query box is associated with. -
signal : The object's signal which will cause the query box +
message : A string which will be shown in the query box. +
true_button : The string to be shown in the dialog's left button. +
false_button : The string to be shown in the dialog's right button. +
object : The object this query box is associated with. +
signal : The object's signal which will cause the query box to be closed. -
callback : The function which will be called when the user clicks one +
callback : The function which will be called when the user clicks one of the buttons. -
data : The callback's user data. +
data : The callback's user data.
Returns : A pointer to the new GtkDialog. -

GIMP_QUERY_BOX_VBOX()

#define     GIMP_QUERY_BOX_VBOX(qbox)

+


GIMP_QUERY_BOX_VBOX()

#define     GIMP_QUERY_BOX_VBOX(qbox)

A macro to access the GtkVBox in a GimpQueryBox. Useful if you want to add more widgets. -

qbox : +

qbox : -

See Also

+

See Also

GimpSizeEntry

GimpUnitMenu diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,12 +1,12 @@ -GimpScrolledPreview

GimpScrolledPreview

GimpScrolledPreview — A widget providing a GimpPreview enhanced by scrolling capabilities.

Synopsis

+GimpScrolledPreview

GimpScrolledPreview

GimpScrolledPreview — A widget providing a GimpPreview enhanced by scrolling capabilities.

Description

+

Description

A widget providing a GimpPreview enhanced by scrolling capabilities. -

Details

GimpScrolledPreview

typedef struct {
+

Details

GimpScrolledPreview

typedef struct {
   GimpPreview   parent_instance;
 } GimpScrolledPreview;
 

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html 2005-05-08 23:48:50.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html 2005-06-27 00:24:10.156909836 +0200 @@ -1,4 +1,4 @@ -GimpStock

GimpStock

GimpStock — Prebuilt common menu/toolbar items and corresponding icons

Synopsis

+GimpStock

GimpStock

GimpStock — Prebuilt common menu/toolbar items and corresponding icons

Synopsis

 
 
 
@@ -182,7 +182,7 @@
 #define     GIMP_STOCK_PALETTE
 #define     GIMP_STOCK_PATTERN
 #define     GIMP_STOCK_ZOOM_FOLLOW_WINDOW
-

Description

+

Description

GIMP registers a set of menu/toolbar items and corresponding icons in addition to the standard GTK+ stock items. These can be used just like GTK+ stock items. GIMP also overrides a few of the GTK+ icons (namely @@ -190,647 +190,647 @@

Stock icons may have a RTL variant which gets used for right-to-left locales. -

Details

gimp_stock_init ()

void        gimp_stock_init                 (void);

+

Details

gimp_stock_init ()

void        gimp_stock_init                 (void);

Initializes the GIMP stock icon factory.

You don't need to call this function as gimp_ui_init() already does +>gimp_ui_init() already does this for you.

-


GIMP_STOCK_ANCHOR

#define GIMP_STOCK_ANCHOR                   "gimp-anchor"
+


GIMP_STOCK_ANCHOR

#define GIMP_STOCK_ANCHOR                   "gimp-anchor"
 

-


GIMP_STOCK_CENTER

#define GIMP_STOCK_CENTER                   "gimp-center"
+


GIMP_STOCK_CENTER

#define GIMP_STOCK_CENTER                   "gimp-center"
 

-


GIMP_STOCK_DUPLICATE

#define GIMP_STOCK_DUPLICATE                "gimp-duplicate"
+


GIMP_STOCK_DUPLICATE

#define GIMP_STOCK_DUPLICATE                "gimp-duplicate"
 

-


GIMP_STOCK_EDIT

#define GIMP_STOCK_EDIT                     "gimp-edit"
+


GIMP_STOCK_EDIT

#define GIMP_STOCK_EDIT                     "gimp-edit"
 

-


GIMP_STOCK_RESET

#define GIMP_STOCK_RESET                    "gimp-reset"
+


GIMP_STOCK_RESET

#define GIMP_STOCK_RESET                    "gimp-reset"
 

-


GIMP_STOCK_CLOSE

#define GIMP_STOCK_CLOSE                    "gimp-close"
+


GIMP_STOCK_CLOSE

#define GIMP_STOCK_CLOSE                    "gimp-close"
 

-


GIMP_STOCK_MENU_LEFT

#define GIMP_STOCK_MENU_LEFT                "gimp-menu-left"
+


GIMP_STOCK_MENU_LEFT

#define GIMP_STOCK_MENU_LEFT                "gimp-menu-left"
 

RTL variant -


GIMP_STOCK_MENU_RIGHT

#define GIMP_STOCK_MENU_RIGHT               "gimp-menu-right"
+


GIMP_STOCK_MENU_RIGHT

#define GIMP_STOCK_MENU_RIGHT               "gimp-menu-right"
 

RTL variant -


GIMP_STOCK_MOVE_TO_SCREEN

#define GIMP_STOCK_MOVE_TO_SCREEN           "gimp_move-to-screen"
+


GIMP_STOCK_MOVE_TO_SCREEN

#define GIMP_STOCK_MOVE_TO_SCREEN           "gimp_move-to-screen"
 

-


GIMP_STOCK_INVERT

#define GIMP_STOCK_INVERT                   "gimp-invert"
+


GIMP_STOCK_INVERT

#define GIMP_STOCK_INVERT                   "gimp-invert"
 

-


GIMP_STOCK_LAYER_TO_IMAGESIZE

#define GIMP_STOCK_LAYER_TO_IMAGESIZE       "gimp-layer-to-imagesize"
+


GIMP_STOCK_LAYER_TO_IMAGESIZE

#define GIMP_STOCK_LAYER_TO_IMAGESIZE       "gimp-layer-to-imagesize"
 

-


GIMP_STOCK_MERGE_DOWN

#define GIMP_STOCK_MERGE_DOWN               "gimp-merge-down"
+


GIMP_STOCK_MERGE_DOWN

#define GIMP_STOCK_MERGE_DOWN               "gimp-merge-down"
 

-


GIMP_STOCK_NAVIGATION

#define GIMP_STOCK_NAVIGATION               "gimp-navigation"
+


GIMP_STOCK_NAVIGATION

#define GIMP_STOCK_NAVIGATION               "gimp-navigation"
 

-


GIMP_STOCK_PASTE_AS_NEW

#define GIMP_STOCK_PASTE_AS_NEW             "gimp-paste-as-new"
+


GIMP_STOCK_PASTE_AS_NEW

#define GIMP_STOCK_PASTE_AS_NEW             "gimp-paste-as-new"
 

-


GIMP_STOCK_PASTE_INTO

#define GIMP_STOCK_PASTE_INTO               "gimp-paste-into"
+


GIMP_STOCK_PASTE_INTO

#define GIMP_STOCK_PASTE_INTO               "gimp-paste-into"
 

-


GIMP_STOCK_PATH_STROKE

#define GIMP_STOCK_PATH_STROKE              "gimp-path-stroke"
+


GIMP_STOCK_PATH_STROKE

#define GIMP_STOCK_PATH_STROKE              "gimp-path-stroke"
 

-


GIMP_STOCK_PLUGIN

#define GIMP_STOCK_PLUGIN                   "gimp-plugin"
+


GIMP_STOCK_PLUGIN

#define GIMP_STOCK_PLUGIN                   "gimp-plugin"
 

-


GIMP_STOCK_QMASK_OFF

#define GIMP_STOCK_QMASK_OFF                "gimp-qmask-off"
+


GIMP_STOCK_QMASK_OFF

#define GIMP_STOCK_QMASK_OFF                "gimp-qmask-off"
 

-


GIMP_STOCK_QMASK_ON

#define GIMP_STOCK_QMASK_ON                 "gimp-qmask-on"
+


GIMP_STOCK_QMASK_ON

#define GIMP_STOCK_QMASK_ON                 "gimp-qmask-on"
 

-


GIMP_STOCK_HISTOGRAM

#define GIMP_STOCK_HISTOGRAM                "gimp-histogram"
+


GIMP_STOCK_HISTOGRAM

#define GIMP_STOCK_HISTOGRAM                "gimp-histogram"
 

-


GIMP_STOCK_HISTOGRAM_LINEAR

#define GIMP_STOCK_HISTOGRAM_LINEAR         "gimp-histogram-linear"
+


GIMP_STOCK_HISTOGRAM_LINEAR

#define GIMP_STOCK_HISTOGRAM_LINEAR         "gimp-histogram-linear"
 

-


GIMP_STOCK_HISTOGRAM_LOGARITHMIC

#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC    "gimp-histogram-logarithmic"
+


GIMP_STOCK_HISTOGRAM_LOGARITHMIC

#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC    "gimp-histogram-logarithmic"
 

-


GIMP_STOCK_RESHOW_FILTER

#define GIMP_STOCK_RESHOW_FILTER            "gimp-reshow-filter"
+


GIMP_STOCK_RESHOW_FILTER

#define GIMP_STOCK_RESHOW_FILTER            "gimp-reshow-filter"
 

-


GIMP_STOCK_RESIZE

#define GIMP_STOCK_RESIZE                   "gimp-resize"
+


GIMP_STOCK_RESIZE

#define GIMP_STOCK_RESIZE                   "gimp-resize"
 

-


GIMP_STOCK_FLIP_HORIZONTAL

#define GIMP_STOCK_FLIP_HORIZONTAL          "gimp-flip-horizontal"
+


GIMP_STOCK_FLIP_HORIZONTAL

#define GIMP_STOCK_FLIP_HORIZONTAL          "gimp-flip-horizontal"
 

-


GIMP_STOCK_FLIP_VERTICAL

#define GIMP_STOCK_FLIP_VERTICAL            "gimp-flip-vertical"
+


GIMP_STOCK_FLIP_VERTICAL

#define GIMP_STOCK_FLIP_VERTICAL            "gimp-flip-vertical"
 

-


GIMP_STOCK_ROTATE_180

#define GIMP_STOCK_ROTATE_180               "gimp-rotate-180"
+


GIMP_STOCK_ROTATE_180

#define GIMP_STOCK_ROTATE_180               "gimp-rotate-180"
 

-


GIMP_STOCK_ROTATE_270

#define GIMP_STOCK_ROTATE_270               "gimp-rotate-270"
+


GIMP_STOCK_ROTATE_270

#define GIMP_STOCK_ROTATE_270               "gimp-rotate-270"
 

-


GIMP_STOCK_ROTATE_90

#define GIMP_STOCK_ROTATE_90                "gimp-rotate-90"
+


GIMP_STOCK_ROTATE_90

#define GIMP_STOCK_ROTATE_90                "gimp-rotate-90"
 

-


GIMP_STOCK_SCALE

#define GIMP_STOCK_SCALE                    "gimp-scale"
+


GIMP_STOCK_SCALE

#define GIMP_STOCK_SCALE                    "gimp-scale"
 

-


GIMP_STOCK_LINKED

#define GIMP_STOCK_LINKED                   "gimp-linked"
+


GIMP_STOCK_LINKED

#define GIMP_STOCK_LINKED                   "gimp-linked"
 

-


GIMP_STOCK_VISIBLE

#define GIMP_STOCK_VISIBLE                  "gimp-visible"
+


GIMP_STOCK_VISIBLE

#define GIMP_STOCK_VISIBLE                  "gimp-visible"
 

-


GIMP_STOCK_LIST

#define GIMP_STOCK_LIST                     "gimp-list"
+


GIMP_STOCK_LIST

#define GIMP_STOCK_LIST                     "gimp-list"
 

-


GIMP_STOCK_GRID

#define GIMP_STOCK_GRID                     "gimp-grid"
+


GIMP_STOCK_GRID

#define GIMP_STOCK_GRID                     "gimp-grid"
 

-


GIMP_STOCK_PORTRAIT

#define GIMP_STOCK_PORTRAIT                 "gimp-portrait"
+


GIMP_STOCK_PORTRAIT

#define GIMP_STOCK_PORTRAIT                 "gimp-portrait"
 

-


GIMP_STOCK_LANDSCAPE

#define GIMP_STOCK_LANDSCAPE                "gimp-landscape"
+


GIMP_STOCK_LANDSCAPE

#define GIMP_STOCK_LANDSCAPE                "gimp-landscape"
 

-


GIMP_STOCK_VIDEO

#define GIMP_STOCK_VIDEO                    "gimp-video"
+


GIMP_STOCK_VIDEO

#define GIMP_STOCK_VIDEO                    "gimp-video"
 

-


GIMP_STOCK_WEB

#define GIMP_STOCK_WEB                      "gimp-web"
+


GIMP_STOCK_WEB

#define GIMP_STOCK_WEB                      "gimp-web"
 

-


GIMP_STOCK_IMAGE

#define GIMP_STOCK_IMAGE                    "gimp-image"
+


GIMP_STOCK_IMAGE

#define GIMP_STOCK_IMAGE                    "gimp-image"
 

-


GIMP_STOCK_LAYER

#define GIMP_STOCK_LAYER                    "gimp-layer"
+


GIMP_STOCK_LAYER

#define GIMP_STOCK_LAYER                    "gimp-layer"
 

-


GIMP_STOCK_LAYER_MASK

#define GIMP_STOCK_LAYER_MASK               "gimp-layer-mask"
+


GIMP_STOCK_LAYER_MASK

#define GIMP_STOCK_LAYER_MASK               "gimp-layer-mask"
 

-


GIMP_STOCK_CHANNEL

#define GIMP_STOCK_CHANNEL                  "gimp-channel"
+


GIMP_STOCK_CHANNEL

#define GIMP_STOCK_CHANNEL                  "gimp-channel"
 

-


GIMP_STOCK_CHANNEL_RED

#define GIMP_STOCK_CHANNEL_RED              "gimp-channel-red"
+


GIMP_STOCK_CHANNEL_RED

#define GIMP_STOCK_CHANNEL_RED              "gimp-channel-red"
 

-


GIMP_STOCK_CHANNEL_GREEN

#define GIMP_STOCK_CHANNEL_GREEN            "gimp-channel-green"
+


GIMP_STOCK_CHANNEL_GREEN

#define GIMP_STOCK_CHANNEL_GREEN            "gimp-channel-green"
 

-


GIMP_STOCK_CHANNEL_BLUE

#define GIMP_STOCK_CHANNEL_BLUE             "gimp-channel-blue"
+


GIMP_STOCK_CHANNEL_BLUE

#define GIMP_STOCK_CHANNEL_BLUE             "gimp-channel-blue"
 

-


GIMP_STOCK_CHANNEL_GRAY

#define GIMP_STOCK_CHANNEL_GRAY             "gimp-channel-gray"
+


GIMP_STOCK_CHANNEL_GRAY

#define GIMP_STOCK_CHANNEL_GRAY             "gimp-channel-gray"
 

-


GIMP_STOCK_CHANNEL_INDEXED

#define GIMP_STOCK_CHANNEL_INDEXED          "gimp-channel-indexed"
+


GIMP_STOCK_CHANNEL_INDEXED

#define GIMP_STOCK_CHANNEL_INDEXED          "gimp-channel-indexed"
 

-


GIMP_STOCK_CHANNEL_ALPHA

#define GIMP_STOCK_CHANNEL_ALPHA            "gimp-channel-alpha"
+


GIMP_STOCK_CHANNEL_ALPHA

#define GIMP_STOCK_CHANNEL_ALPHA            "gimp-channel-alpha"
 

-


GIMP_STOCK_PATH

#define GIMP_STOCK_PATH                     "gimp-path"
+


GIMP_STOCK_PATH

#define GIMP_STOCK_PATH                     "gimp-path"
 

-


GIMP_STOCK_TEXT_LAYER

#define GIMP_STOCK_TEXT_LAYER               "gimp-text-layer"
+


GIMP_STOCK_TEXT_LAYER

#define GIMP_STOCK_TEXT_LAYER               "gimp-text-layer"
 

-


GIMP_STOCK_FLOATING_SELECTION

#define GIMP_STOCK_FLOATING_SELECTION       "gimp-floating-selection"
+


GIMP_STOCK_FLOATING_SELECTION

#define GIMP_STOCK_FLOATING_SELECTION       "gimp-floating-selection"
 

-


GIMP_STOCK_TEMPLATE

#define GIMP_STOCK_TEMPLATE                 "gimp-template"
+


GIMP_STOCK_TEMPLATE

#define GIMP_STOCK_TEMPLATE                 "gimp-template"
 

-


GIMP_STOCK_IMAGES

#define GIMP_STOCK_IMAGES                   "gimp-images"
+


GIMP_STOCK_IMAGES

#define GIMP_STOCK_IMAGES                   "gimp-images"
 

-


GIMP_STOCK_LAYERS

#define GIMP_STOCK_LAYERS                   "gimp-layers"
+


GIMP_STOCK_LAYERS

#define GIMP_STOCK_LAYERS                   "gimp-layers"
 

-


GIMP_STOCK_CHANNELS

#define GIMP_STOCK_CHANNELS                 "gimp-channels"
+


GIMP_STOCK_CHANNELS

#define GIMP_STOCK_CHANNELS                 "gimp-channels"
 

-


GIMP_STOCK_PATHS

#define GIMP_STOCK_PATHS                    "gimp-paths"
+


GIMP_STOCK_PATHS

#define GIMP_STOCK_PATHS                    "gimp-paths"
 

-


GIMP_STOCK_INDEXED_PALETTE

#define GIMP_STOCK_INDEXED_PALETTE          "gimp-indexed-palette"
+


GIMP_STOCK_INDEXED_PALETTE

#define GIMP_STOCK_INDEXED_PALETTE          "gimp-indexed-palette"
 

-


GIMP_STOCK_SHAPE_CIRCLE

#define GIMP_STOCK_SHAPE_CIRCLE             "gimp-shape-circle"
+


GIMP_STOCK_SHAPE_CIRCLE

#define GIMP_STOCK_SHAPE_CIRCLE             "gimp-shape-circle"
 

-


GIMP_STOCK_SHAPE_SQUARE

#define GIMP_STOCK_SHAPE_SQUARE             "gimp-shape-square"
+


GIMP_STOCK_SHAPE_SQUARE

#define GIMP_STOCK_SHAPE_SQUARE             "gimp-shape-square"
 

-


GIMP_STOCK_SHAPE_DIAMOND

#define GIMP_STOCK_SHAPE_DIAMOND            "gimp-shape-diamond"
+


GIMP_STOCK_SHAPE_DIAMOND

#define GIMP_STOCK_SHAPE_DIAMOND            "gimp-shape-diamond"
 

-


GIMP_STOCK_CAP_BUTT

#define GIMP_STOCK_CAP_BUTT                 "gimp-cap-butt"
+


GIMP_STOCK_CAP_BUTT

#define GIMP_STOCK_CAP_BUTT                 "gimp-cap-butt"
 

-


GIMP_STOCK_CAP_ROUND

#define GIMP_STOCK_CAP_ROUND                "gimp-cap-round"
+


GIMP_STOCK_CAP_ROUND

#define GIMP_STOCK_CAP_ROUND                "gimp-cap-round"
 

-


GIMP_STOCK_CAP_SQUARE

#define GIMP_STOCK_CAP_SQUARE               "gimp-cap-square"
+


GIMP_STOCK_CAP_SQUARE

#define GIMP_STOCK_CAP_SQUARE               "gimp-cap-square"
 

-


GIMP_STOCK_JOIN_MITER

#define GIMP_STOCK_JOIN_MITER               "gimp-join-miter"
+


GIMP_STOCK_JOIN_MITER

#define GIMP_STOCK_JOIN_MITER               "gimp-join-miter"
 

-


GIMP_STOCK_JOIN_ROUND

#define GIMP_STOCK_JOIN_ROUND               "gimp-join-round"
+


GIMP_STOCK_JOIN_ROUND

#define GIMP_STOCK_JOIN_ROUND               "gimp-join-round"
 

-


GIMP_STOCK_JOIN_BEVEL

#define GIMP_STOCK_JOIN_BEVEL               "gimp-join-bevel"
+


GIMP_STOCK_JOIN_BEVEL

#define GIMP_STOCK_JOIN_BEVEL               "gimp-join-bevel"
 

-


GIMP_STOCK_SELECTION

#define GIMP_STOCK_SELECTION                "gimp-selection"
+


GIMP_STOCK_SELECTION

#define GIMP_STOCK_SELECTION                "gimp-selection"
 

-


GIMP_STOCK_SELECTION_ALL

#define GIMP_STOCK_SELECTION_ALL            "gimp-selection-all"
+


GIMP_STOCK_SELECTION_ALL

#define GIMP_STOCK_SELECTION_ALL            "gimp-selection-all"
 

-


GIMP_STOCK_SELECTION_NONE

#define GIMP_STOCK_SELECTION_NONE           "gimp-selection-none"
+


GIMP_STOCK_SELECTION_NONE

#define GIMP_STOCK_SELECTION_NONE           "gimp-selection-none"
 

-


GIMP_STOCK_SELECTION_GROW

#define GIMP_STOCK_SELECTION_GROW           "gimp-selection-grow"
+


GIMP_STOCK_SELECTION_GROW

#define GIMP_STOCK_SELECTION_GROW           "gimp-selection-grow"
 

-


GIMP_STOCK_SELECTION_SHRINK

#define GIMP_STOCK_SELECTION_SHRINK         "gimp-selection-shrink"
+


GIMP_STOCK_SELECTION_SHRINK

#define GIMP_STOCK_SELECTION_SHRINK         "gimp-selection-shrink"
 

-


GIMP_STOCK_SELECTION_BORDER

#define GIMP_STOCK_SELECTION_BORDER         "gimp-selection-border"
+


GIMP_STOCK_SELECTION_BORDER

#define GIMP_STOCK_SELECTION_BORDER         "gimp-selection-border"
 

-


GIMP_STOCK_SELECTION_ADD

#define GIMP_STOCK_SELECTION_ADD            "gimp-selection-add"
+


GIMP_STOCK_SELECTION_ADD

#define GIMP_STOCK_SELECTION_ADD            "gimp-selection-add"
 

-


GIMP_STOCK_SELECTION_SUBTRACT

#define GIMP_STOCK_SELECTION_SUBTRACT       "gimp-selection-subtract"
+


GIMP_STOCK_SELECTION_SUBTRACT

#define GIMP_STOCK_SELECTION_SUBTRACT       "gimp-selection-subtract"
 

-


GIMP_STOCK_SELECTION_REPLACE

#define GIMP_STOCK_SELECTION_REPLACE        "gimp-selection-replace"
+


GIMP_STOCK_SELECTION_REPLACE

#define GIMP_STOCK_SELECTION_REPLACE        "gimp-selection-replace"
 

-


GIMP_STOCK_SELECTION_INTERSECT

#define GIMP_STOCK_SELECTION_INTERSECT      "gimp-selection-intersect"
+


GIMP_STOCK_SELECTION_INTERSECT

#define GIMP_STOCK_SELECTION_INTERSECT      "gimp-selection-intersect"
 

-


GIMP_STOCK_SELECTION_STROKE

#define GIMP_STOCK_SELECTION_STROKE         "gimp-selection-stroke"
+


GIMP_STOCK_SELECTION_STROKE

#define GIMP_STOCK_SELECTION_STROKE         "gimp-selection-stroke"
 

-


GIMP_STOCK_SELECTION_TO_CHANNEL

#define GIMP_STOCK_SELECTION_TO_CHANNEL     "gimp-selection-to-channel"
+


GIMP_STOCK_SELECTION_TO_CHANNEL

#define GIMP_STOCK_SELECTION_TO_CHANNEL     "gimp-selection-to-channel"
 

-


GIMP_STOCK_SELECTION_TO_PATH

#define GIMP_STOCK_SELECTION_TO_PATH        "gimp-selection-to-path"
+


GIMP_STOCK_SELECTION_TO_PATH

#define GIMP_STOCK_SELECTION_TO_PATH        "gimp-selection-to-path"
 

-


GIMP_STOCK_GRADIENT_LINEAR

#define GIMP_STOCK_GRADIENT_LINEAR               "gimp-gradient-linear"
+


GIMP_STOCK_GRADIENT_LINEAR

#define GIMP_STOCK_GRADIENT_LINEAR               "gimp-gradient-linear"
 

-


GIMP_STOCK_GRADIENT_BILINEAR

#define GIMP_STOCK_GRADIENT_BILINEAR             "gimp-gradient-bilinear"
+


GIMP_STOCK_GRADIENT_BILINEAR

#define GIMP_STOCK_GRADIENT_BILINEAR             "gimp-gradient-bilinear"
 

-


GIMP_STOCK_GRADIENT_RADIAL

#define GIMP_STOCK_GRADIENT_RADIAL               "gimp-gradient-radial"
+


GIMP_STOCK_GRADIENT_RADIAL

#define GIMP_STOCK_GRADIENT_RADIAL               "gimp-gradient-radial"
 

-


GIMP_STOCK_GRADIENT_SQUARE

#define GIMP_STOCK_GRADIENT_SQUARE               "gimp-gradient-square"
+


GIMP_STOCK_GRADIENT_SQUARE

#define GIMP_STOCK_GRADIENT_SQUARE               "gimp-gradient-square"
 

-


GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC

#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC    "gimp-gradient-conical-symmetric"
+


GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC

#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC    "gimp-gradient-conical-symmetric"
 

-


GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC

#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC   "gimp-gradient-conical-asymmetric"
+


GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC

#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC   "gimp-gradient-conical-asymmetric"
 

-


GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL

#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL "gimp-gradient-shapeburst-spherical"
+


GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL

#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL "gimp-gradient-shapeburst-spherical"
 

-


GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR

#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR   "gimp-gradient-shapeburst-angular"
+


GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR

#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR   "gimp-gradient-shapeburst-angular"
 

-


GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED

#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED   "gimp-gradient-shapeburst-dimpled"
+


GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED

#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED   "gimp-gradient-shapeburst-dimpled"
 

-


GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE

#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE     "gimp-gradient-spiral-clockwise"
+


GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE

#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE     "gimp-gradient-spiral-clockwise"
 

-


GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE

#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE "gimp-gradient-spiral-anticlockwise"
+


GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE

#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE "gimp-gradient-spiral-anticlockwise"
 

-


GIMP_STOCK_GRAVITY_NORTH_WEST

#define GIMP_STOCK_GRAVITY_NORTH_WEST       "gimp-gravity-north-west"
+


GIMP_STOCK_GRAVITY_NORTH_WEST

#define GIMP_STOCK_GRAVITY_NORTH_WEST       "gimp-gravity-north-west"
 

-


GIMP_STOCK_GRAVITY_NORTH

#define GIMP_STOCK_GRAVITY_NORTH            "gimp-gravity-north"
+


GIMP_STOCK_GRAVITY_NORTH

#define GIMP_STOCK_GRAVITY_NORTH            "gimp-gravity-north"
 

-


GIMP_STOCK_GRAVITY_NORTH_EAST

#define GIMP_STOCK_GRAVITY_NORTH_EAST       "gimp-gravity-north-east"
+


GIMP_STOCK_GRAVITY_NORTH_EAST

#define GIMP_STOCK_GRAVITY_NORTH_EAST       "gimp-gravity-north-east"
 

-


GIMP_STOCK_GRAVITY_WEST

#define GIMP_STOCK_GRAVITY_WEST             "gimp-gravity-west"
+


GIMP_STOCK_GRAVITY_WEST

#define GIMP_STOCK_GRAVITY_WEST             "gimp-gravity-west"
 

-


GIMP_STOCK_GRAVITY_EAST

#define GIMP_STOCK_GRAVITY_EAST             "gimp-gravity-east"
+


GIMP_STOCK_GRAVITY_EAST

#define GIMP_STOCK_GRAVITY_EAST             "gimp-gravity-east"
 

-


GIMP_STOCK_GRAVITY_SOUTH_WEST

#define GIMP_STOCK_GRAVITY_SOUTH_WEST       "gimp-gravity-south-west"
+


GIMP_STOCK_GRAVITY_SOUTH_WEST

#define GIMP_STOCK_GRAVITY_SOUTH_WEST       "gimp-gravity-south-west"
 

-


GIMP_STOCK_GRAVITY_SOUTH

#define GIMP_STOCK_GRAVITY_SOUTH            "gimp-gravity-south"
+


GIMP_STOCK_GRAVITY_SOUTH

#define GIMP_STOCK_GRAVITY_SOUTH            "gimp-gravity-south"
 

-


GIMP_STOCK_GRAVITY_SOUTH_EAST

#define GIMP_STOCK_GRAVITY_SOUTH_EAST       "gimp-gravity-south-east"
+


GIMP_STOCK_GRAVITY_SOUTH_EAST

#define GIMP_STOCK_GRAVITY_SOUTH_EAST       "gimp-gravity-south-east"
 

-


GIMP_STOCK_CHAR_PICKER

#define GIMP_STOCK_CHAR_PICKER              "gimp-char-picker"
+


GIMP_STOCK_CHAR_PICKER

#define GIMP_STOCK_CHAR_PICKER              "gimp-char-picker"
 

-


GIMP_STOCK_LETTER_SPACING

#define GIMP_STOCK_LETTER_SPACING           "gimp-letter-spacing"
+


GIMP_STOCK_LETTER_SPACING

#define GIMP_STOCK_LETTER_SPACING           "gimp-letter-spacing"
 

-


GIMP_STOCK_LINE_SPACING

#define GIMP_STOCK_LINE_SPACING             "gimp-line-spacing"
+


GIMP_STOCK_LINE_SPACING

#define GIMP_STOCK_LINE_SPACING             "gimp-line-spacing"
 

-


GIMP_STOCK_TEXT_DIR_LTR

#define GIMP_STOCK_TEXT_DIR_LTR             "gimp-text-dir-ltr"
+


GIMP_STOCK_TEXT_DIR_LTR

#define GIMP_STOCK_TEXT_DIR_LTR             "gimp-text-dir-ltr"
 

-


GIMP_STOCK_TEXT_DIR_RTL

#define GIMP_STOCK_TEXT_DIR_RTL             "gimp-text-dir-rtl"
+


GIMP_STOCK_TEXT_DIR_RTL

#define GIMP_STOCK_TEXT_DIR_RTL             "gimp-text-dir-rtl"
 

-


GIMP_STOCK_PRINT_RESOLUTION

#define GIMP_STOCK_PRINT_RESOLUTION         "gimp-print-resolution"
+


GIMP_STOCK_PRINT_RESOLUTION

#define GIMP_STOCK_PRINT_RESOLUTION         "gimp-print-resolution"
 

-


GIMP_STOCK_TOOLS

#define GIMP_STOCK_TOOLS                    "gimp-tools"
+


GIMP_STOCK_TOOLS

#define GIMP_STOCK_TOOLS                    "gimp-tools"
 

-


GIMP_STOCK_TOOL_OPTIONS

#define GIMP_STOCK_TOOL_OPTIONS             "gimp-tool-options"
+


GIMP_STOCK_TOOL_OPTIONS

#define GIMP_STOCK_TOOL_OPTIONS             "gimp-tool-options"
 

-


GIMP_STOCK_DEVICE_STATUS

#define GIMP_STOCK_DEVICE_STATUS            "gimp-device-status"
+


GIMP_STOCK_DEVICE_STATUS

#define GIMP_STOCK_DEVICE_STATUS            "gimp-device-status"
 

-


GIMP_STOCK_DISPLAY_FILTER

#define GIMP_STOCK_DISPLAY_FILTER           "gimp-display-filter"
+


GIMP_STOCK_DISPLAY_FILTER

#define GIMP_STOCK_DISPLAY_FILTER           "gimp-display-filter"
 

-


GIMP_STOCK_CURVE_FREE

#define GIMP_STOCK_CURVE_FREE               "gimp-curve-free"
+


GIMP_STOCK_CURVE_FREE

#define GIMP_STOCK_CURVE_FREE               "gimp-curve-free"
 

-


GIMP_STOCK_CURVE_SMOOTH

#define GIMP_STOCK_CURVE_SMOOTH             "gimp-curve-smooth"
+


GIMP_STOCK_CURVE_SMOOTH

#define GIMP_STOCK_CURVE_SMOOTH             "gimp-curve-smooth"
 

-


GIMP_STOCK_COLOR_PICKER_BLACK

#define GIMP_STOCK_COLOR_PICKER_BLACK       "gimp-color-picker-black"
+


GIMP_STOCK_COLOR_PICKER_BLACK

#define GIMP_STOCK_COLOR_PICKER_BLACK       "gimp-color-picker-black"
 

-


GIMP_STOCK_COLOR_PICKER_GRAY

#define GIMP_STOCK_COLOR_PICKER_GRAY        "gimp-color-picker-gray"
+


GIMP_STOCK_COLOR_PICKER_GRAY

#define GIMP_STOCK_COLOR_PICKER_GRAY        "gimp-color-picker-gray"
 

-


GIMP_STOCK_COLOR_PICKER_WHITE

#define GIMP_STOCK_COLOR_PICKER_WHITE       "gimp-color-picker-white"
+


GIMP_STOCK_COLOR_PICKER_WHITE

#define GIMP_STOCK_COLOR_PICKER_WHITE       "gimp-color-picker-white"
 

-


GIMP_STOCK_COLOR_TRIANGLE

#define GIMP_STOCK_COLOR_TRIANGLE           "gimp-color-triangle"
+


GIMP_STOCK_COLOR_TRIANGLE

#define GIMP_STOCK_COLOR_TRIANGLE           "gimp-color-triangle"
 

-


GIMP_STOCK_COLOR_PICK_FROM_SCREEN

#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN   "gimp-color-pick-from-screen"
+


GIMP_STOCK_COLOR_PICK_FROM_SCREEN

#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN   "gimp-color-pick-from-screen"
 

-


GIMP_STOCK_CONVERT_GRAYSCALE

#define GIMP_STOCK_CONVERT_GRAYSCALE        "gimp-convert-grayscale"
+


GIMP_STOCK_CONVERT_GRAYSCALE

#define GIMP_STOCK_CONVERT_GRAYSCALE        "gimp-convert-grayscale"
 

-


GIMP_STOCK_CONVERT_INDEXED

#define GIMP_STOCK_CONVERT_INDEXED          "gimp-convert-indexed"
+


GIMP_STOCK_CONVERT_INDEXED

#define GIMP_STOCK_CONVERT_INDEXED          "gimp-convert-indexed"
 

-


GIMP_STOCK_CONVERT_RGB

#define GIMP_STOCK_CONVERT_RGB              "gimp-convert-rgb"
+


GIMP_STOCK_CONVERT_RGB

#define GIMP_STOCK_CONVERT_RGB              "gimp-convert-rgb"
 

-


GIMP_STOCK_TRANSPARENCY

#define GIMP_STOCK_TRANSPARENCY             "gimp-transparency"
+


GIMP_STOCK_TRANSPARENCY

#define GIMP_STOCK_TRANSPARENCY             "gimp-transparency"
 

- -


GIMP_STOCK_DEFAULT_COLORS

#define GIMP_STOCK_DEFAULT_COLORS           "gimp-default-colors"
+
+


GIMP_STOCK_DEFAULT_COLORS

#define GIMP_STOCK_DEFAULT_COLORS           "gimp-default-colors"
 

-


GIMP_STOCK_SWAP_COLORS

#define GIMP_STOCK_SWAP_COLORS              "gimp-swap-colors"
+


GIMP_STOCK_SWAP_COLORS

#define GIMP_STOCK_SWAP_COLORS              "gimp-swap-colors"
 

-


GIMP_STOCK_UNDO_HISTORY

#define GIMP_STOCK_UNDO_HISTORY             "gimp-undo-history"
+


GIMP_STOCK_UNDO_HISTORY

#define GIMP_STOCK_UNDO_HISTORY             "gimp-undo-history"
 

- -


GIMP_STOCK_TOOL_AIRBRUSH

#define GIMP_STOCK_TOOL_AIRBRUSH            "gimp-tool-airbrush"
+
+


GIMP_STOCK_TOOL_AIRBRUSH

#define GIMP_STOCK_TOOL_AIRBRUSH            "gimp-tool-airbrush"
 

-


GIMP_STOCK_TOOL_BLEND

#define GIMP_STOCK_TOOL_BLEND               "gimp-tool-blend"
+


GIMP_STOCK_TOOL_BLEND

#define GIMP_STOCK_TOOL_BLEND               "gimp-tool-blend"
 

-


GIMP_STOCK_TOOL_BLUR

#define GIMP_STOCK_TOOL_BLUR                "gimp-tool-blur"
+


GIMP_STOCK_TOOL_BLUR

#define GIMP_STOCK_TOOL_BLUR                "gimp-tool-blur"
 

-


GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST

#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST "gimp-tool-brightness-contrast"
+


GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST

#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST "gimp-tool-brightness-contrast"
 

-


GIMP_STOCK_TOOL_BUCKET_FILL

#define GIMP_STOCK_TOOL_BUCKET_FILL         "gimp-tool-bucket-fill"
+


GIMP_STOCK_TOOL_BUCKET_FILL

#define GIMP_STOCK_TOOL_BUCKET_FILL         "gimp-tool-bucket-fill"
 

-


GIMP_STOCK_TOOL_BY_COLOR_SELECT

#define GIMP_STOCK_TOOL_BY_COLOR_SELECT     "gimp-tool-by-color-select"
+


GIMP_STOCK_TOOL_BY_COLOR_SELECT

#define GIMP_STOCK_TOOL_BY_COLOR_SELECT     "gimp-tool-by-color-select"
 

-


GIMP_STOCK_TOOL_CLONE

#define GIMP_STOCK_TOOL_CLONE               "gimp-tool-clone"
+


GIMP_STOCK_TOOL_CLONE

#define GIMP_STOCK_TOOL_CLONE               "gimp-tool-clone"
 

-


GIMP_STOCK_TOOL_COLOR_BALANCE

#define GIMP_STOCK_TOOL_COLOR_BALANCE       "gimp-tool-color-balance"
+


GIMP_STOCK_TOOL_COLOR_BALANCE

#define GIMP_STOCK_TOOL_COLOR_BALANCE       "gimp-tool-color-balance"
 

-


GIMP_STOCK_TOOL_COLOR_PICKER

#define GIMP_STOCK_TOOL_COLOR_PICKER        "gimp-tool-color-picker"
+


GIMP_STOCK_TOOL_COLOR_PICKER

#define GIMP_STOCK_TOOL_COLOR_PICKER        "gimp-tool-color-picker"
 

-


GIMP_STOCK_TOOL_COLORIZE

#define GIMP_STOCK_TOOL_COLORIZE            "gimp-tool-colorize"
+


GIMP_STOCK_TOOL_COLORIZE

#define GIMP_STOCK_TOOL_COLORIZE            "gimp-tool-colorize"
 

-


GIMP_STOCK_TOOL_CROP

#define GIMP_STOCK_TOOL_CROP                "gimp-tool-crop"
+


GIMP_STOCK_TOOL_CROP

#define GIMP_STOCK_TOOL_CROP                "gimp-tool-crop"
 

-


GIMP_STOCK_TOOL_CURVES

#define GIMP_STOCK_TOOL_CURVES              "gimp-tool-curves"
+


GIMP_STOCK_TOOL_CURVES

#define GIMP_STOCK_TOOL_CURVES              "gimp-tool-curves"
 

-


GIMP_STOCK_TOOL_DODGE

#define GIMP_STOCK_TOOL_DODGE               "gimp-tool-dodge"
+


GIMP_STOCK_TOOL_DODGE

#define GIMP_STOCK_TOOL_DODGE               "gimp-tool-dodge"
 

-


GIMP_STOCK_TOOL_ELLIPSE_SELECT

#define GIMP_STOCK_TOOL_ELLIPSE_SELECT      "gimp-tool-ellipse-select"
+


GIMP_STOCK_TOOL_ELLIPSE_SELECT

#define GIMP_STOCK_TOOL_ELLIPSE_SELECT      "gimp-tool-ellipse-select"
 

-


GIMP_STOCK_TOOL_ERASER

#define GIMP_STOCK_TOOL_ERASER              "gimp-tool-eraser"
+


GIMP_STOCK_TOOL_ERASER

#define GIMP_STOCK_TOOL_ERASER              "gimp-tool-eraser"
 

-


GIMP_STOCK_TOOL_FLIP

#define GIMP_STOCK_TOOL_FLIP                "gimp-tool-flip"
+


GIMP_STOCK_TOOL_FLIP

#define GIMP_STOCK_TOOL_FLIP                "gimp-tool-flip"
 

-


GIMP_STOCK_TOOL_FREE_SELECT

#define GIMP_STOCK_TOOL_FREE_SELECT         "gimp-tool-free-select"
+


GIMP_STOCK_TOOL_FREE_SELECT

#define GIMP_STOCK_TOOL_FREE_SELECT         "gimp-tool-free-select"
 

-


GIMP_STOCK_TOOL_FUZZY_SELECT

#define GIMP_STOCK_TOOL_FUZZY_SELECT        "gimp-tool-fuzzy-select"
+


GIMP_STOCK_TOOL_FUZZY_SELECT

#define GIMP_STOCK_TOOL_FUZZY_SELECT        "gimp-tool-fuzzy-select"
 

-


GIMP_STOCK_TOOL_HUE_SATURATION

#define GIMP_STOCK_TOOL_HUE_SATURATION      "gimp-tool-hue-saturation"
+


GIMP_STOCK_TOOL_HUE_SATURATION

#define GIMP_STOCK_TOOL_HUE_SATURATION      "gimp-tool-hue-saturation"
 

-


GIMP_STOCK_TOOL_INK

#define GIMP_STOCK_TOOL_INK                 "gimp-tool-ink"
+


GIMP_STOCK_TOOL_INK

#define GIMP_STOCK_TOOL_INK                 "gimp-tool-ink"
 

-


GIMP_STOCK_TOOL_ISCISSORS

#define GIMP_STOCK_TOOL_ISCISSORS           "gimp-tool-iscissors"
+


GIMP_STOCK_TOOL_ISCISSORS

#define GIMP_STOCK_TOOL_ISCISSORS           "gimp-tool-iscissors"
 

-


GIMP_STOCK_TOOL_LEVELS

#define GIMP_STOCK_TOOL_LEVELS              "gimp-tool-levels"
+


GIMP_STOCK_TOOL_LEVELS

#define GIMP_STOCK_TOOL_LEVELS              "gimp-tool-levels"
 

-


GIMP_STOCK_TOOL_MEASURE

#define GIMP_STOCK_TOOL_MEASURE             "gimp-tool-measure"
+


GIMP_STOCK_TOOL_MEASURE

#define GIMP_STOCK_TOOL_MEASURE             "gimp-tool-measure"
 

-


GIMP_STOCK_TOOL_MOVE

#define GIMP_STOCK_TOOL_MOVE                "gimp-tool-move"
+


GIMP_STOCK_TOOL_MOVE

#define GIMP_STOCK_TOOL_MOVE                "gimp-tool-move"
 

-


GIMP_STOCK_TOOL_PAINTBRUSH

#define GIMP_STOCK_TOOL_PAINTBRUSH          "gimp-tool-paintbrush"
+


GIMP_STOCK_TOOL_PAINTBRUSH

#define GIMP_STOCK_TOOL_PAINTBRUSH          "gimp-tool-paintbrush"
 

-


GIMP_STOCK_TOOL_PATH

#define GIMP_STOCK_TOOL_PATH                "gimp-tool-path"
+


GIMP_STOCK_TOOL_PATH

#define GIMP_STOCK_TOOL_PATH                "gimp-tool-path"
 

-


GIMP_STOCK_TOOL_PENCIL

#define GIMP_STOCK_TOOL_PENCIL              "gimp-tool-pencil"
+


GIMP_STOCK_TOOL_PENCIL

#define GIMP_STOCK_TOOL_PENCIL              "gimp-tool-pencil"
 

-


GIMP_STOCK_TOOL_PERSPECTIVE

#define GIMP_STOCK_TOOL_PERSPECTIVE         "gimp-tool-perspective"
+


GIMP_STOCK_TOOL_PERSPECTIVE

#define GIMP_STOCK_TOOL_PERSPECTIVE         "gimp-tool-perspective"
 

-


GIMP_STOCK_TOOL_POSTERIZE

#define GIMP_STOCK_TOOL_POSTERIZE           "gimp-tool-posterize"
+


GIMP_STOCK_TOOL_POSTERIZE

#define GIMP_STOCK_TOOL_POSTERIZE           "gimp-tool-posterize"
 

-


GIMP_STOCK_TOOL_RECT_SELECT

#define GIMP_STOCK_TOOL_RECT_SELECT         "gimp-tool-rect-select"
+


GIMP_STOCK_TOOL_RECT_SELECT

#define GIMP_STOCK_TOOL_RECT_SELECT         "gimp-tool-rect-select"
 

-


GIMP_STOCK_TOOL_ROTATE

#define GIMP_STOCK_TOOL_ROTATE              "gimp-tool-rotate"
+


GIMP_STOCK_TOOL_ROTATE

#define GIMP_STOCK_TOOL_ROTATE              "gimp-tool-rotate"
 

-


GIMP_STOCK_TOOL_SCALE

#define GIMP_STOCK_TOOL_SCALE               "gimp-tool-scale"
+


GIMP_STOCK_TOOL_SCALE

#define GIMP_STOCK_TOOL_SCALE               "gimp-tool-scale"
 

-


GIMP_STOCK_TOOL_SHEAR

#define GIMP_STOCK_TOOL_SHEAR               "gimp-tool-shear"
+


GIMP_STOCK_TOOL_SHEAR

#define GIMP_STOCK_TOOL_SHEAR               "gimp-tool-shear"
 

-


GIMP_STOCK_TOOL_SMUDGE

#define GIMP_STOCK_TOOL_SMUDGE              "gimp-tool-smudge"
+


GIMP_STOCK_TOOL_SMUDGE

#define GIMP_STOCK_TOOL_SMUDGE              "gimp-tool-smudge"
 

-


GIMP_STOCK_TOOL_TEXT

#define GIMP_STOCK_TOOL_TEXT                "gimp-tool-text"
+


GIMP_STOCK_TOOL_TEXT

#define GIMP_STOCK_TOOL_TEXT                "gimp-tool-text"
 

-


GIMP_STOCK_TOOL_THRESHOLD

#define GIMP_STOCK_TOOL_THRESHOLD           "gimp-tool-threshold"
+


GIMP_STOCK_TOOL_THRESHOLD

#define GIMP_STOCK_TOOL_THRESHOLD           "gimp-tool-threshold"
 

-


GIMP_STOCK_TOOL_ZOOM

#define GIMP_STOCK_TOOL_ZOOM                "gimp-tool-zoom"
+


GIMP_STOCK_TOOL_ZOOM

#define GIMP_STOCK_TOOL_ZOOM                "gimp-tool-zoom"
 

-


GIMP_STOCK_HCHAIN

#define GIMP_STOCK_HCHAIN                   "gimp-hchain"
+


GIMP_STOCK_HCHAIN

#define GIMP_STOCK_HCHAIN                   "gimp-hchain"
 

-


GIMP_STOCK_HCHAIN_BROKEN

#define GIMP_STOCK_HCHAIN_BROKEN            "gimp-hchain-broken"
+


GIMP_STOCK_HCHAIN_BROKEN

#define GIMP_STOCK_HCHAIN_BROKEN            "gimp-hchain-broken"
 

-


GIMP_STOCK_VCHAIN

#define GIMP_STOCK_VCHAIN                   "gimp-vchain"
+


GIMP_STOCK_VCHAIN

#define GIMP_STOCK_VCHAIN                   "gimp-vchain"
 

-


GIMP_STOCK_VCHAIN_BROKEN

#define GIMP_STOCK_VCHAIN_BROKEN            "gimp-vchain-broken"
+


GIMP_STOCK_VCHAIN_BROKEN

#define GIMP_STOCK_VCHAIN_BROKEN            "gimp-vchain-broken"
 

-


GIMP_STOCK_TEXTURE

#define GIMP_STOCK_TEXTURE                  "gimp-texture"
+


GIMP_STOCK_TEXTURE

#define GIMP_STOCK_TEXTURE                  "gimp-texture"
 

-


GIMP_STOCK_FRAME

#define GIMP_STOCK_FRAME                    "gimp-frame"
+


GIMP_STOCK_FRAME

#define GIMP_STOCK_FRAME                    "gimp-frame"
 

-


GIMP_STOCK_ERROR

#define GIMP_STOCK_ERROR                    "gimp-error"
+


GIMP_STOCK_ERROR

#define GIMP_STOCK_ERROR                    "gimp-error"
 

-


GIMP_STOCK_INFO

#define GIMP_STOCK_INFO                     "gimp-info"
+


GIMP_STOCK_INFO

#define GIMP_STOCK_INFO                     "gimp-info"
 

-


GIMP_STOCK_QUESTION

#define GIMP_STOCK_QUESTION                 "gimp-question"
+


GIMP_STOCK_QUESTION

#define GIMP_STOCK_QUESTION                 "gimp-question"
 

-


GIMP_STOCK_WARNING

#define GIMP_STOCK_WARNING                  "gimp-warning"
+


GIMP_STOCK_WARNING

#define GIMP_STOCK_WARNING                  "gimp-warning"
 

-


GIMP_STOCK_WILBER

#define GIMP_STOCK_WILBER                   "gimp-wilber"
+


GIMP_STOCK_WILBER

#define GIMP_STOCK_WILBER                   "gimp-wilber"
 

-


GIMP_STOCK_WILBER_EEK

#define GIMP_STOCK_WILBER_EEK               "gimp-wilber-eek"
+


GIMP_STOCK_WILBER_EEK

#define GIMP_STOCK_WILBER_EEK               "gimp-wilber-eek"
 

-


GIMP_STOCK_BRUSH

#define GIMP_STOCK_BRUSH                    GIMP_STOCK_TOOL_PAINTBRUSH
+


GIMP_STOCK_BRUSH

#define GIMP_STOCK_BRUSH                    GIMP_STOCK_TOOL_PAINTBRUSH
 

-


GIMP_STOCK_BUFFER

#define GIMP_STOCK_BUFFER                   GTK_STOCK_PASTE
+


GIMP_STOCK_BUFFER

#define GIMP_STOCK_BUFFER                   GTK_STOCK_PASTE
 

-


GIMP_STOCK_FONT

#define GIMP_STOCK_FONT                     GTK_STOCK_SELECT_FONT
+


GIMP_STOCK_FONT

#define GIMP_STOCK_FONT                     GTK_STOCK_SELECT_FONT
 

-


GIMP_STOCK_GRADIENT

#define GIMP_STOCK_GRADIENT                 GIMP_STOCK_TOOL_BLEND
+


GIMP_STOCK_GRADIENT

#define GIMP_STOCK_GRADIENT                 GIMP_STOCK_TOOL_BLEND
 

-


GIMP_STOCK_PALETTE

#define GIMP_STOCK_PALETTE                  GTK_STOCK_SELECT_COLOR
+


GIMP_STOCK_PALETTE

#define GIMP_STOCK_PALETTE                  GTK_STOCK_SELECT_COLOR
 

-


GIMP_STOCK_PATTERN

#define GIMP_STOCK_PATTERN                  GIMP_STOCK_TOOL_BUCKET_FILL
+


GIMP_STOCK_PATTERN

#define GIMP_STOCK_PATTERN                  GIMP_STOCK_TOOL_BUCKET_FILL
 

-


GIMP_STOCK_ZOOM_FOLLOW_WINDOW

#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW       "gimp-zoom-follow-window"
+


GIMP_STOCK_ZOOM_FOLLOW_WINDOW

#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW       "gimp-zoom-follow-window"
 

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -GimpWidgets

GimpWidgets

GimpWidgets — A collection of convenient widget constructors, standard callbacks and +GimpWidgets

GimpWidgets

GimpWidgets — A collection of convenient widget constructors, standard callbacks and helper functions.

Synopsis

 
 
@@ -375,9 +375,9 @@
 href="../gtk/GtkLabel.html"
 >GtkLabel *label,
                                              ...);
-

Description

+

Description

-

Details

gimp_radio_group_new ()

Details



gimp_radio_group_set_active ()

void        gimp_radio_group_set_active     (GtkRadioButton *radio_button,
                                              gpointer item_data);

Calls gtk_toggle_button_set_active() with the radio button that was -created with a matching item_data.

+>gtk_toggle_button_set_active() with the radio button that was +created with a matching item_data.

-

radio_button : Pointer to a
radio_button : Pointer to a GtkRadioButton. -
item_data : The item_data of the radio button you want to select. -

gimp_int_radio_group_new ()

item_data : The item_data of the radio button you want to select. +


gimp_int_radio_group_set_active ()

void        gimp_int_radio_group_set_active (GtkRadioButton *radio_button,
                                              gint item_data);

Calls gtk_toggle_button_set_active() with the radio button that was created -with a matching item_data. This function does the same thing as -gimp_radio_group_set_active(), but takes integers as item_data instead +>gtk_toggle_button_set_active() with the radio button that was created +with a matching item_data. This function does the same thing as +gimp_radio_group_set_active(), but takes integers as item_data instead of pointers.

-

radio_button : Pointer to a
radio_button : Pointer to a GtkRadioButton. -
item_data : The item_data of the radio button you want to select. -

gimp_spin_button_new ()

item_data : The item_data of the radio button you want to select. +




GIMP_SCALE_ENTRY_SCALE_ADJ()

#define     GIMP_SCALE_ENTRY_SCALE_ADJ(adj)

Returns the GtkAdjustment of the scale_entry's GtkHScale. -


GIMP_SCALE_ENTRY_SPINBUTTON()

#define     GIMP_SCALE_ENTRY_SPINBUTTON(adj)

Returns the scale_entry's GtkSpinButton. -



gimp_scale_entry_new ()

GtkObject*  gimp_scale_entry_new            (GtkTable.

-

table : The
table : The GtkTable the widgets will be attached to. -
column : The column to start with. -
row : The row to attach the widgets. -
text : The text for the
column : The column to start with. +
row : The row to attach the widgets. +
text : The text for the GtkLabel which will appear left of the GtkHScale. -
scale_width : The minimum horizontal size of the
scale_width : The minimum horizontal size of the GtkHScale. -
spinbutton_width : The minimum horizontal size of the
spinbutton_width : The minimum horizontal size of the GtkSpinButton. -
value : The initial value. -
lower : The lower boundary. -
upper : The upper boundary. -
step_increment : The step increment. -
page_increment : The page increment. -
digits : The number of decimal digits. -
constrain : TRUE if the range of possible values of the +
value : The initial value. +
lower : The lower boundary. +
upper : The upper boundary. +
step_increment : The step increment. +
page_increment : The page increment. +
digits : The number of decimal digits. +
constrain : TRUE if the range of possible values of the GtkSpinButton should be the same as of the GtkHScale. -
unconstrained_lower : The spinbutton's lower boundary - if constrain == FALSE. -
unconstrained_upper : The spinbutton's upper boundary - if constrain == FALSE. -
tooltip : A tooltip message for the scale and the spinbutton. -
help_id : The widgets' help_id (see gimp_help_set_help_data()). +
unconstrained_lower : The spinbutton's lower boundary + if constrain == FALSE. +
unconstrained_upper : The spinbutton's upper boundary + if constrain == FALSE. +
tooltip : A tooltip message for the scale and the spinbutton. +
help_id : The widgets' help_id (see gimp_help_set_help_data()).
Returns : The GtkSpinButton's GtkAdjustment. -

gimp_scale_entry_set_sensitive ()

void        gimp_scale_entry_set_sensitive  (


gimp_scale_entry_set_logarithmic ()

void        gimp_scale_entry_set_logarithmic
                                             (GtkObject *adjustment,
@@ -752,13 +752,13 @@
 ranges, but smaller selections on that range require a finer
 adjustment.

-

adjustment : a
adjustment : a GtkAdjustment as returned by gimp_scale_entry_new() -
logarithmic : a boolean value to set or reset logarithmic behaviour +>GtkAdjustment as returned by gimp_scale_entry_new() +
logarithmic : a boolean value to set or reset logarithmic behaviour of the scale widget

Since GIMP 2.2 -


gimp_scale_entry_get_logarithmic ()


gimp_scale_entry_get_logarithmic ()

gboolean    gimp_scale_entry_get_logarithmic
                                             (GtkObject *adjustment);

-

adjustment : a
adjustment : a GtkAdjustment as returned by gimp_scale_entry_new() -
Returns : TRUE if the the entry's scale widget will behave in - logharithmic fashion, FALSE for linear behaviour. +>GtkAdjustment as returned by gimp_scale_entry_new() +
Returns : TRUE if the the entry's scale widget will behave in + logharithmic fashion, FALSE for linear behaviour.

Since GIMP 2.2 -


gimp_color_scale_entry_new ()



GIMP_RANDOM_SEED_SPINBUTTON()

#define     GIMP_RANDOM_SEED_SPINBUTTON(hbox)

Returns the random_seed's GtkSpinButton. -


GIMP_RANDOM_SEED_SPINBUTTON_ADJ()

#define     GIMP_RANDOM_SEED_SPINBUTTON_ADJ(hbox)

Returns the GtkAdjustment of the random_seed's GtkSpinButton. -


GIMP_RANDOM_SEED_TOGGLE()

#define     GIMP_RANDOM_SEED_TOGGLE(hbox)

-

hbox : +

hbox : -

gimp_random_seed_new ()



GIMP_COORDINATES_CHAINBUTTON()

#define     GIMP_COORDINATES_CHAINBUTTON(sizeentry)

Returns the GimpChainButton which is attached to the GimpSizeEntry. -

sizeentry :The GimpSizeEntry returned by gimp_coordinates_new(). +

sizeentry :The GimpSizeEntry returned by gimp_coordinates_new(). -

gimp_coordinates_new ()


gimp_coordinates_new ()

GtkWidget*  gimp_coordinates_new            (GimpChainButton attached to constrain either the
 two fields' values or the ratio between them.

-

unit : The initial unit of the GimpUnitMenu. -
unit_format : A printf-like unit-format string as is used with - gimp_unit_menu_new(). -
menu_show_pixels : TRUE if the GimpUnitMenu should contain an item +

unit : The initial unit of the GimpUnitMenu. +
unit_format : A printf-like unit-format string as is used with + gimp_unit_menu_new(). +
menu_show_pixels : TRUE if the GimpUnitMenu should contain an item for GIMP_UNIT_PIXEL. -
menu_show_percent : TRUE if the GimpUnitMenu should contain an item +
menu_show_percent : TRUE if the GimpUnitMenu should contain an item for GIMP_UNIT_PERCENT. -
spinbutton_width : The horizontal size of the GimpSizeEntry's +
spinbutton_width : The horizontal size of the GimpSizeEntry's GtkSpinButton's. -
update_policy : The update policy for the GimpSizeEntry. -
chainbutton_active : TRUE if the attached GimpChainButton should be +
update_policy : The update policy for the GimpSizeEntry. +
chainbutton_active : TRUE if the attached GimpChainButton should be active. -
chain_constrains_ratio : TRUE if the chainbutton should constrain the - fields' aspect ratio. If FALSE, the values will +
chain_constrains_ratio : TRUE if the chainbutton should constrain the + fields' aspect ratio. If FALSE, the values will be constrained. -
xlabel : The label for the X coordinate. -
x : The initial value of the X coordinate. -
xres : The horizontal resolution in DPI. -
lower_boundary_x : The lower boundary of the X coordinate. -
upper_boundary_x : The upper boundary of the X coordinate. -
xsize_0 : The X value which will be treated as 0%. -
xsize_100 : The X value which will be treated as 100%. -
ylabel : The label for the Y coordinate. -
y : The initial value of the Y coordinate. -
yres : The vertical resolution in DPI. -
lower_boundary_y : The lower boundary of the Y coordinate. -
upper_boundary_y : The upper boundary of the Y coordinate. -
ysize_0 : The Y value which will be treated as 0%. -
ysize_100 : The Y value which will be treated as 100%. +
xlabel : The label for the X coordinate. +
x : The initial value of the X coordinate. +
xres : The horizontal resolution in DPI. +
lower_boundary_x : The lower boundary of the X coordinate. +
upper_boundary_x : The upper boundary of the X coordinate. +
xsize_0 : The X value which will be treated as 0%. +
xsize_100 : The X value which will be treated as 100%. +
ylabel : The label for the Y coordinate. +
y : The initial value of the Y coordinate. +
yres : The vertical resolution in DPI. +
lower_boundary_y : The lower boundary of the Y coordinate. +
upper_boundary_y : The upper boundary of the Y coordinate. +
ysize_0 : The Y value which will be treated as 0%. +
ysize_100 : The Y value which will be treated as 100%.
Returns : The new GimpSizeEntry. -

gimp_pixmap_button_new ()


gimp_pixmap_button_new ()

GtkWidget*  gimp_pixmap_button_new          (gchar **xpm_data,
                                              const gchar *text);

Warning

gimp_pixmap_button_new is deprecated and should not be used in newly-written code.

+>gchar *text);

Warning

gimp_pixmap_button_new is deprecated and should not be used in newly-written code.

Convenience function that creates a GtkButton with a GimpPixmap @@ -1025,12 +1025,12 @@ href="../gtk/GtkLabel.html" >GtkLabel.

-

xpm_data : The XPM data which will be passed to gimp_pixmap_new(). -
text : An optional text which will appear right of the pixmap. +

xpm_data : The XPM data which will be passed to gimp_pixmap_new(). +
text : An optional text which will appear right of the pixmap.
Returns : The new GtkButton. -

gimp_toggle_button_sensitive_update ()

void        gimp_toggle_button_sensitive_update
+

gimp_toggle_button_sensitive_update ()

void        gimp_toggle_button_sensitive_update
                                             (GtkToggleButton *toggle_button);

@@ -1038,7 +1038,7 @@ href="../gtk/GtkWidget.html" >GtkWidget with g_object_set_data() and +>g_object_set_data() and the "set_sensitive" key to the GtkToggleButton, the sensitive state of @@ -1052,43 +1052,43 @@ button's inverse "active" state by attaching widgets with the "inverse_sensitive" key.

-




gimp_int_adjustment_update ()

void        gimp_int_adjustment_update      (GtkAdjustment *adjustment,
                                              GtkAdjustment's value (which is a gdouble) will be
-rounded with RINT().

+rounded with RINT().

-


gimp_uint_adjustment_update ()

void        gimp_uint_adjustment_update     (GtkAdjustment *adjustment,
                                              guint) (value + 0.5).

-


gimp_float_adjustment_update ()

void        gimp_float_adjustment_update    (GtkAdjustment *adjustment,
                                              gpointer data);

-


gimp_double_adjustment_update ()

void        gimp_double_adjustment_update   (GtkAdjustment *adjustment,
                                              gpointer data);

-


gimp_unit_menu_update ()

void        gimp_unit_menu_update           (GtkWidget *widget,
                                              GtkSpinButton's. To use this functionality, attach the spinbuttons
 as list of data pointers attached with g_object_set_data() with the
+>g_object_set_data() with the
 "set_digits" key.
 

-See gimp_toggle_button_sensitive_update() for a description of how +See gimp_toggle_button_sensitive_update() for a description of how to set up the list.

-



gimp_label_set_attributes ()

void        gimp_label_set_attributes       (GtkLabel *label,
                                              ...);

@@ -1247,7 +1249,7 @@ >GtkLabel in a more convenient way than gtk_label_set_attributes(). +>gtk_label_set_attributes().

This function is useful if you want to change the font attributes of a

-

label : a
label : a GtkLabel -
... : a list of PangoAttrType and value pairs terminated by -1. +
... : a list of PangoAttrType and value pairs terminated by -1.

Since GIMP 2.2

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-hierarchy.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-hierarchy.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-hierarchy.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-hierarchy.html 2005-06-27 00:18:47.000000000 +0200 @@ -1,4 +1,4 @@ -Object Hierarchy

Object Hierarchy

+Object Hierarchy

Object Hierarchy

     GObject
diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-utils.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-utils.html
--- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-utils.html	2005-05-08 23:43:11.000000000 +0200
+++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-utils.html	2005-06-27 00:18:47.000000000 +0200
@@ -1 +1 @@
-Part V. GIMP Widgets Utilities

GIMP Widgets Utilities

+Part V. GIMP Widgets Utilities

GIMP Widgets Utilities

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-widgets.html gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-widgets.html --- gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-widgets.html 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-widgets.html 2005-06-27 00:18:47.000000000 +0200 @@ -1 +1 @@ -Part I. GIMP Widgets

GIMP Widgets

+Part I. GIMP Widgets

GIMP Widgets

diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcellrenderercolor.xml gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpcellrenderercolor.xml --- gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcellrenderercolor.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpcellrenderercolor.xml 2005-06-27 00:18:46.000000000 +0200 @@ -71,7 +71,7 @@ <anchor id="gimp-cell-renderer-color-new"/>gimp_cell_renderer_color_new () -gimp_cell_renderer_color_newGtkCellRenderer* gimp_cell_renderer_color_new +gimp_cell_renderer_color_newGtkCellRenderer* gimp_cell_renderer_color_new (void); Creates a GtkCellRenderer that displays a color. diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcellrenderertoggle.xml gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpcellrenderertoggle.xml --- gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcellrenderertoggle.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpcellrenderertoggle.xml 2005-06-27 00:18:46.000000000 +0200 @@ -85,7 +85,7 @@ <anchor id="gimp-cell-renderer-toggle-new"/>gimp_cell_renderer_toggle_new () -gimp_cell_renderer_toggle_newGtkCellRenderer* gimp_cell_renderer_toggle_new +gimp_cell_renderer_toggle_newGtkCellRenderer* gimp_cell_renderer_toggle_new (const gchar *stock_id); Creates a custom version of the GtkCellRendererToggle. Instead of @@ -106,7 +106,7 @@ <anchor id="gimp-cell-renderer-toggle-clicked"/>gimp_cell_renderer_toggle_clicked () -gimp_cell_renderer_toggle_clickedvoid gimp_cell_renderer_toggle_clicked +gimp_cell_renderer_toggle_clickedvoid gimp_cell_renderer_toggle_clicked (GimpCellRendererToggle *cell, const gchar *path, GdkModifierType state); diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcolorhexentry.xml gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpcolorhexentry.xml --- gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcolorhexentry.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpcolorhexentry.xml 2005-06-27 00:18:46.000000000 +0200 @@ -82,7 +82,7 @@ <anchor id="gimp-color-hex-entry-new"/>gimp_color_hex_entry_new () -gimp_color_hex_entry_newGtkWidget* gimp_color_hex_entry_new (void); +gimp_color_hex_entry_newGtkWidget* gimp_color_hex_entry_new (void); @@ -95,7 +95,7 @@ <anchor id="gimp-color-hex-entry-set-color"/>gimp_color_hex_entry_set_color () -gimp_color_hex_entry_set_colorvoid gimp_color_hex_entry_set_color (GimpColorHexEntry *entry, +gimp_color_hex_entry_set_colorvoid gimp_color_hex_entry_set_color (GimpColorHexEntry *entry, const GimpRGB *color); Sets the color displayed by a GimpColorHexEntry. If the new color @@ -114,7 +114,7 @@ <anchor id="gimp-color-hex-entry-get-color"/>gimp_color_hex_entry_get_color () -gimp_color_hex_entry_get_colorvoid gimp_color_hex_entry_get_color (GimpColorHexEntry *entry, +gimp_color_hex_entry_get_colorvoid gimp_color_hex_entry_get_color (GimpColorHexEntry *entry, GimpRGB *color); Retrieves the color value displayed by a GimpColorHexEntry. diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpdialog.xml gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpdialog.xml --- gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpdialog.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpdialog.xml 2005-06-27 00:18:46.000000000 +0200 @@ -224,7 +224,7 @@ <anchor id="gimp-dialogs-show-help-button"/>gimp_dialogs_show_help_button () -gimp_dialogs_show_help_buttonvoid gimp_dialogs_show_help_button (gboolean show); +gimp_dialogs_show_help_buttonvoid gimp_dialogs_show_help_button (gboolean show); This function is for internal use only. diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpframe.xml gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpframe.xml --- gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpframe.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpframe.xml 2005-06-27 00:18:46.000000000 +0200 @@ -79,7 +79,7 @@ <anchor id="gimp-frame-new"/>gimp_frame_new () -gimp_frame_newGtkWidget* gimp_frame_new (const gchar *label); +gimp_frame_newGtkWidget* gimp_frame_new (const gchar *label); Creates a GimpFrame widget. A GimpFrame is a HIG-compliant variant of GtkFrame. It doesn't render a frame at all but diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpintcombobox.xml gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpintcombobox.xml --- gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpintcombobox.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpintcombobox.xml 2005-06-27 00:18:46.000000000 +0200 @@ -90,7 +90,7 @@ <anchor id="gimp-int-combo-box-new"/>gimp_int_combo_box_new () -gimp_int_combo_box_newGtkWidget* gimp_int_combo_box_new (const gchar *first_label, +gimp_int_combo_box_newGtkWidget* gimp_int_combo_box_new (const gchar *first_label, gint first_value, ...); @@ -116,7 +116,7 @@ <anchor id="gimp-int-combo-box-new-valist"/>gimp_int_combo_box_new_valist () -gimp_int_combo_box_new_valistGtkWidget* gimp_int_combo_box_new_valist (const gchar *first_label, +gimp_int_combo_box_new_valistGtkWidget* gimp_int_combo_box_new_valist (const gchar *first_label, gint first_value, va_list values); @@ -141,7 +141,7 @@ <anchor id="gimp-int-combo-box-new-array"/>gimp_int_combo_box_new_array () -gimp_int_combo_box_new_arrayGtkWidget* gimp_int_combo_box_new_array (gint n_values, +gimp_int_combo_box_new_arrayGtkWidget* gimp_int_combo_box_new_array (gint n_values, const gchar *labels[]); A variant of gimp_int_combo_box_new() that takes an array of labels. @@ -162,7 +162,7 @@ <anchor id="gimp-int-combo-box-prepend"/>gimp_int_combo_box_prepend () -gimp_int_combo_box_prependvoid gimp_int_combo_box_prepend (GimpIntComboBox *combo_box, +gimp_int_combo_box_prependvoid gimp_int_combo_box_prepend (GimpIntComboBox *combo_box, ...); This function provides a convenient way to prepend items to a @@ -184,7 +184,7 @@ <anchor id="gimp-int-combo-box-append"/>gimp_int_combo_box_append () -gimp_int_combo_box_appendvoid gimp_int_combo_box_append (GimpIntComboBox *combo_box, +gimp_int_combo_box_appendvoid gimp_int_combo_box_append (GimpIntComboBox *combo_box, ...); This function provides a convenient way to append items to a @@ -206,7 +206,7 @@ <anchor id="gimp-int-combo-box-set-active"/>gimp_int_combo_box_set_active () -gimp_int_combo_box_set_activegboolean gimp_int_combo_box_set_active (GimpIntComboBox *combo_box, +gimp_int_combo_box_set_activegboolean gimp_int_combo_box_set_active (GimpIntComboBox *combo_box, gint value); Looks up the item that belongs to the given value and makes it the @@ -228,7 +228,7 @@ <anchor id="gimp-int-combo-box-get-active"/>gimp_int_combo_box_get_active () -gimp_int_combo_box_get_activegboolean gimp_int_combo_box_get_active (GimpIntComboBox *combo_box, +gimp_int_combo_box_get_activegboolean gimp_int_combo_box_get_active (GimpIntComboBox *combo_box, gint *value); Retrieves the value of the selected (active) item in the combo_box. @@ -249,7 +249,7 @@ <anchor id="gimp-int-combo-box-connect"/>gimp_int_combo_box_connect () -gimp_int_combo_box_connectgulong gimp_int_combo_box_connect (GimpIntComboBox *combo_box, +gimp_int_combo_box_connectgulong gimp_int_combo_box_connect (GimpIntComboBox *combo_box, gint value, GCallback callback, gpointer data); diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpintstore.xml gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpintstore.xml --- gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpintstore.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpintstore.xml 2005-06-27 00:18:46.000000000 +0200 @@ -86,7 +86,7 @@ <anchor id="gimp-int-store-new"/>gimp_int_store_new () -gimp_int_store_newGtkListStore* gimp_int_store_new (void); +gimp_int_store_newGtkListStore* gimp_int_store_new (void); Creates a GtkListStore with a number of useful columns. GimpIntStore is especially useful if the items you want to store @@ -101,7 +101,7 @@ <anchor id="gimp-int-store-lookup-by-value"/>gimp_int_store_lookup_by_value () -gimp_int_store_lookup_by_valuegboolean gimp_int_store_lookup_by_value (GtkTreeModel *model, +gimp_int_store_lookup_by_valuegboolean gimp_int_store_lookup_by_value (GtkTreeModel *model, gint value, GtkTreeIter *iter); diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpoffsetarea.xml gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpoffsetarea.xml --- gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpoffsetarea.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpoffsetarea.xml 2005-06-27 00:18:47.000000000 +0200 @@ -152,7 +152,7 @@ <anchor id="gimp-offset-area-set-pixbuf"/>gimp_offset_area_set_pixbuf () -gimp_offset_area_set_pixbufvoid gimp_offset_area_set_pixbuf (GimpOffsetArea *offset_area, +gimp_offset_area_set_pixbufvoid gimp_offset_area_set_pixbuf (GimpOffsetArea *offset_area, GdkPixbuf *pixbuf); Sets the pixbuf which represents the original image/drawable which diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml --- gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml 2005-06-27 00:18:47.000000000 +0200 @@ -348,7 +348,7 @@ <anchor id="gimp-preview-area-set-offsets"/>gimp_preview_area_set_offsets () -gimp_preview_area_set_offsetsvoid gimp_preview_area_set_offsets (GimpPreviewArea *area, +gimp_preview_area_set_offsetsvoid gimp_preview_area_set_offsets (GimpPreviewArea *area, gint x, gint y); @@ -395,7 +395,7 @@ <anchor id="gimp-preview-area-set-max-size"/>gimp_preview_area_set_max_size () -gimp_preview_area_set_max_sizevoid gimp_preview_area_set_max_size (GimpPreviewArea *area, +gimp_preview_area_set_max_sizevoid gimp_preview_area_set_max_size (GimpPreviewArea *area, gint width, gint height); @@ -419,7 +419,7 @@ <anchor id="gimp-preview-area-menu-popup"/>gimp_preview_area_menu_popup () -gimp_preview_area_menu_popupvoid gimp_preview_area_menu_popup (GimpPreviewArea *area, +gimp_preview_area_menu_popupvoid gimp_preview_area_menu_popup (GimpPreviewArea *area, GdkEventButton *event); Creates a popup menu that allows to configure the size and type of diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimppreview.xml gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimppreview.xml --- gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimppreview.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimppreview.xml 2005-06-27 00:18:47.000000000 +0200 @@ -114,7 +114,7 @@ <anchor id="gimp-preview-get-update"/>gimp_preview_get_update () -gimp_preview_get_updategboolean gimp_preview_get_update (GimpPreview *preview); +gimp_preview_get_updategboolean gimp_preview_get_update (GimpPreview *preview); @@ -130,7 +130,7 @@ <anchor id="gimp-preview-set-update"/>gimp_preview_set_update () -gimp_preview_set_updatevoid gimp_preview_set_update (GimpPreview *preview, +gimp_preview_set_updatevoid gimp_preview_set_update (GimpPreview *preview, gboolean update); Sets the state of the "Preview" check button. @@ -148,7 +148,7 @@ <anchor id="gimp-preview-set-bounds"/>gimp_preview_set_bounds () -gimp_preview_set_boundsvoid gimp_preview_set_bounds (GimpPreview *preview, +gimp_preview_set_boundsvoid gimp_preview_set_bounds (GimpPreview *preview, gint xmin, gint ymin, gint xmax, @@ -179,7 +179,7 @@ <anchor id="gimp-preview-get-size"/>gimp_preview_get_size () -gimp_preview_get_sizevoid gimp_preview_get_size (GimpPreview *preview, +gimp_preview_get_sizevoid gimp_preview_get_size (GimpPreview *preview, gint *width, gint *height); @@ -200,7 +200,7 @@ <anchor id="gimp-preview-get-position"/>gimp_preview_get_position () -gimp_preview_get_positionvoid gimp_preview_get_position (GimpPreview *preview, +gimp_preview_get_positionvoid gimp_preview_get_position (GimpPreview *preview, gint *x, gint *y); @@ -221,7 +221,7 @@ <anchor id="gimp-preview-draw"/>gimp_preview_draw () -gimp_preview_drawvoid gimp_preview_draw (GimpPreview *preview); +gimp_preview_drawvoid gimp_preview_draw (GimpPreview *preview); Calls the GimpPreview::draw method. GimpPreview itself doesn't implement a default draw method so the behaviour is determined by @@ -240,7 +240,7 @@ <anchor id="gimp-preview-draw-buffer"/>gimp_preview_draw_buffer () -gimp_preview_draw_buffervoid gimp_preview_draw_buffer (GimpPreview *preview, +gimp_preview_draw_buffervoid gimp_preview_draw_buffer (GimpPreview *preview, const guchar *buffer, gint rowstride); @@ -263,7 +263,7 @@ <anchor id="gimp-preview-invalidate"/>gimp_preview_invalidate () -gimp_preview_invalidatevoid gimp_preview_invalidate (GimpPreview *preview); +gimp_preview_invalidatevoid gimp_preview_invalidate (GimpPreview *preview); This function starts or renews a short low-priority timeout. When the timeout expires, the GimpPreview::invalidated signal is emitted @@ -286,7 +286,7 @@ <anchor id="gimp-preview-set-default-cursor"/>gimp_preview_set_default_cursor () -gimp_preview_set_default_cursorvoid gimp_preview_set_default_cursor (GimpPreview *preview, +gimp_preview_set_default_cursorvoid gimp_preview_set_default_cursor (GimpPreview *preview, GdkCursor *cursor); Sets the default mouse cursor for the preview. Note that this will diff -uraN gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpwidgets.xml gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpwidgets.xml --- gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpwidgets.xml 2005-05-08 23:43:11.000000000 +0200 +++ gimp-2.2.8/devel-docs/libgimpwidgets/xml/gimpwidgets.xml 2005-06-27 00:18:47.000000000 +0200 @@ -521,7 +521,7 @@ <anchor id="gimp-scale-entry-set-logarithmic"/>gimp_scale_entry_set_logarithmic () -gimp_scale_entry_set_logarithmicvoid gimp_scale_entry_set_logarithmic +gimp_scale_entry_set_logarithmicvoid gimp_scale_entry_set_logarithmic (GtkObject *adjustment, gboolean logarithmic); @@ -543,7 +543,7 @@ <anchor id="gimp-scale-entry-get-logarithmic"/>gimp_scale_entry_get_logarithmic () -gimp_scale_entry_get_logarithmicgboolean gimp_scale_entry_get_logarithmic +gimp_scale_entry_get_logarithmicgboolean gimp_scale_entry_get_logarithmic (GtkObject *adjustment); @@ -1027,7 +1027,7 @@ <anchor id="gimp-label-set-attributes"/>gimp_label_set_attributes () -gimp_label_set_attributesvoid gimp_label_set_attributes (GtkLabel *label, +gimp_label_set_attributesvoid gimp_label_set_attributes (GtkLabel *label, ...); Sets Pango attributes on a GtkLabel in a more convenient way than diff -uraN gimp-2.2.7/docs/gimprc.5.in gimp-2.2.8/docs/gimprc.5.in --- gimp-2.2.7/docs/gimprc.5.in 2005-05-08 23:42:56.000000000 +0200 +++ gimp-2.2.8/docs/gimprc.5.in 2005-06-27 00:18:27.000000000 +0200 @@ -54,13 +54,6 @@ desirable to put your swap file in "/tmp". This is a single folder. .TP -(stingy-memory-use no) - -There is always a tradeoff between memory usage and speed. In most cases, the -GIMP opts for speed over memory. However, if memory is a big issue, try to -enable this setting. Possible values are yes and no. - -.TP (num-processors 1) On multiprocessor machines, if GIMP has been compiled with --enable-mp this diff -uraN gimp-2.2.7/etc/gimprc gimp-2.2.8/etc/gimprc --- gimp-2.2.7/etc/gimprc 2005-05-08 23:42:56.000000000 +0200 +++ gimp-2.2.8/etc/gimprc 2005-06-27 00:18:27.000000000 +0200 @@ -29,12 +29,6 @@ # # (swap-path "${gimp_dir}") -# There is always a tradeoff between memory usage and speed. In most cases, -# the GIMP opts for speed over memory. However, if memory is a big issue, -# try to enable this setting. Possible values are yes and no. -# -# (stingy-memory-use no) - # On multiprocessor machines, if GIMP has been compiled with --enable-mp this # sets how many processors GIMP should use simultaneously. This is an # integer value. diff -uraN gimp-2.2.7/gimptool-win32.c.in gimp-2.2.8/gimptool-win32.c.in --- gimp-2.2.7/gimptool-win32.c.in 2004-01-22 09:34:37.000000000 +0100 +++ gimp-2.2.8/gimptool-win32.c.in 2005-06-06 17:59:20.000000000 +0200 @@ -140,24 +140,27 @@ if (path == NULL) path = g_find_program_in_path ("gimp.exe"); - r = strrchr (path, G_DIR_SEPARATOR); - if (r != NULL) + if (path != NULL) { - *r = '\0'; - if (strlen (path) >= 4 && - g_strcasecmp (r - 4, G_DIR_SEPARATOR_S "bin") == 0) + r = strrchr (path, G_DIR_SEPARATOR); + if (r != NULL) { - r[-4] = '\0'; - prefix = path; -#ifdef G_OS_WIN32 - if (slash == '/') + *r = '\0'; + if (strlen (path) >= 4 && + g_strcasecmp (r - 4, G_DIR_SEPARATOR_S "bin") == 0) { - /* Use forward slashes, less quoting trouble in Makefiles */ - while ((p = strchr (prefix, '\\')) != NULL) - *p = '/'; - } + r[-4] = '\0'; + prefix = path; +#ifdef G_OS_WIN32 + if (slash == '/') + { + /* Use forward slashes, less quoting trouble in Makefiles */ + while ((p = strchr (prefix, '\\')) != NULL) + *p = '/'; + } #endif - return prefix; + return prefix; + } } } diff -uraN gimp-2.2.7/gimp-zip.in gimp-2.2.8/gimp-zip.in --- gimp-2.2.7/gimp-zip.in 2004-04-15 23:09:23.000000000 +0200 +++ gimp-2.2.8/gimp-zip.in 2005-06-06 17:59:20.000000000 +0200 @@ -57,6 +57,9 @@ lib/libgimpwidgets-@GIMP_API_VERSION@.dll.a lib/gimpwidgets-@GIMP_API_VERSION@.lib lib/gimpwidgets.def +lib/pkgconfig/gimp-2.0.pc +lib/pkgconfig/gimpui-2.0.pc +lib/pkgconfig/gimpthumb-2.0.pc include/gimp-@GIMP_API_VERSION@ man/man1/gimptool-@GIMP_TOOL_VERSION@.1 EOF diff -uraN gimp-2.2.7/libgimpbase/gimpversion.h gimp-2.2.8/libgimpbase/gimpversion.h --- gimp-2.2.7/libgimpbase/gimpversion.h 2005-04-11 11:44:09.000000000 +0200 +++ gimp-2.2.8/libgimpbase/gimpversion.h 2005-06-06 19:07:34.000000000 +0200 @@ -11,8 +11,8 @@ #define GIMP_MAJOR_VERSION (2) #define GIMP_MINOR_VERSION (2) -#define GIMP_MICRO_VERSION (7) -#define GIMP_VERSION "2.2.7" +#define GIMP_MICRO_VERSION (8) +#define GIMP_VERSION "2.2.8" #define GIMP_API_VERSION "2.0" #define GIMP_CHECK_VERSION(major, minor, micro) \ (GIMP_MAJOR_VERSION > (major) || \ diff -uraN gimp-2.2.7/libgimpcolor/gimpcolor.def gimp-2.2.8/libgimpcolor/gimpcolor.def --- gimp-2.2.7/libgimpcolor/gimpcolor.def 2004-07-26 20:17:42.000000000 +0200 +++ gimp-2.2.8/libgimpcolor/gimpcolor.def 2005-06-26 21:17:58.000000000 +0200 @@ -57,6 +57,7 @@ gimp_rgba_distance gimp_rgba_get_uchar gimp_rgba_multiply + gimp_rgba_parse_css gimp_rgba_set gimp_rgba_set_uchar gimp_rgba_subtract diff -uraN gimp-2.2.7/libgimpwidgets/gimpoffsetarea.c gimp-2.2.8/libgimpwidgets/gimpoffsetarea.c --- gimp-2.2.7/libgimpwidgets/gimpoffsetarea.c 2004-11-09 01:40:25.000000000 +0100 +++ gimp-2.2.8/libgimpwidgets/gimpoffsetarea.c 2005-06-06 17:59:22.000000000 +0200 @@ -461,17 +461,24 @@ h = widget->allocation.height + 2; } + w = MAX (w, 1); + h = MAX (h, 1); + if (pixbuf) { - GdkGC *gc = gdk_gc_new (widget->window); + GdkGC *gc = gdk_gc_new (widget->window); + gint line = MIN (3, MIN (w, h)); gdk_gc_set_function (gc, GDK_INVERT); - gdk_gc_set_line_attributes (gc, 3, + gdk_gc_set_line_attributes (gc, line, GDK_LINE_SOLID, GDK_CAP_BUTT, GDK_JOIN_ROUND); gdk_draw_rectangle (widget->window, gc, FALSE, - x + 1, y + 1, w - 3, h - 3); + x + line / 2, + y + line / 2, + MAX (w - line, 1), + MAX (h - line, 1)); g_object_unref (gc); } diff -uraN gimp-2.2.7/NEWS gimp-2.2.8/NEWS --- gimp-2.2.7/NEWS 2005-05-08 23:33:02.000000000 +0200 +++ gimp-2.2.8/NEWS 2005-06-23 19:15:07.000000000 +0200 @@ -6,6 +6,25 @@ released as GIMP version 2.4. +Bugs fixed in GIMP 2.2.8 +======================== +- fixed possible crash in plug-ins-query PDB function +- fixes to Script-Fu server mode on Win32 +- fixed possible crash in win32 gimptool variant +- plugged a tiny memleak in the image display code +- plugged a tiny memleak in libgimpwidgets +- attempt to fix calling the web-browser on win32 (bug #171200) +- fixed loading of images in help-browser plug-in on win32 +- fixed zoom offsets if dot-for-dot mode is disabled (bug #306476) +- fixes to Gfig parasite loading +- disabled buggy gimprc option stingy-memory-use (bug #306617) +- don't try to create a preview for a non-existant image file (bug #307672) +- fixed bug in Retinex plug-in (bug #157915) +- fixed bug in Newsprint plug-in (bug #161573) +- fixed bug in Shift plug-in (bug #308748) +- fixed bug in Grid plug-in (bug #308754) + + Bugs fixed in GIMP 2.2.7 ======================== - update layer previews on colormap changes (bug #301033) diff -uraN gimp-2.2.7/plug-ins/bmp/bmpwrite.c gimp-2.2.8/plug-ins/bmp/bmpwrite.c --- gimp-2.2.7/plug-ins/bmp/bmpwrite.c 2004-11-02 13:00:24.000000000 +0100 +++ gimp-2.2.8/plug-ins/bmp/bmpwrite.c 2005-05-13 18:01:37.000000000 +0200 @@ -269,8 +269,8 @@ * ------ * ------- * ------ = ------ * inch 2.54 cm m inch */ - Bitmap_Head.biXPels = (long int) xresolution * 100.0 / 2.54; - Bitmap_Head.biYPels = (long int) yresolution * 100.0 / 2.54; + Bitmap_Head.biXPels = (long int) (xresolution * 100.0 / 2.54); + Bitmap_Head.biYPels = (long int) (yresolution * 100.0 / 2.54); } } diff -uraN gimp-2.2.7/plug-ins/common/grid.c gimp-2.2.8/plug-ins/common/grid.c --- gimp-2.2.7/plug-ins/common/grid.c 2004-11-14 03:45:11.000000000 +0100 +++ gimp-2.2.8/plug-ins/common/grid.c 2005-06-23 19:14:04.000000000 +0200 @@ -405,6 +405,7 @@ drawable, 0, 0, sx2 - sx1, sy2 - sy1, FALSE, FALSE); dest = g_new (guchar, (sx2 - sx1) * bytes); + for (y = sy1; y < sy2; y++) { gimp_pixel_rgn_get_row (&srcPR, dest, sx1, y, (sx2 - sx1)); @@ -413,32 +414,13 @@ while (y_offset < 0) y_offset += grid_cfg.hspace; - if ((y_offset + (grid_cfg.hwidth / 2)) % grid_cfg.hspace < grid_cfg.hwidth) + if ((y_offset + + (grid_cfg.hwidth / 2)) % grid_cfg.hspace < grid_cfg.hwidth) { for (x = sx1; x < sx2; x++) { - pix_composite (&dest[(x-sx1) * bytes], hcolor, bytes, blend, alpha); - } - } - - if ((y_offset + (grid_cfg.iwidth / 2)) % grid_cfg.hspace < grid_cfg.iwidth) - { - for (x = sx1; x < sx2; x++) - { - x_offset = grid_cfg.vspace + x - grid_cfg.voffset; - while (x_offset < 0) - x_offset += grid_cfg.vspace; - - if ((x_offset % grid_cfg.vspace >= grid_cfg.ispace - && - x_offset % grid_cfg.vspace < grid_cfg.ioffset) - || - (grid_cfg.vspace - (x_offset % grid_cfg.vspace) >= grid_cfg.ispace - && - grid_cfg.vspace - (x_offset % grid_cfg.vspace) < grid_cfg.ioffset)) - { - pix_composite (&dest[(x-sx1) * bytes], icolor, bytes, blend, alpha); - } + pix_composite (&dest[(x-sx1) * bytes], + hcolor, bytes, blend, alpha); } } @@ -448,24 +430,56 @@ while (x_offset < 0) x_offset += grid_cfg.vspace; - if ((x_offset + (grid_cfg.vwidth / 2)) % grid_cfg.vspace < grid_cfg.vwidth) + if ((x_offset + + (grid_cfg.vwidth / 2)) % grid_cfg.vspace < grid_cfg.vwidth) { - pix_composite (&dest[(x-sx1) * bytes], vcolor, bytes, blend, alpha); + pix_composite (&dest[(x-sx1) * bytes], + vcolor, bytes, blend, alpha); } - if ((x_offset + (grid_cfg.iwidth / 2)) % grid_cfg.vspace < grid_cfg.iwidth + if ((x_offset + + (grid_cfg.iwidth / 2)) % grid_cfg.vspace < grid_cfg.iwidth && ((y_offset % grid_cfg.hspace >= grid_cfg.ispace && y_offset % grid_cfg.hspace < grid_cfg.ioffset) || - (grid_cfg.hspace - (y_offset % grid_cfg.hspace) >= grid_cfg.ispace + (grid_cfg.hspace - + (y_offset % grid_cfg.hspace) >= grid_cfg.ispace && - grid_cfg.hspace - (y_offset % grid_cfg.hspace) < grid_cfg.ioffset))) + grid_cfg.hspace - + (y_offset % grid_cfg.hspace) < grid_cfg.ioffset))) { - pix_composite (&dest[(x-sx1) * bytes], icolor, bytes, blend, alpha); + pix_composite (&dest[(x-sx1) * bytes], + icolor, bytes, blend, alpha); } } + + if ((y_offset + + (grid_cfg.iwidth / 2)) % grid_cfg.hspace < grid_cfg.iwidth) + { + for (x = sx1; x < sx2; x++) + { + x_offset = grid_cfg.vspace + x - grid_cfg.voffset; + while (x_offset < 0) + x_offset += grid_cfg.vspace; + + if ((x_offset % grid_cfg.vspace >= grid_cfg.ispace + && + x_offset % grid_cfg.vspace < grid_cfg.ioffset) + || + (grid_cfg.vspace - + (x_offset % grid_cfg.vspace) >= grid_cfg.ispace + && + grid_cfg.vspace - + (x_offset % grid_cfg.vspace) < grid_cfg.ioffset)) + { + pix_composite (&dest[(x-sx1) * bytes], + icolor, bytes, blend, alpha); + } + } + } + if (preview) { memcpy (buffer + (y - sy1) * (sx2 - sx1) * bytes, diff -uraN gimp-2.2.7/plug-ins/common/newsprint.c gimp-2.2.8/plug-ins/common/newsprint.c --- gimp-2.2.7/plug-ins/common/newsprint.c 2005-04-19 17:18:59.000000000 +0200 +++ gimp-2.2.8/plug-ins/common/newsprint.c 2005-06-23 19:00:06.000000000 +0200 @@ -59,7 +59,7 @@ #ifdef RCSID -static char rcsid[] = "$Id: newsprint.c,v 1.69.2.1 2005/04/18 19:07:24 yosh Exp $"; +static char rcsid[] = "$Id: newsprint.c,v 1.69.2.2 2005/06/21 22:11:36 weskaggs Exp $"; #endif #define VERSION "v0.60" @@ -1863,16 +1863,12 @@ spotfn_list[rf].thresh = spot2thresh (rf, width); thresh[0] = spotfn_list[rf].thresh; - /* optimisation: only use separate threshold matrices if the - * spot functions are actually different */ ASRT (gf); - if (!spotfn_list[gf].thresh) - spotfn_list[gf].thresh = spot2thresh (gf, width); + spotfn_list[gf].thresh = spot2thresh (gf, width); thresh[1] = spotfn_list[gf].thresh; ASRT (bf); - if (!spotfn_list[bf].thresh) - spotfn_list[bf].thresh = spot2thresh (bf, width); + spotfn_list[bf].thresh = spot2thresh (bf, width); thresh[2] = spotfn_list[bf].thresh; if (colourspace == CS_CMYK) @@ -1880,8 +1876,7 @@ rot[3] = DEG2RAD (pvals.gry_ang); gf = pvals.gry_spotfn; ASRT (gf); - if (!spotfn_list[gf].thresh) - spotfn_list[gf].thresh = spot2thresh (gf, width); + spotfn_list[gf].thresh = spot2thresh (gf, width); thresh[3] = spotfn_list[gf].thresh; } } diff -uraN gimp-2.2.7/plug-ins/common/retinex.c gimp-2.2.8/plug-ins/common/retinex.c --- gimp-2.2.7/plug-ins/common/retinex.c 2005-01-18 11:07:02.000000000 +0100 +++ gimp-2.2.8/plug-ins/common/retinex.c 2005-06-23 19:00:06.000000000 +0200 @@ -657,6 +657,7 @@ g_warning ("Failed to allocate memory"); return; } + memset (dst, 0, size * sizeof (gfloat)); channelsize = (width * height); in = (gfloat *) g_try_malloc (channelsize * sizeof (gfloat)); diff -uraN gimp-2.2.7/plug-ins/common/shift.c gimp-2.2.8/plug-ins/common/shift.c --- gimp-2.2.7/plug-ins/common/shift.c 2004-12-27 20:42:16.000000000 +0100 +++ gimp-2.2.8/plug-ins/common/shift.c 2005-06-23 19:00:06.000000000 +0200 @@ -229,15 +229,10 @@ gint x1, y1, x2, y2; gint x, y; gint progress, max_progress; - gint amount; - gint xdist, ydist; + gint i, n = 0; + gint *offsets; GRand *gr; - gr = g_rand_new (); - - pft = gimp_pixel_fetcher_new (drawable, FALSE); - gimp_pixel_fetcher_set_edge_mode (pft, GIMP_PIXEL_FETCHER_EDGE_WRAP); - if (preview) { gimp_preview_get_position (preview, &x1, &y1); @@ -255,54 +250,71 @@ progress = 0; max_progress = width * height; - amount = shvals.shift_amount; - /* Shift the image. It's a pretty simple algorithm. If horizontal is selected, then every row is shifted a random number of pixels in the range of -shift_amount/2 to shift_amount/2. The effect is - just reproduced with columns if vertical is selected. Vertical - has been added since 0.54 so that the user doesn't have to rotate - the image to do a vertical shift. - */ + just reproduced with columns if vertical is selected. + */ + + n = (shvals.orientation == HORIZONTAL) ? height : width; + + offsets = g_new (gint, n); + gr = g_rand_new (); + + for (i = 0; i < n; i++) + offsets[i] = g_rand_int_range (gr, + - (shvals.shift_amount + 1) / 2.0, + + (shvals.shift_amount + 1) / 2.0); + + g_rand_free (gr); + + pft = gimp_pixel_fetcher_new (drawable, FALSE); + gimp_pixel_fetcher_set_edge_mode (pft, GIMP_PIXEL_FETCHER_EDGE_WRAP); gimp_pixel_rgn_init (&dest_rgn, drawable, x1, y1, width, height, (preview == NULL), TRUE); + for (pr = gimp_pixel_rgns_register (1, &dest_rgn); pr != NULL; pr = gimp_pixel_rgns_process (pr)) { destline = dest_rgn.data; - if (shvals.orientation == VERTICAL) + switch (shvals.orientation) { - for (x = dest_rgn.x; x < dest_rgn.x + dest_rgn.w; x++) + case HORIZONTAL: + for (y = dest_rgn.y; y < dest_rgn.y + dest_rgn.h; y++) { dest = destline; - ydist = g_rand_int_range (gr, -(amount + 1) / 2.0, - (amount + 1) / 2.0 ); - for (y = dest_rgn.y; y < dest_rgn.y + dest_rgn.h; y++) + + for (x = dest_rgn.x; x < dest_rgn.x + dest_rgn.w; x++) { - gimp_pixel_fetcher_get_pixel (pft, x, y + ydist, dest); - dest += dest_rgn.rowstride; + gimp_pixel_fetcher_get_pixel (pft, + x + offsets[y - y1], y, dest); + dest += bytes; } - destline += bytes; + + destline += dest_rgn.rowstride; } - } - else - { - for (y = dest_rgn.y; y < dest_rgn.y + dest_rgn.h; y++) + break; + + case VERTICAL: + for (x = dest_rgn.x; x < dest_rgn.x + dest_rgn.w; x++) { dest = destline; - xdist = g_rand_int_range (gr, -(amount + 1) / 2.0, - (amount + 1) / 2.0); - for (x = dest_rgn.x; x < dest_rgn.x + dest_rgn.w; x++) + + for (y = dest_rgn.y; y < dest_rgn.y + dest_rgn.h; y++) { - gimp_pixel_fetcher_get_pixel (pft, x + xdist, y, dest); - dest += bytes; + gimp_pixel_fetcher_get_pixel (pft, + x, y + offsets[x - x1], dest); + dest += dest_rgn.rowstride; } - destline += dest_rgn.rowstride; + + destline += bytes; } + break; } + if (preview) { gimp_drawable_preview_draw_region (GIMP_DRAWABLE_PREVIEW (preview), @@ -316,16 +328,15 @@ } gimp_pixel_fetcher_destroy (pft); + g_free (offsets); - if (!preview) + if (! preview) { /* update the region */ gimp_drawable_flush (drawable); gimp_drawable_merge_shadow (drawable->drawable_id, TRUE); gimp_drawable_update (drawable->drawable_id, x1, y1, width, height); } - - g_rand_free (gr); } static gboolean @@ -370,8 +381,11 @@ G_CALLBACK (gimp_radio_button_update), &shvals.orientation, shvals.orientation, - _("Shift _horizontally"), HORIZONTAL, &horizontal, - _("Shift _vertically"), VERTICAL, &vertical, + _("Shift _horizontally"), + HORIZONTAL, &horizontal, + + _("Shift _vertically"), + VERTICAL, &vertical, NULL); gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0); diff -uraN gimp-2.2.7/plug-ins/common/webbrowser.c gimp-2.2.8/plug-ins/common/webbrowser.c --- gimp-2.2.7/plug-ins/common/webbrowser.c 2003-11-16 23:57:07.000000000 +0100 +++ gimp-2.2.8/plug-ins/common/webbrowser.c 2005-06-06 17:59:22.000000000 +0200 @@ -121,7 +121,7 @@ { #ifdef G_OS_WIN32 - return ((gint) ShellExecute (HWND_DESKTOP, "open", url, NULL, NULL, SW_SHOWNORMAL) > 32); + return ((gint) ShellExecute (GetDesktopWindow(), "open", url, NULL, NULL, SW_SHOW) > 32); #else diff -uraN gimp-2.2.7/plug-ins/gfig/gfig.c gimp-2.2.8/plug-ins/gfig/gfig.c --- gimp-2.2.7/plug-ins/gfig/gfig.c 2004-12-13 20:21:48.000000000 +0100 +++ gimp-2.2.8/plug-ins/gfig/gfig.c 2005-06-06 18:00:19.000000000 +0200 @@ -740,31 +740,36 @@ GimpParasite *parasite; GFigObj *gfig; + parasite = gimp_drawable_parasite_find (gfig_context->drawable_id, "gfig"); + if (! parasite) + return NULL; + fname = gimp_temp_name ("gfigtmp"); + fp = fopen (fname, "w"); if (!fp) { - g_message (_("Error trying to open temp file '%s'for parasite loading.\n"), fname); + g_message (_("Error trying to open temporary file '%s' " + "for parasite loading: %s"), + gimp_filename_to_utf8 (fname), g_strerror (errno)); return NULL; } - parasite = gimp_drawable_parasite_find (gfig_context->drawable_id, "gfig"); - - if (!parasite) - return NULL; - fwrite (gimp_parasite_data (parasite), sizeof (guchar), gimp_parasite_data_size (parasite), fp); + fclose (fp); gimp_parasite_free (parasite); - fclose (fp); gfig = gfig_load (fname, "(none)"); + unlink (fname); - return (gfig); + g_free (fname); + + return gfig; } void diff -uraN gimp-2.2.7/plug-ins/helpbrowser/dialog.c gimp-2.2.8/plug-ins/helpbrowser/dialog.c --- gimp-2.2.7/plug-ins/helpbrowser/dialog.c 2005-02-12 14:37:16.000000000 +0100 +++ gimp-2.2.8/plug-ins/helpbrowser/dialog.c 2005-06-06 17:59:22.000000000 +0200 @@ -557,7 +557,11 @@ { gint fd; +#ifdef G_OS_WIN32 + fd = open (filename, O_RDONLY|O_BINARY); +#else fd = open (filename, O_RDONLY); +#endif if (fd != -1) { diff -uraN gimp-2.2.7/plug-ins/helpbrowser/Makefile.am gimp-2.2.8/plug-ins/helpbrowser/Makefile.am --- gimp-2.2.7/plug-ins/helpbrowser/Makefile.am 2004-03-09 02:37:49.000000000 +0100 +++ gimp-2.2.8/plug-ins/helpbrowser/Makefile.am 2005-06-06 17:59:22.000000000 +0200 @@ -6,6 +6,12 @@ libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +if OS_WIN32 +mwindows = -mwindows +endif + +AM_LDFLAGS = $(mwindows) + libexecdir = $(gimpplugindir)/plug-ins libexec_PROGRAMS = helpbrowser diff -uraN gimp-2.2.7/plug-ins/helpbrowser/Makefile.in gimp-2.2.8/plug-ins/helpbrowser/Makefile.in --- gimp-2.2.7/plug-ins/helpbrowser/Makefile.in 2005-04-11 11:57:57.000000000 +0200 +++ gimp-2.2.8/plug-ins/helpbrowser/Makefile.in 2005-06-26 21:28:25.000000000 +0200 @@ -376,6 +376,10 @@ libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +@OS_WIN32_TRUE@mwindows = -mwindows + +AM_LDFLAGS = $(mwindows) + libexec_PROGRAMS = helpbrowser helpbrowser_SOURCES = \ diff -uraN gimp-2.2.7/plug-ins/script-fu/Makefile.am gimp-2.2.8/plug-ins/script-fu/Makefile.am --- gimp-2.2.7/plug-ins/script-fu/Makefile.am 2004-11-17 21:02:23.000000000 +0100 +++ gimp-2.2.8/plug-ins/script-fu/Makefile.am 2005-05-13 18:01:41.000000000 +0200 @@ -9,7 +9,7 @@ if OS_WIN32 mwindows = -mwindows -WINSOCK_LIBS = -lwsock32 +WINSOCK_LIBS = -lws2_32 endif AM_LDFLAGS = $(mwindows) diff -uraN gimp-2.2.7/plug-ins/script-fu/Makefile.in gimp-2.2.8/plug-ins/script-fu/Makefile.in --- gimp-2.2.7/plug-ins/script-fu/Makefile.in 2005-04-11 11:55:34.000000000 +0200 +++ gimp-2.2.8/plug-ins/script-fu/Makefile.in 2005-06-26 21:28:27.000000000 +0200 @@ -378,7 +378,7 @@ libgimpprocbrowser = $(top_builddir)/plug-ins/dbbrowser/libgimpprocbrowser.la @OS_WIN32_TRUE@mwindows = -mwindows -@OS_WIN32_TRUE@WINSOCK_LIBS = -lwsock32 +@OS_WIN32_TRUE@WINSOCK_LIBS = -lws2_32 AM_LDFLAGS = $(mwindows) diff -uraN gimp-2.2.7/plug-ins/script-fu/script-fu-server.c gimp-2.2.8/plug-ins/script-fu/script-fu-server.c --- gimp-2.2.7/plug-ins/script-fu/script-fu-server.c 2004-09-21 18:06:50.000000000 +0200 +++ gimp-2.2.8/plug-ins/script-fu/script-fu-server.c 2005-05-13 18:01:41.000000000 +0200 @@ -26,7 +26,6 @@ #include #include #include -#include #include #include @@ -34,15 +33,15 @@ #include #else #include +#ifdef HAVE_SYS_SELECT_H +#include +#endif /* HAVE_SYS_SELECT_H */ #include #include #include +#include #endif -#ifdef HAVE_SYS_SELECT_H -#include -#endif /* HAVE_SYS_SELECT_H */ - #include #include "libgimp/gimp.h" @@ -53,6 +52,11 @@ #include "siod-wrapper.h" #include "script-fu-server.h" +#ifdef G_OS_WIN32 +#define CLOSESOCKET(fd) closesocket(fd) +#else +#define CLOSESOCKET(fd) close(fd) +#endif #define COMMAND_HEADER 3 #define RESPONSE_HEADER 4 @@ -93,7 +97,7 @@ #define CMD_LEN_H_BYTE 1 #define CMD_LEN_L_BYTE 2 -#define ERROR 1 +#define ERROR_BYTE 1 #define RSP_LEN_H_BYTE 2 #define RSP_LEN_L_BYTE 3 @@ -136,7 +140,7 @@ static void response_callback (GtkWidget *widget, gint response_id, gpointer data); - +static void print_socket_api_error (const gchar *api_name); /* * Local variables @@ -248,7 +252,7 @@ server_log ("Server: disconnect from host %s.\n", (gchar *) value); - close (fd); + CLOSESOCKET (fd); /* Invalidate the file descriptor for pending commands from the disconnected client. */ @@ -291,7 +295,7 @@ if (select (FD_SETSIZE, &fds, NULL, NULL, tvp) < 0) { - perror ("select"); + print_socket_api_error ("select"); return; } @@ -307,7 +311,7 @@ if (new < 0) { - perror ("accept"); + print_socket_api_error ("accept"); return; } @@ -335,7 +339,7 @@ if (listen (server_sock, 5) < 0) { - perror ("listen"); + print_socket_api_error ("listen"); return; } @@ -415,24 +419,24 @@ } buffer[MAGIC_BYTE] = MAGIC; - buffer[ERROR] = error ? TRUE : FALSE; + buffer[ERROR_BYTE] = error ? TRUE : FALSE; buffer[RSP_LEN_H_BYTE] = (guchar) (response_len >> 8); buffer[RSP_LEN_L_BYTE] = (guchar) (response_len & 0xFF); /* Write the response to the client */ for (i = 0; i < RESPONSE_HEADER; i++) - if (cmd->filedes > 0 && write (cmd->filedes, buffer + i, 1) < 0) + if (cmd->filedes > 0 && send (cmd->filedes, buffer + i, 1, 0) < 0) { /* Write error */ - perror ("write"); + print_socket_api_error ("send"); return FALSE; } for (i = 0; i < response_len; i++) - if (cmd->filedes > 0 && write (cmd->filedes, response + i, 1) < 0) + if (cmd->filedes > 0 && send (cmd->filedes, response + i, 1, 0) < 0) { /* Write error */ - perror ("write"); + print_socket_api_error ("send"); return FALSE; } @@ -453,13 +457,14 @@ for (i = 0; i < COMMAND_HEADER;) { - nbytes = read (filedes, buffer + i, COMMAND_HEADER - i); + nbytes = recv (filedes, buffer + i, COMMAND_HEADER - i, 0); if (nbytes < 0) { +#ifndef G_OS_WIN32 if (errno == EINTR) continue; - +#endif server_log ("Error reading command header.\n"); return -1; } @@ -481,13 +486,14 @@ for (i = 0; i < command_len;) { - nbytes = read (filedes, command + i, command_len - i); + nbytes = recv (filedes, command + i, command_len - i, 0); if (nbytes <= 0) { +#ifndef G_OS_WIN32 if (nbytes < 0 && errno == EINTR) continue; - +#endif server_log ("Error reading command. Read %d out of %d bytes.\n", i, command_len); g_free (command); @@ -542,7 +548,7 @@ } else { - perror ("Can't initialize the Winsock DLL"); + print_socket_api_error ("WSAStartup"); gimp_quit (); } } @@ -552,7 +558,7 @@ sock = socket (PF_INET, SOCK_STREAM, 0); if (sock < 0) { - perror ("socket"); + print_socket_api_error ("socket"); gimp_quit (); } @@ -565,7 +571,7 @@ if (bind (sock, (struct sockaddr *) &name, sizeof (name)) < 0) { - perror ("bind"); + print_socket_api_error ("bind"); gimp_quit (); } @@ -601,7 +607,7 @@ static void server_quit (void) { - close (server_sock); + CLOSESOCKET (server_sock); if (clients) { @@ -700,3 +706,181 @@ gtk_widget_destroy (widget); } + +static void +print_socket_api_error (const gchar *api_name) +{ +#ifdef G_OS_WIN32 + /* Yes, this functionality really belongs to GLib. */ + const gchar *emsg; + gchar unk[100]; + int number = WSAGetLastError (); + + switch (number) + { + case WSAEINTR: + emsg = "Interrupted function call"; + break; + case WSAEACCES: + emsg = "Permission denied"; + break; + case WSAEFAULT: + emsg = "Bad address"; + break; + case WSAEINVAL: + emsg = "Invalid argument"; + break; + case WSAEMFILE: + emsg = "Too many open sockets"; + break; + case WSAEWOULDBLOCK: + emsg = "Resource temporarily unavailable"; + break; + case WSAEINPROGRESS: + emsg = "Operation now in progress"; + break; + case WSAEALREADY: + emsg = "Operation already in progress"; + break; + case WSAENOTSOCK: + emsg = "Socket operation on nonsocket"; + break; + case WSAEDESTADDRREQ: + emsg = "Destination address required"; + break; + case WSAEMSGSIZE: + emsg = "Message too long"; + break; + case WSAEPROTOTYPE: + emsg = "Protocol wrong type for socket"; + break; + case WSAENOPROTOOPT: + emsg = "Bad protocol option"; + break; + case WSAEPROTONOSUPPORT: + emsg = "Protocol not supported"; + break; + case WSAESOCKTNOSUPPORT: + emsg = "Socket type not supported"; + break; + case WSAEOPNOTSUPP: + emsg = "Operation not supported on transport endpoint"; + break; + case WSAEPFNOSUPPORT: + emsg = "Protocol family not supported"; + break; + case WSAEAFNOSUPPORT: + emsg = "Address family not supported by protocol family"; + break; + case WSAEADDRINUSE: + emsg = "Address already in use"; + break; + case WSAEADDRNOTAVAIL: + emsg = "Address not available"; + break; + case WSAENETDOWN: + emsg = "Network interface is not configured"; + break; + case WSAENETUNREACH: + emsg = "Network is unreachable"; + break; + case WSAENETRESET: + emsg = "Network dropped connection on reset"; + break; + case WSAECONNABORTED: + emsg = "Software caused connection abort"; + break; + case WSAECONNRESET: + emsg = "Connection reset by peer"; + break; + case WSAENOBUFS: + emsg = "No buffer space available"; + break; + case WSAEISCONN: + emsg = "Socket is already connected"; + break; + case WSAENOTCONN: + emsg = "Socket is not connected"; + break; + case WSAESHUTDOWN: + emsg = "Can't send after socket shutdown"; + break; + case WSAETIMEDOUT: + emsg = "Connection timed out"; + break; + case WSAECONNREFUSED: + emsg = "Connection refused"; + break; + case WSAEHOSTDOWN: + emsg = "Host is down"; + break; + case WSAEHOSTUNREACH: + emsg = "Host is unreachable"; + break; + case WSAEPROCLIM: + emsg = "Too many processes"; + break; + case WSASYSNOTREADY: + emsg = "Network subsystem is unavailable"; + break; + case WSAVERNOTSUPPORTED: + emsg = "Winsock.dll version out of range"; + break; + case WSANOTINITIALISED: + emsg = "Successful WSAStartup not yet performed"; + break; + case WSAEDISCON: + emsg = "Graceful shutdown in progress"; + break; + case WSATYPE_NOT_FOUND: + emsg = "Class type not found"; + break; + case WSAHOST_NOT_FOUND: + emsg = "Host not found"; + break; + case WSATRY_AGAIN: + emsg = "Nonauthoritative host not found"; + break; + case WSANO_RECOVERY: + emsg = "This is a nonrecoverable error"; + break; + case WSANO_DATA: + emsg = "Valid name, no data record of requested type"; + break; + case WSA_INVALID_HANDLE: + emsg = "Specified event object handle is invalid"; + break; + case WSA_INVALID_PARAMETER: + emsg = "One or more parameters are invalid"; + break; + case WSA_IO_INCOMPLETE: + emsg = "Overlapped I/O event object not in signaled state"; + break; + case WSA_NOT_ENOUGH_MEMORY: + emsg = "Insufficient memory available"; + break; + case WSA_OPERATION_ABORTED: + emsg = "Overlapped operation aborted"; + break; + case WSAEINVALIDPROCTABLE: + emsg = "Invalid procedure table from service provider"; + break; + case WSAEINVALIDPROVIDER: + emsg = "Invalid service provider version number"; + break; + case WSAEPROVIDERFAILEDINIT: + emsg = "Unable to initialize a service provider"; + break; + case WSASYSCALLFAILURE: + emsg = "System call failure"; + break; + default: + sprintf (unk, "Unknown WinSock error %d", number); + emsg = unk; + break; + } + fprintf (stderr, "%s failed: %s\n", api_name, emsg); +#else + perror (api_name); +#endif +} diff -uraN gimp-2.2.7/po/bg.gmo gimp-2.2.8/po/bg.gmo --- gimp-2.2.7/po/bg.gmo 2005-02-24 11:33:59.000000000 +0100 +++ gimp-2.2.8/po/bg.gmo 2005-06-06 19:07:35.000000000 +0200 @@ -1,139 +1,189 @@ -Þ•<\0x@2y@-¬@7Ú@ A A -&A -1AiEiYisizii‡i¢i -§i ²i -¾i Éi×iKàiH,j!uj—j j«j)²j(Üj2k8kRkWkfklk …k’k ¤k ²k¼kÕkÞk ækók -ùk l ll,l ;lHl\laljl ol |lŠll ¢lÃlÌl#ål m!m'm.mKmFTm›m -»m -ÆmÑm!Öm!øm n &n+2n5^n”nšn n§n¹n ÊnØn6ÚnoooƒoŠoG’o%Úop pp -p %p1p :pDp#Vpzp ‚pp™pŸp¦p¯p ÁpËpÐp ãpðp÷p q qq/q6q>q Fq -Tq_q oq }q‹q Ÿq ­q»qËqáqòqûq rr!r0rBr Sr]rer krwr}rƒrŠr r §r -±r -¼rÇrÍrÓrÚrârêr ýr -sss s(s 7sAsJsRsesus{s -‚s s -›s ¦s ´s ÁsËs ÓsÝsäsês ósÿst t t+t 4t BtPtVt[tctitzttŸt4±t1æt/uHu^ufulu#}u ¡uÂuáu éuõu -üuv vv#v)v -0v;vAvGv\vdvhvnvrv -xv -ƒv Žvšv¡v ¨v¶viÉvL3xN€x=Ïx y y%y5yGy"]y -€y -‹y–y µy Ãy Ïy -Ýy -èy óy z z z$z)zžGz æzðz{{&{-E{Bs{-¶{+ä{ -|3|O|!k|e|có|W} i} s} €}.Œ})»}å}$~'~.~E~d~w~ ‹~ -—~ ¢~ ®~ -Ï~ Ú~û~  - +?%Rx‡Cœ<à,€:J€Q…€×€à€ö€? /K<{–¸O‚j‚z‚ ƒ‚ ‚›‚¬‚»‚*΂&ù‚F ƒ5gƒ9ƒc׃;„$T„y„:”„Ï„Bì„D/…Bt…r·…7*†'b†.Š†¹† φð† ‡0‡P‡o‡.Œ‡#»‡!߇ˆ ˆ( ˆHIˆP’ˆ"ãˆ$‰"+‰ N‰(o‰ ˜‰&¹‰>à‰5Š7UŠ8ŠÆŠ׊ìŠýŠ‹-‹+H‹*t‹Ÿ‹²‹!΋ ð‹Œ%(ŒNŒ&eŒ$ŒŒ,±Œ*ÞŒB L8[A”4Ö Ž( ŽLIŽ–Ž%ŸŽ$ÅŽ@êŽ2+8^4—?Ì (?Uj!y›=¹*÷-"‘.P‘6‘,¶‘ã‘7’.:’&i’ ’?ž’5Þ’“%“1D“v“*’“&½“0ä“8”N”b” -v” -”Œ” «”·”È”‚â”<e•¢–¿–Û–ò–÷–—3—*P—"{—ž—(¾—ç—ð—˜&˜/;˜k˜Š˜œ˜­˜ǘ И ñ˜ þ˜ - ™™ *™K™\™ -n™y™˜™K·™3š7šWš™fšT›U›f›Š~›b œlœ,ƒœ*°œÛœ,ûœ<(@eF¦0íHž(gž,ž½žÔž*ôž"Ÿ+BŸ"nŸ#‘ŸµŸ.ÔŸ5 !9 [[ · <× *¡~?¡*¾¡*é¡3¢2H¢6{¢2²¢å¢,ú¢'£ -A£L£k£0t£¥£ã Ú£ç£@ý£i>¤1¨¤Ú¤@÷¤8¥"K¥0n¥Ÿ¥½¥Õ¥ô¥ -¦*¦J¦8]¦8–¦ Ϧ$ܦ"§1$§5V§$Œ§"±§9Ô§:¨-I¨/w¨§¨*¨í¨ © ©4©$K©.p©7Ÿ©0ש>ª.Gª3vªªªªܪãªëª ««/«I«OY«©«¼«FÔ«¬t;¬°¬Ǭ&ܬ­­:­,K­Bx­ »­5Ü­$®"7®1Z®7Œ®6Ä®û®¯ ¯$/¯T¯ q¯’¯°¯¿¯ׯ ï¯ -û¯°!°B8°{°•°´° Ç°Qè°Q:±iŒ±ö± ²$²A´T´f´u´+…´±´Ï´7à´µ6µTµoµsµµ žµ «µB¹µüµ ¶¶,*¶2W¶0Š¶9»¶"õ¶&·&?·af·5È·*þ·*)¸@T¸*•¸HÀ¸@ ¹J¹h]¹Yƹ º3Aº+uº2¡º:Ôº»&%»'L»)t»ž»4±»"æ»2 ¼^<¼?›¼EÛ¼>!½D`½>¥½ä½&¾=+¾1i¾0›¾D̾4¿zF¿Á¿#QÀuÀ8“À2ÌÀ$ÿÀ$Á!7Á'YÁ1Á+³Á/ßÁ9Â3IÂ)}Â!§Â'ÉÂ1ñÂ+#Ã/OÃ9Ã3¹Ã)íÃ#Ä);Ä3eÄ-™Ä1ÇÄ;ùÄ55Å+kÅ!—Å'¹Å1áÅ+Æ/?Æ9oÆ3©Æ)ÝÆÇ"Ç;Ç;TÇÇ,­Ç$ÚÇ2ÿÇ"2È=UÈ7“ÈËÈ;çÈ;#É!_ÉÉ4žÉ)ÓÉ4ýÉ52ÊhhÊ%ÑÊ¡÷Ë™Ì)Í -DÍ -OÍ ZÍTgÍ+¼Í?èÍ-(Î<VÎ%“Î+¹ÎLåÎ<2Ï%oÏ+•Ï@ÁÏ'Ð=*Ð+hÐ?”Ð-ÔÐ?ÑNBÑ+‘Ñ ½ÑÊÑ êÑuøÑ -nÒ)yÒ £Ò°ÒÁÒÔÒ0äÒ3ÓIÓ]Ó uÓ3Ó -µÓÀÓ ÛÓüÓ"Ô 7Ô†AÔŠÈÔBSÕ –Õ£ÕÀÕHÏÕNÖsgÖ:ÛÖ×&+×R×=b×2 ×7Ó×3 Ø&?Ø6fØ%Ø$ÃØ-èØÙ-ÙMÙeÙ€Ù žÙ¬ÙÃÙãÙ -êÙ õÙ&Ú')ÚQÚ$kÚ<ÚÍÚ,æÚSÛ8gÛ Û±Û'ÃÛ ëÛ•ùÛPÜàÜöÜ Ý]Ý]wÝÕÝçÝ`ùÝvZÞÑÞáÞòÞ.ß23ßfß„ßN†ßÕßÞà -àà ëàx÷à:pá«áºáÑá(æá)â9âQâgâ]wâÕâ.ìâã 0ã<ãLã,\㠉㠕ã£ã¼ã Ëã ×ããã=÷ã5ä;ä Oä]ä mäŽä-ä#Ëä!ïä,å/>å!nå'å<¸å%õåæ--æ[æ*sæ(žæ0Çæ.øæ'ç 7ç AçKçcç uçç“ç²çÆçØç!êç èè*èBèZè&jè‘è¯è Áè Íè ×è åè éé &é&4é+[é‡éŸé¨é½éØéééýéê -+ê6êQê Yêcê1ê±êÆêÖêîêë#ë6ë Së_ë dërë-‚ë3°ë1äëAìtXìPÍìOí>ní­íÁí2ÕígîNpîM¿î ïï 9ïEï Tï`ïvïï¦ï¾ï Úï èïöïð%ð)ð?ð CðOð`ðsð †ð“ð¢ð0±ðâoõW¯ò…n ¤œÿmü“h‡[dZqº‡}*:06ÁP&üTÒ[X¹VM8¡j¢V·úgÞmÔ+¬Ú¯?ôuGü§ûF#"“6ßmUøG¿Ñ?7šçƒøº€Ýyf¥ÜÅÞÙ’žŒ×# Ò÷8ä¦pQ|¡½Ú¢yª†@Q:"þ¸¾Óro~î§t½3¥Ãa E‚]‰­ô ç.Š„L¸;Ç˶öï&¸ãÆÖ«?ùÊŽNˆ#±xzܵwu-ζÿ×Ú$¨iŽ¥B¿qu…ËóÄ‘ý‹Í˳%H³:l^£\†Åá=E;yÿ–C_2d­tã®Æ ¶"Z+Ažw«ƒ %çè– b‹ŸÜ›Â‹î­½ûµÙBúWÌn¤Jv2»£,ìL\ïH~ƒ-c ÉD‘',Ã!jS8‰OÂÕ,p¾SÓðC±r›ív/F{àÙõ/þCz-O÷t Û®FÌÍ´K—!ñ~4Î7ÑØ9ˆ@ÒÇ®ˆÈ.é „9LÀB¨ÈPX)o(2„A¾\k5R”sO0™.ëÀ&j'á s©(]eµÏHf ˜Mè5«x`ÑÞ· *l>Sße1²NQ¹¢RN°Ð{ž=¦/scZ<à´âi²(hAgàÕ€â3<••Öô¼íñꪓšæ´c`Š4h”¬aûŽÍ–^åRœV'𣜳’ÖðŸõЂ¡É¨Ô+npW™ÁK§—‚ÂÉã_09†_Á»Êªù xGPò%ä`š)˜ŸèvúêÅŠþ‡!øD¿ölÊÏE¤÷‘Yùd]° -=·DÈñæ1Ißý¹ä TóýÔ}rUIM>ìÝíÝ—’1¼KÏæ35غ¼ëkŒÎö‰¦>6I;©áYÕÄÛÆêïzŒwb$q›é^}gk˜ÃëUf°)…¬ìå$» Y @Je4*”±å7|bî Û™ó -ÄJ×TÐ<¯À•²Ìi{|©éaØÇÓ[ -òX€ -f, --no-fonts Do not load any fonts. - -h, --help Output this help. - -v, --version Output version information. -%d Layers%d layers%d minutes%d seconds(%0.3f, %0.3f, %0.3f)(invalid UTF-8 string)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)4:1 (400%)8:1 (800%)<%s>The GIMP - GNU Image Manipulation Program +Þ•­„%=ìJàc ác ëc +õc +d dd01dbdsd†dd¦d®d¶dÅd Êd…×d]eoeve…eŒee£e ¶eÀeÏeÞeðeff0fAfJfjf ~fˆf1˜f3Êf +þf gg &g +3g>gAPgJ’gÝgågÿghh0hHh +Qh\hmh†h h«h²hËhåhêh +ðhûh i i4i :i GiUi\i di qi}i …i ’imŸi jj j0j7jUj3kj!Ÿj Áj ËjÕjíjÿj,kIk \kjk€k•kªk ³kÁkÈkÏkÕkèk ÷klOljl +sl~l†lŒl “ll¸lÕl ålól ül +mm$m3mHm em†m"›m¾mÆmÏmàm èm +öm n +n!n#sJsSses vs€s ss¦s¶sÈsÛsësýs tt>t Nt [thtmt…t˜t±tÅtÛtîtuu 4u +BuMu +eupu ˆu–u ¬u¹u ÎuÛuöuÿuv#$v"Hvkvˆv&§vÎv ävðv,w#1wUw\w kwywŒw¦wÃwàwöwxx x ,x +6xAxWx`x fxrx „x’x§x¬x ¾x Êx Øxæxýxy%y9yLy_yvy†yšy¶yÑyÚyõy z +zz ,z:zMz +^ziz…z z™z z ¨zµz»z +ÁzOÌz +{ '{3{F{ +Y{ d{p{u{ „{ ‘{ž{¯{Ã{uÒ{H|ÌZ|'}/}8}G}P}`}u}&†}'­} Õ} ß}é} ø}~~~~#~5~R~g~p~†~~–~ž~ £~ °~¼~×~î~ +ó~þ~H!Oq vƒŠCš1Þ€ € +#€ +.€9€P€c€ {€(‰€ +²€½€ Ä€Ѐ߀î€"@V r6€ · Á Ï ð/‚A‚*R‚}‚Ž‚«‚´‚Ê‚Ü‚å‚õ‚ƒ ƒ&ƒ ,ƒ8ƒ>ƒOƒgƒwƒ +ƒ šƒ ¦ƒ³ƒă Ùƒçƒ îƒúƒ„#„@+„ l„ z„‡„¥„ ª„¶„Í„ á„ ë„÷„…'… =…K… c…o… +………¥…®…³…»… Ó…á…ö… †††:†W† ^† j† w†…†š†³†̆ á†î†ý†‡/‡E‡W‡k‡z‡ ‰‡•‡ ‡«‡ +°‡»‡ʇ Ú‡ä‡ý‡ ˆ#ˆ*ˆ =ˆIˆNˆ Tˆ`ˆrˆ†ˆ™ˆ ¬ˆ¶ˆ¿ˆ Ј ݈爉‰%‰ 7‰ D‰N‰ i‰ v‰‚‰ œ‰ ¨‰,´‰á‰Bõ‰8ŠJŠQŠcŠkŠtŠ +yŠ„Š ˜Š¦Š½Š ϊ܊‹ 7‹ A‹ M‹W‹_‹n‹‚‹’‹ ¡‹¯‹ ¸‹Æ‹Ù‹ î‹ ú‹ ŒŒ&.Œ,UŒ ‚ŒŒ +ŸŒªŒ½ŒÏŒጠ+çŒòŒúŒ  5!Acr‰™¶4ÓŽŽ Ž%Ž :ŽDŽLŽUŽ^ŽgŽoŽ +…ŽŽ¦Ž +¶Ž ÁŽ ËŽÙŽÝŽ÷Ž  $8S[q „’ §³ +ÆÑãÿ !)K!i#‹¯ Å +Ò"Ý‘‘#‘'‘,‘1‘A‘S‘d‘u‘‹‘ ‘´‘ Í‘ Ú‘è‘’ ’'’A’ S’ _’ k’u’’­’¿’Ó’ä’÷’“$“;“S“ s““—“ ¬“7¹“ñ“”$”+”B” X”e”w” ‹”˜” ¶”” +×” +â”í” õ”••• 1•=• +T•_••œ•®•É•å• – ––5–E–Y–n–‡–š–©–.ÖEò–8— I— W—d— |—Š— — œ— +¨—³—Å— Í—Ù—ë—˜˜#7˜[˜y˜ ˜™˜«˜ǘݘ#÷˜™9™ M™Z™m™Š™¡™$¼™á™š šš/šIš]š!uš—š³šÅš +Ìš ךäš ››%›7›L›_›v› +ˆ›“›­›Ç› á›í›=œ6FœS}œJÑœ5H[q ¡­ÃÞ öžž),ž2Vž‰ž4 Ÿ/@Ÿ pŸ|Ÿ‚Ÿ;‹Ÿ ÇŸÔŸäŸõŸ +  #( L  a  o |  + š ­ ½ Í Þ ý ¡#¡4¡M¡a¡f¡v¡+|¡¨¡ ®¡ »¡É¡Ï¡Ö¡Þ¡å¡ý¡¢ ¢!<¢^¢v¢’¢­¢Æ¢ã¢£££*£D£ K£X£ h£t£…£¢£!±£Ó£ç£ð£÷£ +ý£ ¤¤!¤<¤ +A¤ L¤ +X¤ c¤q¤Kz¤HƤA¥ŠQ¥!Ü¥ þ¥ § §§)&§1P§0‚§1³§(å§2¨A¨[¨`¨o¨x¨~¨‘¨ ª¨·¨ ɨ רá¨ú¨© ©© +© )© 7©A©Q© `©m©©†©© ”© ¡©¯©µ© Ç©è©ñ©# +ª.ªFªLªSªpªFyªÀª +ઠ+ëªöª ûª «!«!9« [« g«+s«5Ÿ«Õ«0Û« ¬¬¬+¬ <¬J¬6L¬oƒ¬ó¬õ¬ü¬G­%L­r­{­„­Œ­ +•­  ­ ¬­¶­ ¿­É­Ò­#ä­® ®®'®-®4®=®P®c®l®~® ®š® Ÿ®­® Ä®ήÖ® Ü®æ®ù® ¯9¯ ?¯L¯S¯\¯ {¯ˆ¯ ¯ š¯ ¤¯²¯Ư +ͯد à¯í¯õ¯° °,°2°A° `°l° +t°° °°¬° ¼°Ê° Þ° ì°ú° +±±*±@±P±b± s±±Ž±—±¨± ± +̱×±ݱì±²²)²C²T²m²~² ² š²¤² ¬²¶² ¼²Ȳײ ݲë²û²³³³"³ +³ 5³ +?³ +J³U³^³ f³p³v³|³‚³‰³‘³™³ ¬³¸³Ò³Ú³á³è³ð³ +´´9´H´P´X´n´ }´ Š´ –´ ´¥´«´¾´Ç´Ï´ â´ï´õ´µ µµ +µ %µ2µ Bµ Pµ +^µ iµ wµ „µ Žµ ›µ¨µ ¹µõ ˵Õµܵ +âµíµ öµ¶ ¶¶!¶ (¶6¶F¶M¶ V¶ c¶p¶ y¶ ‡¶•¶ ¤¶°¶öɶζÖ¶ å¶ ò¶ þ¶ · ·&·/·@·S·e·w··•·­·¿·4Ù·1¸/@¸p¸†¸–¸¶¸¾¸ĸظ#é¸ ¹.¹M¹]¹m¹u¹‡¹˜¹Ÿ¹¨¹¾¹ ϹÛ¹â¹ô¹ º +"º +-º +8ºCºIºOº_ºeº +lºwºˆºŽº—ºº¦º«ºÀºϺ׺Ûºáºåº +ëºöº +ýº »»»#» *»8»]K» ©¼ µ¼Á¼Ѽ%ã¼ ½X½!x½#š½¾½"Ô½ +÷½ +¾ ¾,¾1¾žO¾(î¾ ¿!¿5¿F¿<W¿#”¿¸¿,׿-À'2À6ZÀB‘À-ÔÀ+Á +.Á39ÁImÁ·Á!ÓÁeõÁc[¿Â-Ñ ÿ à Ã'+ÃfSÃaºÃ ÄV(Ä.Ä)®ÄØÄ$õÄ Å(Å/ÅFÅeÅxÅ ŒÅ=˜ÅAÖÅ +Æ #Æ /Æ"<Æ%_Æ …Æ +¦Æ ±ÆÒÆ ëÆ +÷ÆÇÇ )Ç 6Ç%CÇiÇjÈyÈ"ȲÈCÇÈ< ÉXHÉF¡É'èÉ%Ê,6Ê9cÊ:ÊQØÊ$*ËOË;hË:¤Ë:ßË Ì 'Ì4Ì=ÌSÌ?hÌ/¨Ì<ØÌDÍ–ZÍñÍ' Î4ÎDÎ MÎWÎ+hÎ.”Î(ÃÎìÎ ÏÏ#Ï*6Ï&aÏFˆÏ5ÏÏ9Ð5?ÐcuÐÙÐêÐ$Ñ(Ñ:CÑ~Ñ'”ѼÑBÙÑDÒBaÒr¤ÒÓ-2Ó `Ó7Ó'¹Ó+áÓK ÔZYÔ+´Ô.àÔÕ*Õ@ÕTÕ pÕ‘Õ °ÕÑÕñÕÖ.-Ö#\Ö€Ö'˜Ö%ÀÖ-æÖ!×)6×)`×'Š×*²×Ý× ò×ü×(ØH8ØPØ'ÒØ"úØ$Ù&BÙ$iÙ ŽÙ(¯Ù ØÙ&ùÙ( Ú&IÚ>pÚ#¯Ú5ÓÚ7 Û8AÛUzÛÐÛáÛöÛÜ!܉7ÜwÁÜ9ÝTÝ+cÝ*ݺÝÍÝ!éÝ Þ&Þ$CÞ,hÞ •Þ*¶Þ(áÞ& +ß51ß+gß“ß%ªßÐß7çß+à3Kà3à3³à1çà;áDUá8šá"Óá*öá6!â$Xâ7}â,µâ3ââ*ã;Aã*}ã9¨ãâãBúã=ä6Lä8ƒä%¼ä'âäA +å4Låå(–åm¿åL-æzæ%ƒæ$©æ-Îæ@üæ2=ç8pç4©ç?Þç è+è:èQègè+|è¨èÁèÐè.éèé16éhéqé!é)²éÜé=úé*8ê-cê.‘ê6Àê%÷ê,ëJë7ië.¡ë&Ðë ÷ë?ì5Eì{ìŒì1«ìÝì*ùì&$í0Kí8|íµíÉí +Ýí +èíóí îî/î‚IîÌîßîüîï8ïTïkïpïï¬ï*Éï"ôïð­7ð(åð_ñnòwòŠò©ò&ºò/áòóL0óN}óÌóÞóïó ô *ô 7ô +Eô0Pô3ôRµôUõ^õ qõ’õ£õ´õ +ÆõÑõðõKö3[öö¯öÅö™ÔöTn÷Ã÷Ô÷ï÷,øŠ4øb¿ø"ù,9ùfù,†ù<³ù@ðùF1ú0xúH©ú,òúû6û*Vû"û+¤û"Ðûóû ü#ü.7ü5fü!œü[¾üý-ý<Mý*Šý~µý*4þb_þ*Âþ3íþ.!ÿ6Pÿ2‡ÿºÿ,Ïÿüÿ +<Gf o0¯<à;Q h;v² ÇÔ@ê2+^in1Ø +@'h"{3ž0Ò!9#X#|" "à æ ó"6 LX*m%˜E¾IN^8q8ª ã%ð$";1^55Æ2ü$/"T9w:±-ì/ <J ‡ *¢ Í  æ  ó  +$+ +.P +7 +0· +>è +.' 3V Š ¢ ¼ Ð × ß #ñ - C -b    1¶ è ü ? P e ,ƒ ° Ê OÚ *=3U‰¢F¶ýt’©&¾å,-BZ 5¾$ô",<1i7›6Ó +'7$F<k¨ Åæ+<#\€#•¹HÙ7"Z(r ›)©(Ó(ü %2 +H +S^ r +~‰¤B»þ7 JQkQ½iyŒŸ²Ïáð+,J7[“1±ã 6QUo €*” ¿"Í ð$þ##$G#l#´(È"ñS*8~X·TBeF¨Bï27Gpð-<L,[2ˆ0»(ì9Oj-„"²&Õ,ü#) &M at 5Ö * !*7!b!D{!JÀ!. "0:"@k"I¬"Zö"3Q#N…#HÔ#U$!s$@•$ Ö$N÷$RF%4™%4Î%&h&Y& Ù&3ú&+.'2Z'6'Ä'"Ú''ý'%( <()H(1r(¤(4·("ì(M)2])^)?ï)E/*>u*D´*>ù*8+&X+=+1½+0ï+, ,DM,4’,,Ç,;ô,z0-«-';.#c.‡.8¥.2Þ./&/,E/!r/$”/¹/!Ì/'î/10+H0/t09¤03Þ0)1!<1'^11†1+¸1/ä1923N2)‚2#¬2)Ð23ú2-.31\3;Ž35Ê3+4!,4'N41v4+¨4/Ô4953>5)r5œ5"­5Ð5;é5%6,B6$o63”62È62û63.7"b7=…77Ã7û78;28Un8KÄ8”9ƒ¥9;):!e:?‡:Ç:NÐ:>;^;>{;8º;1ó;4%<)Z<4„<5¹<hï<%X=¡~> ?°? +Ë? Ö?Tã?+8@?d@-¤@<Ò@%A+5ALaA<®A%ëA+B@=B'~B=¦B+äB?C-PC?~CN¾C+ D,9DHfD/¯D ßDìD EuE +E›E)±E ÛEèEùE F(F*EFpFXƒFPÜF>-GAlGI®G6øGE/HLuHÂH ÞH0êH3IOI+cI.I*¾I,éIMJ-dJQ’J1äJK)K AK%MKsK‚K3šK +ÎKÙK ôKL"-L PL†ZLŠáL¡lM¢NB±N ôN •P¢P¿PHÎP[Q[sQXÏQN(RswR:ëR&S&;SbSsS4ƒS=¸S2öS7)T3aT&•T6¼T%óT$U->UlUƒU£U»UÖU ôUVV9V +@V KVXV'gVV$©V<ÎV W,$WSQW8¥WÞWïW'X )X•7XPÍXY4Y JY&WY(~Y]§Y]ZcZuZ`‡ZvèZ_[Oo[ ¿[Ì[.Þ[2 \@\^\N`\¯\¸] +º] Å]xÑ]:J^…^(”^½^Ô^(é^)_(<_e_}_(“_¼_]Ì_*`.A`p` …`‘`¡`(±`7Ú`a)+a,Ua ‚a Ža œa9½a÷ab'b?bWb/pb3 bÔbìb ûb c+c?c Sc_c nc=|cBºcýcd .dnw#­wDÑwx&x/:x2jxgxNyMTy"¢y0Åyöy)z2z JzVz-jz1˜zÊz äz.ðz2{)R{|{–{¥{ µ{Á{×{ñ{||;| Y|g| }| ‹|—|Ÿ|»|Û|î|ò|} }} )}6}I} \}i}z}‰}\˜}! Ò ±(Oèßb‘$"½µ°§…àÍÌ£+=Ÿ‘Ï?¬—ç]Sq.•Pæ™ܧ1`V/ºôål˜Ã;ø…æ£c\÷g<“ÀlRªEîoœ½˜F&r›üëüRÂÚ8qëg4¾ÿ ñŸ=© ®”Còb“LdÅ5otôG }#é¾¼6QÞš1°gÜc]›û†3^“…ž²Ó_™¥¼ÿ'X<PÉpçâW^ª£Ãÿ€Ñ|Lª^Wq|0~üÉDŽÕ ¾3ËìM»µëŒÙb ¾«ê(ÈtMÉý°s¬ÔuiS/yÏE¬,yœÅMDÙʹ«]’dÌ>` ×3À$²n·Ûp†:V+âi3ïAË6 +’W™dDúZ;`»§Æ>-Z„E¥X¹àûÔTÒBxfOÖ*ÄnG3j6C2[^Vj!ƒ˜ãâvI™¬Jãõ”‘ÄGó9©Hýº„„Iï)–iÕNwÙƒí‡ÎL þ?t­ŠÖïbá]ÞæK jðOÆKƒÐ¶Í,;TŽñ8‹Fç„ ,á貃íœh ×Ìwß +ÁMÖŽÚÐLA_HFû¢¸PK¤‹Al¦ê ñð'Ê”!îýªŠÎÓ·e‘ ‰Q +­Š¸HÚÍIH¥4|msîN}zUÐ`U‚"Qh§E~:Xúø"¦èŒ!†y¦9(ÛB? aYvf|Ymµ„ðໂTlâÏQŒU0ˆž œã/ãNgê¨:“x³óX\†7?i_˜ «NÑUSžúk…ýe8<x´>².³’JW: 'Ø÷Ç?í_{ÒP’ê 9¯ÛôȇD'Ý8xF 9n')ßÇò]¨“š¢‚ Wkå£Î‚€—øy +%õ¶>y,&å=ùÏóZ­1o&ˆ qÝËÿt$áì.¨"¡K2/ÓAh><r.Ðp´hÔŽdImi¶Ñ¼p@5d4ñ ¤-6¬×+Áš…´{¤–R0äÂQ”ÄÀöùe5Õ‹m9*œY©@cé±G­j—KB±*[«Ü-þ’q1uÂV2ŒÕüVe§4¼¯AÛÆç{~7‰%~wfù#2&[ŽH‰£¤Å: w˜Þ_h•2š³º‡ +×%zép¨a´Dg~}‰Sì €oÄ`¸CÆ%ðÇ¥€vŸ½›õµ·°þ7@=äC7vºX=t¹YŸÓ#öZ›*Á,å­z‰Tˆ7žuȸaOa4‹Ákæ\FÊÔ¦l÷JÑ!B(¦¡;–Oòm«Ý—¡Ù†@Iž‡é@Ò‹$ä;ß+Ú0Š¤ Ã6®ú}UÖËìu½¯/™%8BíŸ-”Ìá³n G¡¡©e{óÇ1-ÈzL¹RîfEn5û•©±‘M¶–—Êw)ªrvsTP®ÉØ"C{z#^•)Â$s÷Í\+5þïsŒ€¯Þö–؇c ÃJÝbu¢·®rJ¨ƒcëøÀäö¿¿Zùˆ[}ŠjÎ)*[š¿ à•o#òè.(xØ¥ôÜ<Rr¢a»\¢k Å›¿S|N0‚ˆY&fkõ%d Layers%d layers%d minutes%d seconds%s Channel Copy(%0.3f, %0.3f, %0.3f)(This console window will close in ten seconds) +(Unnamed Buffer)(Unnamed Template)(Varies)(invalid UTF-8 string)1 Layer1 layer15 degrees %s<%s>The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.A_ngleAbout The GIMPActionAddAdd LayerAdd Text LayerAdd text to the imageAdding theme '%s' (%s) -Advanced optionsAirbrushAirbrush with variable pressureAll FilesAll Files (*.*)Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAn_imationAngle:AppearanceAuthor:AutoloadAutomatically DetectedAvailable Types:B_rightness-Contrast...BackgroundBackground colorBackground color set to:Background: %d, %d, %dBlack & whiteBlack:BlueBlue:Brightness-ContrastBrushBrush EditorBrush FoldersBrush:BrushesBrushes MenuBucket FillBy ExtensionC_olumns:CancelCannot create folder '%s': %sCannot create previewChange Background ColorChange grid background colorChange perspective of the layer or selectionCircleCl_earClearClear Undo HistoryClear all textClear errorsClick to update preview -%s Click to force update even if preview is up-to-dateClose %sColo_rsColorColor:Columns:Comme_nt:CommentCon_trast:Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Confirm closing of unsa_ved imagesContinueContributions byConvertConvert imageCopyright:Could not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not start the GIMP help browser plug-in.Create a New ImageCreate a New LayerCreating folder '%s'...Crosshair onlyCurrent _StatusCurrent height:Current layer onlyCurrent statusCurrent width:Cursor _mode:Cursor re_ndering:Custom colorD_uplicate LayerDashedDate:Default GridDefault Image GridDefault _layer & channel preview size:Delete ObjectDelete TemplateDelete brushDelete colorDelete gradientDelete layerDelete paletteDelete saved options...Delete the selected templateDelete this imageDeleting "%s" failed: %sDescriptionDevicesDialogsDialogs MenuDistance:Do_n't saveDocument Histor_yDocument HistoryDocumentsDocuments MenuDouble dashedDuplicate layerE_xtra SmallEdge-De_tectEditEdit brushEdit colorEdit gradientEdit paletteEnable to display tooltips.EnormousEnter a name for the saved optionsEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersErase to background or transparencyEraserError Co_nsoleError ConsoleError saving XCF file: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%sErrorsEventEx_tra LargeExposure:ExtensionsFancyFile existsFill Type %sFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFilte_rsFinding Contiguous RegionsFinding Similar ColorsFlipFlip LayerFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...FolderFoldersFont FoldersFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Foreground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.From _ThemeFrom themeFullscr_eenGIMPGIMP ExtensionGIMP MessageGIMP Plug-InGIMP Text EditorGIMP Tip of the DayGIMP XCF imageGIMP help browserGeneralGiganticGradientGradient EditorGradient Editor MenuGradient FoldersGradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridH_eight:H_elp browser to use:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHex:HistoryHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.HugeI_mageIf you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.ImageImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage sizeImagesImages MenuImport OptionsImport PaletteImport a New PaletteImport paletteIndentation of the first lineInfo WindowInitializing Plug-insInitializing plug-in: '%s' -Input DevicesInstallation successful. Click "Continue" to proceed.Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid width or height. Both must be positive.Invert SelectionInvert selectionIs this what you want to do?Keep TransparencyKeep aspect ratio %sKeep transparencyKeyboardKeyboard EventsKeyboard ShortcutsLargeLast Error:LayerLayer Fill TypeLayer SizeLayer _Name:LayersLayers MenuLayers Merge OptionsLet GIMP try to restore your last saved session on each startup.Line -spacing:Line _Style:Line style used for the grid.LoadLoad CurvesLoad text from fileLocation:Long dashesLooking for data filesM_agnifyMagnifyManage Loadable ModulesMeasureMeasure Distances and AnglesMeasure distances and anglesMediumMerge LayersMerge PaletteMerge Visible LayersMerge Visible _Layers...Merge layersMerge palettesMessage repeated %d times.Message repeated once.Modify Selected ColorModify all colorsModule FoldersModule ManagerModule pathModulesMouse CursorsMoveMove LayerMove SelectionMove Text LayerMove ToolMove layers & selectionsMove selectionMove the current layerMove: N_umber of colors:NameName:New ImageNew LayerNew brushNew gradientNew layerNew layer with last valuesNew layer...New paletteNo brushes available for use with this tool.No longer availableNot enough visible layers for a merge. There must be at least two.Number of layers:OffsetOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen the selected entryOpening '%s' failed: +Spencer Kimball, Peter Mattis and the GIMP Development Team.A_dd to SelectionA_ngleAbout The GIMPActionAddAdd Alpha C_hannelAdd La_yer Mask...Add LayerAdd Layer MaskAdd Text LayerAdd color from BGAdd color from FGAdd text to the imageAdding theme '%s' (%s) +Advanced optionsAirbrushAirbrush with variable pressureAl_pha to SelectionAll FilesAll Files (*.*)Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAn_imationAnchor floating layerAngle:AntialiasingAppearanceApply Layer _MaskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?Author:Auto _Follow Active ImageAutoloadAutomatically DetectedAvailable Types:B_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBlack & whiteBlack:Ble_nd Endpoints' ColorsBlend Endpoints' Opacit_yBlueBlue:Bo_rder...Border SelectionBorder selection byBrightness-ContrastBrushBrush EditorBrush FoldersBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.C_olumns:C_ombineCan_vas Size...CancelCannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot save. Nothing is selected.Center X:Center Y:Change Background ColorChange Print SizeChange grid background colorChange perspective of the layer or selectionChannel AttributesChannel Name:Channel to Sele_ctionChannel to SelectionChannel to selectionChannelsChannels MenuCircleCl_earClearClear Undo HistoryClear all textClear errorsClear undo history...Click to update preview +%s Click to force update even if preview is up-to-dateClose %sCo_py PathColo_rsColorColor:Color_mapColoring _Type for SegmentColoring _Type for SelectionColormap EditorColormap MenuColumns:Comme_nt:Con_trast:Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Confirm Text EditingConfirm closing of unsa_ved imagesContextContinueContributions byConvertConvert imageCopy NamedCopy _VisibleCopyright:Could not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not start the GIMP help browser plug-in.Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreating folder '%s'...Crop LayerCrosshair onlyCu_tCu_t Named...Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:Cursor _mode:Cursor re_ndering:Custom colorCut NamedD_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...DashedDate:DebugDefault GridDefault Image GridDefault _layer & channel preview size:Delete Layer Mas_kDelete ObjectDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDeleting "%s" failed: %sDesaturate operates only on RGB color layers.DescriptionDevicesDialogsDialogs MenuDistance:Do you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDouble dashedDrawableDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateE_xport Path...E_xtra SmallEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit the selected templateEn_hanceEnable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': +%sErrorsEventEx_tra LargeExposure:ExtensionsF_it Canvas to LayersFade outFancyFea_ther...Feather SelectionFeather edgesFeather selection byFileFile Open _DialogFile existsFill Opacity:Fill Type %sFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFilte_rsFinding Contiguous RegionsFinding Similar ColorsFlipFlip LayerFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...FolderFoldersFont FoldersFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Fr_om PathFrom _ThemeFrom left to rightFrom right to leftFrom themeFullscr_eenGIMPGIMP ExtensionGIMP MessageGIMP Plug-InGIMP Text EditorGIMP Tip of the DayGIMP XCF imageGIMP could not initialize the graphical user interface. +Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. +User installation was skipped because the '--no-interface' flag was used. +To perform user installation, run the GIMP without the '--no-interface' flag.GeneralGiganticGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient:GradientsGradients MenuGrayscaleGreenGreen:GridGrow SelectionGrow selection byHSV (_counter-clockwise hue)HSV (clockwise _hue)H_eight:H_elp browser to use:HardnessHeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHex:Histogra_mHistoryHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.HugeI_con & TextI_mageI_mport Path...If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.ImageImage EditorImage MenuImage SizeImage Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage sizeImagesImages MenuImport OptionsImport PaletteImport a New PaletteImport paletteIn_vertIndent:Indentation of the first lineInitializing Plug-insInitializing plug-in: '%s' +Input DevicesInstallation successful. Click "Continue" to proceed.IntersectInvalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid width or height. Both must be positive.Invert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?Justify:Keep aspect ratio %sKeep transparencyKeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LargeLast Error:LayerLayer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SizeLayer _ModeLayer _Name:Layer to _BottomLayer to _Image SizeLayer to _TopLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLength:Let GIMP try to restore your last saved session on each startup.Line +spacing:Line _Style:Line style used for the grid.LoadLoad CurvesLoad Right Color Fr_omLoad text from fileLocation:Long dashesLooking for data filesLower Channel to _BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyMa_pMagnifyManage Loadable ModulesMask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:MeasureMeasure Distances and AnglesMeasure distances and anglesMediumMerge Do_wnMerge LayersMerge PaletteMerge Visible LayersMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMessage repeated %d times.Message repeated once.Modify Selected ColorModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMoveMove LayerMove SelectionMove Text LayerMove ToolMove layers & selectionsMove selectionMove the current layerMove: N_umber of colors:Na_vigationNameName:New ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNo brushes available for use with this tool.No longer availableNot enough visible layers for a merge. There must be at least two.Number of layers:OffsetOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the selected entryOpening '%s' failed: -%sOpening '%s' failed: %sOptions: -Pal_ettesPalettePalette EditorPalette FoldersPalette _Name:Palette _filePalettesPalettes MenuPasted LayerPe_ncilPencilPersonal GIMP FolderPerspectivePerspective Transform InformationPerspective...Please wait...Plug-InPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PreferencesPressure:PreviewPreview:PreviewsPurpose:QualityQuerying new Plug-insQuick LoadQuick SaveQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRadius:Re_name Saved OptionsRedRed:RedoRefresh brushesRefresh gradientsRefresh palettesReload C_urrent ThemeRemove LayerRemove _EntryRename LayerRename Saved Tool OptionsRename Text LayerRename itemRepeat LastRescan font listReset all tool optionsReset to default valuesRestore options from...RotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate LayerRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationS_how GridS_wap ColorsSaveSave '%s' as POV-RaySave CurvesSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save gradient as POV-RaySave options to...Save the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Saved OptionsSaving '%s' +%sOpening '%s' failed: %sP_atternsPaint _ModePal_ettesPalettePalette EditorPalette Editor MenuPalette FoldersPalette _Name:Palette _filePalettesPalettes MenuPaste Buffer _IntoPaste Buffer as _NewPaste Pat_hPaste _IntoPaste as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPath AttributesPath _ToolPath to Sele_ctionPath to SelectionPath to selectionPathsPaths MenuPatternPatternsPatterns MenuPe_ncilPencilPersonal GIMP FolderPerspectivePerspective Transform InformationPerspective...Please wait...Plug-InPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPreferencesPressure sensitivityPressure:PreviewPreview:PreviewsPurpose:QualityQuerying new Plug-insQuick LoadQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRTLR_e-show "%s"R_eset Tool OptionsR_ight Endpoint's Color...Radius:Raise Channel to _TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRe-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Really clear image's undo history?Recreate _PreviewRecreate previewRedRed:RedoRefresh brushesRefresh gradientsRefresh palettesRefresh patternsReload C_urrent ThemeReload _all PreviewsReload all previewsRemove Dangling E_ntriesRemove LayerRemove _EntryRemove dangling entriesRemove the selected entryRename LayerRename Saved Tool OptionsRename Text LayerRename itemRepeat LastReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all tool optionsReset to default valuesReset tool order and visibilityResizing...Restore options from...Revert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: + +%sRight Endpoint ColorRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate LayerRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save gradient as POV-RaySave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' Saving '%s' failed: -%sSaving ImagesScript-Fu FoldersScriptsScroll DownScroll Down (Alt)Scroll Down (Control + Alt)Scroll Down (Control)Scroll Down (Shift + Alt)Scroll Down (Shift + Control + Alt)Scroll Down (Shift + Control)Scroll Down (Shift)Scroll LeftScroll Left (Alt)Scroll Left (Control + Alt)Scroll Left (Control)Scroll Left (Shift + Alt)Scroll Left (Shift + Control + Alt)Scroll Left (Shift + Control)Scroll Left (Shift)Scroll RightScroll Right (Alt)Scroll Right (Control + Alt)Scroll Right (Control)Scroll Right (Shift + Alt)Scroll Right (Shift + Control + Alt)Scroll Right (Shift + Control)Scroll Right (Shift)Scroll UpScroll Up (Alt)Scroll Up (Control + Alt)Scroll Up (Control)Scroll Up (Shift + Alt)Scroll Up (Shift + Control + Alt)Scroll Up (Shift + Control)Scroll Up (Shift)SelectSelect AllSelect ColorSelect Primary Color to ModifySelect ThemeSelect Theme FoldersSelect Zoom RatioSelect _Previous LayerSelect allSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect rectangular regionsSelect transparent areasSelect web browserSensitivitySet OpacitySet background colorSet foreground colorSets the browser used by the help system.Sets the size of the previews in the Undo History.Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can not create thumbnails if layer previews are disabled.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Shadow typeShadowsShapeShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show R_ulersShow S_tatusbarShow Scroll_barsShow _Layer BoundaryShow _MenubarShow _SelectionShow _foreground & background colorShow _layer boundaryShow _menubarShow _rulersShow active _imageShow gri_dShow help _buttonsShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsSizeSize in memory:Size:Skipping '%s': wrong GIMP protocol version.SmallSna_p to GridSolidSourceSpacingSpeed:Starting ExtensionsStarting extension: '%s' -State:T_oolsTe_xtTerminating plug-in: '%s' -TextText ColorText EditorText LayerText modifiedThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The background color of the grid; only used in double dashed line style.The foreground color of the grid.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There is one image with unsaved changes:This folder is searched for user-installed themes.This tool has no options.TinyTitle & StatusTo_ysToo many error messages!Tool OptionsTool Options MenuTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTr_ansparencyTransformTransforming...Translation byTransparencyTransparency _type:TypeType %sUndoUndo HistoryUndo _HistoryUnitsUnknown file typeUnknown type of palette file: -%sUntitledUse _web browser insteadUse black and white (1-bit) paletteUse color from gradientValueValue:Version %s brought to you byVersion:Vertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewWarning: Failed to load data: +%sSaving ImagesScaleScale ImageScale LayerScaling...Script-Fu FoldersScriptsScroll DownScroll Down (Alt)Scroll Down (Control + Alt)Scroll Down (Control)Scroll Down (Shift + Alt)Scroll Down (Shift + Control + Alt)Scroll Down (Shift + Control)Scroll Down (Shift)Scroll LeftScroll Left (Alt)Scroll Left (Control + Alt)Scroll Left (Control)Scroll Left (Shift + Alt)Scroll Left (Shift + Control + Alt)Scroll Left (Shift + Control)Scroll Left (Shift)Scroll RightScroll Right (Alt)Scroll Right (Control + Alt)Scroll Right (Control)Scroll Right (Shift + Alt)Scroll Right (Shift + Control + Alt)Scroll Right (Shift + Control)Scroll Right (Shift)Scroll UpScroll Up (Alt)Scroll Up (Control + Alt)Scroll Up (Control)Scroll Up (Shift + Alt)Scroll Up (Shift + Control + Alt)Scroll Up (Shift + Control)Scroll Up (Shift)SelectSelect AllSelect ColorSelect Primary Color to ModifySelect ThemeSelect Theme FoldersSelect Zoom RatioSelect _Bottom LayerSelect _Next LayerSelect _Previous LayerSelect _Top LayerSelect allSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect noneSelect rectangular regionsSelect the number of times +to replicate the selected segment.Select the number of times +to replicate the selection.Select the number of uniform parts +in which to split the segments in the selection.Select the number of uniform parts +in which to split the selected segment.Select transparent areasSelect web browserSelecti_on to PathSelection Editor MenuSelection to Path (_Advanced)Selection to pathSensitivitySet Image Canvas SizeSet Image Print ResolutionSet Layer Boundary SizeSet OpacitySet background colorSet foreground colorSets the browser used by the help system.Sets the size of the previews in the Undo History.Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can not create thumbnails if layer previews are disabled.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Shadow typeShapeShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show R_ulersShow S_tatusbarShow Scroll_barsShow _Layer BoundaryShow _MenubarShow _SelectionShow _foreground & background colorShow _layer boundaryShow _menubarShow _rulersShow active _imageShow gri_dShow help _buttonsShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShrink SelectionShrink from image borderShrink selection bySizeSize in memory:Size:Skipping '%s': wrong GIMP protocol version.SmallSmooth edgesSna_p to GridSolidSourceSpacingSpeed:Spherical (_decreasing)Spherical (i_ncreasing)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSt_atus & TextStac_kStarting ExtensionsStarting extension: '%s' +State:Stro_ke PathStro_ke Path...Stroke PathStroke SelectionStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...SubtractT_oolsTe_xtTe_xt ToolTemplatesTemplates MenuTerminating plug-in: '%s' +TextText ColorText EditorText LayerText modifiedThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s + +Please check the value of the environment variable G_FILENAME_ENCODING.The foreground color of the grid.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s + +Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke to.There is one image with unsaved changes:This folder is searched for user-installed themes.This tool has no options.TinyTitle & StatusTo _PathTo_ysToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTr_ansparencyTransformTransforming...Translation byTransparencyTransparency _type:TypeType %sUndoUndo HistoryUndo _HistoryUnitsUnknown file typeUnknown type of palette file: +%sUntitledUse _web browser insteadUse black and white (1-bit) paletteUse color from gradientValueValue:Version %s brought to you byVersion:Vertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListWarning: Failed to load data: %sWarning: Failed to save data: %sWeb BrowserWeb browserWelcome to -The GIMP %d.%d User InstallationWhen enabled, pressing F1 will open the help browser.WhiteWidthWidth:Window ManagementWindow PositionsWriting '%s' +The GIMP %d.%d User InstallationWhen enabled, pressing F1 will open the help browser.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow PositionsWriting '%s' XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Zoom 1:1Zoom InZoom OutZoom RatioZoom Ratio:Zoom _InZoom _OutZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:_About_Acquire_Advanced Options_Airbrush_All_Background color:_Brightness:_Brush_Brushes_Bucket Fill_Clear Errors_Clear Undo History_Close_Clouds_Colors_Context Help_Curves..._Default Colors_Delete Brush_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Saved Options_Delete Template_Dialogs_Discard Changes_Edit_Edit Brush..._Edit Color..._Edit Gradient..._Edit Palette..._Enormous_Eraser_File_Fill with:_Flip_Font_Fonts_Foreground color:_Gigantic_Gradient_Gradients_Grayscale_Help_Huge_Image_Images_Import_Import Palette..._Info Window_Invert_Large_Layer_Layers_Light Effects_Manually_Measure_Medium_Merge Palettes..._Module Manager_Move_Name:_New Brush_New Gradient_New Layer_New Layer..._New Palette_New View_New..._Next tip_Noise_None_Opacity_Open Image_Open..._Palette_Perspective_Preferences_Preview_Preview Size_Previous tip_Quit_RGB_Radius_Redo_Refresh Brushes_Refresh Gradients_Refresh Palettes_Rescan Font List_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Rotate_Save_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Select_Sinusoidal_Small_Template:_Text_Tiny_Tip of the Day_Tool_Tools_Transform_Undo_View_Web browser to use:_Width:_X:_Xtns_Y:_Zoom_Zoom (%s)millimetermillimetersminutesecondtips-locale:Ctranslator-creditsProject-Id-Version: GIMP 2.2 +Substituting grayscale map.YYellowYellow:You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Zoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Arbitrary Rotation..._Artistic_Aspect_Auto_BG Color_Background color:_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_Channels_Clear Errors_Clear Undo History_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop Image_Curved_Curves..._Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Enormous_Equalize_Eraser_FG Color_File_Fill with:_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Generic_Gigantic_Gradient_Gradients_Grayscale_Grow..._Guides_Hardness_Help_Huge_Icon_Image_Images_Import_Import Palette..._Indexed..._Intersect with Selection_Invert_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Light Effects_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_Manually_Map_Mask_Mask to Selection_Measure_Medium_Merge Palettes..._Misc. Stuff_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Paint Tools_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Render_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale Image..._Scale Layer..._Select_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Tiny_Tip of the Day_Tool_Tools_Transform_Transform Tools_Undo_Undo %s_View_Visible_Web_Web browser to use:_White Balance_Width:_X:_Xtns_Y:_Zoom_Zoom (%s)inchesmillimetermillimetersminutepercentsecondtips-locale:Ctranslator-creditsProject-Id-Version: gimp.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-23 12:40+0200 -PO-Revision-Date: 2005-02-23 11:42+0200 -Last-Translator: Iassen Pramatarov -Language-Team: Bulgarian +POT-Creation-Date: 2005-05-12 09:31+0300 +PO-Revision-Date: 2005-05-12 09:28+0300 +Last-Translator: Victor Dachev +Language-Team: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=n != 1; - -f, --no-fonts Без зареждане на шрифтове. - -h, --help Показва този помощен текÑÑ‚. - -v, --version Данни за верÑиÑта. -%d ÑлоÑ%d ÑлоÑ%d минути%d Ñекунди(%0.3f, %0.3f, %0.3f)(грешен уникод низ)1 Ñлой1 ÑлойПрез 15 градуÑа %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)4:1 (400%)8:1 (800%)<%s><ЛипÑват модули>The GIMP - GNU Image Manipulation Program +%d ÑлоÑ%d ÑлоÑ%d минути%d Ñекунди%s Копиране на канала(%0.3f, %0.3f, %0.3f)(Този прозорец ще Ñе затвори Ñлед деÑет Ñекунди) +(Ðеименован буфер)(Ðеименован шаблон)(ÐŸÑ€Ð¾Ð¼ÐµÐ½Ñ Ñе)(грешен уникод низ)1 Ñлой1 ÑлойПрез 15 градуÑа %s<%s><ЛипÑват модули>The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis и екипът за разработка на the GIMP_ЪгълОтноÑно GIMPДейÑтвиеДобавÑнеДобавÑне на ÑлойДобавÑне на текÑтов ÑлойДобавÑне на текÑÑ‚ към изображениетоДобавÑне на изглед "%s" (%s) -Допълнителни наÑтройкиСпрейСпрей Ñ Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ð»Ð¸Ð²Ð¾ налÑганеВÑички файловеВÑички файлове (*.*)Разрешаване запълването на изцÑло прозрачните облаÑтиРазрешаване избирането на изцÑло прозрачните облаÑтиÐни_мациÑЪгъл:ИзгледÐвтор:Зареждане при ÑтартиранеÐвтоматично откриванеÐалични видове:Яр_коÑÑ‚ и контраÑÑ‚...ФонЦвÑÑ‚ на фонаЦветът на фона е:Фон: %d, %d, %dЧерно-бÑлоЧерно:СиньоСиньо:ЯркоÑÑ‚ и контраÑтЧеткаРедактор на четкиПапки Ñ Ñ‡ÐµÑ‚ÐºÐ¸Ð§ÐµÑ‚ÐºÐ°:ЧеткиМеню ЧеткиЗапълванеСпоред разширениетоКо_лони:ПрекъÑванеГрешка при Ñъздаване на папката "%s": %sГрешка при Ñъздаване на прегледаПромÑна на цвета на фонаПромÑна Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ Ñ†Ð²ÑÑ‚ на мрежатаПромÑна перÑпективата на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избранотоКръг_ИзчиÑтванеИзчиÑтванеИзчиÑтване иÑториÑта на променитеИзчиÑтване на Ñ†ÐµÐ»Ð¸Ñ Ñ‚ÐµÐºÑтИзчиÑтване на прозореца Ñ Ð³Ñ€ÐµÑˆÐºÐ¸ÐатиÑнете за обновÑване на прегледа -%s ÐатиÑнете за Ñилово обновÑване на прегледаЗатварÑне на %sЦве_товеЦвÑтЦвÑÑ‚:Колони:Беле_жки:БележкиКон_траÑÑ‚:ÐаÑтройка на м_режата...ÐаÑтройка на мрежатаÐаÑтройка на мрежата на изображениетоÐаÑтройка на бързите клавишиÐаÑтройка на _бързите клавиши...Потвърждаване затварÑнето на не_запазени изображениÑÐŸÑ€Ð¾Ð´ÑŠÐ»Ð¶Ð°Ð²Ð°Ð½ÐµÐ¡ÑŠÑ ÑъдейÑтвието наПреобразуванеПреобразуване на изображениетоÐвторÑки права:Ðе е открит четецът за помощта на GIMP.Грешка при отварÑне на "%s" за четене: %sГрешка при отварÑне на "%s" за запиÑ: %sÐе може да бъде пуÑната приÑтавката за четене на помощта на GIMP.Създаване на ново изображениеСъздаване на нов ÑлойСъздаване на папката '%s'...Само мерникТекущо _ÑÑŠÑтоÑниеТекуща виÑочина:Само Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ ÑлойТекущо ÑÑŠÑтоÑниеТекуща широчина:_Вид на курÑора:_ИзобразÑване на курÑора:ПотребителÑки цвÑÑ‚_Дублиране на ÑлоÑПунктираниДата:Мрежа по подразбиранеМрежа на изображението по подразбиранеПреглед по под_разбиране на Ñлоеве и канали:Изтриване на обектИзтриване на шаблонИзтриване на четкаИзтриване на цвÑтИзтриване на преливкаИзтриване на ÑлоÑИзтриване на палитраИзтриване на запазени наÑтройки...Изтриване на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½Ð˜Ð·Ñ‚Ñ€Ð¸Ð²Ð°Ð½Ðµ на това изображениеГрешка при изтриването на "%s": %sОпиÑаниеУÑтройÑтваПрозорциМеню ПрозорциРазÑтоÑние:_Без запазванеИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° _документитеИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° документитеДокументиМеню ДокументиДвойно пунктираниДублиране на ÑлоÑÐœ_ного малъкОткриване на _ръбовеРедактиранеРедактиране на четкаРедактиране на цвÑтРедактиране на преливкаРедактиране на палитраВключване показването на подÑказки.ОгроменВъведете име за тези наÑтройкиВъведете ново име за тези наÑтройкиВъведете меÑтоположенеи (URI):ОбкръжениеПапки на обкръжениетоИзтриване Ñ Ñ„Ð¾Ð½Ð¾Ð² цвÑÑ‚ или до прозрачноÑтГума_Ð¡ÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð·Ð° Ð³Ñ€ÐµÑˆÐºÐ¸Ð¡ÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð·Ð° грешкиГрешка при запазването на XCF файл: %sГрешка при четенето на "%s": %sГрешка при запиÑването на "%s": %sГрешка при Ð·Ð°Ð¿Ð¸Ñ Ð½Ð° XCF файл: %sГрешка при запиÑване на файла "%s": -%sГрешкиСъбитиеМног_о голÑмЕкÑпозициÑ:РазширениÑКраÑивоФайлът ÑъщеÑтвуваВид запълване %sЗапълване на прозрачните облаÑтиЗапълване на избранотоЗапълване Ñ Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ Ñ†Ð²ÑтЗапълване Ñ _Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ Ñ†Ð²ÑтЗапълване Ñ Ñ†Ð²ÐµÑ‚Ð° за риÑуванеЗапълване Ñ Ð¿Ñ€Ð¾Ð·Ñ€Ð°Ñ‡Ð½Ð¾ÑтЗапълване Ñ Ð±ÑлоЗапълване Ñ Ñ†Ð²ÐµÑ‚Ð° за _риÑуванеЗапълване Ñ _Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ Ñ†Ð²ÑтЗапълване Ñ Ð¿Ñ€ÐµÐ»Ð¸Ð²ÐºÐ°_ФилтриОткриване на непрекъÑнати облаÑтиОткриване на подобни цветовеОбръщанеОбръщане на ÑлоÑОбръщане на текÑÑ‚Ð¾Ð²Ð¸Ñ ÑлойВид обръщане %s_Хоризонтално обръщане_Вертикално обръщанеОбръщане на изображениетоОбръщане на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избранотоОбръщане...Обръщане...ПапкаПапкиПапки Ñ ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð²ÐµÐ¨Ñ€Ð¸Ñ„Ñ‚:ШрифтовеМеню ШрифтовеЗа правилната инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ñ Ð½Ð° GIMP Ñ‚Ñ€Ñбва да бъде Ñъздадена папката '%s'.Цветове на Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½ и фона. ЧерниÑÑ‚ и белиÑÑ‚ квадрат изчиÑтват наÑтройките. Стрелките разменÑÑ‚ цветовете. Двойното натиÑкане Ñ Ð¼Ð¸ÑˆÐºÐ°Ñ‚Ð° Ð¾Ñ‚Ð²Ð°Ñ€Ñ Ð¿Ñ€Ð¾Ð·Ð¾Ñ€ÐµÑ† за избор на цвÑÑ‚.Според _изгледаСпоред изгледаПълен _екранGIMPРазширение на GIMPСъобщение от GIMPПриÑтавка на GIMPРедактор на текÑÑ‚ на GIMPСъвет за Ð´ÐµÐ½Ñ Ð¾Ñ‚ GIMPGIMP XCF изображениеЧетец за помощта на GIMPОбщиГигантÑкиПреливкаРедактор на преливкиМеню Редактор на преливкиПапки Ñ Ð¿Ñ€ÐµÐ»Ð¸Ð²ÐºÐ¸ÐŸÑ€ÐµÐ»Ð¸Ð²ÐºÐ°:ПреливкиМеню ПреливкиСивоСтепени на ÑивотоЗеленоЗелено:МрежаВиÑо_чина:Четец за _помощта:ВиÑочинаВиÑочина:ПомощЧетец за помощтаСиÑтема за помощЧетецът за помощта не може да бъде пуÑнатÐе е открит четец за помощтаШеÑтнадеÑетично:ИÑториÑХоризонтално отÑтоÑние на първата черта на мрежата. Може да бъде отрицателно чиÑло.Хоризонтално отÑтоÑние на чертите на мрежата.ГрамаденИзо_бражениеÐко не запазите изображението, промените от поÑледната %s ще бъдат загубени.Ðко напуÑнете GIMP Ñега, тези промени ще бъдат изгубени.ИзображениеРедактор на изображениÑДанни за изображениетоМеню ИзображениеРазмер на изображениетоФормат на ивицата за ÑÑŠÑтоÑниетоФормат на заглавието на прозорцитеИзглед на прозорците на изображениÑтаПрозорци на изображениÑтаИзображението не Ñъдържа видими ÑлоевеФайл на изображениетоРазмер на изображениетоИзображениÑМеню ИзображениÑÐаÑтройки на внаÑÑнетоВнаÑÑне на палитраВнаÑÑне на нова палитраВнаÑÑне на палитраОтÑтъп на първи редПрозорец Ñ Ð´Ð°Ð½Ð½Ð¸Ð—Ð°Ñ€ÐµÐ¶Ð´Ð°Ð½Ðµ на приÑтавкитеЗареждане на приÑтавката: '%s' -Входни уÑтройÑтваИнÑталациÑта е уÑпешна. ÐатиÑнете "Продължаване".Ðевалиден уникодГрешни уникод данни във файла "%s".Грешен UTF-8 низ в XCFфайлаГрешна широчина или виÑочина. И двете Ñ‚Ñ€Ñбва да Ñа положителни чиÑла.Обръщане на избиранетоОбръщане на избиранетотова ли иÑкате да направите?Запазване на прозрачноÑттаЗапазване на Ñъотношението %sЗапазване на прозрачноÑÑ‚Ñ‚Ð°ÐšÐ»Ð°Ð²Ð¸Ð°Ñ‚ÑƒÑ€Ð°Ð¡ÑŠÐ±Ð¸Ñ‚Ð¸Ñ Ð¾Ñ‚ клавиатуратаБързи клавишиГолÑмПоÑледна грешка:СлойВид на запълването на ÑлоÑРазмери на ÑлоÑ:_Име на ÑлоÑ:СлоевеМеню СлоевеÐаÑтройки на Ñливането на ÑлоеветеВъзÑтановÑване на поÑледната ви ÑеÑÐ¸Ñ Ð² GIMP при зареждане.РазÑтоÑние -между редовете:_Вид на чертите:Вид на чертите, изграждащи мрежата.ЗарежданеЗареждане на кривиЗареждане на текÑÑ‚ от файлМетÑоположение:Дълги тиретаТърÑене на данниУве_личениеУевличениеУправление на модулитеИзмерванеИзмерване на разÑтоÑÐ½Ð¸Ñ Ð¸ ъглиИзмерване на разÑтоÑÐ½Ð¸Ñ Ð¸ ъглиСреденСливане на ÑлоеветеСливане на палитраСливане на видимите ÑлоевеСливане на видимите _Ñлоеве...Сливане на ÑлоеветеСливане на палитриСъобщението е повторено %d пъти.Съобщението е повторено веднъж.ПромÑна на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ñ†Ð²ÑтПромÑна на вÑички цветовеПапки Ñ Ð¼Ð¾Ð´ÑƒÐ»Ð¸ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ðµ на модулитеПът до модулаМодулиКурÑор на мишкатаПремеÑтванеПремеÑтване на ÑлоÑПремеÑтване на избранотоПремеÑтване на текÑÑ‚Ð¾Ð²Ð¸Ñ ÑлойИнÑтрумент за премеÑтванеПремеÑтване на Ñлоеве и избираниÑПремеÑтване на избранотоПремеÑтване на Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ ÑлойПремеÑтване:_Брой цветове:ИмеИме:Ðово изображениеÐов ÑлойÐова четкаÐова преливкаÐов ÑлойÐов Ñлой Ñ Ð¿Ð¾Ñледно използваните ÑтойноÑтиÐов Ñлой...Ðова палитраÐÑма налични четки за този инÑтрумент.Вече не е наличноÐÑма доÑтатъчно видими Ñлоеве за Ñливане. ТрÑбва да Ñа поне два.Брой Ñлоеве:ОтмеÑтванеОт_варÑне като Ñлой...ÐепрозрачноÑÑ‚ÐепрозрачноÑÑ‚:ОтварÑнеОтварÑне на изображениеОтварÑне на изображението като ÑлойОтварÑне на адреÑОтварÑне на текÑтов файл (UTF-8)ОтварÑне на _адреÑ..._ÐаÑкоро зарежданиОтварÑне на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚Ð“Ñ€ÐµÑˆÐºÐ° при отварÑнето на '%s': +Spencer Kimball, Peter Mattis и екипът за разработка на the GIMPДобавÑне към ÑелекциÑ_ЪгълОтноÑно GIMPДейÑтвиеДобавÑнеДобавÑне на канал за прозрачноÑтДобавÑне на маÑка...ДобавÑне на ÑлойДобавÑне на маÑка в ÑлойДобавÑне на текÑтов ÑлойДобавÑне цвÑÑ‚ от фонаДобавÑне цвÑÑ‚ от Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½Ð”Ð¾Ð±Ð°Ð²Ñне на текÑÑ‚ към изображениетоДобавÑне на изглед "%s" (%s) +Допълнителни наÑтройкиСпрейСпрей Ñ Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ð»Ð¸Ð²Ð¾ налÑганеПревръщане на прозрачноÑтта в _ÑелекциÑÐ’Ñички файловеВÑички файлове (*.*)Разрешаване запълването на изцÑло прозрачните облаÑтиРазрешаване избирането на изцÑло прозрачните облаÑтиÐни_мациÑФикÑиране на плаващ ÑлойЪгъл:ЗаглажданеИзгледПрилагане на _маÑкатаПотвърждаваш ли изтриването на '%s' от ÑпиÑъка и от диÑка?Сигурен ли Ñи че иÑкаш да изтриеш шаблона '%s' от диÑка?Ðвтор:Следване автоматично на активното изображениеЗареждане при ÑтартиранеÐвтоматично откриванеÐалични видове:Яр_коÑÑ‚ и контраÑÑ‚...Б_уфериФонЦвÑÑ‚ на фонаЦветът на фона е:Фон: %d, %d, %dЧерно-бÑлоЧерно:Преливане между крайните цветовеПреливане между крайните плътноÑтиСиньоСиньо:По_ÑÑ...ПоÑÑ Ð½Ð° ÑелекциÑтаПоÑÑ Ð½Ð° ÑелекциÑта ÑЯркоÑÑ‚ и контраÑтЧеткаРедактор на четкиПапки Ñ Ñ‡ÐµÑ‚ÐºÐ¸Ð§ÐµÑ‚ÐºÐ°:ЧеткиМеню четкиЗапълванеБуфериБуфериСпоред разширениетоС връщане на изображението към ÑÑŠÑтоÑнието, запиÑано на диÑка, ще изгубиш вÑички промени, включително информациÑта за отмÑна на дейÑтвиÑта.Ко_лони:К_омбинациÑРаз_мер на полето...ПрекъÑванеГрешка при Ñъздаване на папката "%s": %sГрешка при Ñъздаване на прегледаÐе може да Ñе отреже, защото ÑелекциÑта е празна.Ðе може да Ñе запази. Ðищо не е избрано.Център по хоризонтал:Център по веритикал:ПромÑна на цвета на фонаПромÑна размера за отпечатванеПромÑна Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ Ñ†Ð²ÑÑ‚ на мрежатаПромÑна перÑпективата на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избранотоÐаÑтройки на каналаИме на каналаСъздаване на Ñеле_ÐºÑ†Ð¸Ñ Ð¾Ñ‚ каналаСъздаване на ÑÐµÐ»ÐµÐºÑ†Ð¸Ñ Ð¾Ñ‚ каналаСъздаване на ÑÐµÐ»ÐµÐºÑ†Ð¸Ñ Ð¾Ñ‚ каналаКаналиКаналиКръг_ИзчиÑтванеИзчиÑтванеИзчиÑтване иÑториÑта на променитеИзчиÑтване на Ñ†ÐµÐ»Ð¸Ñ Ñ‚ÐµÐºÑтИзчиÑтване на прозореца Ñ Ð³Ñ€ÐµÑˆÐºÐ¸Ð˜Ð·Ñ‡Ð¸Ñтване иÑториÑта на дейÑтвиÑта...ÐатиÑнете за обновÑване на прегледа +%s ÐатиÑнете за Ñилово обновÑване на прегледаЗатварÑне на %s_Копиране на пътекатаЦве_товеЦвÑтЦвÑÑ‚:ЦветноÑтОцветÑване _на ÑегментаОцветÑване на ÑелекциÑтаРедактор на цветоветеЦветово менюКолони:Беле_жки:Кон_траÑÑ‚:ÐаÑтройка на м_режата...ÐаÑтройка на мрежатаÐаÑтройка на мрежата на изображениетоÐаÑтройка на бързите клавишиÐаÑтройка на _бързите клавиши...Потвърди промÑната на текÑтаПотвърждаване затварÑнето на не_запазени изображениÑКонтекÑÑ‚ÐŸÑ€Ð¾Ð´ÑŠÐ»Ð¶Ð°Ð²Ð°Ð½ÐµÐ¡ÑŠÑ ÑъдейÑтвието наПреобразуванеПреобразуване на изображениетоКопиране наКопиране на _видимитеÐвторÑки права:Ðе е открит четецът за помощта на GIMP.Грешка при отварÑне на "%s" за четене: %sГрешка при отварÑне на "%s" за запиÑ: %sÐе може да бъде пуÑната приÑтавката за четене на помощта на GIMP.РÑзане на ÑлоÑСъздаване на ново гнездоСъздай нов шаблонСъздаване на ново изображениеСъздаване на нов ÑлойСъздаване на нов шаблонСъздаване на нов изглед на изображениетоСъздаване на ново изображение по Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½Ð¡ÑŠÐ·Ð´Ð°Ð²Ð°Ð½Ðµ на нов шаблонСъздаване на папката '%s'...РÑзане на ÑлоÑСамо мерникИз_Ñ€ÑзванеИзрÑзване _на...Текущо _ÑÑŠÑтоÑниеТекуща виÑочина:Само Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ ÑлойТекущо ÑÑŠÑтоÑниеТекуща широчина:_Вид на курÑора:_ИзобразÑване на курÑора:ПотребителÑки цвÑтИзрÑзване наД_ублиране на четкатаД_ублиране на каналаД_ублиране на преливката_Дублиране на ÑлоÑД_ублиране на плитратаД_ублиране на пътекатаД_ублиране на шаркатаД_ублиране на шаблона...ПунктираниДата:ПоправÑнеМрежа по подразбиранеМрежа на изображението по подразбиранеПреглед по под_разбиране на Ñлоеве и канали:_Изтриване на маÑкатаИзтриване на обектИзтриване на шаблонИзтриване на четкатаИзтриване на каналаИзтриване на цвÑтИзтриване на преливкаИзтриване на ÑлоÑИзтриване на палитраИзтриване на пътекатаИзтриване на шаркатаИзтриване на запазени наÑтройки...Премахни избранотоИзтриване на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½Ð˜Ð·Ñ‚Ñ€Ð¸Ð²Ð°Ð½Ðµ на това изображениеГрешка при изтриването на "%s": %sИзваждането на цветове работи Ñамо в RGB Ñлоеве.ОпиÑаниеУÑтройÑтваПрозорциМеню ПрозорциРазÑтоÑние:ÐаиÑтина ли иÑкаш да върнеш вÑички филтри към наÑтройките по подразбиране?ÐаиÑтина ли иÑкаш да върнеш вÑички наÑтройки към първоначалните?_Без запазванеЗалепимИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° _документитеИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° документитеДокументиМеню документиДвойно пунктираниРиÑуванеДублиране на четкатаДублиране на каналаДублиране на преливкатаДублиране на ÑлоÑДублиране на палитратаДублиране на пътекатаДублиране на шаркатаДублиране на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½_ЕкÑпортиране на пътекаМ_ного малъкОткриване на _ръбовеРедактиранеПромÑна наÑтройките на каналаПромÑна цвета на каналаПромÑна номера на палитратаПромÑна на цветова ÑтойноÑтПромÑна ÐаÑтройките на СлоÑПромÑна цвета на палитратаПромÑна наÑтройките на пътекатаПромÑна наÑтройките на бързата маÑкаПромÑна цвета на бързата маÑкаПромÑна на шаблонаРедактиране на четкатаПромÑнанаÑтройките на каналаРедактиране на цвÑтПромÑна на цветова ÑтойноÑÑ‚ #%dРедактиране на преливкаПромÑна наÑтройките на ÑлоÑРедактиране на палитраПромÑна наÑтройките на пътекатаРедактиране на шаркатаРедактиране на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½ÐŸÐ¾_добрÑванеВключване показването на подÑказки.ОгроменВъведи име на ÑлÑтата палитраВъведете име за тези наÑтройкиВъведи име на буфераВъведи име на шаблонаВъведете ново име за тези наÑтройкиВъведете меÑтоположенеи (URI):ОбкръжениеПапки на обкръжениетоФината наÑтройка не работи на Ñлоеве Ñ Ð¸Ð½Ð´ÐµÐºÑирани цветове.Изтриване Ñ Ñ„Ð¾Ð½Ð¾Ð² цвÑÑ‚ или до прозрачноÑтГума_Ð¡ÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð·Ð° Ð³Ñ€ÐµÑˆÐºÐ¸Ð¡ÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð·Ð° грешкиГрешка в конзолното менюГрешка при запазването на XCF файл: %sГрешка при четенето на "%s": %sГрешка при запиÑването на "%s": %sГрешка при Ð·Ð°Ð¿Ð¸Ñ Ð½Ð° XCF файл: %sГрешка при запиÑване на файла "%s": +%sГрешкиСъбитиеМног_о голÑмЕкÑпозициÑ:РазширениÑРазмер _Ñпоред ÑлоеветеИзбледнÑванеКраÑивоСме_кчаване...Смекчаване на ÑелекциÑтаСмекчи ръбоветеСмекчаване на ÑелекциÑта ÑФайлОтварÑне на файлФайлът ÑъщеÑтвуваПлътноÑÑ‚ на запълване:Вид запълване %sЗапълване на прозрачните облаÑтиЗапълване на избранотоЗапълване Ñ Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ Ñ†Ð²ÑтЗапълване Ñ _Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ Ñ†Ð²ÑтЗапълване Ñ Ñ†Ð²ÐµÑ‚Ð° за риÑуванеЗапълване ÑÑŠÑ Ñˆ_аркаЗапълване Ñ Ð¿Ñ€Ð¾Ð·Ñ€Ð°Ñ‡Ð½Ð¾ÑтЗапълване Ñ Ð±ÑлоЗапълване Ñ Ñ†Ð²ÐµÑ‚Ð° за _риÑуванеЗапълване Ñ _Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ Ñ†Ð²ÑтЗапълване Ñ Ð¿Ñ€ÐµÐ»Ð¸Ð²ÐºÐ°_ФилтриОткриване на непрекъÑнати облаÑтиОткриване на подобни цветовеОбръщанеОбръщане на ÑлоÑОбръщане на текÑÑ‚Ð¾Ð²Ð¸Ñ ÑлойВид обръщане %s_Хоризонтално обръщане_Вертикално обръщанеОбръщане на изображениетоОбръщане на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избранотоОбръщане...Обръщане...ПапкаПапкиПапки Ñ ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð²ÐµÐ¨Ñ€Ð¸Ñ„Ñ‚:ШрифтовеМеню шрифтовеЗа правилната инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ñ Ð½Ð° GIMP Ñ‚Ñ€Ñбва да бъде Ñъздадена папката '%s'._От пътекаСпоред _изгледаОт лÑво на дÑÑноОт дÑÑно на лÑвоСпоред изгледаПълен _екранGIMPРазширение на GIMPСъобщение от GIMPПриÑтавка на GIMPРедактор на текÑÑ‚ на GIMPСъвет за Ð´ÐµÐ½Ñ Ð¾Ñ‚ GIMPGIMP XCF изображениеGIMP не може да намери графичниÑÑ‚ външе вид. +Увери Ñе че графичната ÑиÑтема е наÑтроена правилно.Четец за помощта на GIMPGIMP не е правилно инÑталиран за този потребител. +ИнÑталациÑта не беше завършена защото беше изпозван флаг '--нÑма-външен вид'. +За да оÑъщеÑтвите инÑталациÑта, пуÑнете GIMP Ñ Ñ„Ð»Ð°Ð³ '--нÑма-външен вид' ОбщиГигантÑкиСтъ_клени ефектиПреливкаРедактор на преливкиМеню редактор на преливкиПапки Ñ Ð¿Ñ€ÐµÐ»Ð¸Ð²ÐºÐ¸Ð¦Ð²ÑÑ‚ на лÑвата крайна точка на преливкатаЦвÑÑ‚ на дÑÑната крайна точка на преливкатаПреливка:ПреливкиМеню преливкиСтепени на ÑивотоЗеленоЗелено:МрежаУвеличаване на ÑелекциÑтаУвеличаване на ÑелекциÑта ÑHSV (_тонове, обратно на чаÑовниковата Ñтрелка)HSV (_тонове, по поÑока на чаÑовниковата Ñтрелка)ВиÑо_чина:Четец за _помощта:ТвърдоÑтВиÑочинаВиÑочина:ПомощЧетец за помощтаСиÑтема за помощЧетецът за помощта не може да бъде пуÑнатÐе е открит четец за помощтаШеÑтнадеÑетично:ХиÑтограм_аИÑториÑХоризонтално отÑтоÑние на първата черта на мрежата. Може да бъде отрицателно чиÑло.Хоризонтално отÑтоÑние на чертите на мрежата.ГрамаденИ_конка итекÑтИзо_бражение_Импортиране на пътека...Ðко не запазите изображението, промените от поÑледната %s ще бъдат загубени.Ðко напуÑнете GIMP Ñега, тези промени ще бъдат изгубени.ИзображениеРедактор на изображениÑМеню кзображениеРазмер на изображениетоФормат на ивицата за ÑÑŠÑтоÑниетоФормат на заглавието на прозорцитеИзглед на прозорците на изображениÑтаПрозорци на изображениÑтаИзображението не Ñъдържа видими ÑлоевеРазмер на изображениетоИзображениÑМеню изображениÑÐаÑтройки на внаÑÑнетоВнаÑÑне на палитраВнаÑÑне на нова палитраВнаÑÑне на палитраОбръ_щанеОтÑтъп:ОтÑтъп на първи редЗареждане на приÑтавкитеЗареждане на приÑтавката: '%s' +Входни уÑтройÑтваИнÑталациÑта е уÑпешна. ÐатиÑнете "Продължаване".ПреÑичанеÐевалиден уникодГрешни уникод данни във файла "%s".Грешен UTF-8 низ в XCFфайлаГрешна широчина или виÑочина. И двете Ñ‚Ñ€Ñбва да Ñа положителни чиÑла.Обръщане на избиранетоОбръщането не работи на Ñлоеве Ñ Ð¸Ð½Ð´ÐµÐºÑирани цветове.Обръщане на избиранетотова ли иÑкате да направите?Подравни от двете Ñтрани:Запазване на Ñъотношението %sЗапазване на прозрачноÑÑ‚Ñ‚Ð°ÐšÐ»Ð°Ð²Ð¸Ð°Ñ‚ÑƒÑ€Ð°Ð¡ÑŠÐ±Ð¸Ñ‚Ð¸Ñ Ð¾Ñ‚ клавиатуратаБързи клавишиЛнДЛ_Ñв краен цвÑÑ‚...ГолÑмПоÑледна грешка:СлойÐаÑтройки на СлоÑРазмер на _ÑлоÑ...Вид на запълването на ÑлоÑПревръщане на маÑката в ÑелекциÑРазмери на ÑлоÑ:_Тип на ÑлоÑ_Име на ÑлоÑ:_ОтдолуСлой Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° на _ИзображениетоÐай-_отгореСлоевеМеню ÑлоевеÐаÑтройки на Ñливането на ÑлоеветеЦвÑÑ‚ на лÑвата крайна точкаДължина:ВъзÑтановÑване на поÑледната ви ÑеÑÐ¸Ñ Ð² GIMP при зареждане.РазÑтоÑние +между редовете:_Вид на чертите:Вид на чертите, изграждащи мрежата.ЗарежданеЗареждане на кривиЗареждане на деÑÐ½Ð¸Ñ Ñ†Ð²ÑÑ‚ _отЗареждане на текÑÑ‚ от файлМетÑоположение:Дълги тиретаТърÑене на данниПремеÑтване _отдолyСнижаване най-_долуПремеÑтване надолyПремеÑтване отдолyÐадолуОтдолуСнижаванеСнижаване най-долуУве_личениеКа_ртаУевличениеУправление на модулитеПлътноÑÑ‚ на маÑката:Създаване на маÑка за избраните чаÑтиСъздаване на маÑка за неизбраните чаÑтиМатрица:ИзмерванеИзмерване на разÑтоÑÐ½Ð¸Ñ Ð¸ ъглиИзмерване на разÑтоÑÐ½Ð¸Ñ Ð¸ ъглиСреденСливане на _ÑлоеветеСливане на ÑлоеветеСливане на палитраСливане на видимите ÑлоевеСливане на видимите _Ñлоеве...Сливане на _видимите Ñлоеве...Сливане на _видимите пътекиСливане на ÑлоеветеСливане на палитриСъобщението е повторено %d пъти.Съобщението е повторено веднъж.ПромÑна на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ñ†Ð²ÑтПромÑна на вÑички цветовеПромени междуредовото разтоÑниеПапки Ñ Ð¼Ð¾Ð´ÑƒÐ»Ð¸ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ðµ на модулитеПът до модулаМодулиКурÑор на мишкатаПремеÑтванеПремеÑтване на ÑлоÑПремеÑтване на избранотоПремеÑтване на текÑÑ‚Ð¾Ð²Ð¸Ñ ÑлойИнÑтрумент за премеÑтванеПремеÑтване на Ñлоеве и избираниÑПремеÑтване на избранотоПремеÑтване на Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ ÑлойПремеÑтване:_Брой цветове:Ðа_вигациÑИмеИме:Ðов каналЦвÑÑ‚ на Ð½Ð¾Ð²Ð¸Ñ ÐºÐ°Ð½Ð°Ð»ÐаÑтройки на Ð½Ð¾Ð²Ð¸Ñ ÐºÐ°Ð½Ð°Ð»Ðов цвÑÑ‚ от _фонаÐов цвÑÑ‚ от _Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½Ðов ÑлойÐова пътекаÐаÑтройки на новата пътекаÐов шаблонÐова четкаÐов канал Ñ Ð½Ð°Ñтройки на предишниÑÐов канал...Ðов цвÑÑ‚ от фонаÐов цвÑÑ‚ от Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½Ðова преливкаÐов ÑлойÐов Ñлой Ñ Ð¿Ð¾Ñледно използваните ÑтойноÑтиÐов Ñлой...Ðова палитраÐова пътека като предишнатаÐова пътека...Ðова шаркаÐÑма налични четки за този инÑтрумент.Вече не е наличноÐÑма доÑтатъчно видими Ñлоеве за Ñливане. ТрÑбва да Ñа поне два.Брой Ñлоеве:ОтмеÑтванеОт_варÑне като Ñлой...ÐепрозрачноÑÑ‚ÐепрозрачноÑÑ‚:ОтварÑнеОтварÑне на изображениеОтварÑне на изображението като ÑлойОтварÑне на адреÑОтварÑне на текÑтов файл (UTF-8)ОтварÑне на _адреÑ..._ÐаÑкоро зарежданиОтварÑне на изображениеОтварÑне на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚Ð“Ñ€ÐµÑˆÐºÐ° при отварÑнето на '%s': -%sГрешка при отварÑнето на '%s': %sÐаÑтройки: -Па_литриПалитраРедактор на палитриПапки Ñ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ð¸Ð˜Ð¼Ðµ _на палитрата:Файл на _палитраПалитриМеню ПалитриВмъкнат ÑлойМо_ливМоливЛична GIMP папкаПерÑпективаДанни за промÑната на перÑпективатаПерÑпектива...ÐœÐ¾Ð»Ñ Ð¸Ð·Ñ‡Ð°ÐºÐ°Ð¹Ñ‚Ðµ...ПриÑтавкаПапки Ñ Ð¿Ñ€Ð¸ÑтавкиПриÑтавката не може да отвори изображениетоПриÑтавката не може да запише изображениетоПриÑтавката върна Ñъобщение SUCCESS, но не върна изображениеПриÑтавкиПриÑтавкаПриÑтавките и разширениÑта Ñа външни програми, изпълнÑвани от GIMP за предоÑтавÑне на допълнителна функционалноÑÑ‚. Те Ñе откриват при зареждане на GIMP и данните за функционалноÑтта и верÑиите им Ñе запиÑват в този файл. Този файл е предназначен за четене Ñамо от GIMP и не Ñ‚Ñ€Ñбва да бъде редактиран ръчно.ÐаÑтройкиÐалÑгане:ПрегледПреглед:Предварителни прегледиПредназначение:КачеÑтвоПретърÑване за нови приÑтавкиБързо зарежданеБързо запазванеИзлизане от GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB цвÑтРадиуÑ:Пре_именуване на запазени наÑтройкиЧервеноЧервено:ВръщанеПрезареждане на четкитеПрезареждане на преливкитеПрезареждане на палитритеПрезареждане на Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ Ð¸Ð·Ð³Ð»ÐµÐ´ÐŸÑ€ÐµÐ¼Ð°Ñ…Ð²Ð°Ð½Ðµ на ÑлойПремахване на запиÑаПреименуване на ÑлоÑПреименуване на запазени наÑтройки на инÑтрументитеПреименуване на текÑтов ÑлойПреименуване на обектаПовтарÑне на поÑледниÑПрезареждане на ÑпиÑъка Ñ ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð²Ðµ- за вÑички инÑтрументиВръщане на ÑтойноÑтите по подразбиранеВъзÑтановÑване на наÑтройките от...ЗавъртанеЗавъртане на 90 градуÑа _обратно на чаÑовниковата ÑтрелкаЗавъртане на 90 градуÑа _по чаÑовниковата ÑтрелкаЗавъртане на ÑлоÑЗавъртане на текÑÑ‚Ð¾Ð²Ð¸Ñ ÑлойЗавъртане на _180 градуÑаЗавъртане на изображениетоЗавъртане на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избранотоЗавъртане...Данни за завъртанетоПоказване на _мрежатаОбръ_щане на цветоветеЗапазванеЗапазване на '%s' в POV-Ray форматЗапазване на кривиЗапазване на изображениетоЗапазване наÑтройките на входното уÑтройÑтво _ÑегаЗапазване на бързите клавиши _ÑегаЗапазване наÑтройките на инÑтрументаЗапомнÑне на разположението _ÑегаЗапазване на вÑички грешки във файл...Запазване на _избраното във файл...Запазване _като...Запазване на _копие...Запазване копие на изображениетоЗапазване на вÑички грешкиЗапазване като _POV-Ray файл...Запазване на преливката в POV-Ray форматЗапазване на наÑтройките в...Да бъдат ли запазени промените в изображението "%s" преди затварÑне?Запазване разположението и размерите на оÑновните прозорци при Ñпиране на GIMP.Запазени наÑтройкиЗапазване на '%s' +%sГрешка при отварÑнето на '%s': %sШ_аркиРиÑуванеПа_литриПалитраРедактор на палитриМеню за редактиране на палитратаПапки Ñ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ð¸Ð˜Ð¼Ðµ _на палитрата:Файл на _палитраПалитриМеню ПалитриВмъкни _вВмъкни като _ново_Вмъкване на пътекаВмъкване _вВмъкване като _новоВмъкни избранотоВмъкни избраното като ново изображениеВмъкни избраното в ÑелекциÑтаВмъкнат ÑлойÐаÑтройки на пътеката_ПътекаПревръщане в _ÑелекциÑПревръщане в ÑелекциÑПревръщане в ÑелекциÑПътищаМеню ПътекиШаркаШаркиМеню шаркиМо_ливМоливЛична GIMP папкаПерÑпективаДанни за промÑната на перÑпективатаПерÑпектива...ÐœÐ¾Ð»Ñ Ð¸Ð·Ñ‡Ð°ÐºÐ°Ð¹Ñ‚Ðµ...ПриÑтавкаПапки Ñ Ð¿Ñ€Ð¸ÑтавкиПриÑтавката не може да отвори изображениетоПриÑтавката не може да запише изображениетоПриÑтавката върна Ñъобщение SUCCESS, но не върна изображениеПриÑтавкиПриÑтавкаÐаÑтройкиСила на натиÑкаÐалÑгане:ПрегледПреглед:Предварителни прегледиПредназначение:КачеÑтвоПретърÑване за нови приÑтавкиБързо зарежданеÐаÑтройки на бързата маÑкаМеню Бърза маÑкаБързо запазванеБърза маÑкаИзлизане от GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB цвÑтДнЛПока_зване отново на "%s"_ОтновоД_еÑен краен цвÑÑ‚...РадиуÑ:ПремеÑтване _отгореПовдигане най-_гореПремеÑтване нагореПремеÑтване отгореПремеÑтване нагореÐай-отгореПовдигане на пътекатаПовдигане най-горе_УвеличениеПоказване на изображение, ако е вече отвореноПоказ_ване отново на поÑледниÑЦентриране _отново Ñредната точка на ÑелекциÑтаЦентриране _отново Ñредната точка на ÑегментаПреориентиране _точките на ÑегментаПреориентиране _точките на ÑелекциÑтаПре_именуване на запазени наÑтройкиПо_втори "%s"Връщане _в начално ÑÑŠÑтоÑние...Пълно изчиÑтване иÑториÑта на промените за това изображение?Обнови _прегледаОбнови прегледаЧервеноЧервено:ВръщанеПрезареждане на четкитеПрезареждане на преливкитеПрезареждане на палитритеОбновÑване на шаркитеПрезареждане на Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ Ð¸Ð·Ð³Ð»ÐµÐ´ÐžÐ±Ð½Ð¾Ð²Ð¸ _вÑичкиОбнови вÑичкиПремахване на и_злишнитеПремахване на ÑлойПремахване на запиÑаПремахване на излишнитеПремахни избранотоПреименуване на ÑлоÑПреименуване на запазени наÑтройки на инÑтрументитеПреименуване на текÑтов ÑлойПреименуване на обектаПовтарÑне на поÑледниÑРазмножаванеРазмножаване на Ñегмента от преливкаРазмножаване на избраното от преливкатаРазмножаване на ÑегментаРазмножаване на избранотоПрезареждане на ÑпиÑъка Ñ ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð²ÐµÐ’Ñ€ÑŠÑ‰Ð°Ð½Ðµ наÑтройките към първоначалнитеВръщане на_вÑички наÑтройки към първоначалните...ИзчиÑтване на вÑички филтриВръщане наÑтройките на вÑички инÑтрументиВръщане на ÑтойноÑтите по подразбиранеИзчиÑтване реда на инÑтрументите и видимоÑттаПреоразмерÑване...ВъзÑтановÑване на наÑтройките от...Връщане '%s' към '%s'?Връщане изображението в начално ÑÑŠÑтоÑниеВръщането невъзможно. ÐÑма файл Ñ Ñ‚Ð°ÐºÐ¾Ð²Ð° име.Връщане към '%s' невъзможно: + +%sЦвÑÑ‚ на дÑÑната крайна точкаЗавъртанеЗавъртане на 90 градуÑа _обратно на чаÑовниковата ÑтрелкаЗавъртане на 90 градуÑа _по чаÑовниковата ÑтрелкаЗавъртане на ÑлоÑЗавъртане на текÑÑ‚Ð¾Ð²Ð¸Ñ ÑлойЗавъртане на _180 градуÑаЗавъртане на изображениетоВъртене на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избранотоЗавъртане...Данни за въртенетоПоказване на _мрежатаС_малÑване...Б_одлиОбръ_щане на цветоветеЗа_пазване на деÑÐ½Ð¸Ñ Ñ†Ð²ÑÑ‚ вЗапазванеЗапазване на '%s' в POV-Ray форматЗапазване на кривиЗапазване опиÑанието на грешките във файлЗапазване на изображениетоЗапазване наÑтройките на входното уÑтройÑтво _ÑегаЗапазване на бързите клавиши _ÑегаЗапазване наÑтройките на инÑтрументаЗапомнÑне на разположението _ÑегаЗапазване на вÑички грешки във файл...Запазване на _избраното във файл...Запазване _като...Запазване на _копие...Запазване копие на изображениетоЗапазване на вÑички грешкиЗапазване като _POV-Ray файл...Запазване като _шаблон...Запазване на преливката в POV-Ray форматЗапазване на наÑтройките в...Запазване на ÑелекциÑтаЗапазване ÑелекциÑта като каналДа бъдат ли запазени промените в изображението "%s" преди затварÑне?Запазване разположението и размерите на оÑновните прозорци при Ñпиране на GIMP.Запазване като _каналЗапазени наÑтройкиЗапазване на '%s' Грешка при запазването на '%s' -%sЗапазване на изображениÑтаПапки ÑÑŠÑ ÑкриптовеСкриптовеПревъртане надолуПревъртане надолу (Alt)Превъртане надолу (Control + Alt)Превъртане надолу (Control)Превъртане надолу (Shift + Alt)Превъртане надолу (Shift + Control + Alt)Превъртане надолу (Shift + Control)Превъртане надолу (Shift)Превъртане налÑвоПревъртане налÑво (Alt)Превъртане налÑво (Control + Alt)Превъртане налÑво (Control)Превъртане налÑво (Shift + Alt)Превъртане налÑво (Shift + Control + Alt)Превъртане налÑво (Shift + Control)Превъртане налÑво (Shift)Превъртане надÑÑноПревъртане надÑÑно (Alt)Превъртане надÑÑно (Control + Alt)Превъртане надÑÑно (Control)Превъртане надÑÑно (Shift + Alt)Превъртане надÑÑно (Shift + Control + Alt)Превъртане надÑÑно (Shift + Control)Превъртане надÑÑно (Shift)Превъртане нагореПревъртане нагоре (Alt)Превъртане нагоре (Control + Alt)Превъртане нагоре (Control)Превъртане нагоре (Shift + Alt)Превъртане нагоре (Shift + Control + Alt)Превъртане нагоре (Shift + Control)Превъртане нагоре (Shift)ИзбиранеИзбиране на вÑичкоИзбор на цвÑтИзбор на оÑновен цвÑÑ‚ за промÑнаИзбор на изгледИзбор на папки Ñ Ð¸Ð·Ð³Ð»ÐµÐ´Ð¸Ð˜Ð·Ð±Ð¾Ñ€ на увеличениеИзбиране на _Ð¿Ñ€ÐµÐ´Ð¸ÑˆÐ½Ð¸Ñ ÑлойИзбиране на вÑичкоИзбиране на непрекъÑнати облаÑтиИзбиране на елиптични облаÑтиРъчно избиранеИзбиране на правоъгълни облаÑтиИзбиране на прозрачните облаÑтиИзбор на уеб-четецЧувÑтвителноÑтЗадаване на непрозрачноÑттаЗадаване цвета на фонаЗадаване на цвÑÑ‚ за риÑуванеЗадаване на четец за помощта.ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° на прегледите в иÑториÑта на промените.ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° на прегледите в прозореца за отварÑне на изображение. Забележете, че GIMP не може да Ñъздаде прегледите, ако прегледите на Ñлоевете Ñа забранени.ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ‚ÐµÐºÑта, който ще Ñе поÑвÑва в ивицата за ÑÑŠÑтоÑние на прозорците Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ.ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ‚ÐµÐºÑта, който ще Ñе поÑвÑва в заглавиÑта на прозорците Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ.Вид на ÑенкитеСенкиФормаКлавишКлавишът "%s" вече е запазен за "%s" от групата "%s".Показване на _линийкитеПоказване на ивицата за _ÑÑŠÑтоÑниеПоказване на _плъзгачитеПоказване _границите на ÑлоеветеПоказване на _менютоПоказване на _избранотоПоказване на _цвета на Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½ и фонаПоказване _границите на ÑлоеветеПоказване на _менютоПоказване на _линийкитеПоказване на текущото _изображениеПоказване на _мрежатаПоказване на _бутоните на помощтаПоказване на из_бранотоПоказване на ивицата за Ñ_ÑŠÑтоÑниеПоказване на _плъзгачитеПоказване на Ñъвет и ÑÐ»ÐµÐ´Ð²Ð°Ñ‰Ð¸Ñ Ð¿ÑŠÑ‚ÐŸÐ¾ÐºÐ°Ð·Ð²Ð°Ð½Ðµ на Ñъвети при начално _зарежданеПоказване на _подÑказкиРазмерРазмер в паметта:Размер:ПропуÑкане на '%s': неÑъответÑтвие на верÑиÑта на протокола на GIMP.МалъкПре_лепÑне към прежатаПлътниИзточникОтÑтоÑниÑСкороÑÑ‚:Зареждане на разширениÑтаЗареждане на разширение: '%s' -СъÑтоÑние:Ин_ÑтрументиТе_кÑтПрекъÑване на приÑтавка: '%s' -ТекÑтЦвÑÑ‚ на текÑтаРедактор на текÑтТекÑтов ÑлойТекÑÑ‚ÑŠÑ‚ е промененThe·GIMPПриÑтавката за четене на помощта на GIMP изглежда липÑва в инÑталациÑта ви.Фонов цвÑÑ‚ на мрежата; използва Ñе Ñамо при мрежа Ñ Ð´Ð²Ð¾Ð¹Ð½Ð¾ пунктирани линии.ЦвÑÑ‚ на чертите, изграждащи мрежата.ИзгледПапки Ñ Ð¸Ð·Ð³Ð»ÐµÐ´Ð¸Ð˜Ð·Ð³Ð»ÐµÐ´Ð¸Ð˜Ð¼Ð° %d Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ Ð½ÐµÐ·Ð°Ð¿Ð°Ð·ÐµÐ½Ð¸ промени:Има едно изображение Ñ Ð½ÐµÐ·Ð°Ð¿Ð°Ð·ÐµÐ½Ð¸ промени:Тази папка Ñе претърÑва за инÑталирани от Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ Ð¸Ð·Ð³Ð»ÐµÐ´Ð¸.Този инÑтрумент нÑма наÑтройки.МиниатюренЗаглавие и ÑÑŠÑтоÑниеИг_рачкиТвърде много ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð·Ð° грешки!ÐаÑтройки на инÑтрументитеМеню ÐаÑтройки на интÑрументаÐаÑтройки на _инÑтрументитеИкона на инÑтрументаИкона на инÑтрумента Ñ Ð¼ÐµÑ€Ð½Ð¸Ðº_ÐšÑƒÑ‚Ð¸Ñ Ñ Ð¸Ð½ÑÑ‚Ñ€ÑƒÐ¼ÐµÐ½Ñ‚Ð¸ÐšÑƒÑ‚Ð¸Ñ Ñ Ð¸Ð½ÑтрументиМеню ÐšÑƒÑ‚Ð¸Ñ Ñ Ð¸Ð½ÑтрументиИнÑтрументиМеню ИнÑтрументи_ПрозрачноÑтПреобразуванеПреобразуване...Превод:ПрозрачноÑтВид _прозрачноÑÑ‚:ВидВид %sОтмÑнаИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° променитеИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° _променитеМерни единициÐеизвеÑтен вид файлÐеизвеÑтен вид файл на палитра: -%sÐеозаглавеноИзползване на _уеб-четецИзползване на черно-бÑла (еднобитова) палитраИзползване на цвÑÑ‚ от преливкаСтойноÑтСтойноÑÑ‚:ВерÑÐ¸Ñ %s Ñъздадена отВерÑиÑ:Вертикално отÑтоÑние на първата черта на мрежата. Може да бъде отрицателно чиÑло.Вертикално отÑтоÑние на чертите на мрежата.Много голÑмМного малъкИзгледПредупреждение: Грешка при зареждане на данните: +%sЗапазване на изображениÑтаМащабиранеПреоразмерÑванеПреоразмерÑване на ÑлоÑПреоразмерÑване...Папки ÑÑŠÑ ÑкриптовеСкриптовеПревъртане надолуПревъртане надолу (Alt)Превъртане надолу (Control + Alt)Превъртане надолу (Control)Превъртане надолу (Shift + Alt)Превъртане надолу (Shift + Control + Alt)Превъртане надолу (Shift + Control)Превъртане надолу (Shift)Превъртане налÑвоПревъртане налÑво (Alt)Превъртане налÑво (Control + Alt)Превъртане налÑво (Control)Превъртане налÑво (Shift + Alt)Превъртане налÑво (Shift + Control + Alt)Превъртане налÑво (Shift + Control)Превъртане налÑво (Shift)Превъртане надÑÑноПревъртане надÑÑно (Alt)Превъртане надÑÑно (Control + Alt)Превъртане надÑÑно (Control)Превъртане надÑÑно (Shift + Alt)Превъртане надÑÑно (Shift + Control + Alt)Превъртане надÑÑно (Shift + Control)Превъртане надÑÑно (Shift)Превъртане нагореПревъртане нагоре (Alt)Превъртане нагоре (Control + Alt)Превъртане нагоре (Control)Превъртане нагоре (Shift + Alt)Превъртане нагоре (Shift + Control + Alt)Превъртане нагоре (Shift + Control)Превъртане нагоре (Shift)ИзбиранеИзбиране на вÑичкоИзбор на цвÑтИзбор на оÑновен цвÑÑ‚ за промÑнаИзбор на изгледИзбор на папки Ñ Ð¸Ð·Ð³Ð»ÐµÐ´Ð¸Ð˜Ð·Ð±Ð¾Ñ€ на увеличениеИзбиране на най-_Ð´Ð¾Ð»Ð½Ð¸Ñ ÑлойИзбиране на _ÑÐ»ÐµÐ´Ð²Ð°Ñ‰Ð¸Ñ ÑлойИзбиране на _Ð¿Ñ€ÐµÐ´Ð¸ÑˆÐ½Ð¸Ñ ÑлойИзбиране на най-_Ð³Ð¾Ñ€Ð½Ð¸Ñ ÑлойИзбиране на вÑичкоИзбиране на непрекъÑнати облаÑтиИзбиране на елиптични облаÑтиРъчно избиранеДеÑелектиранеИзбиране на правоъгълни облаÑтиКолко пъти да бъде +размножен избрниÑÑ‚ Ñегмент.Колко пъти да бъде +размножено избраното.Избиране Ð±Ñ€Ð¾Ñ Ð½Ð° равните чаÑти, +на които да Ñе разделÑÑ‚ Ñегментите на ÑелекциÑта.Избиране Ð±Ñ€Ð¾Ñ Ð½Ð° равните чаÑти, +на които да Ñе раздели Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ñегмент.Избиране на прозрачните облаÑтиИзбор на уеб-четецПре_връщане на ÑелекциÑта в пътекаМенюПревръщане на ÑелекциÑта в пътека (_Ñложно)Превръщане на ÑелекциÑта в пътекаЧувÑтвителноÑтРазмер за полето на изображениетоИзбиране на Ñ€ÐµÐ·Ð¾Ð»ÑŽÑ†Ð¸Ñ Ð·Ð° печатОпределÑне размера на ÑлоÑЗадаване на непрозрачноÑттаЗадаване цвета на фонаЗадаване на цвÑÑ‚ за риÑуванеЗадаване на четец за помощта.ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° на прегледите в иÑториÑта на промените.ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° на прегледите в прозореца за отварÑне на изображение. Забележете, че GIMP не може да Ñъздаде прегледите, ако прегледите на Ñлоевете Ñа забранени.ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ‚ÐµÐºÑта, който ще Ñе поÑвÑва в ивицата за ÑÑŠÑтоÑние на прозорците Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ.ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ‚ÐµÐºÑта, който ще Ñе поÑвÑва в заглавиÑта на прозорците Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ.Вид на ÑенкитеФормаКлавишКлавишът "%s" вече е запазен за "%s" от групата "%s".Показване на _линийкитеПоказване на ивицата за _ÑÑŠÑтоÑниеПоказване на _плъзгачитеПоказване _границите на ÑлоеветеПоказване на _менютоПоказване на _избранотоПоказване на _цвета на Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½ и фонаПоказване _границите на ÑлоеветеПоказване на _менютоПоказване на _линийкитеПоказване на текущото _изображениеПоказване на _мрежатаПоказване на _бутоните на помощтаПоказване на из_бранотоПоказване на ивицата за Ñ_ÑŠÑтоÑниеПоказване на _плъзгачитеПоказване на Ñъвет и ÑÐ»ÐµÐ´Ð²Ð°Ñ‰Ð¸Ñ Ð¿ÑŠÑ‚ÐŸÐ¾ÐºÐ°Ð·Ð²Ð°Ð½Ðµ на Ñъвети при начално _зарежданеПоказване на _подÑказкиСмалÑване на ÑелекциÑтаСмалÑване от краищата на изображениетоСмалÑване на ÑелекциÑта ÑРазмерРазмер в паметта:Размер:ПропуÑкане на '%s': неÑъответÑтвие на верÑиÑта на протокола на GIMP.МалъкМеки краищаПре_лепÑне към прежатаПлътниИзточникОтÑтоÑниÑСкороÑÑ‚:Сферично (_намалÑване)Сферично (у_величаване)РазделÑнеРазделÑне Ñегмента от преливката на равни чаÑтиРазделÑне Ñегментите на преливката поравноРазделÑне Ñегмента на равни чаÑтиРазделÑне Ñегмента на равни чаÑти...РазделÑне Ñегмента през _Ñредната точкаРазделÑне Ñегментите поравноРазделÑне Ñегментите на равни чаÑти...РазделÑне Ñегментите през Ñредната точкаСт_Ð°Ñ‚ÑƒÑ Ð¸ текÑтП_акетЗареждане на разширениÑтаЗареждане на разширение: '%s' +СъÑтоÑние:О_чертаване на пътекатаО_чертаване на пътеката...Очертаване на пътекатаОчертаване на ÑелециÑтаОчертаване на пътеката като поÑÐ»ÐµÐ´Ð½Ð¸Ñ Ð¿ÑŠÑ‚ÐžÑ‡ÐµÑ€Ñ‚Ð°Ð²Ð°Ð½Ðµ на пътеката...Очертаване на ÑелекциÑта като поÑÐ»ÐµÐ´Ð½Ð¸Ñ Ð¿ÑŠÑ‚ÐžÑ‡ÐµÑ€Ñ‚Ð°Ð²Ð°Ð½Ðµ на ÑелекциÑта...ИзважданеИн_ÑтрументиТе_кÑтИнÑтрумент за _текÑтШаблониМеню шаблониПрекъÑване на приÑтавка: '%s' +ТекÑтЦвÑÑ‚ на текÑтаРедактор на текÑтТекÑтов ÑлойТекÑÑ‚ÑŠÑ‚ е промененThe·GIMPПриÑтавката за четене на помощта на GIMP изглежда липÑва в инÑталациÑта ви.Фонов цвÑÑ‚ на мрежата; използва Ñе Ñамо при мрежа Ñ Ð´Ð²Ð¾Ð¹Ð½Ð¾ пунктирани линии.Интерптретаторът за пакетна обработка '%s' не е наличен, пакетната обработка е изключена.Името на файла не може да бъде конветирано в UTF-8: %s + +МолÑ, провери променливата G_FILENAME_ENCODING.ЦвÑÑ‚ на чертите, изграждащи мрежата.Името на директориÑта, Ñъдържаща личните ти наÑтройки за GIMP не може да Ñе конвертира в UTF-8: %s + +Ðай-вероÑтно твоÑта файлова ÑиÑтема запазва файловете различно от UTF-8 и GLib не е наÑтроен за това. МолÑ, наÑтрой променливата G_FILENAME_ENCODING.ИзгледПапки Ñ Ð¸Ð·Ð³Ð»ÐµÐ´Ð¸Ð˜Ð·Ð³Ð»ÐµÐ´Ð¸Ð˜Ð¼Ð° %d Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ Ð½ÐµÐ·Ð°Ð¿Ð°Ð·ÐµÐ½Ð¸ промени:ÐÑма активен Ñлой или канал, от който да Ñе копира.ÐÑма активен Ñлой или канал, от който да Ñе изреже.ÐÑма активен Ñлой или канал, който да Ñе очертае.Има едно изображение Ñ Ð½ÐµÐ·Ð°Ð¿Ð°Ð·ÐµÐ½Ð¸ промени:Тази папка Ñе претърÑва за инÑталирани от Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ Ð¸Ð·Ð³Ð»ÐµÐ´Ð¸.Този инÑтрумент нÑма наÑтройки.МиниатюренЗаглавие и ÑÑŠÑтоÑниеВ _пътекаИг_рачки_Превключване на бърза маÑкаТвърде много ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð·Ð° грешки!ÐаÑтройки на инÑтрументитеМеню ÐаÑтройки на интÑрументаÐаÑтройки на _инÑтрументитеИкона на инÑтрументаИкона на инÑтрумента Ñ Ð¼ÐµÑ€Ð½Ð¸Ðº_ÐšÑƒÑ‚Ð¸Ñ Ñ Ð¸Ð½ÑÑ‚Ñ€ÑƒÐ¼ÐµÐ½Ñ‚Ð¸ÐšÑƒÑ‚Ð¸Ñ Ñ Ð¸Ð½ÑтрументиМеню ÐºÑƒÑ‚Ð¸Ñ Ñ Ð¸Ð½ÑтрументиИнÑтрументиМеню ИнÑтрументи_ПрозрачноÑтПреобразуванеПреобразуване...Превод:ПрозрачноÑтВид _прозрачноÑÑ‚:ВидВид %sОтмÑнаИÑториÑИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° _променитеМерни единициÐеизвеÑтен вид файлÐеизвеÑтен вид файл на палитра: +%sÐеозаглавеноИзползване на _уеб-четецИзползване на черно-бÑла (еднобитова) палитраИзползване на цвÑÑ‚ от преливкаСтойноÑтСтойноÑÑ‚:ВерÑÐ¸Ñ %s Ñъздадена отВерÑиÑ:Вертикално отÑтоÑние на първата черта на мрежата. Може да бъде отрицателно чиÑло.Вертикално отÑтоÑние на чертите на мрежата.Много голÑмМного малъкИзгледПоказване като мрежаПоказване като ÑпиÑъкПредупреждение: Грешка при зареждане на данните: %sПредупреждение: Грешка при запазване на данните: %sУеб-четецУеб-четецДобре дошли -в потребителÑката инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ñ Ð½Ð° The GIMP %d.%dÐко е зададено, при натиÑкане на F1 ще Ñе Ð¾Ñ‚Ð²Ð°Ñ€Ñ Ñ‡ÐµÑ‚ÐµÑ†Ð° за помощта.БÑл цвÑтШирочинаШирочина:Управление на прозорцитеРазположение на прозорцитеЗапиÑване на '%s' +в потребителÑката инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ñ Ð½Ð° The GIMP %d.%dÐко е зададено, при натиÑкане на F1 ще Ñе Ð¾Ñ‚Ð²Ð°Ñ€Ñ Ñ‡ÐµÑ‚ÐµÑ†Ð° за помощта.БÑл цвÑтБаланÑÑŠÑ‚ на бÑлото работи Ñамо на RGB Ñлоеве.ШиринаШирочина:Управление на прозорцитеРазположение на прозорцитеЗапиÑване на '%s' XXCF грешка: неподдържана верÑÐ¸Ñ %d на XCF файлаПредупреждение за XCF: ВерÑиÑта 0 на Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸Ñ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ XCF не запазва правилно индекÑирани цветови карти. -ЗамÑна Ñ Ñ†Ð²ÐµÑ‚Ð¾Ð²Ð° карта на Ñтепени на Ñивото.YЖълтоЖълто:ТрÑбва да изпълните отново GIMP, за да Ñе приложат Ñледните промени:ИнÑталациÑта ви на GIMP е непълна:Мащаб 1:1УвеличаванеÐамалÑванеМащаб на увеличениетоМащаб на увеличението:_Увеличаване_ÐамалÑванеМащаб %d:1ПромÑна на мащаба при промÑна размера на прозорецаУвеличаванеÐамалÑване и увеличаванеÐамалÑванеМащаб:_ОтноÑно_Снимане_Допълнителни наÑтройки_Спрей_Ð’Ñичко_ЦвÑÑ‚ на фона:_ЯркоÑÑ‚:_Четка_Четки_Запълване_ИзчиÑтване на прозореца Ñ Ð³Ñ€ÐµÑˆÐºÐ¸Ð˜Ð·__ЗатварÑне_Облаци_Цветове_КонтекÑтна помощ_Криви..._Цветове по подразбиране_Изтриване на четка_Изтриване на цвÑÑ‚_Изтриване на преливка..._Изтриване на изображение_Изтриване на ÑлоÑ_Изтриване на палитра_Изтриване на запазени наÑтройки_Изтриване на шаблон_ПрозорциОт_хвърлÑне на промените_Редактиране_Редактиране на четка..._Редактиране на цвÑÑ‚..._Редактиране на преливка..._Редактиране на палитра...Ог_ромен_Гума_Файл_Запълване Ñ:_Обръщане_Шрифт_ШрифтовеЦвÑÑ‚ на _чертите:Гига_нтÑки_Преливка_ПреливкиСтепени на _Ñивото_ПомощГрам_аден_Изображение_ИзображениÑ_ВнаÑÑне_ВнаÑÑне на палитра...Прзорец Ñ _данни_Обръщане_ГолÑм_Слой_Слоеве_Светлинни ефекти_Ръчно_Измерване_Среден_Сливане на палитри..._Управление на модулите_ПремеÑтване_Име:_Ðова четка_Ðова преливка_Ðов Ñлой_Ðов Ñлой..._Ðова палитра_Ðов изглед_Ðов..._Следващ Ñъвет_Шум_Ðищо_ÐепрозрачноÑÑ‚_ОтварÑне на изображението_ОтварÑне..._Палитра_ПерÑпектива_ÐаÑтройки_ПрегледРазмер на _прегледа_Предишен Ñъвет_Изход_RGB_РадиуÑ_Връщане_Презареждане на четките_Презареждане на преливките_Презареждане на палитрите_Презареждане на ÑпиÑъка Ñ ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð²Ðµ_Връщане на подразбиращите Ñе наÑтройки на входните уÑтройÑтва_Връщане на подразбиращите Ñе бързи клавиши_Връщане на подразбиращите Ñе разположениÑ_ВъзÑтановÑване на наÑтройките от_Завъртане_Запазване_Запазване на наÑтройките в_Запазване наÑтройките на входното уÑтройÑтво при изход_Запазване на бързите клавиши при излизане_ЗапомнÑне на разположението при излизане_Избиране_СинуÑоидалноМа_лък_Шаблон:_ТекÑÑ‚_Миниатюрен_Съвет за денÑ_ИнÑтрумент_ИнÑтрументи_Преобразуване_ОтмÑна_Изглед_Използване на:_Широчина:_X:_ДопълнениÑ_Y:_Мащаб_Мащаб (%s)милиметърмилиметриминутаÑекундаtips-locale:bgЯÑен Праматаров \ No newline at end of file +ЗамÑна Ñ Ñ†Ð²ÐµÑ‚Ð¾Ð²Ð° карта на Ñтепени на Ñивото.YЖълтоЖълто:ТрÑбва да изпълните отново GIMP, за да Ñе приложат Ñледните промени:ИнÑталациÑта ви на GIMP е непълна:Мащаб 1:1Увеличаване на вÑичкоУвеличаванеÐамалÑванеМащаб на увеличениетоМащаб на увеличението:Увеличаване на_вÑичко_Увеличаване_ÐамалÑванеУвеличаване на вÑичкоМащаб %d:1ПромÑна на мащаба при промÑна размера на прозорецаУвеличаванеÐамалÑване и увеличаванеÐамалÑванеМащаб:_ОтноÑно_Снимане_ДобавÑне цвÑÑ‚ от фона_ДобавÑне цвÑÑ‚ от Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½_Добави модул_ДобавÑне към ÑелекциÑ_Допълнителни наÑтройки_Спрей_Ð’ÑичкоФикÑиране на ÑлоÑ_Въртене по зададена ÑтойноÑÑ‚..._ХудожеÑтвени_СплеÑкване_Ðвтоматично_ЦвÑÑ‚ на фона_ЦвÑÑ‚ на фона:_ИзбледнÑване на Ñегмента_ИзбледнÑване на ÑелекциÑта_ЗамъглÑване_ЯркоÑÑ‚:_Четка_Четки_Четки, шарки и преливки_Запълване_Буфер_По цвÑÑ‚_Канали_ИзчиÑтване на прозореца Ñ Ð³Ñ€ÐµÑˆÐºÐ¸_ИзчиÑтване иÑториÑта на дейÑтвиÑта_ЗатварÑне_Затвори модула_Облаци_Цветове_Цветове_ÐаÑтройване на цвÑÑ‚ и плътноÑÑ‚..._КонтекÑÑ‚_КонтекÑтна помощ_Копиране_Копиране на..._Създаване на изображение по шаблон..._РÑзане_Криви_Криви..._Цветове по подразбиране_Изтриване на четката_Изпразване на буфера_Изтриване на канала_Изтриване на цвÑÑ‚_Изтриване на преливка..._Изтриване на изображение_Изтриване на ÑлоÑ_Изтриване на палитра_Изтриване на пътеката_Изтриване на шарката..._Изтриване на запазени наÑтройки_Изтриване на Ñегмента_Изтриване на ÑелекциÑта_Изтриване на шаблон_ОÑвободи модула_СъÑтоÑние на уÑтройÑтвото_ПрозорциОт_хвърлÑне на промените_Унищожаване на информациÑта за текÑта_ДеÑтуктивни_Размножаване_Редактиране_Редактиране на четката..._ПромÑна наÑтройките на канала..._Редактиране на цвÑÑ‚..._Редактиране на преливка..._ПромÑна наÑтройките на ÑлоÑ..._Редактиране на палитра..._ПромÑна наÑтройките на пътеката..._Редактиране на шарката..._Редактиране на шаблон...Ог_ромен_Фина наÑтройка_Гума_ЦвÑÑ‚ на Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½_Файл_Запълване Ñ:_Слепване на Ñлоевете_Обръщане_Обръщане на Ñегмента_Обръщане на ÑелекциÑта_Плаваща ÑелекциÑ_Шрифт_ШрифтовеЦвÑÑ‚ на _чертите:_ОбщиГига_нтÑки_Преливка_ПреливкиСтепени на _Ñивото_Увеличаване..._Водачи_ТвърдоÑÑ‚_ПомощГрам_аден_Иконка_Изображение_ИзображениÑ_ВнаÑÑне_ВнаÑÑне на палитра..._ИндекÑиран..._ПреÑичане ÑÑŠÑ ÑелекциÑ_Обръщане_ГолÑм_Слой_Слоеве_Слоеве, канали и пътеки_ЛÑва крайна точка_ДÑÑна крайна точка на лÑвата ÑÑŠÑедна_Светлинни ефекти_Линейно_Свързан_Зареждане на Ð»ÐµÐ²Ð¸Ñ Ñ†Ð²ÑÑ‚ от_ПремеÑтване надолy_Ðадолу_Снижаване_Ръчно_Карта_МаÑка_Превръщане на маÑката в ÑелекциÑ_Измерване_Среден_Сливане на палитри..._Други_Тип_Управление на модулите_ПремеÑтване_Име:_Природа_Ðова четка_Ðов канал_Ðов канал..._Ðова наÑтройка..._Ðова преливка_Ðов Ñлой_Ðов Ñлой..._Ðова палитра_Ðова пътека_Ðова пътека..._Ðова шарка_Ðов шаблон..._Ðов изглед_Ðов..._Следващ Ñъвет_Шум_Ðищо_ОтмеÑтване..._ÐепрозрачноÑÑ‚_ОтварÑне на изображението_ОтварÑне..._РиÑуване_Палитра_Вмъкване_Вмъкване на буфера_Вмъкване на..._Пътеки_Шарка_ПерÑпектива_ÐаÑтройки_ПрегледРазмер на _прегледа_Предишен Ñъвет_Размер при печат..._ÐаÑтройки_Бързата маÑка активна_Изход_RGB_РадиуÑ_ПремеÑтване нагоре_ПремеÑтване нагоре_Повдигане на пътеката_Увеличение_Показване или отварÑне на изображениÑ_Връщане_ПовтарÑне на %s_Презареждане на четките_Презареждане на преливките_Презареждане на палитрите_ОбновÑване на шарките_Генериране_ПодмÑна на Ñегмента..._ПодмÑна на ÑелекциÑта..._Презареждане на ÑпиÑъка Ñ ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð²Ðµ_ИзчиÑтване реда и видимоÑтта_Връщане на подразбиращите Ñе наÑтройки на входните уÑтройÑтва_Връщане на подразбиращите Ñе бързи клавиши_Връщане на подразбиращите Ñе разположениÑ_ВъзÑтановÑване на наÑтройките от_ДÑÑна крайна точка_ЛÑва крайна точка на дÑÑната ÑÑŠÑедна_Въртене_Запазване_Запазване на Ð»ÐµÐ²Ð¸Ñ Ñ†Ð²ÑÑ‚ в_Запазване на наÑтройките в_Запазване наÑтройките на входното уÑтройÑтво при изход_Запазване на бързите клавиши при излизане_ЗапомнÑне на разположението при излизане_ПреоразмерÑване..._ПреоразмерÑване на ÑлоÑ..._Избиране_ПромÑна на ÑелекциÑта_Селектиране_Форма_ИзоÑÑ‚Ñ€Ñне_Показване на ÑелекциÑта_Показване в инÑтрументите_СинуÑоидалноМа_лъкОчертаване на ÑелекциÑта_Очертаване на ÑелекциÑта..._Изваждане от ÑелекциÑ_Вид на модула_Шаблон:_Шаблони_ТекÑÑ‚_Миниатюрен_Съвет за денÑ_ИнÑтрумент_ИнÑтрументи_Преобразуване_ТранÑформиране_ОтмÑна_ОтмÑна на %s_Изглед_Видим_Уеб_Използване на:_Ð‘Ð°Ð»Ð°Ð½Ñ Ð½Ð° бÑлото_Широчина:_X:_ДопълнениÑ_Y:_Мащаб_Мащаб (%s)инчовемилиметърмилиметриминутапроцентаÑекундаtips-locale:bgЯÑен Праматаров +Виктор Дачев \ No newline at end of file diff -uraN gimp-2.2.7/po/bg.po gimp-2.2.8/po/bg.po --- gimp-2.2.7/po/bg.po 2005-02-23 18:44:43.000000000 +0100 +++ gimp-2.2.8/po/bg.po 2005-05-12 13:32:04.000000000 +0200 @@ -1,17 +1,19 @@ +# translation of gimp.HEAD.po to +# translation of gimp.HEAD.po to # Bulgarian translation of GIMP. # Copyright (C) 2005 THE GIMP'S COPYRIGHT HOLDER # This file is distributed under the same license as the GIMP package. # Iassen Pramatarov , 2005. -# -# +# Victor Dachev , 2005. +# msgid "" msgstr "" -"Project-Id-Version: GIMP 2.2\n" +"Project-Id-Version: gimp.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-23 12:40+0200\n" -"PO-Revision-Date: 2005-02-23 11:42+0200\n" -"Last-Translator: Iassen Pramatarov \n" -"Language-Team: Bulgarian \n" +"POT-Creation-Date: 2005-05-12 09:31+0300\n" +"PO-Revision-Date: 2005-05-12 09:28+0300\n" +"Last-Translator: Victor Dachev \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,24 +21,32 @@ #: ../app/app_procs.c:144 msgid "(This console window will close in ten seconds)\n" -msgstr "" +msgstr "(Този прозорец ще Ñе затвори Ñлед деÑет Ñекунди)\n" -#: ../app/app_procs.c:238 +#: ../app/app_procs.c:239 msgid "" "GIMP is not properly installed for the current user.\n" "User installation was skipped because the '--no-interface' flag was used.\n" "To perform user installation, run the GIMP without the '--no-interface' flag." msgstr "" +"GIMP не е правилно инÑталиран за този потребител.\n" +"ИнÑталациÑта не беше завършена защото беше изпозван флаг '--нÑма-външен " +"вид'.\n" +"За да оÑъщеÑтвите инÑталациÑта, пуÑнете GIMP Ñ Ñ„Ð»Ð°Ð³ '--нÑма-външен вид' " -#: ../app/app_procs.c:289 -#, c-format +#: ../app/app_procs.c:290 +#, fuzzy, c-format msgid "" "Unable to open a test swap file. To avoid data loss please check the " "location and permissions of the swap directory defined in your Preferences " "(currently \"%s\")." msgstr "" +"Ðе може да Ñе отвори теÑтови swap файл.\n" +"\n" +"За да Ñе предодврати загуба на данни, Ð¼Ð¾Ð»Ñ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐµÑ‚Ðµ меÑтопопжението и " +"правата над swap директориÑта в ÐаÑтройки ( в момента \"%s\");" -#: ../app/app_procs.c:348 ../app/core/gimppalette-import.c:441 +#: ../app/app_procs.c:349 ../app/core/gimppalette-import.c:441 #, c-format msgid "Opening '%s' failed: %s" msgstr "Грешка при отварÑнето на '%s': %s" @@ -45,12 +55,16 @@ #, c-format msgid "The batch interpreter '%s' is not available, batch mode disabled." msgstr "" +"Интерптретаторът за пакетна обработка '%s' не е наличен, пакетната обработка " +"е изключена." #: ../app/main.c:211 msgid "" "GIMP could not initialize the graphical user interface.\n" "Make sure a proper setup for your display environment exists." msgstr "" +"GIMP не може да намери графичниÑÑ‚ външе вид.\n" +"Увери Ñе че графичната ÑиÑтема е наÑтроена правилно." #: ../app/main.c:222 ../app/widgets/gimptoolbox.c:559 #: ../data/misc/gimp.desktop.in.in.h:3 @@ -81,16 +95,17 @@ msgstr "" #: ../app/main.c:511 +#, fuzzy msgid "Options:\n" -msgstr "ÐаÑтройки:\n" +msgstr "ÐаÑтройки на инÑтрументите" #: ../app/main.c:512 msgid " -h, --help Output this help.\n" -msgstr " -h, --help Показва този помощен текÑÑ‚.\n" +msgstr "" #: ../app/main.c:513 msgid " -v, --version Output version information.\n" -msgstr " -v, --version Данни за верÑиÑта.\n" +msgstr "" #: ../app/main.c:514 msgid " --verbose Show startup messages.\n" @@ -104,23 +119,25 @@ msgstr "Да не Ñе ÑÐ¿Ð¾Ð´ÐµÐ»Ñ Ð¿Ð°Ð¼ÐµÑ‚Ñ‚Ð° между GIMP и приÑтавките" #: ../app/main.c:516 +#, fuzzy msgid " --no-cpu-accel Do not use special CPU accelerations.\n" -msgstr "" +msgstr "Да не Ñе ползват Ñпециалните функции за уÑкорÑване на процеÑора" #: ../app/main.c:517 #, fuzzy msgid "" " -d, --no-data Do not load brushes, gradients, palettes, " "patterns.\n" -msgstr " -f, --no-fonts Без зареждане на шрифтове.\n" +msgstr "Без зареждане на четки, преливки, шарки, ..." #: ../app/main.c:518 msgid " -f, --no-fonts Do not load any fonts.\n" -msgstr " -f, --no-fonts Без зареждане на шрифтове.\n" +msgstr "" #: ../app/main.c:519 +#, fuzzy msgid " -i, --no-interface Run without a user interface.\n" -msgstr "" +msgstr "Стартирай без потребителÑки външен вид" #: ../app/main.c:520 msgid " --display Use the designated X display.\n" @@ -129,7 +146,7 @@ #: ../app/main.c:521 #, fuzzy msgid " -s, --no-splash Do not show the startup window.\n" -msgstr " -f, --no-fonts Без зареждане на шрифтове.\n" +msgstr "Без показване на начален екран" #: ../app/main.c:522 #, fuzzy @@ -147,20 +164,23 @@ msgstr "Използване на различен файл gimprc ÑÑŠÑ ÑиÑтемни наÑтройки" #: ../app/main.c:525 +#, fuzzy msgid "" " --dump-gimprc Output a gimprc file with default settings.\n" -msgstr "" +msgstr "Ðаправи gimprc файл ÑÑŠÑ Ð½Ð°Ñтройките по подразбиране" #: ../app/main.c:526 +#, fuzzy msgid "" " -c, --console-messages Display warnings to console instead of a dialog " "box.\n" -msgstr "" +msgstr "Изпращай ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð´Ð¾ конзолата, вмеÑто да Ñе използва диалог" #: ../app/main.c:527 +#, fuzzy msgid "" " --debug-handlers Enable non-fatal debugging signal handlers.\n" -msgstr "" +msgstr "Включи не-фаталните Ñигнали за поправка" #: ../app/main.c:528 msgid "" @@ -191,6 +211,9 @@ "\n" "Please check the value of the environment variable G_FILENAME_ENCODING." msgstr "" +"Името на файла не може да бъде конветирано в UTF-8: %s\n" +"\n" +"МолÑ, провери променливата G_FILENAME_ENCODING." #: ../app/sanity.c:213 #, c-format @@ -202,161 +225,166 @@ "8 and you didn't tell GLib about this. Please set the environment variable " "G_FILENAME_ENCODING." msgstr "" +"Името на директориÑта, Ñъдържаща личните ти наÑтройки за GIMP не може да Ñе " +"конвертира в UTF-8: %s\n" +"\n" +"Ðай-вероÑтно твоÑта файлова ÑиÑтема запазва файловете различно от UTF-8 и " +"GLib не е наÑтроен за това. МолÑ, наÑтрой променливата G_FILENAME_ENCODING." #. initialize the list of gimp brushes -#: ../app/actions/actions.c:93 ../app/core/gimp.c:856 +#: ../app/actions/actions.c:94 ../app/core/gimp.c:856 #: ../app/dialogs/dialogs.c:138 ../app/dialogs/preferences-dialog.c:2297 #: ../app/pdb/internal_procs.c:92 msgid "Brushes" msgstr "Четки" -#: ../app/actions/actions.c:96 ../app/dialogs/dialogs.c:150 +#: ../app/actions/actions.c:97 ../app/dialogs/dialogs.c:150 msgid "Buffers" -msgstr "" +msgstr "Буфери" -#: ../app/actions/actions.c:99 ../app/dialogs/dialogs.c:163 +#: ../app/actions/actions.c:100 ../app/dialogs/dialogs.c:163 msgid "Channels" -msgstr "" +msgstr "Канали" -#: ../app/actions/actions.c:102 +#: ../app/actions/actions.c:103 msgid "Colormap Editor" -msgstr "" +msgstr "Редактор на цветовете" -#: ../app/actions/actions.c:105 ../app/pdb/internal_procs.c:101 +#: ../app/actions/actions.c:106 ../app/pdb/internal_procs.c:101 msgid "Context" -msgstr "" +msgstr "КонтекÑÑ‚" -#: ../app/actions/actions.c:108 +#: ../app/actions/actions.c:109 msgid "Debug" -msgstr "" +msgstr "ПоправÑне" -#: ../app/actions/actions.c:111 +#: ../app/actions/actions.c:112 msgid "Dialogs" msgstr "Прозорци" -#: ../app/actions/actions.c:114 +#: ../app/actions/actions.c:115 msgid "Dockable" -msgstr "" +msgstr "Залепим" -#: ../app/actions/actions.c:117 ../app/dialogs/dialogs.c:152 +#: ../app/actions/actions.c:118 ../app/dialogs/dialogs.c:152 msgid "Document History" msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° документите" -#: ../app/actions/actions.c:120 ../app/core/core-enums.c:1041 -#: ../app/core/core-enums.c:1071 +#: ../app/actions/actions.c:121 ../app/core/core-enums.c:1043 +#: ../app/core/core-enums.c:1073 msgid "Drawable" -msgstr "" +msgstr "РиÑуване" -#: ../app/actions/actions.c:123 ../app/tools/tools-enums.c:144 +#: ../app/actions/actions.c:124 ../app/tools/tools-enums.c:144 msgid "Edit" msgstr "Редактиране" -#: ../app/actions/actions.c:126 ../app/dialogs/dialogs.c:131 +#: ../app/actions/actions.c:127 ../app/dialogs/dialogs.c:131 msgid "Error Console" msgstr "Ð¡ÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð·Ð° грешки" -#: ../app/actions/actions.c:129 +#: ../app/actions/actions.c:130 msgid "File" -msgstr "" +msgstr "Файл" #. initialize the list of gimp fonts -#: ../app/actions/actions.c:132 ../app/core/gimp.c:872 +#: ../app/actions/actions.c:133 ../app/core/gimp.c:872 #: ../app/dialogs/dialogs.c:146 ../app/dialogs/preferences-dialog.c:2313 #: ../app/pdb/internal_procs.c:128 msgid "Fonts" msgstr "Шрифтове" -#: ../app/actions/actions.c:135 ../app/dialogs/dialogs.c:205 +#: ../app/actions/actions.c:136 ../app/dialogs/dialogs.c:205 msgid "Gradient Editor" msgstr "Редактор на преливки" #. initialize the list of gimp gradients -#: ../app/actions/actions.c:138 ../app/core/gimp.c:868 +#: ../app/actions/actions.c:139 ../app/core/gimp.c:868 #: ../app/dialogs/dialogs.c:142 ../app/dialogs/preferences-dialog.c:2309 #: ../app/pdb/internal_procs.c:140 msgid "Gradients" msgstr "Преливки" -#: ../app/actions/actions.c:141 +#: ../app/actions/actions.c:142 msgid "Help" msgstr "Помощ" -#: ../app/actions/actions.c:144 ../app/pdb/internal_procs.c:149 +#: ../app/actions/actions.c:145 ../app/pdb/internal_procs.c:149 #: ../app/tools/tools-enums.c:176 msgid "Image" msgstr "Изображение" #. list & grid views -#: ../app/actions/actions.c:147 ../app/dialogs/dialogs.c:136 +#: ../app/actions/actions.c:148 ../app/dialogs/dialogs.c:136 msgid "Images" msgstr "ИзображениÑ" -#: ../app/actions/actions.c:150 ../app/dialogs/dialogs.c:159 +#: ../app/actions/actions.c:151 ../app/dialogs/dialogs.c:159 msgid "Layers" msgstr "Слоеве" -#: ../app/actions/actions.c:153 ../app/dialogs/dialogs.c:209 +#: ../app/actions/actions.c:154 ../app/dialogs/dialogs.c:209 msgid "Palette Editor" msgstr "Редактор на палитри" #. initialize the list of gimp palettes -#: ../app/actions/actions.c:156 ../app/core/gimp.c:864 +#: ../app/actions/actions.c:157 ../app/core/gimp.c:864 #: ../app/dialogs/dialogs.c:144 ../app/dialogs/preferences-dialog.c:2305 #: ../app/pdb/internal_procs.c:170 msgid "Palettes" msgstr "Палитри" #. initialize the list of gimp patterns -#: ../app/actions/actions.c:159 ../app/core/gimp.c:860 +#: ../app/actions/actions.c:160 ../app/core/gimp.c:860 #: ../app/dialogs/dialogs.c:140 ../app/dialogs/preferences-dialog.c:2301 #: ../app/pdb/internal_procs.c:185 msgid "Patterns" -msgstr "" +msgstr "Шарки" -#: ../app/actions/actions.c:162 ../app/dialogs/preferences-dialog.c:2317 +#: ../app/actions/actions.c:163 ../app/dialogs/preferences-dialog.c:2317 msgid "Plug-Ins" msgstr "ПриÑтавки" -#: ../app/actions/actions.c:165 +#: ../app/actions/actions.c:166 msgid "QuickMask" -msgstr "" +msgstr "Бърза маÑка" -#: ../app/actions/actions.c:168 +#: ../app/actions/actions.c:169 msgid "Select" msgstr "Избиране" #. initialize the template list -#: ../app/actions/actions.c:171 ../app/core/gimp.c:880 +#: ../app/actions/actions.c:172 ../app/core/gimp.c:880 #: ../app/dialogs/dialogs.c:154 msgid "Templates" -msgstr "" +msgstr "Шаблони" -#: ../app/actions/actions.c:174 +#: ../app/actions/actions.c:175 msgid "Text Editor" msgstr "Редактор на текÑÑ‚" -#: ../app/actions/actions.c:177 ../app/dialogs/dialogs.c:123 +#: ../app/actions/actions.c:178 ../app/dialogs/dialogs.c:123 #: ../app/dialogs/preferences-dialog.c:1585 #: ../app/dialogs/preferences-dialog.c:1588 ../app/gui/gui.c:410 msgid "Tool Options" msgstr "ÐаÑтройки на инÑтрументите" -#: ../app/actions/actions.c:180 ../app/dialogs/dialogs.c:148 +#: ../app/actions/actions.c:181 ../app/dialogs/dialogs.c:148 msgid "Tools" msgstr "ИнÑтрументи" -#: ../app/actions/actions.c:183 ../app/dialogs/dialogs.c:167 +#: ../app/actions/actions.c:184 ../app/dialogs/dialogs.c:167 #: ../app/pdb/internal_procs.c:176 ../app/tools/gimpvectortool.c:160 msgid "Paths" -msgstr "" +msgstr "Пътища" -#: ../app/actions/actions.c:186 +#: ../app/actions/actions.c:187 msgid "View" msgstr "Изглед" #: ../app/actions/brushes-actions.c:43 msgid "Brushes Menu" -msgstr "Меню Четки" +msgstr "Меню четки" #: ../app/actions/brushes-actions.c:47 msgid "_New Brush" @@ -368,19 +396,19 @@ #: ../app/actions/brushes-actions.c:53 msgid "D_uplicate Brush" -msgstr "" +msgstr "Д_ублиране на четката" #: ../app/actions/brushes-actions.c:54 msgid "Duplicate brush" -msgstr "" +msgstr "Дублиране на четката" #: ../app/actions/brushes-actions.c:59 msgid "_Delete Brush" -msgstr "_Изтриване на четка" +msgstr "_Изтриване на четката" #: ../app/actions/brushes-actions.c:60 msgid "Delete brush" -msgstr "Изтриване на четка" +msgstr "Изтриване на четката" #: ../app/actions/brushes-actions.c:65 msgid "_Refresh Brushes" @@ -392,136 +420,136 @@ #: ../app/actions/brushes-actions.c:74 msgid "_Edit Brush..." -msgstr "_Редактиране на четка..." +msgstr "_Редактиране на четката..." #: ../app/actions/brushes-actions.c:75 msgid "Edit brush" -msgstr "Редактиране на четка" +msgstr "Редактиране на четката" #: ../app/actions/buffers-actions.c:42 msgid "Buffers Menu" -msgstr "" +msgstr "Буфери" #: ../app/actions/buffers-actions.c:46 msgid "_Paste Buffer" -msgstr "" +msgstr "_Вмъкване на буфера" #: ../app/actions/buffers-actions.c:47 msgid "Paste the selected buffer" -msgstr "" +msgstr "Вмъкни избраното" #: ../app/actions/buffers-actions.c:52 msgid "Paste Buffer _Into" -msgstr "" +msgstr "Вмъкни _в" #: ../app/actions/buffers-actions.c:53 msgid "Paste the selected buffer into the selection" -msgstr "" +msgstr "Вмъкни избраното в ÑелекциÑта" #: ../app/actions/buffers-actions.c:58 msgid "Paste Buffer as _New" -msgstr "" +msgstr "Вмъкни като _ново" #: ../app/actions/buffers-actions.c:59 msgid "Paste the selected buffer as new image" -msgstr "" +msgstr "Вмъкни избраното като ново изображение" #: ../app/actions/buffers-actions.c:64 msgid "_Delete Buffer" -msgstr "" +msgstr "_Изпразване на буфера" #: ../app/actions/buffers-actions.c:65 msgid "Delete the selected buffer" -msgstr "" +msgstr "Премахни избраното" #: ../app/actions/channels-actions.c:44 msgid "Channels Menu" -msgstr "" +msgstr "Канали" #: ../app/actions/channels-actions.c:48 msgid "_Edit Channel Attributes..." -msgstr "" +msgstr "_ПромÑна наÑтройките на канала..." #: ../app/actions/channels-actions.c:49 msgid "Edit channel attributes" -msgstr "" +msgstr "ПромÑнанаÑтройките на канала" #: ../app/actions/channels-actions.c:54 msgid "_New Channel..." -msgstr "" +msgstr "_Ðов канал..." #: ../app/actions/channels-actions.c:55 msgid "New channel..." -msgstr "" +msgstr "Ðов канал..." #: ../app/actions/channels-actions.c:60 msgid "_New Channel" -msgstr "" +msgstr "_Ðов канал" #: ../app/actions/channels-actions.c:61 msgid "New channel with last values" -msgstr "" +msgstr "Ðов канал Ñ Ð½Ð°Ñтройки на предишниÑ" #: ../app/actions/channels-actions.c:66 msgid "D_uplicate Channel" -msgstr "" +msgstr "Д_ублиране на канала" #: ../app/actions/channels-actions.c:67 msgid "Duplicate channel" -msgstr "" +msgstr "Дублиране на канала" #: ../app/actions/channels-actions.c:72 msgid "_Delete Channel" -msgstr "" +msgstr "_Изтриване на канала" -#: ../app/actions/channels-actions.c:73 ../app/core/core-enums.c:1089 +#: ../app/actions/channels-actions.c:73 ../app/core/core-enums.c:1091 msgid "Delete channel" -msgstr "" +msgstr "Изтриване на канала" #: ../app/actions/channels-actions.c:78 msgid "_Raise Channel" -msgstr "" +msgstr "_ПремеÑтване нагоре" #: ../app/actions/channels-actions.c:79 msgid "Raise channel" -msgstr "" +msgstr "ПремеÑтване нагоре" #: ../app/actions/channels-actions.c:84 msgid "Raise Channel to _Top" -msgstr "" +msgstr "ПремеÑтване _отгоре" #: ../app/actions/channels-actions.c:85 msgid "Raise channel to top" -msgstr "" +msgstr "ПремеÑтване отгоре" #: ../app/actions/channels-actions.c:90 msgid "_Lower Channel" -msgstr "" +msgstr "_ПремеÑтване надолy" #: ../app/actions/channels-actions.c:91 msgid "Lower channel" -msgstr "" +msgstr "ПремеÑтване надолy" #: ../app/actions/channels-actions.c:96 msgid "Lower Channel to _Bottom" -msgstr "" +msgstr "ПремеÑтване _отдолy" #: ../app/actions/channels-actions.c:97 msgid "Lower channel to bottom" -msgstr "" +msgstr "ПремеÑтване отдолy" #: ../app/actions/channels-actions.c:105 msgid "Channel to Sele_ction" -msgstr "" +msgstr "Създаване на Ñеле_ÐºÑ†Ð¸Ñ Ð¾Ñ‚ канала" #: ../app/actions/channels-actions.c:106 msgid "Channel to selection" -msgstr "" +msgstr "Създаване на ÑÐµÐ»ÐµÐºÑ†Ð¸Ñ Ð¾Ñ‚ канала" #: ../app/actions/channels-actions.c:111 ../app/actions/layers-actions.c:226 #: ../app/actions/vectors-actions.c:173 msgid "_Add to Selection" -msgstr "" +msgstr "_ДобавÑне към ÑелекциÑ" #: ../app/actions/channels-actions.c:112 ../app/actions/vectors-actions.c:174 msgid "Add" @@ -530,40 +558,40 @@ #: ../app/actions/channels-actions.c:117 ../app/actions/layers-actions.c:231 #: ../app/actions/layers-actions.c:254 ../app/actions/vectors-actions.c:179 msgid "_Subtract from Selection" -msgstr "" +msgstr "_Изваждане от ÑелекциÑ" #: ../app/actions/channels-actions.c:118 ../app/actions/vectors-actions.c:180 #: ../app/widgets/gimpwidgets-constructors.c:69 #: ../app/widgets/gimpwidgets-constructors.c:102 msgid "Subtract" -msgstr "" +msgstr "Изваждане" #: ../app/actions/channels-actions.c:123 ../app/actions/layers-actions.c:236 #: ../app/actions/layers-actions.c:259 ../app/actions/vectors-actions.c:185 msgid "_Intersect with Selection" -msgstr "" +msgstr "_ПреÑичане ÑÑŠÑ ÑелекциÑ" #: ../app/actions/channels-actions.c:124 ../app/actions/vectors-actions.c:186 msgid "Intersect" -msgstr "" +msgstr "ПреÑичане" #: ../app/actions/channels-commands.c:86 #: ../app/actions/channels-commands.c:383 msgid "Channel Attributes" -msgstr "" +msgstr "ÐаÑтройки на канала" #: ../app/actions/channels-commands.c:89 msgid "Edit Channel Attributes" -msgstr "" +msgstr "ПромÑна наÑтройките на канала" #: ../app/actions/channels-commands.c:91 msgid "Edit Channel Color" -msgstr "" +msgstr "ПромÑна цвета на канала" #: ../app/actions/channels-commands.c:92 #: ../app/actions/channels-commands.c:124 msgid "Fill Opacity:" -msgstr "" +msgstr "ПлътноÑÑ‚ на запълване:" #: ../app/actions/channels-commands.c:117 #: ../app/actions/channels-commands.c:118 @@ -571,29 +599,29 @@ #: ../app/actions/channels-commands.c:163 #: ../app/widgets/gimpchanneltreeview.c:256 msgid "New Channel" -msgstr "" +msgstr "Ðов канал" #: ../app/actions/channels-commands.c:121 msgid "New Channel Options" -msgstr "" +msgstr "ÐаÑтройки на Ð½Ð¾Ð²Ð¸Ñ ÐºÐ°Ð½Ð°Ð»" #: ../app/actions/channels-commands.c:123 msgid "New Channel Color" -msgstr "" +msgstr "ЦвÑÑ‚ на Ð½Ð¾Ð²Ð¸Ñ ÐºÐ°Ð½Ð°Ð»" #: ../app/actions/channels-commands.c:246 #, c-format msgid "%s Channel Copy" -msgstr "" +msgstr "%s Копиране на канала" #: ../app/actions/channels-commands.c:311 ../app/core/gimpselection.c:595 #: ../app/pdb/selection_cmds.c:921 ../app/pdb/selection_cmds.c:1045 msgid "Channel to Selection" -msgstr "" +msgstr "Създаване на ÑÐµÐ»ÐµÐºÑ†Ð¸Ñ Ð¾Ñ‚ канала" #: ../app/actions/colormap-editor-actions.c:43 msgid "Colormap Menu" -msgstr "" +msgstr "Цветово меню" #: ../app/actions/colormap-editor-actions.c:47 #: ../app/actions/palette-editor-actions.c:47 @@ -607,32 +635,32 @@ #: ../app/actions/colormap-editor-actions.c:56 msgid "_Add Color from FG" -msgstr "" +msgstr "_ДобавÑне цвÑÑ‚ от Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½" #: ../app/actions/colormap-editor-actions.c:57 msgid "Add color from FG" -msgstr "" +msgstr "ДобавÑне цвÑÑ‚ от Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½" #: ../app/actions/colormap-editor-actions.c:62 msgid "_Add Color from BG" -msgstr "" +msgstr "_ДобавÑне цвÑÑ‚ от фона" #: ../app/actions/colormap-editor-actions.c:63 msgid "Add color from BG" -msgstr "" +msgstr "ДобавÑне цвÑÑ‚ от фона" #: ../app/actions/colormap-editor-commands.c:70 #, c-format msgid "Edit colormap entry #%d" -msgstr "" +msgstr "ПромÑна на цветова ÑтойноÑÑ‚ #%d" #: ../app/actions/colormap-editor-commands.c:76 msgid "Edit Colormap Entry" -msgstr "" +msgstr "ПромÑна на цветова ÑтойноÑÑ‚" #: ../app/actions/context-actions.c:46 msgid "_Context" -msgstr "" +msgstr "_КонтекÑÑ‚" #: ../app/actions/context-actions.c:47 ../app/actions/layers-actions.c:53 #: ../app/actions/plug-in-actions.c:64 @@ -645,7 +673,7 @@ #: ../app/actions/context-actions.c:49 msgid "Paint _Mode" -msgstr "" +msgstr "РиÑуване" #: ../app/actions/context-actions.c:50 msgid "_Tool" @@ -659,7 +687,7 @@ #: ../app/actions/context-actions.c:52 ../app/actions/plug-in-actions.c:78 #: ../app/dialogs/preferences-dialog.c:1630 msgid "_Pattern" -msgstr "" +msgstr "_Шарка" #: ../app/actions/context-actions.c:53 msgid "_Palette" @@ -677,7 +705,7 @@ #: ../app/actions/context-actions.c:57 msgid "_Shape" -msgstr "" +msgstr "_Форма" #: ../app/actions/context-actions.c:58 msgid "_Radius" @@ -685,15 +713,15 @@ #: ../app/actions/context-actions.c:59 msgid "S_pikes" -msgstr "" +msgstr "Б_одли" #: ../app/actions/context-actions.c:60 msgid "_Hardness" -msgstr "" +msgstr "_ТвърдоÑÑ‚" #: ../app/actions/context-actions.c:61 msgid "_Aspect" -msgstr "" +msgstr "_СплеÑкване" #: ../app/actions/context-actions.c:62 msgid "A_ngle" @@ -707,10 +735,10 @@ msgid "S_wap Colors" msgstr "Обръ_щане на цветовете" -#: ../app/actions/data-commands.c:79 ../app/core/gimpimage.c:1283 +#: ../app/actions/data-commands.c:79 ../app/core/gimpimage.c:1285 #: ../app/core/gimppalette-import.c:219 ../app/core/gimppalette.c:523 #: ../app/core/gimppalette.c:634 ../app/dialogs/palette-import-dialog.c:684 -#: ../app/pdb/image_cmds.c:3760 +#: ../app/pdb/image_cmds.c:3762 msgid "Untitled" msgstr "Ðеозаглавено" @@ -721,7 +749,7 @@ #: ../app/actions/data-commands.c:167 #, c-format msgid "Are you sure you want to delete '%s' from the list and from disk?" -msgstr "" +msgstr "Потвърждаваш ли изтриването на '%s' от ÑпиÑъка и от диÑка?" #: ../app/actions/dialogs-actions.c:38 msgid "_Dialogs" @@ -729,19 +757,19 @@ #: ../app/actions/dialogs-actions.c:39 msgid "Create New Doc_k" -msgstr "" +msgstr "Създаване на ново гнездо" #: ../app/actions/dialogs-actions.c:42 msgid "_Layers, Channels & Paths" -msgstr "" +msgstr "_Слоеве, канали и пътеки" #: ../app/actions/dialogs-actions.c:47 msgid "_Brushes, Patterns & Gradients" -msgstr "" +msgstr "_Четки, шарки и преливки" #: ../app/actions/dialogs-actions.c:52 msgid "_Misc. Stuff" -msgstr "" +msgstr "_Други" #: ../app/actions/dialogs-actions.c:57 msgid "Tool_box" @@ -753,7 +781,7 @@ #: ../app/actions/dialogs-actions.c:70 msgid "_Device Status" -msgstr "" +msgstr "_СъÑтоÑние на уÑтройÑтвото" #: ../app/actions/dialogs-actions.c:75 msgid "_Layers" @@ -761,27 +789,27 @@ #: ../app/actions/dialogs-actions.c:80 msgid "_Channels" -msgstr "" +msgstr "_Канали" #: ../app/actions/dialogs-actions.c:85 ../app/tools/gimpvectortool.c:162 msgid "_Paths" -msgstr "" +msgstr "_Пътеки" #: ../app/actions/dialogs-actions.c:90 msgid "Color_map" -msgstr "" +msgstr "ЦветноÑÑ‚" #: ../app/actions/dialogs-actions.c:95 msgid "Histogra_m" -msgstr "" +msgstr "ХиÑтограм_а" #: ../app/actions/dialogs-actions.c:100 msgid "_Selection Editor" -msgstr "" +msgstr "_ПромÑна на ÑелекциÑта" #: ../app/actions/dialogs-actions.c:105 msgid "Na_vigation" -msgstr "" +msgstr "Ðа_вигациÑ" #: ../app/actions/dialogs-actions.c:110 msgid "Undo _History" @@ -797,7 +825,7 @@ #: ../app/actions/dialogs-actions.c:125 msgid "P_atterns" -msgstr "" +msgstr "Ш_арки" #: ../app/actions/dialogs-actions.c:130 msgid "_Gradients" @@ -813,7 +841,7 @@ #: ../app/actions/dialogs-actions.c:145 msgid "B_uffers" -msgstr "" +msgstr "Б_уфери" #: ../app/actions/dialogs-actions.c:150 msgid "_Images" @@ -825,7 +853,7 @@ #: ../app/actions/dialogs-actions.c:160 msgid "_Templates" -msgstr "" +msgstr "_Шаблони" #: ../app/actions/dialogs-actions.c:165 msgid "T_ools" @@ -857,7 +885,7 @@ #: ../app/actions/dockable-actions.c:53 msgid "_Add Tab" -msgstr "" +msgstr "_Добави модул" #: ../app/actions/dockable-actions.c:54 msgid "_Preview Size" @@ -865,27 +893,28 @@ #: ../app/actions/dockable-actions.c:55 msgid "_Tab Style" -msgstr "" +msgstr "_Вид на модула" #: ../app/actions/dockable-actions.c:58 msgid "_Close Tab" -msgstr "" +msgstr "_Затвори модула" #: ../app/actions/dockable-actions.c:63 msgid "_Detach Tab" -msgstr "" +msgstr "_ОÑвободи модула" #: ../app/actions/dockable-actions.c:68 +#, fuzzy msgid "M_ove to Screen..." -msgstr "" +msgstr "П_ремеÑти към екран" #: ../app/actions/dockable-actions.c:76 msgid "_Show Image Selection" -msgstr "" +msgstr "_Показване на ÑелекциÑта" #: ../app/actions/dockable-actions.c:82 msgid "Auto _Follow Active Image" -msgstr "" +msgstr "Следване автоматично на активното изображение" #: ../app/actions/dockable-actions.c:101 msgid "_Tiny" @@ -925,7 +954,7 @@ #: ../app/actions/dockable-actions.c:114 msgid "_Icon" -msgstr "" +msgstr "_Иконка" #: ../app/actions/dockable-actions.c:115 msgid "Current _Status" @@ -937,23 +966,23 @@ #: ../app/actions/dockable-actions.c:117 msgid "I_con & Text" -msgstr "" +msgstr "И_конка итекÑÑ‚" #: ../app/actions/dockable-actions.c:118 msgid "St_atus & Text" -msgstr "" +msgstr "Ст_Ð°Ñ‚ÑƒÑ Ð¸ текÑÑ‚" #: ../app/actions/dockable-actions.c:127 msgid "View as _List" -msgstr "" +msgstr "Показване като ÑпиÑък" #: ../app/actions/dockable-actions.c:132 msgid "View as _Grid" -msgstr "" +msgstr "Показване като мрежа" #: ../app/actions/documents-actions.c:42 msgid "Documents Menu" -msgstr "Меню Документи" +msgstr "Меню документи" #: ../app/actions/documents-actions.c:46 msgid "_Open Image" @@ -965,19 +994,19 @@ #: ../app/actions/documents-actions.c:52 msgid "_Raise or Open Image" -msgstr "" +msgstr "_Показване или отварÑне на изображениÑ" #: ../app/actions/documents-actions.c:53 msgid "Raise window if already open" -msgstr "" +msgstr "Показване на изображение, ако е вече отворено" #: ../app/actions/documents-actions.c:58 msgid "File Open _Dialog" -msgstr "" +msgstr "ОтварÑне на файл" #: ../app/actions/documents-actions.c:59 msgid "Open image dialog" -msgstr "" +msgstr "ОтварÑне на изображение" #: ../app/actions/documents-actions.c:64 msgid "Remove _Entry" @@ -985,31 +1014,31 @@ #: ../app/actions/documents-actions.c:65 msgid "Remove the selected entry" -msgstr "" +msgstr "Премахни избраното" #: ../app/actions/documents-actions.c:70 msgid "Recreate _Preview" -msgstr "" +msgstr "Обнови _прегледа" #: ../app/actions/documents-actions.c:71 msgid "Recreate preview" -msgstr "" +msgstr "Обнови прегледа" #: ../app/actions/documents-actions.c:76 msgid "Reload _all Previews" -msgstr "" +msgstr "Обнови _вÑички" #: ../app/actions/documents-actions.c:77 msgid "Reload all previews" -msgstr "" +msgstr "Обнови вÑички" #: ../app/actions/documents-actions.c:82 msgid "Remove Dangling E_ntries" -msgstr "" +msgstr "Премахване на и_злишните" #: ../app/actions/documents-actions.c:83 msgid "Remove dangling entries" -msgstr "" +msgstr "Премахване на излишните" #: ../app/actions/documents-commands.c:251 ../app/actions/file-commands.c:170 #: ../app/dialogs/file-open-dialog.c:198 ../app/dialogs/file-open-dialog.c:249 @@ -1027,32 +1056,33 @@ "%s" #: ../app/actions/drawable-actions.c:45 +#, fuzzy msgid "_Desaturate" -msgstr "" +msgstr "_Изваждане на цветове..." #: ../app/actions/drawable-actions.c:50 msgid "_Equalize" -msgstr "" +msgstr "_Фина наÑтройка" #: ../app/actions/drawable-actions.c:55 msgid "In_vert" -msgstr "" +msgstr "Обръ_щане" #: ../app/actions/drawable-actions.c:60 msgid "_White Balance" -msgstr "" +msgstr "_Ð‘Ð°Ð»Ð°Ð½Ñ Ð½Ð° бÑлото" #: ../app/actions/drawable-actions.c:65 msgid "_Offset..." -msgstr "" +msgstr "_ОтмеÑтване..." #: ../app/actions/drawable-actions.c:73 ../app/actions/vectors-actions.c:153 msgid "_Linked" -msgstr "" +msgstr "_Свързан" #: ../app/actions/drawable-actions.c:79 ../app/actions/vectors-actions.c:147 msgid "_Visible" -msgstr "" +msgstr "_Видим" #: ../app/actions/drawable-actions.c:88 ../app/actions/image-actions.c:141 msgid "Flip _Horizontally" @@ -1077,19 +1107,19 @@ #: ../app/actions/drawable-commands.c:58 msgid "Desaturate operates only on RGB color layers." -msgstr "" +msgstr "Изваждането на цветове работи Ñамо в RGB Ñлоеве." #: ../app/actions/drawable-commands.c:76 msgid "Equalize does not operate on indexed layers." -msgstr "" +msgstr "Фината наÑтройка не работи на Ñлоеве Ñ Ð¸Ð½Ð´ÐµÐºÑирани цветове." #: ../app/actions/drawable-commands.c:94 msgid "Invert does not operate on indexed layers." -msgstr "" +msgstr "Обръщането не работи на Ñлоеве Ñ Ð¸Ð½Ð´ÐµÐºÑирани цветове." #: ../app/actions/drawable-commands.c:114 msgid "White Balance operates only on RGB color layers." -msgstr "" +msgstr "БаланÑÑŠÑ‚ на бÑлото работи Ñамо на RGB Ñлоеве." #: ../app/actions/edit-actions.c:61 msgid "_Edit" @@ -1097,7 +1127,7 @@ #: ../app/actions/edit-actions.c:62 msgid "_Buffer" -msgstr "" +msgstr "_Буфер" #: ../app/actions/edit-actions.c:65 ../app/actions/edit-actions.c:230 msgid "_Undo" @@ -1118,48 +1148,48 @@ #: ../app/actions/edit-actions.c:77 msgid "_Clear Undo History" -msgstr "Из_" +msgstr "_ИзчиÑтване иÑториÑта на дейÑтвиÑта" #: ../app/actions/edit-actions.c:78 msgid "Clear undo history..." -msgstr "" +msgstr "ИзчиÑтване иÑториÑта на дейÑтвиÑта..." #: ../app/actions/edit-actions.c:83 msgid "Cu_t" -msgstr "" +msgstr "Из_Ñ€Ñзване" #: ../app/actions/edit-actions.c:88 msgid "_Copy" -msgstr "" +msgstr "_Копиране" #. GIMP_STOCK_COPY_VISIBLE, #: ../app/actions/edit-actions.c:93 msgid "Copy _Visible" -msgstr "" +msgstr "Копиране на _видимите" #: ../app/actions/edit-actions.c:98 msgid "_Paste" -msgstr "" +msgstr "_Вмъкване" #: ../app/actions/edit-actions.c:103 msgid "Paste _Into" -msgstr "" +msgstr "Вмъкване _в" #: ../app/actions/edit-actions.c:108 msgid "Paste as _New" -msgstr "" +msgstr "Вмъкване като _ново" #: ../app/actions/edit-actions.c:113 msgid "Cu_t Named..." -msgstr "" +msgstr "ИзрÑзване _на..." #: ../app/actions/edit-actions.c:118 msgid "_Copy Named..." -msgstr "" +msgstr "_Копиране на..." #: ../app/actions/edit-actions.c:123 msgid "_Paste Named..." -msgstr "" +msgstr "_Вмъкване на..." #: ../app/actions/edit-actions.c:128 msgid "Cl_ear" @@ -1175,17 +1205,17 @@ #: ../app/actions/edit-actions.c:146 msgid "Fill with P_attern" -msgstr "" +msgstr "Запълване ÑÑŠÑ Ñˆ_арка" #: ../app/actions/edit-actions.c:214 #, c-format msgid "_Undo %s" -msgstr "" +msgstr "_ОтмÑна на %s" #: ../app/actions/edit-actions.c:219 #, c-format msgid "_Redo %s" -msgstr "" +msgstr "_ПовтарÑне на %s" #: ../app/actions/edit-commands.c:104 msgid "Clear Undo History" @@ -1193,35 +1223,35 @@ #: ../app/actions/edit-commands.c:122 msgid "Really clear image's undo history?" -msgstr "" +msgstr "Пълно изчиÑтване иÑториÑта на промените за това изображение?" #: ../app/actions/edit-commands.c:210 msgid "Cut Named" -msgstr "" +msgstr "ИзрÑзване на" #: ../app/actions/edit-commands.c:213 ../app/actions/edit-commands.c:233 msgid "Enter a name for this buffer" -msgstr "" +msgstr "Въведи име на буфера" #: ../app/actions/edit-commands.c:230 msgid "Copy Named" -msgstr "" +msgstr "Копиране на" #: ../app/actions/edit-commands.c:337 msgid "There is no active layer or channel to cut from." -msgstr "" +msgstr "ÐÑма активен Ñлой или канал, от който да Ñе изреже." #: ../app/actions/edit-commands.c:349 ../app/actions/edit-commands.c:386 msgid "(Unnamed Buffer)" -msgstr "" +msgstr "(Ðеименован буфер)" #: ../app/actions/edit-commands.c:374 msgid "There is no active layer or channel to copy from." -msgstr "" +msgstr "ÐÑма активен Ñлой или канал, от който да Ñе копира." #: ../app/actions/error-console-actions.c:40 msgid "Error Console Menu" -msgstr "" +msgstr "Грешка в конзолното меню" #: ../app/actions/error-console-actions.c:44 msgid "_Clear Errors" @@ -1245,15 +1275,15 @@ #: ../app/actions/error-console-actions.c:60 msgid "Save selection" -msgstr "" +msgstr "Запазване на ÑелекциÑта" #: ../app/actions/error-console-commands.c:69 msgid "Cannot save. Nothing is selected." -msgstr "" +msgstr "Ðе може да Ñе запази. Ðищо не е избрано." #: ../app/actions/error-console-commands.c:80 msgid "Save Error Log to File" -msgstr "" +msgstr "Запазване опиÑанието на грешките във файл" #: ../app/actions/error-console-commands.c:132 #, c-format @@ -1302,11 +1332,11 @@ #: ../app/actions/file-actions.c:101 msgid "Save as _Template..." -msgstr "" +msgstr "Запазване като _шаблон..." #: ../app/actions/file-actions.c:106 msgid "Re_vert..." -msgstr "" +msgstr "Връщане _в начално ÑÑŠÑтоÑние..." #: ../app/actions/file-actions.c:111 msgid "_Quit" @@ -1333,30 +1363,32 @@ #: ../app/actions/file-commands.c:265 msgid "Create New Template" -msgstr "" +msgstr "Създай нов шаблон" #: ../app/actions/file-commands.c:269 msgid "Enter a name for this template" -msgstr "" +msgstr "Въведи име на шаблона" #: ../app/actions/file-commands.c:291 msgid "Revert failed. No file name associated with this image." -msgstr "" +msgstr "Връщането невъзможно. ÐÑма файл Ñ Ñ‚Ð°ÐºÐ¾Ð²Ð° име." #: ../app/actions/file-commands.c:303 msgid "Revert Image" -msgstr "" +msgstr "Връщане изображението в начално ÑÑŠÑтоÑние" #: ../app/actions/file-commands.c:324 #, c-format msgid "Revert '%s' to '%s'?" -msgstr "" +msgstr "Връщане '%s' към '%s'?" #: ../app/actions/file-commands.c:330 msgid "" "By reverting the image to the state saved on disk, you will lose all " "changes, including all undo information." msgstr "" +"С връщане на изображението към ÑÑŠÑтоÑнието, запиÑано на диÑка, ще изгубиш " +"вÑички промени, включително информациÑта за отмÑна на дейÑтвиÑта." #: ../app/actions/file-commands.c:380 msgid "Open Image as Layer" @@ -1368,7 +1400,7 @@ #: ../app/actions/file-commands.c:451 msgid "(Unnamed Template)" -msgstr "" +msgstr "(Ðеименован шаблон)" #: ../app/actions/file-commands.c:500 #, c-format @@ -1377,10 +1409,13 @@ "\n" "%s" msgstr "" +"Връщане към '%s' невъзможно:\n" +"\n" +"%s" #: ../app/actions/fonts-actions.c:44 msgid "Fonts Menu" -msgstr "Меню Шрифтове" +msgstr "Меню шрифтове" #: ../app/actions/fonts-actions.c:48 msgid "_Rescan Font List" @@ -1392,73 +1427,73 @@ #: ../app/actions/gradient-editor-actions.c:46 msgid "Gradient Editor Menu" -msgstr "Меню Редактор на преливки" +msgstr "Меню редактор на преливки" #: ../app/actions/gradient-editor-actions.c:50 msgid "_Load Left Color From" -msgstr "" +msgstr "_Зареждане на Ð»ÐµÐ²Ð¸Ñ Ñ†Ð²ÑÑ‚ от" #: ../app/actions/gradient-editor-actions.c:52 msgid "_Save Left Color To" -msgstr "" +msgstr "_Запазване на Ð»ÐµÐ²Ð¸Ñ Ñ†Ð²ÑÑ‚ в" #: ../app/actions/gradient-editor-actions.c:55 msgid "Load Right Color Fr_om" -msgstr "" +msgstr "Зареждане на деÑÐ½Ð¸Ñ Ñ†Ð²ÑÑ‚ _от" #: ../app/actions/gradient-editor-actions.c:57 msgid "Sa_ve Right Color To" -msgstr "" +msgstr "За_пазване на деÑÐ½Ð¸Ñ Ñ†Ð²ÑÑ‚ в" #: ../app/actions/gradient-editor-actions.c:63 msgid "L_eft Endpoint's Color..." -msgstr "" +msgstr "Л_Ñв краен цвÑÑ‚..." #: ../app/actions/gradient-editor-actions.c:68 msgid "R_ight Endpoint's Color..." -msgstr "" +msgstr "Д_еÑен краен цвÑÑ‚..." #: ../app/actions/gradient-editor-actions.c:108 msgid "Ble_nd Endpoints' Colors" -msgstr "" +msgstr "Преливане между крайните цветове" #: ../app/actions/gradient-editor-actions.c:113 msgid "Blend Endpoints' Opacit_y" -msgstr "" +msgstr "Преливане между крайните плътноÑти" #: ../app/actions/gradient-editor-actions.c:143 msgid "_Left Neighbor's Right Endpoint" -msgstr "" +msgstr "_ДÑÑна крайна точка на лÑвата ÑÑŠÑедна" #: ../app/actions/gradient-editor-actions.c:148 msgid "_Right Endpoint" -msgstr "" +msgstr "_ДÑÑна крайна точка" #: ../app/actions/gradient-editor-actions.c:153 #: ../app/actions/gradient-editor-actions.c:201 msgid "_FG Color" -msgstr "" +msgstr "_ЦвÑÑ‚ на Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½" #: ../app/actions/gradient-editor-actions.c:158 #: ../app/actions/gradient-editor-actions.c:206 msgid "_BG Color" -msgstr "" +msgstr "_ЦвÑÑ‚ на фона" #: ../app/actions/gradient-editor-actions.c:191 msgid "_Right Neighbor's Left Endpoint" -msgstr "" +msgstr "_ЛÑва крайна точка на дÑÑната ÑÑŠÑедна" #: ../app/actions/gradient-editor-actions.c:196 msgid "_Left Endpoint" -msgstr "" +msgstr "_ЛÑва крайна точка" #: ../app/actions/gradient-editor-actions.c:245 msgid "_Linear" -msgstr "" +msgstr "_Линейно" #: ../app/actions/gradient-editor-actions.c:250 msgid "_Curved" -msgstr "" +msgstr "_Криви" #: ../app/actions/gradient-editor-actions.c:255 msgid "_Sinusoidal" @@ -1466,16 +1501,16 @@ #: ../app/actions/gradient-editor-actions.c:260 msgid "Spherical (i_ncreasing)" -msgstr "" +msgstr "Сферично (у_величаване)" #: ../app/actions/gradient-editor-actions.c:265 msgid "Spherical (_decreasing)" -msgstr "" +msgstr "Сферично (_намалÑване)" #: ../app/actions/gradient-editor-actions.c:270 #: ../app/actions/gradient-editor-actions.c:293 msgid "(Varies)" -msgstr "" +msgstr "(ÐŸÑ€Ð¾Ð¼ÐµÐ½Ñ Ñе)" #: ../app/actions/gradient-editor-actions.c:278 #: ../app/actions/image-actions.c:123 @@ -1484,11 +1519,11 @@ #: ../app/actions/gradient-editor-actions.c:283 msgid "HSV (_counter-clockwise hue)" -msgstr "" +msgstr "HSV (_тонове, обратно на чаÑовниковата Ñтрелка)" #: ../app/actions/gradient-editor-actions.c:288 msgid "HSV (clockwise _hue)" -msgstr "" +msgstr "HSV (_тонове, по поÑока на чаÑовниковата Ñтрелка)" #: ../app/actions/gradient-editor-actions.c:301 msgid "Zoom In" @@ -1512,168 +1547,176 @@ #: ../app/actions/gradient-editor-actions.c:313 msgid "Zoom All" -msgstr "" +msgstr "Увеличаване на вÑичко" #: ../app/actions/gradient-editor-actions.c:314 #: ../app/actions/palette-editor-actions.c:90 msgid "Zoom all" -msgstr "" +msgstr "Увеличаване на вÑичко" #: ../app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" -msgstr "" +msgstr "_ИзбледнÑване на Ñегмента" #: ../app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" -msgstr "" +msgstr "ОцветÑване _на Ñегмента" #: ../app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" -msgstr "" +msgstr "_Обръщане на Ñегмента" #: ../app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." -msgstr "" +msgstr "_ПодмÑна на Ñегмента..." #: ../app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" -msgstr "" +msgstr "РазделÑне Ñегмента през _Ñредната точка" #: ../app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." -msgstr "" +msgstr "РазделÑне Ñегмента на равни чаÑти..." #: ../app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" -msgstr "" +msgstr "_Изтриване на Ñегмента" #: ../app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" -msgstr "" +msgstr "Центриране _отново Ñредната точка на Ñегмента" #: ../app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" -msgstr "" +msgstr "Преориентиране _точките на Ñегмента" #: ../app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" -msgstr "" +msgstr "_ИзбледнÑване на ÑелекциÑта" #: ../app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" -msgstr "" +msgstr "ОцветÑване на ÑелекциÑта" #: ../app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" -msgstr "" +msgstr "_Обръщане на ÑелекциÑта" #: ../app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." -msgstr "" +msgstr "_ПодмÑна на ÑелекциÑта..." #: ../app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" -msgstr "" +msgstr "РазделÑне Ñегментите през Ñредната точка" #: ../app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." -msgstr "" +msgstr "РазделÑне Ñегментите на равни чаÑти..." #: ../app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" -msgstr "" +msgstr "_Изтриване на ÑелекциÑта" #: ../app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" -msgstr "" +msgstr "Центриране _отново Ñредната точка на ÑелекциÑта" #: ../app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" -msgstr "" +msgstr "Преориентиране _точките на ÑелекциÑта" #: ../app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" -msgstr "" +msgstr "ЦвÑÑ‚ на лÑвата крайна точка" #: ../app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" -msgstr "" +msgstr "ЦвÑÑ‚ на лÑвата крайна точка на преливката" #: ../app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" -msgstr "" +msgstr "ЦвÑÑ‚ на дÑÑната крайна точка" #: ../app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" -msgstr "" +msgstr "ЦвÑÑ‚ на дÑÑната крайна точка на преливката" #: ../app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" -msgstr "" +msgstr "Размножаване на Ñегмента" #: ../app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" -msgstr "" +msgstr "Размножаване на Ñегмента от преливка" #: ../app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" -msgstr "" +msgstr "Размножаване на избраното" #: ../app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" -msgstr "" +msgstr "Размножаване на избраното от преливката" #: ../app/actions/gradient-editor-commands.c:376 msgid "Replicate" -msgstr "" +msgstr "Размножаване" #: ../app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." msgstr "" +"Колко пъти да бъде\n" +"размножен избрниÑÑ‚ Ñегмент." #: ../app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "" +"Колко пъти да бъде \n" +"размножено избраното." #: ../app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" -msgstr "" +msgstr "РазделÑне Ñегмента на равни чаÑти" #: ../app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" -msgstr "" +msgstr "РазделÑне Ñегмента от преливката на равни чаÑти" #: ../app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" -msgstr "" +msgstr "РазделÑне Ñегментите поравно" #: ../app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" -msgstr "" +msgstr "РазделÑне Ñегментите на преливката поравно" #: ../app/actions/gradient-editor-commands.c:470 msgid "Split" -msgstr "" +msgstr "РазделÑне" #: ../app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "" +"Избиране Ð±Ñ€Ð¾Ñ Ð½Ð° равните чаÑти,\n" +"на които да Ñе раздели Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ñегмент." #: ../app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." msgstr "" +"Избиране Ð±Ñ€Ð¾Ñ Ð½Ð° равните чаÑти,\n" +"на които да Ñе разделÑÑ‚ Ñегментите на ÑелекциÑта." #: ../app/actions/gradients-actions.c:44 msgid "Gradients Menu" -msgstr "Меню Преливки" +msgstr "Меню преливки" #: ../app/actions/gradients-actions.c:48 msgid "_New Gradient" @@ -1685,11 +1728,11 @@ #: ../app/actions/gradients-actions.c:54 msgid "D_uplicate Gradient" -msgstr "" +msgstr "Д_ублиране на преливката" #: ../app/actions/gradients-actions.c:55 msgid "Duplicate gradient" -msgstr "" +msgstr "Дублиране на преливката" #: ../app/actions/gradients-actions.c:60 msgid "Save as _POV-Ray..." @@ -1738,11 +1781,11 @@ #: ../app/actions/image-actions.c:47 msgid "Toolbox Menu" -msgstr "Меню ÐšÑƒÑ‚Ð¸Ñ Ñ Ð¸Ð½Ñтрументи" +msgstr "Меню ÐºÑƒÑ‚Ð¸Ñ Ñ Ð¸Ð½Ñтрументи" #: ../app/actions/image-actions.c:51 ../app/actions/image-actions.c:55 msgid "Image Menu" -msgstr "Меню Изображение" +msgstr "Меню кзображение" #: ../app/actions/image-actions.c:58 msgid "_Xtns" @@ -1754,7 +1797,7 @@ #: ../app/actions/image-actions.c:60 msgid "_Mode" -msgstr "" +msgstr "_Тип" #: ../app/actions/image-actions.c:61 ../app/actions/layers-actions.c:57 msgid "_Transform" @@ -1762,7 +1805,7 @@ #: ../app/actions/image-actions.c:62 msgid "_Guides" -msgstr "" +msgstr "_Водачи" #: ../app/actions/image-actions.c:65 ../app/actions/image-actions.c:70 msgid "_New..." @@ -1770,27 +1813,27 @@ #: ../app/actions/image-actions.c:75 msgid "Can_vas Size..." -msgstr "" +msgstr "Раз_мер на полето..." #: ../app/actions/image-actions.c:80 msgid "F_it Canvas to Layers" -msgstr "" +msgstr "Размер _Ñпоред Ñлоевете" #: ../app/actions/image-actions.c:85 msgid "_Print Size..." -msgstr "" +msgstr "_Размер при печат..." #: ../app/actions/image-actions.c:90 msgid "_Scale Image..." -msgstr "" +msgstr "_ПреоразмерÑване..." #: ../app/actions/image-actions.c:95 msgid "_Crop Image" -msgstr "" +msgstr "_РÑзане" #: ../app/actions/image-actions.c:100 msgid "_Duplicate" -msgstr "" +msgstr "_Размножаване" #: ../app/actions/image-actions.c:105 msgid "Merge Visible _Layers..." @@ -1798,7 +1841,7 @@ #: ../app/actions/image-actions.c:110 ../app/actions/layers-actions.c:138 msgid "_Flatten Image" -msgstr "" +msgstr "_Слепване на Ñлоевете" #: ../app/actions/image-actions.c:115 msgid "Configure G_rid..." @@ -1810,19 +1853,19 @@ #: ../app/actions/image-actions.c:133 msgid "_Indexed..." -msgstr "" +msgstr "_ИндекÑиран..." #: ../app/actions/image-commands.c:192 msgid "Set Image Canvas Size" -msgstr "" +msgstr "Размер за полето на изображението" #: ../app/actions/image-commands.c:219 ../app/actions/image-commands.c:449 msgid "Resizing..." -msgstr "" +msgstr "ПреоразмерÑване..." #: ../app/actions/image-commands.c:242 msgid "Set Image Print Resolution" -msgstr "" +msgstr "Избиране на Ñ€ÐµÐ·Ð¾Ð»ÑŽÑ†Ð¸Ñ Ð·Ð° печат" #: ../app/actions/image-commands.c:289 msgid "Flipping..." @@ -1837,35 +1880,35 @@ #: ../app/actions/image-commands.c:332 ../app/actions/layers-commands.c:535 msgid "Cannot crop because the current selection is empty." -msgstr "" +msgstr "Ðе може да Ñе отреже, защото ÑелекциÑта е празна." #: ../app/actions/image-commands.c:484 msgid "Change Print Size" -msgstr "" +msgstr "ПромÑна размера за отпечатване" #: ../app/actions/image-commands.c:508 ../app/core/gimpimage-scale.c:71 #: ../app/dialogs/image-scale-dialog.c:91 msgid "Scale Image" -msgstr "" +msgstr "ПреоразмерÑване" #: ../app/actions/image-commands.c:521 ../app/actions/layers-commands.c:959 #: ../app/pdb/drawable_transform_cmds.c:1346 #: ../app/pdb/drawable_transform_cmds.c:1503 #: ../app/pdb/transform_tools_cmds.c:458 ../app/tools/gimpscaletool.c:153 msgid "Scaling..." -msgstr "" +msgstr "ПреоразмерÑване..." #: ../app/actions/images-actions.c:43 msgid "Images Menu" -msgstr "Меню ИзображениÑ" +msgstr "Меню изображениÑ" #: ../app/actions/images-actions.c:47 msgid "_Raise Views" -msgstr "" +msgstr "_Увеличение" #: ../app/actions/images-actions.c:48 msgid "Raise this image's displays" -msgstr "" +msgstr "_Увеличение" #: ../app/actions/images-actions.c:53 ../app/actions/view-actions.c:68 msgid "_New View" @@ -1873,7 +1916,7 @@ #: ../app/actions/images-actions.c:54 msgid "Create a new display for this image" -msgstr "" +msgstr "Създаване на нов изглед на изображението" #: ../app/actions/images-actions.c:59 msgid "_Delete Image" @@ -1885,7 +1928,7 @@ #: ../app/actions/layers-actions.c:48 msgid "Layers Menu" -msgstr "Меню Слоеве" +msgstr "Меню Ñлоеве" #: ../app/actions/layers-actions.c:51 msgid "_Layer" @@ -1893,15 +1936,15 @@ #: ../app/actions/layers-actions.c:52 msgid "Stac_k" -msgstr "" +msgstr "П_акет" #: ../app/actions/layers-actions.c:54 ../app/tools/gimplevelstool.c:665 msgid "_Auto" -msgstr "" +msgstr "_Ðвтоматично" #: ../app/actions/layers-actions.c:55 msgid "_Mask" -msgstr "" +msgstr "_МаÑка" #: ../app/actions/layers-actions.c:56 msgid "Tr_ansparency" @@ -1909,23 +1952,23 @@ #: ../app/actions/layers-actions.c:58 msgid "_Properties" -msgstr "" +msgstr "_ÐаÑтройки" #: ../app/actions/layers-actions.c:60 msgid "Layer _Mode" -msgstr "" +msgstr "_Тип на ÑлоÑ" #: ../app/actions/layers-actions.c:63 msgid "Te_xt Tool" -msgstr "" +msgstr "ИнÑтрумент за _текÑÑ‚" #: ../app/actions/layers-actions.c:68 msgid "_Edit Layer Attributes..." -msgstr "" +msgstr "_ПромÑна наÑтройките на ÑлоÑ..." #: ../app/actions/layers-actions.c:69 msgid "Edit layer attributes" -msgstr "" +msgstr "ПромÑна наÑтройките на ÑлоÑ" #: ../app/actions/layers-actions.c:74 msgid "_New Layer..." @@ -1955,129 +1998,132 @@ msgid "_Delete Layer" msgstr "_Изтриване на ÑлоÑ" -#: ../app/actions/layers-actions.c:93 ../app/core/core-enums.c:1079 +#: ../app/actions/layers-actions.c:93 ../app/core/core-enums.c:1081 msgid "Delete layer" msgstr "Изтриване на ÑлоÑ" #: ../app/actions/layers-actions.c:98 msgid "_Raise Layer" -msgstr "" +msgstr "_ПремеÑтване нагоре" #: ../app/actions/layers-actions.c:99 msgid "Raise layer" -msgstr "" +msgstr "ПремеÑтване нагоре" #: ../app/actions/layers-actions.c:104 msgid "Layer to _Top" -msgstr "" +msgstr "Ðай-_отгоре" #: ../app/actions/layers-actions.c:105 msgid "Raise layer to top" -msgstr "" +msgstr "Ðай-отгоре" #: ../app/actions/layers-actions.c:110 msgid "_Lower Layer" -msgstr "" +msgstr "_Ðадолу" #: ../app/actions/layers-actions.c:111 msgid "Lower layer" -msgstr "" +msgstr "Ðадолу" #: ../app/actions/layers-actions.c:116 msgid "Layer to _Bottom" -msgstr "" +msgstr "_Отдолу" #: ../app/actions/layers-actions.c:117 msgid "Lower layer to bottom" -msgstr "" +msgstr "Отдолу" #: ../app/actions/layers-actions.c:122 msgid "_Anchor Layer" -msgstr "" +msgstr "ФикÑиране на ÑлоÑ" #: ../app/actions/layers-actions.c:123 msgid "Anchor floating layer" -msgstr "" +msgstr "ФикÑиране на плаващ Ñлой" #: ../app/actions/layers-actions.c:128 msgid "Merge Do_wn" -msgstr "" +msgstr "Сливане на _Ñлоевете" #: ../app/actions/layers-actions.c:133 msgid "Merge _Visible Layers..." -msgstr "" +msgstr "Сливане на _видимите Ñлоеве..." #: ../app/actions/layers-actions.c:143 msgid "_Discard Text Information" -msgstr "" +msgstr "_Унищожаване на информациÑта за текÑта" #: ../app/actions/layers-actions.c:148 msgid "Layer B_oundary Size..." -msgstr "" +msgstr "Размер на _ÑлоÑ..." #: ../app/actions/layers-actions.c:153 msgid "Layer to _Image Size" -msgstr "" +msgstr "Слой Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° на _Изображението" #: ../app/actions/layers-actions.c:158 msgid "_Scale Layer..." -msgstr "" +msgstr "_ПреоразмерÑване на ÑлоÑ..." #: ../app/actions/layers-actions.c:163 msgid "Cr_op Layer" -msgstr "" +msgstr "РÑзане на ÑлоÑ" #: ../app/actions/layers-actions.c:168 msgid "Add La_yer Mask..." -msgstr "" +msgstr "ДобавÑне на маÑка..." #: ../app/actions/layers-actions.c:173 msgid "Add Alpha C_hannel" -msgstr "" +msgstr "ДобавÑне на канал за прозрачноÑÑ‚" #: ../app/actions/layers-actions.c:181 +#, fuzzy msgid "Keep Transparency" msgstr "Запазване на прозрачноÑтта" #: ../app/actions/layers-actions.c:187 +#, fuzzy msgid "Edit Layer Mask" -msgstr "" +msgstr "_ПромÑна на маÑката" #: ../app/actions/layers-actions.c:193 msgid "Show Layer Mask" msgstr "" #: ../app/actions/layers-actions.c:199 +#, fuzzy msgid "Disable Layer Mask" -msgstr "" +msgstr "_Изтриване на ÑлоÑ" #: ../app/actions/layers-actions.c:208 msgid "Apply Layer _Mask" -msgstr "" +msgstr "Прилагане на _маÑката" #: ../app/actions/layers-actions.c:213 msgid "Delete Layer Mas_k" -msgstr "" +msgstr "_Изтриване на маÑката" #: ../app/actions/layers-actions.c:221 msgid "_Mask to Selection" -msgstr "" +msgstr "_Превръщане на маÑката в ÑелекциÑ" #: ../app/actions/layers-actions.c:244 msgid "Al_pha to Selection" -msgstr "" +msgstr "Превръщане на прозрачноÑтта в _ÑелекциÑ" #: ../app/actions/layers-actions.c:249 msgid "A_dd to Selection" -msgstr "" +msgstr "ДобавÑне към ÑелекциÑ" #: ../app/actions/layers-actions.c:267 msgid "Select _Top Layer" -msgstr "" +msgstr "Избиране на най-_Ð³Ð¾Ñ€Ð½Ð¸Ñ Ñлой" #: ../app/actions/layers-actions.c:272 msgid "Select _Bottom Layer" -msgstr "" +msgstr "Избиране на най-_Ð´Ð¾Ð»Ð½Ð¸Ñ Ñлой" #: ../app/actions/layers-actions.c:277 msgid "Select _Previous Layer" @@ -2085,7 +2131,7 @@ #: ../app/actions/layers-actions.c:282 msgid "Select _Next Layer" -msgstr "" +msgstr "Избиране на _ÑÐ»ÐµÐ´Ð²Ð°Ñ‰Ð¸Ñ Ñлой" #: ../app/actions/layers-actions.c:290 msgid "Set Opacity" @@ -2093,11 +2139,11 @@ #: ../app/actions/layers-commands.c:196 msgid "Layer Attributes" -msgstr "" +msgstr "ÐаÑтройки на СлоÑ" #: ../app/actions/layers-commands.c:199 msgid "Edit Layer Attributes" -msgstr "" +msgstr "ПромÑна ÐаÑтройките на СлоÑ" #: ../app/actions/layers-commands.c:232 ../app/actions/layers-commands.c:234 #: ../app/actions/layers-commands.c:291 ../app/actions/layers-commands.c:295 @@ -2112,24 +2158,24 @@ #: ../app/actions/layers-commands.c:470 msgid "Set Layer Boundary Size" -msgstr "" +msgstr "ОпределÑне размера на ÑлоÑ" #: ../app/actions/layers-commands.c:512 ../app/core/gimplayer.c:253 msgid "Scale Layer" -msgstr "" +msgstr "ПреоразмерÑване на ÑлоÑ" #: ../app/actions/layers-commands.c:545 msgid "Crop Layer" -msgstr "" +msgstr "РÑзане на ÑлоÑ" #: ../app/actions/layers-commands.c:683 msgid "Layer Mask to Selection" -msgstr "" +msgstr "Превръщане на маÑката в ÑелекциÑ" #: ../app/actions/layers-commands.c:904 ../app/core/gimplayer.c:1065 #: ../app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" -msgstr "" +msgstr "ДобавÑне на маÑка в Ñлой" #: ../app/actions/layers-commands.c:975 ../app/actions/layers-commands.c:1007 msgid "Invalid width or height. Both must be positive." @@ -2137,7 +2183,7 @@ #: ../app/actions/palette-editor-actions.c:43 msgid "Palette Editor Menu" -msgstr "" +msgstr "Меню за редактиране на палитрата" #: ../app/actions/palette-editor-actions.c:53 msgid "_Delete Color" @@ -2149,19 +2195,19 @@ #: ../app/actions/palette-editor-actions.c:62 msgid "New Color from _FG" -msgstr "" +msgstr "Ðов цвÑÑ‚ от _Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½" #: ../app/actions/palette-editor-actions.c:63 msgid "New color from FG" -msgstr "" +msgstr "Ðов цвÑÑ‚ от Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½" #: ../app/actions/palette-editor-actions.c:68 msgid "New Color from _BG" -msgstr "" +msgstr "Ðов цвÑÑ‚ от _фона" #: ../app/actions/palette-editor-actions.c:69 msgid "New color from BG" -msgstr "" +msgstr "Ðов цвÑÑ‚ от фона" #: ../app/actions/palette-editor-actions.c:77 #: ../app/actions/view-actions.c:215 @@ -2175,15 +2221,15 @@ #: ../app/actions/palette-editor-actions.c:89 msgid "Zoom _All" -msgstr "" +msgstr "Увеличаване на_вÑичко" #: ../app/actions/palette-editor-commands.c:68 msgid "Edit Palette Color" -msgstr "" +msgstr "ПромÑна цвета на палитрата" #: ../app/actions/palette-editor-commands.c:70 msgid "Edit Color Palette Entry" -msgstr "" +msgstr "ПромÑна номера на палитрата" #: ../app/actions/palettes-actions.c:44 msgid "Palettes Menu" @@ -2207,11 +2253,11 @@ #: ../app/actions/palettes-actions.c:60 msgid "D_uplicate Palette" -msgstr "" +msgstr "Д_ублиране на плитрата" #: ../app/actions/palettes-actions.c:61 msgid "Duplicate palette" -msgstr "" +msgstr "Дублиране на палитрата" #: ../app/actions/palettes-actions.c:66 msgid "_Merge Palettes..." @@ -2251,51 +2297,51 @@ #: ../app/actions/palettes-commands.c:76 msgid "Enter a name for the merged palette" -msgstr "" +msgstr "Въведи име на ÑлÑтата палитра" #: ../app/actions/patterns-actions.c:43 msgid "Patterns Menu" -msgstr "" +msgstr "Меню шарки" #: ../app/actions/patterns-actions.c:47 msgid "_New Pattern" -msgstr "" +msgstr "_Ðова шарка" #: ../app/actions/patterns-actions.c:48 msgid "New pattern" -msgstr "" +msgstr "Ðова шарка" #: ../app/actions/patterns-actions.c:53 msgid "D_uplicate Pattern" -msgstr "" +msgstr "Д_ублиране на шарката" #: ../app/actions/patterns-actions.c:54 msgid "Duplicate pattern" -msgstr "" +msgstr "Дублиране на шарката" #: ../app/actions/patterns-actions.c:59 msgid "_Delete Pattern..." -msgstr "" +msgstr "_Изтриване на шарката..." #: ../app/actions/patterns-actions.c:60 msgid "Delete pattern" -msgstr "" +msgstr "Изтриване на шарката" #: ../app/actions/patterns-actions.c:65 msgid "_Refresh Patterns" -msgstr "" +msgstr "_ОбновÑване на шарките" #: ../app/actions/patterns-actions.c:66 msgid "Refresh patterns" -msgstr "" +msgstr "ОбновÑване на шарките" #: ../app/actions/patterns-actions.c:74 msgid "_Edit Pattern..." -msgstr "" +msgstr "_Редактиране на шарката..." #: ../app/actions/patterns-actions.c:75 msgid "Edit pattern" -msgstr "" +msgstr "Редактиране на шарката" #: ../app/actions/plug-in-actions.c:62 msgid "Filte_rs" @@ -2303,11 +2349,11 @@ #: ../app/actions/plug-in-actions.c:63 msgid "_Blur" -msgstr "" +msgstr "_ЗамъглÑване" #: ../app/actions/plug-in-actions.c:65 msgid "Ma_p" -msgstr "" +msgstr "Ка_рта" #: ../app/actions/plug-in-actions.c:66 msgid "_Noise" @@ -2319,15 +2365,15 @@ #: ../app/actions/plug-in-actions.c:68 msgid "En_hance" -msgstr "" +msgstr "По_добрÑване" #: ../app/actions/plug-in-actions.c:69 msgid "_Generic" -msgstr "" +msgstr "_Общи" #: ../app/actions/plug-in-actions.c:70 msgid "Gla_ss Effects" -msgstr "" +msgstr "Стъ_клени ефекти" #: ../app/actions/plug-in-actions.c:71 msgid "_Light Effects" @@ -2335,19 +2381,19 @@ #: ../app/actions/plug-in-actions.c:72 msgid "_Distorts" -msgstr "" +msgstr "_ДеÑтуктивни" #: ../app/actions/plug-in-actions.c:73 msgid "_Artistic" -msgstr "" +msgstr "_ХудожеÑтвени" #: ../app/actions/plug-in-actions.c:74 msgid "_Map" -msgstr "" +msgstr "_Карта" #: ../app/actions/plug-in-actions.c:75 msgid "_Render" -msgstr "" +msgstr "_Генериране" #: ../app/actions/plug-in-actions.c:76 msgid "_Clouds" @@ -2355,11 +2401,11 @@ #: ../app/actions/plug-in-actions.c:77 msgid "_Nature" -msgstr "" +msgstr "_Природа" #: ../app/actions/plug-in-actions.c:79 msgid "_Web" -msgstr "" +msgstr "_Уеб" #: ../app/actions/plug-in-actions.c:80 msgid "An_imation" @@ -2367,15 +2413,16 @@ #: ../app/actions/plug-in-actions.c:81 msgid "C_ombine" -msgstr "" +msgstr "К_омбинациÑ" #: ../app/actions/plug-in-actions.c:82 msgid "To_ys" msgstr "Иг_рачки" #: ../app/actions/plug-in-actions.c:85 +#, fuzzy msgid "Reset all Filters..." -msgstr "" +msgstr "Връщане наÑтройките на вÑички _инÑтрументи..." #: ../app/actions/plug-in-actions.c:93 ../app/actions/plug-in-actions.c:363 msgid "Repeat Last" @@ -2383,69 +2430,70 @@ #: ../app/actions/plug-in-actions.c:98 ../app/actions/plug-in-actions.c:365 msgid "Re-Show Last" -msgstr "" +msgstr "Показ_ване отново на поÑледниÑ" #: ../app/actions/plug-in-actions.c:349 #, c-format msgid "Re_peat \"%s\"" -msgstr "" +msgstr "По_втори \"%s\"" #: ../app/actions/plug-in-actions.c:350 #, c-format msgid "R_e-show \"%s\"" -msgstr "" +msgstr "Пока_зване отново на \"%s\"" #: ../app/actions/plug-in-commands.c:193 msgid "Reset all Filters" -msgstr "" +msgstr "ИзчиÑтване на вÑички филтри" #: ../app/actions/plug-in-commands.c:207 msgid "Do you really want to reset all filters to default values?" msgstr "" +"ÐаиÑтина ли иÑкаш да върнеш вÑички филтри към наÑтройките по подразбиране?" #: ../app/actions/qmask-actions.c:42 msgid "Quick Mask Menu" -msgstr "" +msgstr "Меню Бърза маÑка" #: ../app/actions/qmask-actions.c:46 msgid "_Configure Color and Opacity..." -msgstr "" +msgstr "_ÐаÑтройване на цвÑÑ‚ и плътноÑÑ‚..." #: ../app/actions/qmask-actions.c:54 msgid "_Quick Mask Active" -msgstr "" +msgstr "_Бързата маÑка активна" #: ../app/actions/qmask-actions.c:60 msgid "Toggle _Quick Mask" -msgstr "" +msgstr "_Превключване на бърза маÑка" #: ../app/actions/qmask-actions.c:70 msgid "Mask _Selected Areas" -msgstr "" +msgstr "Създаване на маÑка за избраните чаÑти" #: ../app/actions/qmask-actions.c:75 msgid "Mask _Unselected Areas" -msgstr "" +msgstr "Създаване на маÑка за неизбраните чаÑти" #: ../app/actions/qmask-commands.c:106 msgid "Quick Mask Attributes" -msgstr "" +msgstr "ÐаÑтройки на бързата маÑка" #: ../app/actions/qmask-commands.c:109 msgid "Edit Quick Mask Attributes" -msgstr "" +msgstr "ПромÑна наÑтройките на бързата маÑка" #: ../app/actions/qmask-commands.c:111 msgid "Edit Quick Mask Color" -msgstr "" +msgstr "ПромÑна цвета на бързата маÑка" #: ../app/actions/qmask-commands.c:112 msgid "Mask Opacity:" -msgstr "" +msgstr "ПлътноÑÑ‚ на маÑката:" #: ../app/actions/select-actions.c:44 msgid "Selection Editor Menu" -msgstr "" +msgstr "Меню" #: ../app/actions/select-actions.c:47 msgid "_Select" @@ -2465,7 +2513,7 @@ #: ../app/actions/select-actions.c:57 msgid "Select none" -msgstr "" +msgstr "ДеÑелектиране" #: ../app/actions/select-actions.c:62 msgid "_Invert" @@ -2477,133 +2525,133 @@ #: ../app/actions/select-actions.c:68 msgid "_Float" -msgstr "" +msgstr "_Плаваща ÑелекциÑ" #: ../app/actions/select-actions.c:73 msgid "Fea_ther..." -msgstr "" +msgstr "Сме_кчаване..." #: ../app/actions/select-actions.c:78 msgid "_Sharpen" -msgstr "" +msgstr "_ИзоÑÑ‚Ñ€Ñне" #: ../app/actions/select-actions.c:83 msgid "S_hrink..." -msgstr "" +msgstr "С_малÑване..." #: ../app/actions/select-actions.c:88 msgid "_Grow..." -msgstr "" +msgstr "_Увеличаване..." #: ../app/actions/select-actions.c:93 msgid "Bo_rder..." -msgstr "" +msgstr "По_ÑÑ..." #: ../app/actions/select-actions.c:98 msgid "Save to _Channel" -msgstr "" +msgstr "Запазване като _канал" #: ../app/actions/select-actions.c:99 msgid "Save selection to channel" -msgstr "" +msgstr "Запазване ÑелекциÑта като канал" #: ../app/actions/select-actions.c:104 msgid "_Stroke Selection..." -msgstr "" +msgstr "_Очертаване на ÑелекциÑта..." #: ../app/actions/select-actions.c:105 msgid "Stroke selection..." -msgstr "" +msgstr "Очертаване на ÑелекциÑта..." #: ../app/actions/select-actions.c:110 msgid "_Stroke Selection" -msgstr "" +msgstr "Очертаване на ÑелекциÑта" #: ../app/actions/select-actions.c:111 msgid "Stroke selection with last values" -msgstr "" +msgstr "Очертаване на ÑелекциÑта като поÑÐ»ÐµÐ´Ð½Ð¸Ñ Ð¿ÑŠÑ‚" #: ../app/actions/select-commands.c:136 ../app/core/gimpselection.c:201 msgid "Feather Selection" -msgstr "" +msgstr "Смекчаване на ÑелекциÑта" #: ../app/actions/select-commands.c:140 msgid "Feather selection by" -msgstr "" +msgstr "Смекчаване на ÑелекциÑта Ñ" #: ../app/actions/select-commands.c:171 ../app/core/gimpselection.c:208 msgid "Shrink Selection" -msgstr "" +msgstr "СмалÑване на ÑелекциÑта" #: ../app/actions/select-commands.c:175 msgid "Shrink selection by" -msgstr "" +msgstr "СмалÑване на ÑелекциÑта Ñ" #: ../app/actions/select-commands.c:184 msgid "Shrink from image border" -msgstr "" +msgstr "СмалÑване от краищата на изображението" #: ../app/actions/select-commands.c:205 ../app/core/gimpselection.c:207 msgid "Grow Selection" -msgstr "" +msgstr "Увеличаване на ÑелекциÑта" #: ../app/actions/select-commands.c:209 msgid "Grow selection by" -msgstr "" +msgstr "Увеличаване на ÑелекциÑта Ñ" #: ../app/actions/select-commands.c:228 ../app/core/gimpselection.c:206 msgid "Border Selection" -msgstr "" +msgstr "ПоÑÑ Ð½Ð° ÑелекциÑта" #: ../app/actions/select-commands.c:232 msgid "Border selection by" -msgstr "" +msgstr "ПоÑÑ Ð½Ð° ÑелекциÑта Ñ" #: ../app/actions/select-commands.c:275 ../app/actions/select-commands.c:301 #: ../app/actions/vectors-commands.c:365 ../app/actions/vectors-commands.c:392 #: ../app/dialogs/stroke-dialog.c:275 msgid "There is no active layer or channel to stroke to." -msgstr "" +msgstr "ÐÑма активен Ñлой или канал, който да Ñе очертае." #: ../app/actions/select-commands.c:280 ../app/core/gimpselection.c:184 msgid "Stroke Selection" -msgstr "" +msgstr "Очертаване на ÑелециÑта" #: ../app/actions/templates-actions.c:42 msgid "Templates Menu" -msgstr "" +msgstr "Меню шаблони" #: ../app/actions/templates-actions.c:46 msgid "_Create Image from Template..." -msgstr "" +msgstr "_Създаване на изображение по шаблон..." #: ../app/actions/templates-actions.c:47 msgid "Create a new image from the selected template" -msgstr "" +msgstr "Създаване на ново изображение по Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½" #: ../app/actions/templates-actions.c:52 msgid "_New Template..." -msgstr "" +msgstr "_Ðов шаблон..." #: ../app/actions/templates-actions.c:53 msgid "Create a new template" -msgstr "" +msgstr "Създаване на нов шаблон" #: ../app/actions/templates-actions.c:58 msgid "D_uplicate Template..." -msgstr "" +msgstr "Д_ублиране на шаблона..." #: ../app/actions/templates-actions.c:59 msgid "Duplicate the selected template" -msgstr "" +msgstr "Дублиране на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½" #: ../app/actions/templates-actions.c:64 msgid "_Edit Template..." -msgstr "" +msgstr "_Редактиране на шаблон..." #: ../app/actions/templates-actions.c:65 msgid "Edit the selected template" -msgstr "" +msgstr "Редактиране на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½" #: ../app/actions/templates-actions.c:70 msgid "_Delete Template" @@ -2615,16 +2663,16 @@ #: ../app/actions/templates-commands.c:123 msgid "New Template" -msgstr "" +msgstr "Ðов шаблон" #: ../app/actions/templates-commands.c:126 msgid "Create a New Template" -msgstr "" +msgstr "Създаване на нов шаблон" #: ../app/actions/templates-commands.c:185 #: ../app/actions/templates-commands.c:188 msgid "Edit Template" -msgstr "" +msgstr "ПромÑна на шаблона" #: ../app/actions/templates-commands.c:224 msgid "Delete Template" @@ -2634,7 +2682,7 @@ #, c-format msgid "" "Are you sure you want to delete template '%s' from the list and from disk?" -msgstr "" +msgstr "Сигурен ли Ñи че иÑкаш да изтриеш шаблона '%s' от диÑка?" #: ../app/actions/text-editor-actions.c:44 msgid "Open" @@ -2654,19 +2702,19 @@ #: ../app/actions/text-editor-actions.c:59 msgid "LTR" -msgstr "" +msgstr "ЛнД" #: ../app/actions/text-editor-actions.c:60 ../app/text/text-enums.c:51 msgid "From left to right" -msgstr "" +msgstr "От лÑво на дÑÑно" #: ../app/actions/text-editor-actions.c:65 msgid "RTL" -msgstr "" +msgstr "ДнЛ" #: ../app/actions/text-editor-actions.c:66 ../app/text/text-enums.c:52 msgid "From right to left" -msgstr "" +msgstr "От дÑÑно на лÑво" #: ../app/actions/text-editor-commands.c:60 msgid "Open Text File (UTF-8)" @@ -2704,11 +2752,11 @@ #: ../app/actions/tool-options-actions.c:76 msgid "_New Entry..." -msgstr "" +msgstr "_Ðова наÑтройка..." #: ../app/actions/tool-options-actions.c:81 msgid "R_eset Tool Options" -msgstr "" +msgstr "_Отново" #: ../app/actions/tool-options-actions.c:82 msgid "Reset to default values" @@ -2716,11 +2764,11 @@ #: ../app/actions/tool-options-actions.c:87 msgid "Reset _all Tool Options..." -msgstr "" +msgstr "Връщане на_вÑички наÑтройки към първоначалните..." #: ../app/actions/tool-options-actions.c:88 msgid "Reset all tool options" -msgstr "- за вÑички инÑтрументи" +msgstr "Връщане наÑтройките на вÑички инÑтрументи" #: ../app/actions/tool-options-commands.c:73 msgid "Save Tool Options" @@ -2746,11 +2794,11 @@ #: ../app/actions/tool-options-commands.c:215 msgid "Reset Tool Options" -msgstr "" +msgstr "Връщане наÑтройките към първоначалните" #: ../app/actions/tool-options-commands.c:233 msgid "Do you really want to reset all tool options to default values?" -msgstr "" +msgstr "ÐаиÑтина ли иÑкаш да върнеш вÑички наÑтройки към първоначалните?" #: ../app/actions/tools-actions.c:47 msgid "Tools Menu" @@ -2762,183 +2810,183 @@ #: ../app/actions/tools-actions.c:51 msgid "_Selection Tools" -msgstr "" +msgstr "_Селектиране" #: ../app/actions/tools-actions.c:52 msgid "_Paint Tools" -msgstr "" +msgstr "_РиÑуване" #: ../app/actions/tools-actions.c:53 msgid "_Transform Tools" -msgstr "" +msgstr "_ТранÑформиране" #: ../app/actions/tools-actions.c:54 msgid "_Color Tools" -msgstr "" +msgstr "_Цветове" #: ../app/actions/tools-actions.c:57 msgid "_Reset Order & Visibility" -msgstr "" +msgstr "_ИзчиÑтване реда и видимоÑтта" #: ../app/actions/tools-actions.c:58 msgid "Reset tool order and visibility" -msgstr "" +msgstr "ИзчиÑтване реда на инÑтрументите и видимоÑтта" #: ../app/actions/tools-actions.c:66 msgid "_Show in Toolbox" -msgstr "" +msgstr "_Показване в инÑтрументите" #: ../app/actions/tools-actions.c:75 msgid "_By Color" -msgstr "" +msgstr "_По цвÑÑ‚" #: ../app/actions/tools-actions.c:80 msgid "_Arbitrary Rotation..." -msgstr "" +msgstr "_Въртене по зададена ÑтойноÑÑ‚..." #: ../app/actions/vectors-actions.c:44 msgid "Paths Menu" -msgstr "" +msgstr "Меню Пътеки" #: ../app/actions/vectors-actions.c:48 msgid "Path _Tool" -msgstr "" +msgstr "_Пътека" #: ../app/actions/vectors-actions.c:53 msgid "_Edit Path Attributes..." -msgstr "" +msgstr "_ПромÑна наÑтройките на пътеката..." #: ../app/actions/vectors-actions.c:54 msgid "Edit path attributes" -msgstr "" +msgstr "ПромÑна наÑтройките на пътеката" #: ../app/actions/vectors-actions.c:59 msgid "_New Path..." -msgstr "" +msgstr "_Ðова пътека..." #: ../app/actions/vectors-actions.c:60 msgid "New path..." -msgstr "" +msgstr "Ðова пътека..." #: ../app/actions/vectors-actions.c:65 msgid "_New Path" -msgstr "" +msgstr "_Ðова пътека" #: ../app/actions/vectors-actions.c:66 msgid "New path with last values" -msgstr "" +msgstr "Ðова пътека като предишната" #: ../app/actions/vectors-actions.c:71 msgid "D_uplicate Path" -msgstr "" +msgstr "Д_ублиране на пътеката" #: ../app/actions/vectors-actions.c:72 msgid "Duplicate path" -msgstr "" +msgstr "Дублиране на пътеката" #: ../app/actions/vectors-actions.c:77 msgid "_Delete Path" -msgstr "" +msgstr "_Изтриване на пътеката" #: ../app/actions/vectors-actions.c:78 msgid "Delete path" -msgstr "" +msgstr "Изтриване на пътеката" #: ../app/actions/vectors-actions.c:83 msgid "Merge _Visible Paths" -msgstr "" +msgstr "Сливане на _видимите пътеки" #: ../app/actions/vectors-actions.c:88 msgid "_Raise Path" -msgstr "" +msgstr "_Повдигане на пътеката" #: ../app/actions/vectors-actions.c:89 msgid "Raise path" -msgstr "" +msgstr "Повдигане на пътеката" #: ../app/actions/vectors-actions.c:94 msgid "Raise Path to _Top" -msgstr "" +msgstr "Повдигане най-_горе" #: ../app/actions/vectors-actions.c:95 msgid "Raise path to top" -msgstr "" +msgstr "Повдигане най-горе" #: ../app/actions/vectors-actions.c:100 msgid "_Lower Path" -msgstr "" +msgstr "_Снижаване" #: ../app/actions/vectors-actions.c:101 msgid "Lower path" -msgstr "" +msgstr "Снижаване" #: ../app/actions/vectors-actions.c:106 msgid "Lower Path to _Bottom" -msgstr "" +msgstr "Снижаване най-_долу" #: ../app/actions/vectors-actions.c:107 msgid "Lower path to bottom" -msgstr "" +msgstr "Снижаване най-долу" #: ../app/actions/vectors-actions.c:112 msgid "Stro_ke Path..." -msgstr "" +msgstr "О_чертаване на пътеката..." #: ../app/actions/vectors-actions.c:113 msgid "Stroke path..." -msgstr "" +msgstr "Очертаване на пътеката..." #: ../app/actions/vectors-actions.c:118 msgid "Stro_ke Path" -msgstr "" +msgstr "О_чертаване на пътеката" #: ../app/actions/vectors-actions.c:119 msgid "Stroke path with last values" -msgstr "" +msgstr "Очертаване на пътеката като поÑÐ»ÐµÐ´Ð½Ð¸Ñ Ð¿ÑŠÑ‚" #: ../app/actions/vectors-actions.c:124 msgid "Co_py Path" -msgstr "" +msgstr "_Копиране на пътеката" #: ../app/actions/vectors-actions.c:129 msgid "Paste Pat_h" -msgstr "" +msgstr "_Вмъкване на пътека" #: ../app/actions/vectors-actions.c:134 msgid "I_mport Path..." -msgstr "" +msgstr "_Импортиране на пътека..." #: ../app/actions/vectors-actions.c:139 msgid "E_xport Path..." -msgstr "" +msgstr "_ЕкÑпортиране на пътека" #: ../app/actions/vectors-actions.c:162 msgid "Path to Sele_ction" -msgstr "" +msgstr "Превръщане в _ÑелекциÑ" -#: ../app/actions/vectors-actions.c:163 ../app/tools/gimpvectortool.c:1893 +#: ../app/actions/vectors-actions.c:163 ../app/tools/gimpvectortool.c:1903 msgid "Path to selection" -msgstr "" +msgstr "Превръщане в ÑелекциÑ" #: ../app/actions/vectors-actions.c:168 msgid "Fr_om Path" -msgstr "" +msgstr "_От пътека" #: ../app/actions/vectors-actions.c:194 msgid "Selecti_on to Path" -msgstr "" +msgstr "Пре_връщане на ÑелекциÑта в пътека" #: ../app/actions/vectors-actions.c:195 msgid "Selection to path" -msgstr "" +msgstr "Превръщане на ÑелекциÑта в пътека" #: ../app/actions/vectors-actions.c:200 msgid "To _Path" -msgstr "" +msgstr "Ð’ _пътека" #: ../app/actions/vectors-actions.c:205 msgid "Selection to Path (_Advanced)" -msgstr "" +msgstr "Превръщане на ÑелекциÑта в пътека (_Ñложно)" #: ../app/actions/vectors-actions.c:206 msgid "Advanced options" @@ -2946,29 +2994,29 @@ #: ../app/actions/vectors-commands.c:140 msgid "Path Attributes" -msgstr "" +msgstr "ÐаÑтройки на пътеката" #: ../app/actions/vectors-commands.c:143 msgid "Edit Path Attributes" -msgstr "" +msgstr "ПромÑна наÑтройките на пътеката" #: ../app/actions/vectors-commands.c:167 ../app/actions/vectors-commands.c:168 #: ../app/actions/vectors-commands.c:190 msgid "New Path" -msgstr "" +msgstr "Ðова пътека" #: ../app/actions/vectors-commands.c:171 msgid "New Path Options" -msgstr "" +msgstr "ÐаÑтройки на новата пътека" #: ../app/actions/vectors-commands.c:299 ../app/pdb/paths_cmds.c:1210 msgid "Path to Selection" -msgstr "" +msgstr "Превръщане в ÑелекциÑ" -#: ../app/actions/vectors-commands.c:370 ../app/tools/gimpvectortool.c:1923 +#: ../app/actions/vectors-commands.c:370 ../app/tools/gimpvectortool.c:1933 #: ../app/vectors/gimpvectors.c:237 msgid "Stroke Path" -msgstr "" +msgstr "Очертаване на пътеката" #: ../app/actions/view-actions.c:63 msgid "_View" @@ -2995,16 +3043,18 @@ msgstr "" #: ../app/actions/view-actions.c:84 +#, fuzzy msgid "Fit Image to Window" -msgstr "" +msgstr "Прозорци на изображениÑта" #: ../app/actions/view-actions.c:85 msgid "Fit image to window" msgstr "" #: ../app/actions/view-actions.c:90 +#, fuzzy msgid "_Info Window" -msgstr "Прзорец Ñ _данни" +msgstr "Прозорци на изображениÑта" #: ../app/actions/view-actions.c:95 msgid "Na_vigation Window" @@ -3023,8 +3073,9 @@ msgstr "" #: ../app/actions/view-actions.c:111 +#, fuzzy msgid "Move to Screen..." -msgstr "" +msgstr "П_ремеÑти към екран" #: ../app/actions/view-actions.c:119 msgid "_Dot for Dot" @@ -3075,48 +3126,58 @@ msgstr "Пълен _екран" #: ../app/actions/view-actions.c:234 +#, fuzzy msgid "16:1 (1600%)" -msgstr "16:1 (1600%)" +msgstr "1_6:1 (1600%)" #: ../app/actions/view-actions.c:239 +#, fuzzy msgid "8:1 (800%)" -msgstr "8:1 (800%)" +msgstr "_8:1 (800%)" #: ../app/actions/view-actions.c:244 +#, fuzzy msgid "4:1 (400%)" -msgstr "4:1 (400%)" +msgstr "_4:1 (400%)" #: ../app/actions/view-actions.c:249 +#, fuzzy msgid "2:1 (200%)" -msgstr "2:1 (200%)" +msgstr "_2:1 (200%)" #: ../app/actions/view-actions.c:254 +#, fuzzy msgid "1:1 (100%)" -msgstr "1:1 (100%)" +msgstr "_1:1 (100%)" #: ../app/actions/view-actions.c:255 msgid "Zoom 1:1" msgstr "Мащаб 1:1" #: ../app/actions/view-actions.c:260 +#, fuzzy msgid "1:2 (50%)" -msgstr "1:2 (50%)" +msgstr "1:_2 (50%)" #: ../app/actions/view-actions.c:265 +#, fuzzy msgid "1:4 (25%)" -msgstr "1:4 (25%)" +msgstr "1:_4 (25%)" #: ../app/actions/view-actions.c:270 +#, fuzzy msgid "1:8 (12.5%)" -msgstr "1:8 (12.5%)" +msgstr "1:_8 (12.5%)" #: ../app/actions/view-actions.c:275 +#, fuzzy msgid "1:16 (6.25%)" -msgstr "1:16 (6.25%)" +msgstr "1:_16 (6.25%)" #: ../app/actions/view-actions.c:280 +#, fuzzy msgid "O_ther..." -msgstr "" +msgstr "Друго..." #: ../app/actions/view-actions.c:288 msgid "From _Theme" @@ -3139,9 +3200,9 @@ msgstr "" #: ../app/actions/view-actions.c:592 -#, c-format +#, fuzzy, c-format msgid "Other (%s) ..." -msgstr "" +msgstr "_Друго... (%s)" #: ../app/actions/view-actions.c:601 #, c-format @@ -3207,8 +3268,9 @@ msgstr "" #: ../app/base/base-enums.c:188 +#, fuzzy msgid "Shadows" -msgstr "Сенки" +msgstr "Вид на Ñенките" #: ../app/base/base-enums.c:189 msgid "Midtones" @@ -3765,8 +3827,9 @@ msgstr "Запълване Ñ Ð¿Ñ€Ð¾Ð·Ñ€Ð°Ñ‡Ð½Ð¾ÑÑ‚" #: ../app/core/core-enums.c:29 +#, fuzzy msgid "Layer's _alpha channel" -msgstr "" +msgstr "ПремеÑтване надолy" #: ../app/core/core-enums.c:30 msgid "_Transfer layer's alpha channel" @@ -3800,45 +3863,49 @@ msgstr "Редактиране на преливка" #: ../app/core/core-enums.c:92 +#, fuzzy msgid "FG color fill" -msgstr "" +msgstr "_ЦвÑÑ‚ на Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½" #: ../app/core/core-enums.c:93 +#, fuzzy msgid "BG color fill" -msgstr "" +msgstr "_ЦвÑÑ‚ на фона" #: ../app/core/core-enums.c:94 #, fuzzy msgid "Pattern fill" -msgstr "Файл на _палитра" +msgstr "Шарка" #: ../app/core/core-enums.c:123 #, fuzzy msgid "Add to the current selection" -msgstr "ПремеÑтване на Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ Ñлой" +msgstr "ДобавÑне към ÑелекциÑ" #: ../app/core/core-enums.c:124 #, fuzzy msgid "Subtract from the current selection" -msgstr "Завъртане на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избраното" +msgstr "_Изваждане от ÑелекциÑ" #: ../app/core/core-enums.c:125 #, fuzzy msgid "Replace the current selection" -msgstr "Завъртане на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избраното" +msgstr "Размножаване на избраното от преливката" #: ../app/core/core-enums.c:126 #, fuzzy msgid "Intersect with the current selection" -msgstr "ПромÑна перÑпективата на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избраното" +msgstr "_ПреÑичане ÑÑŠÑ ÑелекциÑ" #: ../app/core/core-enums.c:160 +#, fuzzy msgid "Gray" -msgstr "Сиво" +msgstr "Степени на Ñивото" #: ../app/core/core-enums.c:161 +#, fuzzy msgid "Indexed" -msgstr "" +msgstr "_ИндекÑиран..." #: ../app/core/core-enums.c:219 ../app/core/core-enums.c:334 #: ../app/core/core-enums.c:766 ../app/tools/gimptransformoptions.c:457 @@ -3893,11 +3960,12 @@ #: ../app/core/core-enums.c:333 ../app/core/core-enums.c:470 #: ../app/pdb/internal_procs.c:179 msgid "Pattern" -msgstr "" +msgstr "Шарка" #: ../app/core/core-enums.c:371 +#, fuzzy msgid "Bi-linear" -msgstr "" +msgstr "_Линейно" #: ../app/core/core-enums.c:372 #, fuzzy @@ -4034,8 +4102,9 @@ msgstr "" #: ../app/core/core-enums.c:606 +#, fuzzy msgid "Image file" -msgstr "Файл на изображението" +msgstr "Размер на изображението" #: ../app/core/core-enums.c:634 msgid "Circle" @@ -4121,249 +4190,254 @@ msgid "Backward (corrective)" msgstr "" -#: ../app/core/core-enums.c:1029 +#: ../app/core/core-enums.c:1030 msgid "<>" msgstr "" -#: ../app/core/core-enums.c:1030 +#: ../app/core/core-enums.c:1031 msgid "Scale image" msgstr "" -#: ../app/core/core-enums.c:1031 +#: ../app/core/core-enums.c:1032 msgid "Resize image" msgstr "" -#: ../app/core/core-enums.c:1032 +#: ../app/core/core-enums.c:1033 msgid "Flip image" msgstr "Обръщане на изображението" -#: ../app/core/core-enums.c:1033 +#: ../app/core/core-enums.c:1034 msgid "Rotate image" msgstr "Завъртане на изображението" -#: ../app/core/core-enums.c:1034 +#: ../app/core/core-enums.c:1035 msgid "Crop image" msgstr "" -#: ../app/core/core-enums.c:1035 +#: ../app/core/core-enums.c:1036 msgid "Convert image" msgstr "Преобразуване на изображението" -#: ../app/core/core-enums.c:1036 +#: ../app/core/core-enums.c:1037 +#, fuzzy +msgid "Remove item" +msgstr "Преименуване на обекта" + +#: ../app/core/core-enums.c:1038 msgid "Merge layers" msgstr "Сливане на Ñлоевете" -#: ../app/core/core-enums.c:1037 +#: ../app/core/core-enums.c:1039 msgid "Merge vectors" msgstr "" -#: ../app/core/core-enums.c:1038 ../app/core/gimpchannel.c:383 +#: ../app/core/core-enums.c:1040 ../app/core/gimpchannel.c:383 msgid "Quick Mask" msgstr "" -#: ../app/core/core-enums.c:1039 ../app/core/core-enums.c:1068 +#: ../app/core/core-enums.c:1041 ../app/core/core-enums.c:1070 #: ../app/core/gimpimage-grid.c:59 ../app/dialogs/grid-dialog.c:144 #: ../app/tools/tools-enums.c:175 msgid "Grid" msgstr "Мрежа" -#: ../app/core/core-enums.c:1040 ../app/core/core-enums.c:1069 +#: ../app/core/core-enums.c:1042 ../app/core/core-enums.c:1071 msgid "Guide" msgstr "" -#: ../app/core/core-enums.c:1042 ../app/core/core-enums.c:1072 +#: ../app/core/core-enums.c:1044 ../app/core/core-enums.c:1074 msgid "Drawable mod" msgstr "" -#: ../app/core/core-enums.c:1043 ../app/core/core-enums.c:1073 +#: ../app/core/core-enums.c:1045 ../app/core/core-enums.c:1075 msgid "Selection mask" msgstr "" -#: ../app/core/core-enums.c:1044 ../app/core/core-enums.c:1076 +#: ../app/core/core-enums.c:1046 ../app/core/core-enums.c:1078 msgid "Item visibility" msgstr "" -#: ../app/core/core-enums.c:1045 +#: ../app/core/core-enums.c:1047 msgid "Linked item" msgstr "" -#: ../app/core/core-enums.c:1046 +#: ../app/core/core-enums.c:1048 msgid "Item properties" msgstr "" -#: ../app/core/core-enums.c:1047 ../app/core/core-enums.c:1075 +#: ../app/core/core-enums.c:1049 ../app/core/core-enums.c:1077 msgid "Move item" msgstr "" -#: ../app/core/core-enums.c:1048 +#: ../app/core/core-enums.c:1050 msgid "Scale item" msgstr "" -#: ../app/core/core-enums.c:1049 +#: ../app/core/core-enums.c:1051 msgid "Resize item" msgstr "" -#: ../app/core/core-enums.c:1050 ../app/core/core-enums.c:1080 +#: ../app/core/core-enums.c:1052 ../app/core/core-enums.c:1082 msgid "Add layer mask" msgstr "" -#: ../app/core/core-enums.c:1051 +#: ../app/core/core-enums.c:1053 msgid "Apply layer mask" msgstr "" -#: ../app/core/core-enums.c:1052 +#: ../app/core/core-enums.c:1054 msgid "Floating selection to layer" msgstr "" -#: ../app/core/core-enums.c:1053 +#: ../app/core/core-enums.c:1055 msgid "Float selection" msgstr "" -#: ../app/core/core-enums.c:1054 +#: ../app/core/core-enums.c:1056 msgid "Anchor floating selection" msgstr "" -#: ../app/core/core-enums.c:1055 +#: ../app/core/core-enums.c:1057 msgid "Remove floating selection" msgstr "" -#: ../app/core/core-enums.c:1056 ../app/core/gimp-edit.c:267 +#: ../app/core/core-enums.c:1058 ../app/core/gimp-edit.c:267 msgid "Paste" msgstr "" -#: ../app/core/core-enums.c:1057 ../app/core/gimp-edit.c:418 +#: ../app/core/core-enums.c:1059 ../app/core/gimp-edit.c:418 msgid "Cut" msgstr "" -#: ../app/core/core-enums.c:1058 ../app/core/core-enums.c:1086 +#: ../app/core/core-enums.c:1060 ../app/core/core-enums.c:1088 #: ../app/tools/gimptexttool.c:144 ../app/widgets/widgets-enums.c:263 msgid "Text" msgstr "ТекÑÑ‚" -#: ../app/core/core-enums.c:1059 ../app/core/core-enums.c:1099 +#: ../app/core/core-enums.c:1061 ../app/core/core-enums.c:1101 #: ../app/core/gimpdrawable-transform.c:867 msgid "Transform" msgstr "Преобразуване" -#: ../app/core/core-enums.c:1060 ../app/core/core-enums.c:1100 +#: ../app/core/core-enums.c:1062 ../app/core/core-enums.c:1102 #: ../app/paint/gimppaintcore.c:345 msgid "Paint" msgstr "" -#: ../app/core/core-enums.c:1061 ../app/core/core-enums.c:1102 +#: ../app/core/core-enums.c:1063 ../app/core/core-enums.c:1104 msgid "Attach parasite" msgstr "" -#: ../app/core/core-enums.c:1062 ../app/core/core-enums.c:1103 +#: ../app/core/core-enums.c:1064 ../app/core/core-enums.c:1105 msgid "Remove parasite" msgstr "" -#: ../app/core/core-enums.c:1063 +#: ../app/core/core-enums.c:1065 msgid "Import paths" msgstr "" -#: ../app/core/core-enums.c:1064 ../app/pdb/drawable_cmds.c:1693 +#: ../app/core/core-enums.c:1066 ../app/pdb/drawable_cmds.c:1693 msgid "Plug-In" msgstr "ПриÑтавка" -#: ../app/core/core-enums.c:1065 +#: ../app/core/core-enums.c:1067 msgid "Image type" msgstr "" -#: ../app/core/core-enums.c:1066 +#: ../app/core/core-enums.c:1068 msgid "Image size" msgstr "Размер на изображението" -#: ../app/core/core-enums.c:1067 +#: ../app/core/core-enums.c:1069 msgid "Resolution change" msgstr "" -#: ../app/core/core-enums.c:1070 +#: ../app/core/core-enums.c:1072 msgid "Change indexed palette" msgstr "" -#: ../app/core/core-enums.c:1074 +#: ../app/core/core-enums.c:1076 msgid "Rename item" msgstr "Преименуване на обекта" -#: ../app/core/core-enums.c:1077 +#: ../app/core/core-enums.c:1079 msgid "Set item linked" msgstr "" -#: ../app/core/core-enums.c:1078 +#: ../app/core/core-enums.c:1080 msgid "New layer" msgstr "Ðов Ñлой" -#: ../app/core/core-enums.c:1081 +#: ../app/core/core-enums.c:1083 msgid "Delete layer mask" msgstr "" -#: ../app/core/core-enums.c:1082 +#: ../app/core/core-enums.c:1084 msgid "Reposition layer" msgstr "" -#: ../app/core/core-enums.c:1083 +#: ../app/core/core-enums.c:1085 msgid "Set layer mode" msgstr "" -#: ../app/core/core-enums.c:1084 +#: ../app/core/core-enums.c:1086 msgid "Set layer opacity" msgstr "" -#: ../app/core/core-enums.c:1085 +#: ../app/core/core-enums.c:1087 msgid "Set preserve trans" msgstr "" -#: ../app/core/core-enums.c:1087 +#: ../app/core/core-enums.c:1089 msgid "Text modified" msgstr "ТекÑÑ‚ÑŠÑ‚ е променен" -#: ../app/core/core-enums.c:1088 +#: ../app/core/core-enums.c:1090 msgid "New channel" msgstr "" -#: ../app/core/core-enums.c:1090 +#: ../app/core/core-enums.c:1092 msgid "Reposition channel" msgstr "" -#: ../app/core/core-enums.c:1091 +#: ../app/core/core-enums.c:1093 msgid "Channel color" msgstr "" -#: ../app/core/core-enums.c:1092 +#: ../app/core/core-enums.c:1094 msgid "New vectors" msgstr "" -#: ../app/core/core-enums.c:1093 +#: ../app/core/core-enums.c:1095 msgid "Delete vectors" msgstr "" -#: ../app/core/core-enums.c:1094 +#: ../app/core/core-enums.c:1096 msgid "Vectors mod" msgstr "" -#: ../app/core/core-enums.c:1095 +#: ../app/core/core-enums.c:1097 msgid "Reposition vectors" msgstr "" -#: ../app/core/core-enums.c:1096 +#: ../app/core/core-enums.c:1098 msgid "FS to layer" msgstr "" -#: ../app/core/core-enums.c:1097 +#: ../app/core/core-enums.c:1099 msgid "FS rigor" msgstr "" -#: ../app/core/core-enums.c:1098 +#: ../app/core/core-enums.c:1100 msgid "FS relax" msgstr "" -#: ../app/core/core-enums.c:1101 ../app/paint/gimpink.c:102 +#: ../app/core/core-enums.c:1103 ../app/paint/gimpink.c:103 #: ../app/tools/gimpinktool.c:62 msgid "Ink" msgstr "" -#: ../app/core/core-enums.c:1104 +#: ../app/core/core-enums.c:1106 msgid "EEK: can't undo" msgstr "" @@ -4904,148 +4978,148 @@ msgid "Can't undo %s" msgstr "" -#: ../app/core/gimpimage.c:1357 +#: ../app/core/gimpimage.c:1359 msgid "Change Image Resolution" msgstr "" -#: ../app/core/gimpimage.c:1397 +#: ../app/core/gimpimage.c:1399 msgid "Change Image Unit" msgstr "" -#: ../app/core/gimpimage.c:2177 +#: ../app/core/gimpimage.c:2179 msgid "Attach Parasite to Image" msgstr "" -#: ../app/core/gimpimage.c:2210 +#: ../app/core/gimpimage.c:2212 msgid "Remove Parasite from Image" msgstr "" -#: ../app/core/gimpimage.c:2678 +#: ../app/core/gimpimage.c:2680 msgid "Add Layer" msgstr "ДобавÑне на Ñлой" -#: ../app/core/gimpimage.c:2745 +#: ../app/core/gimpimage.c:2744 ../app/core/gimpimage.c:2757 msgid "Remove Layer" msgstr "Премахване на Ñлой" -#: ../app/core/gimpimage.c:2816 +#: ../app/core/gimpimage.c:2831 msgid "Layer cannot be raised higher." msgstr "" -#: ../app/core/gimpimage.c:2822 ../app/core/gimpimage.c:2872 +#: ../app/core/gimpimage.c:2837 ../app/core/gimpimage.c:2887 msgid "Cannot raise a layer without alpha." msgstr "" -#: ../app/core/gimpimage.c:2827 +#: ../app/core/gimpimage.c:2842 msgid "Raise Layer" msgstr "" -#: ../app/core/gimpimage.c:2844 +#: ../app/core/gimpimage.c:2859 msgid "Layer cannot be lowered more." msgstr "" -#: ../app/core/gimpimage.c:2849 +#: ../app/core/gimpimage.c:2864 msgid "Lower Layer" msgstr "" -#: ../app/core/gimpimage.c:2866 +#: ../app/core/gimpimage.c:2881 msgid "Layer is already on top." msgstr "" -#: ../app/core/gimpimage.c:2877 +#: ../app/core/gimpimage.c:2892 msgid "Raise Layer to Top" msgstr "" -#: ../app/core/gimpimage.c:2897 +#: ../app/core/gimpimage.c:2912 msgid "Layer is already on the bottom." msgstr "" -#: ../app/core/gimpimage.c:2902 +#: ../app/core/gimpimage.c:2917 msgid "Lower Layer to Bottom" msgstr "" -#: ../app/core/gimpimage.c:2941 +#: ../app/core/gimpimage.c:2956 #, c-format msgid "Layer '%s' has no alpha. Layer was placed above it." msgstr "" -#: ../app/core/gimpimage.c:2993 +#: ../app/core/gimpimage.c:3008 msgid "Add Channel" msgstr "" -#: ../app/core/gimpimage.c:3038 +#: ../app/core/gimpimage.c:3052 ../app/core/gimpimage.c:3063 msgid "Remove Channel" msgstr "" -#: ../app/core/gimpimage.c:3082 +#: ../app/core/gimpimage.c:3110 msgid "Channel cannot be raised higher." msgstr "" -#: ../app/core/gimpimage.c:3087 +#: ../app/core/gimpimage.c:3115 msgid "Raise Channel" msgstr "" -#: ../app/core/gimpimage.c:3104 +#: ../app/core/gimpimage.c:3132 msgid "Channel is already on top." msgstr "" -#: ../app/core/gimpimage.c:3109 +#: ../app/core/gimpimage.c:3137 msgid "Raise Channel to Top" msgstr "" -#: ../app/core/gimpimage.c:3126 +#: ../app/core/gimpimage.c:3154 msgid "Channel cannot be lowered more." msgstr "" -#: ../app/core/gimpimage.c:3131 +#: ../app/core/gimpimage.c:3159 msgid "Lower Channel" msgstr "" -#: ../app/core/gimpimage.c:3151 +#: ../app/core/gimpimage.c:3179 msgid "Channel is already on the bottom." msgstr "" -#: ../app/core/gimpimage.c:3156 +#: ../app/core/gimpimage.c:3184 msgid "Lower Channel to Bottom" msgstr "" -#: ../app/core/gimpimage.c:3231 +#: ../app/core/gimpimage.c:3259 msgid "Add Path" msgstr "" -#: ../app/core/gimpimage.c:3276 +#: ../app/core/gimpimage.c:3304 msgid "Remove Path" msgstr "" -#: ../app/core/gimpimage.c:3320 +#: ../app/core/gimpimage.c:3348 msgid "Path cannot be raised higher." msgstr "" -#: ../app/core/gimpimage.c:3325 +#: ../app/core/gimpimage.c:3353 msgid "Raise Path" msgstr "" -#: ../app/core/gimpimage.c:3342 +#: ../app/core/gimpimage.c:3370 msgid "Path is already on top." msgstr "" -#: ../app/core/gimpimage.c:3347 +#: ../app/core/gimpimage.c:3375 msgid "Raise Path to Top" msgstr "" -#: ../app/core/gimpimage.c:3364 +#: ../app/core/gimpimage.c:3392 msgid "Path cannot be lowered more." msgstr "" -#: ../app/core/gimpimage.c:3369 +#: ../app/core/gimpimage.c:3397 msgid "Lower Path" msgstr "" -#: ../app/core/gimpimage.c:3389 +#: ../app/core/gimpimage.c:3417 msgid "Path is already on the bottom." msgstr "" -#: ../app/core/gimpimage.c:3394 +#: ../app/core/gimpimage.c:3422 msgid "Lower Path to Bottom" msgstr "" @@ -5374,7 +5448,7 @@ #: ../app/core/gimpunit.c:58 msgid "inches" -msgstr "" +msgstr "инчове" #: ../app/core/gimpunit.c:59 msgid "millimeter" @@ -5403,7 +5477,7 @@ #: ../app/core/gimpunit.c:70 msgid "percent" -msgstr "" +msgstr "процента" #: ../app/dialogs/about-dialog.c:45 #, c-format @@ -5418,7 +5492,9 @@ #. we'd prefer just the names, please no email addresses. #: ../app/dialogs/about-dialog.c:54 msgid "translator-credits" -msgstr "ЯÑен Праматаров " +msgstr "" +"ЯÑен Праматаров \n" +"Виктор Дачев " #: ../app/dialogs/about-dialog.c:59 msgid "Contributions by" @@ -5430,7 +5506,7 @@ #: ../app/dialogs/channel-options-dialog.c:138 msgid "Channel Name:" -msgstr "" +msgstr "Име на канала" #: ../app/dialogs/convert-dialog.c:121 msgid "Indexed Color Conversion" @@ -5469,7 +5545,7 @@ msgid "Converting to indexed..." msgstr "" -#: ../app/dialogs/convert-dialog.c:382 +#: ../app/dialogs/convert-dialog.c:384 msgid "Cannot convert to a palette with more than 256 colors." msgstr "" @@ -5511,7 +5587,7 @@ #: ../app/dialogs/dialogs.c:183 msgid "Undo History" -msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° промените" +msgstr "ИÑториÑ" #: ../app/dialogs/dialogs.c:189 msgid "Navigation" @@ -5654,20 +5730,24 @@ msgstr "Степени на Ñивото" #: ../app/dialogs/info-window.c:85 +#, fuzzy msgid "Static Color" -msgstr "" +msgstr "Избор на цвÑÑ‚" #: ../app/dialogs/info-window.c:86 +#, fuzzy msgid "Pseudo Color" -msgstr "" +msgstr "ЦвÑÑ‚ на текÑта" #: ../app/dialogs/info-window.c:87 +#, fuzzy msgid "True Color" -msgstr "" +msgstr "ЦвÑÑ‚ на текÑта" #: ../app/dialogs/info-window.c:88 +#, fuzzy msgid "Direct Color" -msgstr "" +msgstr "Избор на цвÑÑ‚" #: ../app/dialogs/info-window.c:131 msgid "Cursor" @@ -5699,8 +5779,9 @@ msgstr "Мерни единици" #: ../app/dialogs/info-window.c:228 +#, fuzzy msgid "Comment" -msgstr "Бележки" +msgstr "Беле_жки:" #: ../app/dialogs/info-window.c:248 ../app/dialogs/info-window.c:634 #: ../app/display/gimpdisplayshell-title.c:337 @@ -5710,12 +5791,14 @@ msgstr "" #: ../app/dialogs/info-window.c:275 +#, fuzzy msgid "Info Window" -msgstr "Прозорец Ñ Ð´Ð°Ð½Ð½Ð¸" +msgstr "Прозорци на изображениÑта" #: ../app/dialogs/info-window.c:277 +#, fuzzy msgid "Image Information" -msgstr "Данни за изображението" +msgstr "Данни за въртенето" #. add the information fields #: ../app/dialogs/info-window.c:294 @@ -5731,8 +5814,9 @@ msgstr "" #: ../app/dialogs/info-window.c:300 +#, fuzzy msgid "Scale ratio:" -msgstr "" +msgstr "ПреоразмерÑване" #: ../app/dialogs/info-window.c:302 msgid "Number of layers:" @@ -5743,8 +5827,9 @@ msgstr "Размер в паметта:" #: ../app/dialogs/info-window.c:306 +#, fuzzy msgid "Display type:" -msgstr "" +msgstr "Вид _прозрачноÑÑ‚:" #: ../app/dialogs/info-window.c:308 msgid "Visual class:" @@ -6084,8 +6169,9 @@ #: ../app/dialogs/preferences-dialog.c:1294 #: ../app/dialogs/preferences-dialog.c:1297 +#, fuzzy msgid "New Image" -msgstr "Ðово изображение" +msgstr "ОтварÑне на изображение" #: ../app/dialogs/preferences-dialog.c:1335 msgid "Default Image Grid" @@ -6216,8 +6302,9 @@ msgstr "Откриване на непрекъÑнати облаÑти" #: ../app/dialogs/preferences-dialog.c:1611 +#, fuzzy msgid "Default _threshold:" -msgstr "" +msgstr "Мрежа по подразбиране" #. Scaling #: ../app/dialogs/preferences-dialog.c:1615 @@ -6379,8 +6466,9 @@ msgstr "Вид _прозрачноÑÑ‚:" #: ../app/dialogs/preferences-dialog.c:1925 +#, fuzzy msgid "Check _size:" -msgstr "" +msgstr "_Вид на чертите:" #: ../app/dialogs/preferences-dialog.c:1928 msgid "Get Monitor Resolution" @@ -6793,6 +6881,7 @@ msgstr "" #: ../app/dialogs/user-install-dialog.c:149 +#, fuzzy msgid "" "Plug-ins and extensions are external programs run by the GIMP which provide " "additional functionality. These programs are searched for at run-time and " @@ -7227,19 +7316,19 @@ msgid "Layer Select" msgstr "" -#: ../app/display/gimpdisplayshell-scale.c:537 +#: ../app/display/gimpdisplayshell-scale.c:541 msgid "Zoom Ratio" msgstr "Мащаб на увеличението" -#: ../app/display/gimpdisplayshell-scale.c:539 +#: ../app/display/gimpdisplayshell-scale.c:543 msgid "Select Zoom Ratio" msgstr "Избор на увеличение" -#: ../app/display/gimpdisplayshell-scale.c:574 +#: ../app/display/gimpdisplayshell-scale.c:578 msgid "Zoom Ratio:" msgstr "Мащаб на увеличението:" -#: ../app/display/gimpdisplayshell-scale.c:601 +#: ../app/display/gimpdisplayshell-scale.c:605 msgid "Zoom:" msgstr "Мащаб:" @@ -7288,7 +7377,7 @@ msgid "Style of bevel around the statusbar text" msgstr "" -#: ../app/display/gimpstatusbar.c:222 +#: ../app/display/gimpstatusbar.c:229 msgid "Cancel" msgstr "ПрекъÑване" @@ -7382,8 +7471,9 @@ msgstr "Размер на изображението" #: ../app/paint/paint-enums.c:24 +#, fuzzy msgid "Pattern source" -msgstr "" +msgstr "Шарки" #: ../app/paint/paint-enums.c:52 msgid "Non-aligned" @@ -7483,11 +7573,11 @@ msgid "Blending..." msgstr "" -#: ../app/pdb/image_cmds.c:3756 ../app/text/gimptext-parasite.c:168 +#: ../app/pdb/image_cmds.c:3758 ../app/text/gimptext-parasite.c:168 msgid "(invalid UTF-8 string)" msgstr "(грешен уникод низ)" -#: ../app/pdb/image_cmds.c:3898 +#: ../app/pdb/image_cmds.c:3900 msgid "" "Image resolution is out of bounds, using the default resolution instead." msgstr "" @@ -7867,7 +7957,7 @@ msgid "Grid line spacing" msgstr "" -#: ../app/tools/gimp-tools.c:283 +#: ../app/tools/gimp-tools.c:284 msgid "This tool has no options." msgstr "Този инÑтрумент нÑма наÑтройки." @@ -7896,7 +7986,7 @@ msgid "Shape:" msgstr "" -#: ../app/tools/gimpblendoptions.c:261 ../app/tools/gimppaintoptions-gui.c:417 +#: ../app/tools/gimpblendoptions.c:261 ../app/tools/gimppaintoptions-gui.c:419 msgid "Repeat:" msgstr "" @@ -8680,7 +8770,7 @@ msgstr "Четка:" #: ../app/tools/gimppaintoptions-gui.c:135 -#: ../app/tools/gimppaintoptions-gui.c:394 +#: ../app/tools/gimppaintoptions-gui.c:395 msgid "Gradient:" msgstr "Преливка:" @@ -8690,7 +8780,7 @@ #: ../app/tools/gimppaintoptions-gui.c:216 msgid "Pressure sensitivity" -msgstr "" +msgstr "Сила на натиÑка" #: ../app/tools/gimppaintoptions-gui.c:236 msgid "Opacity" @@ -8698,7 +8788,7 @@ #: ../app/tools/gimppaintoptions-gui.c:250 msgid "Hardness" -msgstr "" +msgstr "ТвърдоÑÑ‚" #: ../app/tools/gimppaintoptions-gui.c:261 msgid "Rate" @@ -8710,14 +8800,14 @@ #: ../app/tools/gimppaintoptions-gui.c:313 msgid "Fade out" -msgstr "" +msgstr "ИзбледнÑване" #: ../app/tools/gimppaintoptions-gui.c:333 -#: ../app/tools/gimppaintoptions-gui.c:403 +#: ../app/tools/gimppaintoptions-gui.c:404 msgid "Length:" -msgstr "" +msgstr "Дължина:" -#: ../app/tools/gimppaintoptions-gui.c:367 +#: ../app/tools/gimppaintoptions-gui.c:368 msgid "Use color from gradient" msgstr "Използване на цвÑÑ‚ от преливка" @@ -8747,7 +8837,7 @@ #: ../app/tools/gimpperspectivetool.c:149 msgid "Matrix:" -msgstr "" +msgstr "Матрица:" #: ../app/tools/gimpposterizetool.c:79 msgid "Reduce image to a fixed number of colors" @@ -8777,49 +8867,53 @@ msgid "_Rect Select" msgstr "" -#: ../app/tools/gimprectselecttool.c:224 +#: ../app/tools/gimprectselecttool.c:226 +#, fuzzy msgid "Selection: ADD" -msgstr "" +msgstr "Избиране на вÑичко" -#: ../app/tools/gimprectselecttool.c:227 +#: ../app/tools/gimprectselecttool.c:229 +#, fuzzy msgid "Selection: SUBTRACT" -msgstr "" +msgstr "_Селектиране" -#: ../app/tools/gimprectselecttool.c:230 +#: ../app/tools/gimprectselecttool.c:232 +#, fuzzy msgid "Selection: INTERSECT" -msgstr "" +msgstr "_Селектиране" -#: ../app/tools/gimprectselecttool.c:233 +#: ../app/tools/gimprectselecttool.c:235 +#, fuzzy msgid "Selection: REPLACE" -msgstr "" +msgstr "_ПромÑна на ÑелекциÑта" -#: ../app/tools/gimprectselecttool.c:468 +#: ../app/tools/gimprectselecttool.c:414 msgid "Selection: " msgstr "" #: ../app/tools/gimprotatetool.c:98 msgid "Rotate the layer or selection" -msgstr "Завъртане на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избраното" +msgstr "Въртене на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избраното" #: ../app/tools/gimprotatetool.c:99 msgid "_Rotate" -msgstr "_Завъртане" +msgstr "_Въртене" #: ../app/tools/gimprotatetool.c:158 msgid "Rotation Information" -msgstr "Данни за завъртането" +msgstr "Данни за въртенето" #: ../app/tools/gimprotatetool.c:185 msgid "Center X:" -msgstr "" +msgstr "Център по хоризонтал:" #: ../app/tools/gimprotatetool.c:190 msgid "Center Y:" -msgstr "" +msgstr "Център по веритикал:" #: ../app/tools/gimpscaletool.c:91 msgid "Scale" -msgstr "" +msgstr "Мащабиране" #: ../app/tools/gimpscaletool.c:92 msgid "Scale the layer or selection" @@ -8859,7 +8953,7 @@ #: ../app/tools/gimpselectionoptions.c:136 msgid "Smooth edges" -msgstr "" +msgstr "Меки краища" #: ../app/tools/gimpselectionoptions.c:150 msgid "Allow completely transparent regions to be selected" @@ -8875,11 +8969,11 @@ #: ../app/tools/gimpselectionoptions.c:382 ../app/tools/gimptextoptions.c:447 msgid "Antialiasing" -msgstr "" +msgstr "Заглаждане" #: ../app/tools/gimpselectionoptions.c:399 msgid "Feather edges" -msgstr "" +msgstr "Смекчи ръбовете" #: ../app/tools/gimpselectionoptions.c:425 msgid "Show interactive boundary" @@ -8942,7 +9036,7 @@ #: ../app/tools/gimptextoptions.c:183 msgid "Modify line spacing" -msgstr "" +msgstr "Промени междуредовото разтоÑние" #: ../app/tools/gimptextoptions.c:419 msgid "Font:" @@ -8966,11 +9060,11 @@ #: ../app/tools/gimptextoptions.c:463 msgid "Justify:" -msgstr "" +msgstr "Подравни от двете Ñтрани:" #: ../app/tools/gimptextoptions.c:469 msgid "Indent:" -msgstr "" +msgstr "ОтÑтъп:" #: ../app/tools/gimptextoptions.c:475 msgid "" @@ -8998,7 +9092,7 @@ #: ../app/tools/gimptexttool.c:854 ../app/tools/gimptexttool.c:857 msgid "Confirm Text Editing" -msgstr "" +msgstr "Потвърди промÑната на текÑта" #: ../app/tools/gimptexttool.c:878 msgid "" @@ -9180,7 +9274,7 @@ msgid "Click-Drag to move the anchor around." msgstr "" -#: ../app/tools/gimpvectortool.c:1211 +#: ../app/tools/gimpvectortool.c:1211 ../app/tools/gimpvectortool.c:1218 msgid "Click-Drag to move the anchors around." msgstr "" @@ -9188,43 +9282,43 @@ msgid "Click-Drag to move the handle around. (try SHIFT)" msgstr "" -#: ../app/tools/gimpvectortool.c:1217 +#: ../app/tools/gimpvectortool.c:1220 msgid "Click-Drag to change the shape of the curve. (SHIFT: symmetrical)" msgstr "" -#: ../app/tools/gimpvectortool.c:1221 +#: ../app/tools/gimpvectortool.c:1224 msgid "Click-Drag to move the component around. (try SHIFT)" msgstr "" -#: ../app/tools/gimpvectortool.c:1225 +#: ../app/tools/gimpvectortool.c:1228 msgid "Click-Drag to move the path around." msgstr "" -#: ../app/tools/gimpvectortool.c:1228 +#: ../app/tools/gimpvectortool.c:1231 msgid "Click to insert an anchor on the path. (try SHIFT)" msgstr "" -#: ../app/tools/gimpvectortool.c:1231 +#: ../app/tools/gimpvectortool.c:1234 msgid "Click to delete this anchor." msgstr "" -#: ../app/tools/gimpvectortool.c:1234 +#: ../app/tools/gimpvectortool.c:1237 msgid "Click to connect this anchor with the selected endpoint." msgstr "" -#: ../app/tools/gimpvectortool.c:1238 +#: ../app/tools/gimpvectortool.c:1241 msgid "Click to open up the path." msgstr "" -#: ../app/tools/gimpvectortool.c:1241 +#: ../app/tools/gimpvectortool.c:1244 msgid "Click to make this node angular." msgstr "" -#: ../app/tools/gimpvectortool.c:1751 +#: ../app/tools/gimpvectortool.c:1761 msgid "Delete Anchors" msgstr "" -#: ../app/tools/gimpvectortool.c:1918 +#: ../app/tools/gimpvectortool.c:1928 msgid "There is no active layer or channel to stroke to" msgstr "" @@ -9589,8 +9683,9 @@ msgstr "ПремеÑтване курÑора надолу (Shift)" #: ../app/widgets/gimpcontrollerkeyboard.c:115 +#, fuzzy msgid "Key Down" -msgstr "" +msgstr "Сливане на _Ñлоевете" #: ../app/widgets/gimpcontrollerkeyboard.c:119 #, fuzzy @@ -9862,8 +9957,9 @@ msgstr "" #: ../app/widgets/gimpdockable.c:210 +#, fuzzy msgid "Close this Tab" -msgstr "" +msgstr "_Затвори модула" #: ../app/widgets/gimperrorconsole.c:235 ../app/widgets/gimperrordialog.c:252 #, c-format @@ -10021,7 +10117,7 @@ #: ../app/widgets/gimpgrideditor.c:263 ../app/widgets/gimpgrideditor.c:295 msgid "Width" -msgstr "Широчина" +msgstr "Ширина" #: ../app/widgets/gimpgrideditor.c:265 ../app/widgets/gimpgrideditor.c:297 msgid "Height" @@ -10078,8 +10174,9 @@ msgstr "" #: ../app/widgets/gimpimagedock.c:203 +#, fuzzy msgid "Auto" -msgstr "" +msgstr "_Ðвтоматично" #: ../app/widgets/gimpimagedock.c:214 msgid "" @@ -10106,12 +10203,12 @@ msgid "Empty Layer" msgstr "" -#: ../app/widgets/gimpmessagebox.c:460 +#: ../app/widgets/gimpmessagebox.c:462 #, c-format msgid "Message repeated %d times." msgstr "Съобщението е повторено %d пъти." -#: ../app/widgets/gimpmessagebox.c:462 +#: ../app/widgets/gimpmessagebox.c:464 msgid "Message repeated once." msgstr "Съобщението е повторено веднъж." @@ -10193,8 +10290,9 @@ msgstr "_Допълнителни наÑтройки" #: ../app/widgets/gimptemplateeditor.c:437 +#, fuzzy msgid "Color_space:" -msgstr "" +msgstr "ЦвÑÑ‚:" #: ../app/widgets/gimptemplateeditor.c:445 msgid "_Fill with:" @@ -10277,6 +10375,7 @@ msgstr "" #: ../app/widgets/gimptoolbox.c:854 +#, fuzzy msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to open the color selection dialog." @@ -10592,33 +10691,153 @@ #~ msgid "Do not load any fonts" #~ msgstr "Без зареждане на шрифтове" -#~ msgid "Do not show a startup window" -#~ msgstr "Без показване на начален екран" +#~ msgid "Batch command to run (can be used multiple times)" +#~ msgstr "Включи пакетна команда (може да Ñе използва нÑколко пъти)" + +#~ msgid "The procedure to process batch commands with" +#~ msgstr "Процедурата за използване на пакетна команда Ñ" + +#~ msgid "PDB compatibility mode (off|on|warn)" +#~ msgstr "PDB ÑъвмеÑтимоÑÑ‚ (излючена|включена|предупреди)" + +#~ msgid "Debug in case of a crash (never|query|always)" +#~ msgstr "Поправи в Ñлучай на Ñрив (никога|питай|винаги)" + +#~ msgid "Make all warnings fatal" +#~ msgstr "Ðаправи вÑички Ð¿Ñ€ÐµÐ´ÑƒÐ¿Ñ€ÐµÐ¶Ð´ÐµÐ½Ð¸Ñ Ñ„Ð°Ñ‚Ð°Ð»Ð½Ð¸" #~ msgid "%s version %s" #~ msgstr "%s верÑÐ¸Ñ %s" +#~ msgid "Dock" +#~ msgstr "ЗалепÑне" + #~ msgid "_Open Brush as Image" #~ msgstr "_ОтварÑне четката като изображение" #~ msgid "Open brush as image" #~ msgstr "ОтварÑне на четката като изображение" +#~ msgid "_Cursor" +#~ msgstr "_КурÑор" + +#~ msgid "_Sample Points" +#~ msgstr "_Примерни точки" + +#~ msgid "Close Dock" +#~ msgstr "Затвори" + +#, fuzzy +#~ msgid "Image Properties" +#~ msgstr "Размер на изображението" + +#, fuzzy +#~ msgid "S_how Layer Mask" +#~ msgstr "Показване _границите на Ñлоевете" + #~ msgid "_Open Pattern as Image" #~ msgstr "_ОтварÑне на палитрата като изображение" #~ msgid "Open pattern as image" #~ msgstr "ОтварÑне на палитрата като изображение" +#, fuzzy +#~ msgid "Re_peat Last" +#~ msgstr "ПовтарÑне на поÑледниÑ" + +#~ msgid "R_e-Show Last" +#~ msgstr "По_казване отново на поÑледниÑ" + +#~ msgid "R_aise Tool" +#~ msgstr "П_овдигане" + +#~ msgid "Raise tool" +#~ msgstr "Повдигане" + +#~ msgid "Ra_ise to Top" +#~ msgstr "Повди_гане най-горе" + +#~ msgid "Raise tool to top" +#~ msgstr "Повдигане най-горе" + +#~ msgid "L_ower Tool" +#~ msgstr "С_нижаване" + +#~ msgid "Lower tool" +#~ msgstr "Снижаване" + +#~ msgid "Lo_wer to Bottom" +#~ msgstr "Сни_жаване най-долу" + +#~ msgid "Lower tool to bottom" +#~ msgstr "Снижаване най-долу" + +#, fuzzy +#~ msgid "Show Sample Points" +#~ msgstr "Показване на _избраното" + #~ msgid "Snap to _Canvas Edges" #~ msgstr "ПрилепÑне към _краищата на платното" +#~ msgid "Othe_r..." +#~ msgstr "_Друго..." + +#, fuzzy +#~ msgid "Save the tool options when the GIMP exits." +#~ msgstr "" +#~ "Запазване разположението и размерите на оÑновните прозорци при Ñпиране на " +#~ "GIMP." + +#, fuzzy +#~ msgid "Image-sized layers" +#~ msgstr "Размер на изображението" + +#, fuzzy +#~ msgid "All visible layers" +#~ msgstr "Сливане на видимите Ñлоеве" + +#, fuzzy +#~ msgid "All linked layers" +#~ msgstr "%d ÑлоÑ" + +#, fuzzy +#~ msgid "All layers" +#~ msgstr "Ð’Ñички файлове" + +#, fuzzy +#~ msgid "Show layer mask" +#~ msgstr "Показване _границите на Ñлоевете" + +#, fuzzy +#~ msgid "Move Sample Point" +#~ msgstr "ПремеÑтване на избраното" + #~ msgid "Remote File" #~ msgstr "Отдалечен файл" +#, fuzzy +#~ msgid "Remove colors" +#~ msgstr "Изтриване на цвÑÑ‚" + +#, fuzzy +#~ msgid "Cursor Info" +#~ msgstr "ПремеÑтване курÑора надолу" + #~ msgid "Extension Mismatch" #~ msgstr "ÐеÑъвпадение на разширението" +#, fuzzy +#~ msgid "_Save tool options on exit" +#~ msgstr "_ЗапомнÑне на разположението при излизане" + +#, fuzzy +#~ msgid "Save Tool Options _Now" +#~ msgstr "Запазване наÑтройките на инÑтрумента" + +#, fuzzy +#~ msgid "_Reset Saved Tool Options to Default Values" +#~ msgstr "_Връщане на подразбиращите Ñе разположениÑ" + #~ msgid "Default New Image" #~ msgstr "Ðово изображение по подразбиране" @@ -10631,8 +10850,68 @@ #~ msgid "Color Management" #~ msgstr "Управление на цветовете" -#~ msgid "Other..." -#~ msgstr "Друго..." +#, fuzzy +#~ msgid "Resize _Layers:" +#~ msgstr "Сливане на Ñлоевете" + +#, fuzzy +#~ msgid "This folder is used for temporary files." +#~ msgstr "Тази папка Ñе претърÑва за инÑталирани от Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ Ð¸Ð·Ð³Ð»ÐµÐ´Ð¸." + +#, fuzzy +#~ msgid "Move Sample Point: " +#~ msgstr "ПремеÑтване на избраното" + +#, fuzzy +#~ msgid "Cha_nnel:" +#~ msgstr "ПрекъÑване" + +#, fuzzy +#~ msgid "Fixed width" +#~ msgstr "_Запълване Ñ:" + +#, fuzzy +#~ msgid "Fixed height" +#~ msgstr "Файлът ÑъщеÑтвува" + +#, fuzzy +#~ msgid "Center" +#~ msgstr "Общи" + +#, fuzzy +#~ msgid "Move the selection mask" +#~ msgstr "ПремеÑтване на избраното" + +#, fuzzy +#~ msgid "Move the selected pixels" +#~ msgstr "Премахни избраното" + +#, fuzzy +#~ msgid "Move a copy of the selected pixels" +#~ msgstr "Премахни избраното" + +#, fuzzy +#~ msgid "Anchor the floating selection" +#~ msgstr "ФикÑиране на плаващ Ñлой" + +#~ msgid "Modify letter spacing" +#~ msgstr "Промени раÑтоÑнието между буквите" + +#, fuzzy +#~ msgid "" +#~ "Letter\n" +#~ "spacing:" +#~ msgstr "" +#~ "РазÑтоÑние\n" +#~ "между редовете:" + +#, fuzzy +#~ msgid "_Grab Event" +#~ msgstr "_Преливка" + +#, fuzzy +#~ msgid "Remove the action from the selected event" +#~ msgstr "Премахни избраното" #~ msgid "Cursor Up (Shift + Control + Alt)" #~ msgstr "ПремеÑтване курÑора нагоре (Shift + Control + Alt)" @@ -10694,6 +10973,18 @@ #~ msgid "All Images" #~ msgstr "Ð’Ñички изображениÑ" +#, fuzzy +#~ msgid "Color space:" +#~ msgstr "ЦвÑÑ‚:" + +#, fuzzy +#~ msgid "Number of channels:" +#~ msgstr "Брой Ñлоеве:" + +#, fuzzy +#~ msgid "Number of paths:" +#~ msgstr "Брой Ñлоеве:" + #~ msgid "Only check if GIMP is running, then quit" #~ msgstr "Само проверка дали GIMP работи и излизане" diff -uraN gimp-2.2.7/po/ChangeLog gimp-2.2.8/po/ChangeLog --- gimp-2.2.7/po/ChangeLog 2005-05-08 12:01:58.000000000 +0200 +++ gimp-2.2.8/po/ChangeLog 2005-06-23 19:00:07.000000000 +0200 @@ -1,3 +1,16 @@ +2005-06-21 Hendrik Richter + + * de.po: Fixed German translation (#308553) + +2005-06-18 Sven Neumann + + * de.po: fixed translation (bug #308131 and bug #308127). + +2005-05-12 Alexander Shopov + + * bg.po: Updated Bulgarian translation by + Victor Dachev + 2005-05-06 Jakub Friedl * cs.po: Minor improvements diff -uraN gimp-2.2.7/po/de.gmo gimp-2.2.8/po/de.gmo --- gimp-2.2.7/po/de.gmo 2005-05-08 12:15:21.000000000 +0200 +++ gimp-2.2.8/po/de.gmo 2005-06-23 19:23:49.000000000 +0200 @@ -1,254 +1,252 @@ -Þ•] Kƒ ì•øÇùÇ&Èk6ÈG¢È9êÈG$ÉAlÉN®ÉiýÉ<gÊk¤Ê@Ë2QË;„ËPÀËOÌ2aÌ9”Ì-ÎÌ9üÌ;6Í7rÍ ªÍ´Í -»Í ÆÍ -ÐÍ -ÛÍ æÍòÍÎ -ÎÎÎ/Î -GÎRÎZÎbÎ~ΘήÎ0µÎæÎ÷Î -ÏÏÏ -2Ï=ÏDÏLÏTÏ cÏ qÏ }Ï -‹Ï -–Ï ¡Ï ®ÏºÏ ÊÏ ÖÏâÏ çÏ óÏKÐ…LÐ.ÒÐ1Ñ!3ÑUÑgÑnÑ}фѠѯÑÆÑÊÑÝÑ -ïÑ úÑÒ Ò -(Ò3ÒHÒ [ÒeÒtÒ -}ÒˆÒ—ÒªÒÂÒÔÒæÒõÒ* Ó66ÓmÓ€ÓÓµÓ¾ÓÛÓúÓÔ#Ô7ÔVÔkÔÔ#“Ô·ÔÑÔ -íÔøÔ ÕÕ#Õ,ÕLÕ`Õ hÕ rÕ Õ‰Õ™Õ1®Ö3àÖ×(×.×A׋H× -Ô×ß×ù×Ø)Ø0Ø ?Ø -LØWØhØzØŠØA›ØJÝØ(Ù<;Ù xÙ †Ù”٤ٽÙÕÙåÙíÙòÙ ÚÚ.ÚAÚJÚaÚsÚ „Ú’ÚªÚ -³Ú¾ÚÏÚèÚÿÚ&Û$<ÛaÛhÛ nÛ xÛ†ÛÛ¦Û­Û³ÛÍÛ"ÕÛ øÛÜ ÜÜÜ -$Ü/Ü>ÜOÜcÜ7wÜ¯Ü µÜ ÂÜÐÜÙÜàÜ èÜ õÜÝ ÝÝÝ Ým-Ý›Ý  Ý ®Ý ¼ÝÆÝÏÝ ìÝúÝ -Þ ÞCÞ7bÞ=šÞ@ØÞ6ßdPßµßÓß3éßà<1à#nà!’à´àÑà ëà÷à á á!á*áBáXápáˆášá¬áÉáæáâ,âGâaâiâ |âŠâ ªâ Ëâ!Ùâûâã,ãAãVã_ã hã vãƒã—ãžã¥ã «ã¹ãÌã Ûãèã.þã5-ä5cä7™ä8Ñä) -å,4åaå}å•å2²å ååæ!æO=æAæ%Ïæ&õæ4ç1Qç#ƒç §çµç Ñç Ýçççÿçèèè.è>è -MèXè`è fètè Šè—è°èÂè0Ôè é éé %é /é <éIédéé+Šé¶éÉéÜéåé õéê êê -ê )ê3ê$Sêxê‹êšê¯ê Ìêíêë%ë8ëHë"]ë€ë–ë ¥ë³ëÃë ÌëØëàëbìkì|ì „ì‘ì¬ìÅìåì úì"í"+íNígípí -‚í í›í -ºí)Åíïí, î6î!Pî#rî#–î!ºî%Üîï.!ïPï Wïcïtïˆï›ï®ï#Äï-èïð%,ðRðhð~ð™ð®ðÆð ËðÙð -óð -þð - ññ,ñ3ñBñ Gñ Uñbñrñ‚ñ•ñ¤ñ³ñ ºñÈñ -Ûñæñ-íñò "ò/ò?òVò Zòdòiòoò€ò“ò§ò¸òËòÛòîòó ó"ó 2ó >ó LóYó`ófó%ló!’ó ´óÁóÔó&ìóô 'ô5ôDôWô iôwô†ô –ô£ô ²ô¿ô ÏôÜôîô ýô õõ0õKõhõzõ‰õ -¢õ -­õ-¸õ æõòõ ùõöö ö$ö -,ö 7öDöWöjöƒö‹öžö²ö ÅöÓöíö öö÷ ÷÷!÷:?÷?z÷8º÷ ó÷ÿ÷øø +ø5ø -DøOøUø -kø vø „ø ø -ø ¨ø ´ø -¾ø ÉøÕø Þøëøÿø ù>ù [ù|ùŒùžù±ùÁùÓùâùôùú$ú 4úAú Pú]úbúzúú¦úºúÐú àúêúýúû-û Cû -Qû\û -tûû —û¥û »ûÈû Ýûêûúûü $ü 2ü ->üIü*Zü…üŽü! üÂü.Ùüý$ý#-ý"Qýtý‘ý&°ý×ý íýùý þ,þ#Cþgþnþ }þ‹þžþ'¸þàþ'ýþ%ÿBÿXÿtÿFŽÿTÕÿ*1 7DZ mŽ ¥¯ -Æ Ñß ü,;M_ eqz ƒ¥(®$×ü0=36q1¨<Ú?AW7™9Ñc 0o9 BÚ=f[>ÂCJEg ø &4IN` p z† ˜ ¥ ³ÁÕì(;N`w‡›·Òïöÿ 9 P d x  Œ š  -­  ¸ Æ  Ë  -Ø  ã í  ý  - +Þ•^  Kƒ ü•È È&ÈkFÈG²È9úÈG4ÉA|ÉN¾Éi Ê<wÊk´Ê@ Ë2aË;”ËPÐËO!Ì2qÌ9¤Ì-ÞÌ9 Í;FÍ7‚Í ºÍÄÍ +ËÍ ÖÍ +àÍ +ëÍ öÍÎÎ +!Î,Î/Î?Î +WÎbÎjÎrΎΨξÎ0ÅÎöÎÏÏ#Ï+Ï +BÏMÏTÏ\ÏdÏ sÏ Ï Ï +›Ï +¦Ï ±Ï ¾ÏÊÏ ÚÏ æÏòÏ ÷Ï ÐKÐ…\Ð.âÐ1Ñ!CÑeÑwÑ~ÑєѰѿÑÖÑÚÑíÑ +ÿÑ +ÒÒ ,Ò +8ÒCÒXÒ kÒuÒ„Ò +Ò˜Ò§ÒºÒÒÒäÒöÒÓ*Ó6FÓ}ÓÓ­ÓÅÓÎÓëÓ +ÔÔ3ÔGÔfÔ{ÔÔ#£ÔÇÔáÔ +ýÔÕÕ!Õ3Õ<Õ\ÕpÕ xÕ ‚Õ Õ™Õ©Õ1¾Ö3ðÖ$×8×>×Q׋X× +ä×ï× ØØ9Ø@Ø OØ +\ØgØxØŠØšØA«ØJíØ8Ù<KÙ ˆÙ –٤ٴÙÍÙåÙõÙýÙÚ Ú(Ú>ÚQÚZÚqÚƒÚ ”Ú¢ÚºÚ +ÃÚÎÚßÚøÚÛ&%Û$LÛqÛxÛ ~Û ˆÛ–ÛÛ¶Û½ÛÃÛÝÛ"åÛ ÜÜÜÜ$Ü +4Ü?ÜNÜ_ÜsÜ7‡Ü¿Ü ÅÜ ÒÜàÜéÜðÜ øÜ ÝÝ Ý&Ý+Ý 0Ým=Ý«Ý °Ý ¾Ý ÌÝÖÝßÝ üÝ +ÞÞ !ÞC.Þ7rÞ=ªÞ@èÞ6)ßd`ßÅßãß3ùß-à<Aà#~à!¢àÄàáà ûàá á 'á1á:áRáhá€á˜áªá¼áÙáöáâ,*âWâqâyâ Œâšâ ºâ Ûâ!éâ ã&ã<ãQãfãoã xã †ã“ã§ã®ãµã »ãÉãÜã ëãøã.ä5=ä5sä7©ä8áä)å,Dåqåå¥å2Âå õåæ1æOMæAæ%ßæ&ç4,ç1aç#“ç ·çÅç áç íç÷çè è&è/è>èNè +]èhèpè vè„è šè§èÀèÒè0äè é !é.é 5é ?é LéYété‘é+šéÆéÙéìéõé êê ê&ê +.ê 9êCê$cêˆê›êªê¿ê Üêýêë5ëHëXë"mëë¦ë µëÃëÓë Üëèëðërì{ìŒì ”ì¡ì¼ìÕìõì +í"í";í^íwí€í +’í í«í +Êí)Õíÿí,îFî!`î#‚î#¦î!Êî%ìîï.1ï`ï gïsï„ï˜ï«ï¾ï#Ôï-øï&ð%<ðbðxðŽð©ð¾ðÖð Ûðéð +ñ +ñ +ñ$ñ<ñCñRñ Wñ eñrñ‚ñ’ñ¥ñ´ñÃñ ÊñØñ +ëñöñ-ýñ+ò 2ò?òOòfò jòtòyòòò£ò·òÈòÛòëòþòó &ó2ó Bó Nó \óiópóvó%|ó!¢ó ÄóÑóäó&üó#ô 7ôEôTôgô yô‡ô–ô ¦ô³ô ÂôÏô ßôìôþô õõ(õ@õ[õxõŠõ™õ +²õ +½õ-Èõ öõö ööö 'ö4ö +<ö GöTögözö“ö›ö®öÂö Õöãöýö ÷÷ ÷*÷1÷:O÷?Š÷8Ê÷ øøø*ø ;øEø +Tø_øeø +{ø †ø ”ø  ø +­ø ¸ø Äø +Îø Ùøåø îøûøù ù>,ù kùŒùœù®ùÁùÑùãùòùú$ú4ú DúQú `úmúrúŠúú¶úÊúàú ðúúú û"û=û Sû +aûlû +„ûû §ûµû ËûØû íûúû +ü%ü 4ü Bü +NüYü*jü•üžü!°üÒü.éüý4ý#=ý"aý„ý¡ý&Àýçý ýý þþ,&þ#Sþwþ~þ þ›þ®þ'Èþðþ' ÿ5ÿRÿhÿ„ÿFžÿTåÿ:A GTj }ž µ¿ +Ö áï -<K]o uŠ “Ÿµ(¾$ç 0=C61¸<ê?'Ag7©9ác09°Bê=-fk>ÒCJUg  $ 6DY^p € Š– ¨ µ ÃÑåü$8K^p‡—«Çâÿ  . I ` t ˆ  œ ª  +½  È Ö  Û  +è  ó ý  + +.  -/ -: -V - ^ -j +? +J +f + n z - Š -˜ -° -Ì -è -ü -( > D K  S ` h n  -t O Ï  -á ”ì  ’ «   -Ø  ã  ï û   . ? R e  -t     ™ ¦ «  º Ç  ß  ì ù  -5uDºÌÌÅ™c_ ÃzÐKQrYÌåü&/?T&e'Œ ´BÀ   & 4@ EOU\a s€¡§¿ÐÔî  /8N e -oz ƒ”œ ¡ ®ºÕìü - !8H@ -‰ ”ž® -¶HÁ! -B,os1‚´ÇÌ ÑÞåõ -  !`-™ŽC(1l0žÏ Õ âï - - .>On ™(§ -Ð -ÛHæ -/ : -GR Yet ƒ¦» Ê ×åê ò ÿ 18 @N€g èô #9U Yg y ‡ ”K¢3î6"Yh"~ ¡«Ã× æ$ð0 E S t(•+¾)ê*!?a/s£ª¹*Êõ '# K [ k t  -† ‘ ¡ · Ç Ù è ñ !!,! C!d!!!™!¨!Á!Ô! ë! "'" 8"B"R"l"€"!˜"º"Ö"è" ï"ü"#$#9#X#q#-€#®$·$Ç$Ú$Þ$ ø$%%% (%4%3:%n%%—%§% ¿% -Ì% ×% ã%ð%&-&M&f&z&‹&  &®&Å& Ì&Ø&í&''@'Y'-`'Ž'  '­' ²' À' Ì'Ù'÷' þ' -( ( ('(>(](|(( ¤( ®( º(Æ( Ý(ë() )() ->)I)^) t)‚) š)¦) -¼)Ç)Ü)å)í)** ***0*H* ^*l**˜* - *#«*Ï*è*+++%+B++_+‹+“+ š+ ¨+ -´+ ¿+ Ì+Ú+ï+,,5, J,W, f,t,‡,¢,"¹,Ü,å,û, -)-/-4-:-$P-u-‡-›-ª- ¹-Å- Í- Û-ç-ú- ÿ- .. -1. <. -I.T. d.n.}. . —.¡.º.É.à.ö./0/B/I/R/ e/q/„/ž/£/ -©/ ´/À/Ò/æ/ù/ 0 0 0)0 :0 G0 Q0]0z0‰0›0 ­0 -º0 Å0Ï0 ê0 ÷01 1 )1 51,A1n1!1£1·1Î1)ë1 2"2 :2 H2T2Y2h2o2 €2 Œ2š2B­2Að223P3e3 w33ˆ3—3 §3´3Æ3Û3ã3„ë3p44‘4™4¢4 -§4²4 Æ4Ô4ë4 ý4 -55<5"[5!~5! 5Â5Ú5ó5 6 6 6)696H6 P6^6Vf6+½6 é6(ó67""7E7 [7 g7s77%¥7 -Ë7 Ö7à7è7÷7 8 -8&8 58C8 L8Z8 n8 x8†8Œ8Ÿ8 ´8 À8 Ì8Ú8&ô8,9 H9U9Z9 -j9 -u9€99»9Ú9ò9:4:L:^: -d:o:w: -‡: ’:Ÿ:®: ·:Å:Í:Ô: ñ:ý: ;!;@; O;]; s;;;«; »;Å;Ö; è;õ;ü;;<?@<€<<—<«<»<Ø<¡õ<4—=Ì=Õ=-Ý= ??? -.? 9?#C?g?-z? ¨?´?É? Þ?è?ð?@@ -@ $@¥0@Ö@ê@þ@ AAA%A+AAA -YA -dAoA…A -•A  A ªA¸A¼AÖA çA ñA!ûAB !B/BCB RB _BlB‡BŽB –B¤B¹B ÏBÛB -îBùB C C,C ACMC -`CkC}C™C¶C»C ÁC!ÎCðC!D#0DTD jD -wD9‚DU¼D=E<PE=EËE"ÑE?ôE4FFF WFcFgFlF(qF,šFÇF×FéFúF - GG,GAGJUG  G­G¼GÕG ïG üG H$H >H JHXHpHŠHšH;´HðH -I I &I2ILI ^I jIxI ˆI –I £I¯I·I ÕIßIúIJ)J=JPJaJtJ…J˜J³JÅJÚJ+ñJK5KUK\K kK xK …K‘K £K °K¼K#ÓK ÷KL L!L6LML6eLœL¹LÁLÈL ÝL7êL"M@MUMeMlMƒM™M ¨M µMÁMÓM çMôM NN3N9N -@N -KNVN ^NkN€N NN -£N®N³N ÈNÔN -ëNöNO 3O?OQOlOˆO £O¯O¿OØOèOüO4PFPcPvPP¬P¿PÎP.èPEQ]Q nQ |Q‰Q ¡Q ¯Q½QØQ ÞQ ìQ øQ -RR R -,R7RFR URbRR‡Rœ›RN8S -‡S’S›S¢S´S ¼SÈSÚSöS T#&TJThT |TˆTšT¶TÌT#æT -U(U kNk^kokŽk¤k´kÉkÙkèk ùkll 3l?lDlTlil+ol›l¡l²l ¹lÆl ÍlÚl êl -ølm mmm !m -m8:mvsmêmñm n!n )n 6nBn Hn!in‹n£n¿nÚnóno-o4oCoJoSogoo ˆo •o ¡o ¯o½oÆoÏo Øoåoõo pp !p -p9pVp!ep‡p›p(´pÝp#æp -q q%q,q -2q =q JqTqcqwq’q -—q ¢q -®q ¹qÇq×qKàq1,r7^r1–r5ÈrHþrAGsŠ‰s;t!PtÁrt 4uæUu ŒMŒoVŒÆŒÌŒÞŒñŒ -) 9 GQjs {ˆ -Ž<™ ÖŽäŽ ûŽ+;J_y‰˜¬»Õå ô -%05>3U;‰;Å¡‘£‘Fª’ ñ’û’ “ ““!“)“ ;“\“c“k“t“’“²“3Ë“#ÿ“#”;”N”^”x”Ž””¬”²” ¹”Å”â”ë”Fô”;• -[• -f•q• v• „• ’• Ÿ• ¬• º•!È•!ê• – –+$–KP–0œ–QÍ–˜—¢¸—$[˜5€˜P¶˜G™-O™O}šjÍšo8›e¨›jœ~yœpøœoiwÙ<Qž?Žž>Ξt Ÿt‚Ÿ`÷Ÿ‰X â b¡0h¡™¡Ÿ¡¦¡¸¡Í¡ Þ¡ì¡6î¡o%¢•¢—¢ž¢4¦¢#Û¢Èÿ¢GÈ£%¤X6¤U¤Oå¤5¥L¥U¥^¥f¥ -o¥ z¥ †¥¥ ™¥£¥¬¥#¾¥â¥ ê¥ø¥¦¦¦¦&¦9¦L¦U¦g¦ y¦ƒ¦ ˆ¦ –¦¤¦ »¦ŦͦÓ¦ Ö¦à¦ó¦§ -§N§ T§a§h§q§ §§ ¥§¯§À§ ç ϧ Ù§ç§û§¨ - ¨¨ ¨)¨1¨Q¨ Z¨h¨n¨}¨œ¨ «¨·¨ -¿¨ʨܨ ì¨ú¨ © ©'© ;© I©W© g©t©‡©©­©¿© Щ Ü©è©÷©ªª +ª 5ª -BªMªSªbª~ªªŸª¹ªʪãªôª« « 7« A«K« S«]« c«o«„«“« ™«§«·«¾«Ä«Ë« Þ«ë«î« ÷« ¬ - ¬ -¬!¬:¬C¬ K¬U¬ [¬h¬n¬t¬z¬¬ˆ¬¬˜¬ «¬ ·¬ĬÞ¬ æ¬ó¬ú¬­ ­#­2­ -R­]­p­ ­ ‹­—­Ÿ­§­½­ Ì­ Ù­å­ è­ò­÷­ý­®+®4®<®O®e® …® ’® ®¦®¶®¼®î -Ë® Ö®ã® ó® ¯ -¯ ¯ (¯ 5¯ ?¯ L¯Y¯ j¯t¯ |¯†¯¯ -“¯ž¯ §¯³¯¼¯ ˯ دä¯í¯ ô¯°°° "° /° =°J° S° a°o° ~°Š°°£°¦°«°³° ° Ï° Û°è°ý° ±±#±,±=±P±b±(t±±¥±®±ıܱî±4²1=²/o²Ÿ²µ²Ųå² í²ú²³³#%³ I³j³‰³³ ³"°³Ó³ -Û³æ³ø³ ´´´/´ @´L´S´[´k´}´’´ -«´ -¶´ -Á´Ì´ Ò´à´æ´ö´ü´µ -#µ.µ?µEµ -NµYµ_µhµmµ‚µ˜µ§µ ¯µ¼µ˵ϵÕµصçµëµ -ñµüµ¶¶5 ¶B¶ T¶^¶n¶s¶z¶ ‚¶¶!¥¶ Ƕ è¶ · -)· 4·@·G·K·S·X·^·d· k· u··…·Œ· “·¡·.´·ã·8¸9¹*T¹n¹[î¹=JºPˆºQÙºN+»oz»Fê»|1¼D®¼4ó¼K(½[t½Wн5(¾E^¾1¤¾=Ö¾7¿;L¿ ˆ¿’¿ -™¿ ¤¿ -®¿ ¹¿ Å¿Ñ¿ á¿ -ï¿ú¿ý¿À -#À.À7À@À"]À€À–À;žÀÚÀíÀ -Á ÁÁ 8ÁEÁLÁTÁ \Á hÁ vÁ ‚Á -Á -›Á ¦Á ³Á¿Á ÔÁ àÁìÁ ñÁÿÁn‚}ÂDÃ7EÃ6}ôÃÍà ÕÃâà éà -ÄÄ 0Ä<ÄTÄkÄ}Ä!ıÄÊÄ"áÄÅ Å2ÅJÅ -[ÅfÅ |Å Å"¾Å"áÅÆÆ,6Æ;cƟƾÆ$ÖÆûÆÇ Ç@ÇVÇjÇ }ǞǴÇÈÇ*ÛÇÈ&È -AÈLÈ -eÈpÈ ‰È—È´È ÌÈ ÙÈ åÈ òÈÿÈ7É9JÊ4„ʹÊÓÊÙÊðÊ—÷Ê -˚˷ËÔËñËùË ÌÌ*Ì?ÌXÌmÌ:‚ÌB½ÌÍ> Í_Ír͖ͧͅ͸ÍÉÍÐÍ$ÕÍúÍÎ:)Î dÎqΆΙάεÎÊÎ ÓÎßÎñÎÏÏ8:Ï-sÏ¡Ï¨Ï °ÏºÏÊÏÓÏ ðÏ ýÏ Ð )Ð27ÐjÐyÐ~Ð „ВЬеÐÄÐÕÐîÐ>ÑAÑ HÑ UÑ bÑlÑtÑ {чÑÑ —Ñ £Ñ±Ñ ¸ÑŠÄÑOÒ TÒ aÒ nÒ xÒ …Ò+¦ÒÒÒ ãÒíÒSÓFVÓFÓOäÓ@4ÔuÔ.õÔ$$ÕYIÕ*£ÕXÎÕ6'Ö@^Ö/ŸÖ-ÏÖýÖ × -)× -4× ?×I×b×~×—×®×Â×'××$ÿ×$$ØIØ1hØ+šØÆØÌØ -ßØ0êØ0ÙLÙ.]Ù-ŒÙºÙÍÙßÙûÙÚ - -ÚÚ0ÚGÚ MÚWÚ`Ú oÚÚ§Ú!·Ú=ÙÚEÛE]ÛI£Û9íÛC'Ü(kÜ ”Ü"µÜØÜKôÜ"@ÝcÝ#~ÝA¢ÝAäÝ"&Þ"IÞIlÞE¶Þ!üÞß$-ßRßgßvß”ß©ß °ß¾ßÕßíßààà #à0à CàOà mà{à1‹à½à -ÍàØà ßà -ìà ÷àáá -9á*Dáoáƒá —á£á¶áÈá Ñá Ýá -çá òá ÿá( âIâ_âtââ©â#Æâ'êâã*ã'@ã.hã—ã³ãÊãàãøãää¢ä½ä Ää ÐäÚäêä& -å&1åXåså3…å3¹å)íå æ#æ8æKæ'_æ -‡æ4’æ'Çæ;ïæ(+ç;Tç2ç6Ãç6úç41è#fè=ŠèÈèÐèâèôèé(éBé+]é*‰é´é*Ðéûéê1êBê[ê zê†ê¤ê¼êÍêßê&ðê ë%ë 4ëBëZënë€ëë¥ë¸ëÉë ÐëÞë îë -øë=ìAìSìlì €ì ¡ì®ìÅìÊìÐìäì÷ìí#í<íNíbízí “í¡í¸í Éí×í ìíøí ÿí2 î3>îrîî#”î>¸î÷îï$ï3ïIï^ïnïïï ï¯ï¾ïÖïåïúï ðð2ðLðkð‹ð ð ²ð Óð àð9íð 'ñ4ñ ;ñIñXñ `ñlñ tñ €ññ¦ñÂñÞñæñùñ ò ò+ò IòUò^ò mòwò)€òŽªòN9ó<ˆóÅó Öóàóñó ô ôô8ôAôZôqô …ô ’ô Ÿô ¬ô ºôÆôÚôíôòôõõ%õJ8õ ƒõ¤õ·õÉõáõóõ öö"1ö+Tö€ö •ö¡ö±ö -ÀöËöéöÿö÷>÷]÷s÷…÷Ÿ÷(±÷$Ú÷ÿ÷ø'øEø%Vø|ø–øµøÐøêøù#ù:ù Nù [ù gùsù0ƒù ´ùÀù&Úùú\ú[qúÍú2Óú*û#1û$Uû0zû«ûËûÔû äû9ðû1*ü\üeü tü‚ü'–ü2¾ü ñü ý$3ý'Xý*€ý$«ýVÐý`'þˆþþ ˜þ¤þºþ$Õþúþ ÿÿ 9ÿEÿ)Nÿ$xÿÿ®ÿ¿ÿÓÿçÿ íÿ ùÿ  + -H-S& ¨I´tþUsJÉliiëcUa¹ŸK»fwnkæRhðhYkŸ.ÎÝî  ) 0 F W ` x  Œ  -š  ¥ ² Ë é ÿ  -* -? -S -f -~ - - ¦ -Ç -)å -   &! !H j ‚   ¾ ß ô   / 8 G  V d w † ›  ® ¼  Ü  è ô   ' ? [ w Œ (¥ Î Ô Û  â  -ð û  Xv ¥™?Qg ˜ ¢ °¾Ç=ß3 IU l x -‚’ £° Í -Ùäõ  #ƒ1µÐÕ^ë J€WØ Þèv  -±¼ Î Üéü$'$LqD€ Å Òàò  -"(/6Obw -"š½ÔØ"ò5DLl ‚ œ£«±¸ ¾ ÌØ&ø0 5B)_‰a‘ ó -ÿ - -"O-&}\¤ 3Pdip‡œ ¬¸¿Ò|âí_OMA9ß  -,7 I S_ w …*“¾ Ô õ- / ;lE ² -¾ÉÑ Øâö  : W o  “  š §  º Ä Ì ä  ë õ !‘!! ³!%À!!æ!"!%"G" M"["j" -y"„"]”"Dò"B7#z#Ž#%¤# Ê#Ö#ì#ÿ# $$6$R$i$'{$#£$-Ç$:õ$50%+f%’%±%9É% &&!&:5&p&.„&@³&ô&' !'.' C'Q'$p'•'«'À'×'é'( (9(&Y( €(¡(»(Ì(ã())%2)X)x)‘)£)»)Ú)ó)&* :*[*u*…*›*¸*Ï*(í*+5+}M+Ë,Ô, ç,õ,- -'-2-8-H-a-q-Gw-¿-Ó-æ-õ- . . ). 6./C./s.-£.,Ñ.þ./+/B/X/n/ u//Ÿ/ »/È/lÐ/ =0=G0…0 0 «0¸0 É0 ×0*ä011*121 A1(O1#x1œ1²1Ç1à1 å1 ó122(2G2f2u2 ‹2™2·2Ö2å233 23@3^3}3ƒ3 ¢3¬3´3½3Ø3ì3'4-4>4Q4q4y4+‰4µ4Õ4%ì4 5 5(5D5@`5¡5©5°5¸5Í5á5ñ56 696W6u6Ž6ž6³6Â6Ù6ô657E7!L7%n7 ”7¢7ª7°7·70Ò788 38?8 P8Z8 a8m8u8 ‡8“8¥8·8Ò8é8 99$959I9_9r9 …9¦9º9Ó9,ì9+:E: c:q:€: ”: :!´:Ö:Û: -â: í:ù:;/;K; -g; -r; -};)ˆ; ²; ¿; Ì;$Ø;ý; <'<B<T< -c<#n< ’< <#²< Ö< ä< ñ<,ÿ<,=.D=s=‰="¨=1Ë= ý= >)>8>K>Q>h>o>€>‡>˜>•®>“D?&Ø?ÿ?@ -*@5@=@O@a@s@‹@£@¬@¤»@`ApA †A -A›A £A°AÇAÜAöA -BB$;B%`B'†B&®B$ÕBúB!C(9C -bC mC yC…CœC¬C ³C ½C_ÉC.)DXD+`DŒD8•DÎD åDòDE #E$DEiE pE ~EŠEEµE ÄEÐE ßE ìEùE F F*F CFMF bFƒF“F©FÃF*âF% G3GEGJG \G fG/tG/¤G-ÔG,H/HAH;RHŽHŸH ¥H¯H ¶H ÃHÍH ÔHáH èHôHûHI I+I EI,QI~II žI¿IÏIåIJJ#J7J IJUJ[JMbJ<°JíJýJK K$"K&GK­nK6LSL[LQbL ´M -¾MÉM ÙM æM%ôM N8'N `NnNƒN˜NŸN¨N ¾NÈN×NíNÞOâOôO P PP &P0P9PWPuP…P”P²PÇP ÛP åPòPöPQ !Q+Q!4QVQhQ$Q¦Q»QÐQ çQ RR R+RHR eRsR ˆR•R±R ÎRÜR ùRS $S1S#MS@qS²S·S ½S#ÞS$T*'T*RT&}T¤T¸T@ÊT^ U?jU>ªUPéU:V;AVD}VÂVÙVïVWW W8W>QWW¡WºWÒW äW%ðWX6XvUXÌXÜXìX Y(Y=YMY_YqY€Y“Y±YÄYÖY=óY,1Z^ZoZ€Z%Z¶ZËZ -ÝZèZ[[3[ O[][ n[z[š[º[Î[â[ö[ -\!\#=\,a\Ž\*¨\(Ó\5ü\2]5Q]‡]—]¬]À]Ö]ê]^^:,^;g^£^¹^ Ì^Ø^ì^_M_$m_’_ ›_.©_Ø_Wë_'C`k` ˆ`–``²` È` Õ` â`î` ÿ` aa3aE€ï„€ t€‰Ž”¬Ä ßéù ‚‚"‚2‚M‚ -`‚ k‚ y‚Q‡‚قƒ.ƒDƒ[ƒqƒƒƒ(šƒÃÙƒðƒ„6„O„g„x„„¢„„Ý„!÷„…*…A…#V…z…•…ª…!Ê…ì…þ…†$†=†T†e†m†‚†Ÿ†9¨†â†è†‡‡ ‡#‡5‡N‡ c‡ q‡~‡…‡‡ –‡£‡E³‡ù‡Šˆ›ˆ³ˆˈԈ숉( ‰,4‰a‰#~‰¢‰ ¹‰$Ú‰#ÿ‰ #Š/Š@ŠHŠQŠ"pŠ“Š ›Š ¨Š´Š ÅŠÓŠ -äŠïŠøŠ ‹‹0‹@‹S‹i‹$y‹ž‹+±‹Ý‹'ó‹&Œ BŒNŒ cŒpŒ -„ŒŒ•Œ¤Œ¸Œ ÁŒÏŒ äŒ - -  !+;K`T3µ>é.(Ž3WŽn‹Ž\úŽœWIô!>Ý`!>‘`‘%t’åš“€”.•T?•”•©–™É–¬c—˜ ˜#˜<*˜g˜2é˜[šfxš^ßš_>›2ž›\Ñ›ž.œ\Íœ0*E[4¡YÖžX0ŸD‰ŸΟÙ^ í8¡Ñ&¢‘ø¢žŠ£™)¤–äDZ¥ Ÿ¦j@§ «§̨2æ©@ª_Zª ºª6ƪ ýª« «;«W«`«g« -x«²ƒ« -6¬&A¬'h¬¬ª¬ À¬άá¬ø¬­'­8­H­ ]­g­a|­ ޮ뮯¯*¯B¯W¯k¯„¯¡¯¶¯ʯá¯"ð¯°$° 5°A° R° -`°k°o°+w°L£°Yð°PJ±ò›±’Ž²g!´‰´ ™´¦´®´ ·´ Á´Ë´ à´µ -µµ+µ"Hµ&kµ=’µ'еøµ¶'¶%>¶d¶¶•¶¦¶«¶ ±¶"½¶à¶é¶Mò¶$@· -e· -p·{·ƒ·˜·¬·À·Ó·ä·/ô·3$¸X¸ -i¸.t¸S£¸+÷¸n#¹Å’¹îXºMG»_•»yõ»Ko¼f»¼h"¾‘‹¾›¿¹¿”IÀÞÀ›|Á“™¬Â_FÃd¦Ã_ Ä“kÄÿÄÅŸÆȽƆÇ2ŒÇ¿ÇÆÇÎÇàÇùÇ È$È?&ȃfÈêÈìÈñÈ0÷È&(ÉÝOÉK-Ê2yÊk¬ÊWË^pË!ÏË ñËþË Ì Ì'Ì >ÌJÌ ZÌ hÌvÌ…Ì1”Ì ÆÌÓÌ îÌ ûÌ ÍÍÍ!Í?Í]Íq͊ͤͳͺÍËÍÜÍðÍ ÿÍ ÎÎ Î(Î;Î"XÎ"{ΞΠ­ÎºÎÂÎ!ÊÎìÎõÎ þÎ -Ï!Ï $Ï2Ï;Ï"LÏoÏ wσϖϞϦÏ!®ÏÐÏ ÙÏ çÏñÏÐ$ÐCÐUÐ]ÐeÐЎПаÐÀÐÐÐéÐøÐÑÑ-Ñ$AÑfÑxъќѲÑÁÑÐÑÙÑðÑ - ÒÒ *Ò 7ÒCÒYÒpÒ…Ò Ò¸ÒÓÒéÒÿÒÓ,+ÓXÓ _Ó lÓ vÓ‚Ó -‰Ó”Ó®Ó ÃÓÍÓßÓ -ñÓüÓ -ÔÔ#Ô2Ô -5Ô @Ô LÔYÔ hÔtÔÔ ¡Ô­ÔµÔ ¼Ô ÉÔÓÔÛÔãÔìÔòÔ úÔÕ -#Õ .Õ<Õ QÕ^ÕpÕwÕ~Õ†Õ¡Õ;½ÕùÕÖÖ (Ö 5ÖAÖ IÖUÖlÖ|ÖŒÖ›ÖžÖ §Ö±Ö¸ÖËÖ çÖñÖùÖ"×26×i×x׈××  ×­×´× »× É×Ö×æ×ø× ØØ&Ø 8ØDØ SØaØ rØ€ØˆØ ˜Ø ¢Ø¬Ø -µØ ÀØ ÎØÚØ úØÙÙ -Ù$Ù6ÙOÙVÙ ^ÙkÙzÙ ‰Ù“٤ٵÙÆÙÕÙëÙôÙ÷ÙüÙÚÚ "Ú0ÚCÚ^ÚzÚ ÚœÚ­Ú¿ÚØÚðÚ;Û>Û FÛPÛgÛÛ(—Û,ÀÛ-íÛ0ÜLÜeÜ<‚Ü¿Ü ÇÜ -ÔÜßÜùÜ%Ý%<Ý)bÝ -ŒÝ—ݧÝ,»ÝèÝñÝúÝ ÞÞ -!Þ,ÞBÞ ^ÞjÞ qÞÞ™Þ­ÞÁÞ ×Þ -ãÞ îÞ øÞ ßßß 'ß -1ß!<ß^ßnß €ßŽß - ß«ß ´ß¾ß"Ãßæßÿßààà.à2à8à;àJàNà -Tà_àfàlàGpà(¸à -áàìàüàá ááá'6á'^á&†á&­á -Ôá -ßáêáñáöáþáâââââ&â,â2â:âWIâ9¡âÛâ[®­š|røɪ1ç7<ù€-†~T³¹>7 W7WËòV·nÚ”€ê†Ã/ ŠežÜr;Ü3ûã™NÌ®š…§éÜ‹¯ S ß+#åc7ùt®ù§V•ròî¢lAýg[0'ÌG¨=b¼lŒº/¾w:‘Ö¥5 ÷\T\Öž«~Ã"ìüB-ÂLÝňSs‰ßïM1 Ï=°ÏMú‰ÚåHÔv;—í¦2%(ýŸÌºÅÜ—w$ €Y_vé!Reýö_Gxç*±¼ B†Z„³ ¢W‚ ¾+[¿!ƶ¤+)»hesªbw2 ‚ÅêÂã0ži‰ò" Ñô¦nêLóžšSÒÔK©Xg€_ ÙN:58 ^ÕÙÞ¥´õO Œzï}"„+±Úß+ •èêøn'ÿµÞµ1¦.Cõ.µ˜ð›†¬£VƒçùšF9×ó·ûEN<NÃv ú†ô1_æš>ö Ã>¯þoÜÕ®è^+Ë\ B ‹ë6_G{ {89ßÑ­áØuS¼šàüºXÕâœâÛ”'¥M ÉäT/ Mþ±XÓ½D 9 ¼2Òr“˜ÌHƒ³©Áaƒé‹ºð4oÇVhü­|?B @ &3³~ ´‘=LÚfÞË$®0èá»5Ÿ˜47yæ²–ç°|Ï -€]ÈO•ù ¸]E 2ð -•"w[§iƒ'Éø¬eãî%ð‘Ç›("ãqä>ŠU9Û…±m= t_,‘ÛqFä¿P¶v¸¨‰ & Ò³áÈù |’¾ç£Ð+NÍí34°â Cœn…Ež›2# i«œ·føëLÓéc=tùIÐB†·']û¨"Ú}@! ûÀŽ]ïX ìø ]èv7P-Ý—gÊ ”€h«©•U©Ë‡Aî -xJá„OxAjapmÐYû D¬Ùš j,º{Z…΋ol *#¨(¸S0 äWÇ·É@Ӊίzn*ŒVoDLUÔ›qF ¨JŸ: >=|Qí›Ë´ð àþ Ì–fJØY@0ª£b÷–ÔX$ =òuQHm/IÅjúE0Y&vÒÛWÙ$åôlŠYh4Ç TsG@è}*1þCåŽM¡îÜQjH±¢‘ñmŸ«!r£ükí¢‚EªÕß“†^Sl·ÄŽ A]¬M Y¾H½?3ZÍÖ& ~J1e,%n,wkɹóÏjc5êoI˜“Š¨›ƒ²ò—¦:Ç/•BåÖ Þ—§5?GuW ŒÄqÿÔSA  ï>I”ýÀîµ·ü ‘d†HÂÀa;Þu°d½ŸÐF²¢¤‹K×eèÞZBR¯¯Æ -zeþMñ¥\ÎZé)æòNž‡ÑñB½Ëøö øà]˜ÿ-Žíku•1ã9vJÁc@ás*4 Xºs¬C”H6vÈÖµTFb­w'^*ûe' ÷Ä–ŒGÑ)ÕNØñæ‘ JƒO ¨#QpAÌi™;9P Ì ×Õ…Ãü&(mBë±ôÛ÷ç -5‡¢uÎëÔ-õj.Ÿˆ’[s¬pµkÄÍüéb$Qý¡`沂yF£gœè0|ˆð8RqÓÞ wñ&!§F¢(}Oõá@ «œ´JœÈå`¥2Ò¤ÆxIvÉÄÏ<¤êFPúÏ¡Ðo¢"4o›5 ïpc(¹J“Ré&;«·ëÚ#þÓ&O/Î tx‚Ì; ŽK Í‘Èt£ëÎâkC´ôÛ$AÁ j¦Âi+™ +÷0¤l¶K@ f-< "ÿ% “Ð)s…ã×c+ñS !¿V¸¦<@ÏóÆ&sjíÐà­;›ýÏæH «ñ?‡óÔðCEO°Øª$À„ÑC„añU -%ìÝ’×êMÐóVI °`f‰—<÷~[ 6K - Ó> yAÞŠ®Dä!Ä/ÉÅq =óZ Z¬ØÚTïè„h, ¤;?ì\i lc dºÿ\ ‰IU9)ò¦pð3ß`U‡˜Œ¯Û}P’ku é U -¿ŽA>3 ^ÉEäPZ—ªCar‡»wó©x†}n„ÜD6.Ë[ô6 l£,1ÒnÚ‚³:î~ûC?Ûb¿ 12Üò³ž™Â¬Ý/¸Á×%…Öw:ÃÊ ;”#Wy(*ÜÙÂØ"擹MÙÊWUÅ“Ëy…äƒ- ²%°ÝõmœÑdñß´{ÕædÁƃåIy™±€¼¡g`h{ê N 6 ±?›g Ðçk =4 B‹ª@Ý9ÈVšXF€³=Ķ:k˜±øMÑ -{õp½•K÷ýaJ ¡ÀëÆö:àf¶ ³îÑ~sDR ÒG¾çm«!Gti€#ˆ2(þ<éKÝTýt*P8ì>lr¢Óß#5E¾9íX߇[ú$z¡“y[ÇGúdׯ’e iüDúL¸|¦…tôÍ,>½}c2xi8Ò•öIÌ7ò-‚ºz#ôžEÚPSA8©%‹0íÍ—©´ -Ÿ)Á.’z½Q»afÙ¸Á8(­bþ;oQ4¾Q²Šê\ä ¿¤Å˜"Ý:«L K”âOì,ÊÍõ»§¡ŠD¨Õ ²%Ï÷$à¸È¾}) š._{'-h À6Η%ö´8|‹¡ãáÄŒ§#( þ_Ò°) xˉ޵ãĈö]µûp^h¾ùU)øO¯ âzâ* ^²LY¶ÈHö n§àR ?? ÊY ÇL‡] hRŸÖ¼»IbüW ì‹Å6,¼E×™Q ^\<»{SDaŽ®\4Ãk¹ÔŠ['– yqÀVð3¹xP­¥ U–¿5.ÙWØYÿâªá`H 3P‚ú„²f ¬íåù£œÙÕúà©Ý–¤à4Ûpº7Rÿ|rª ïÊ~Ñ!á& ¥§3rÿ™¤ë¹Y ¯œZï®T ˜ìÆî<-‘Xë~ÖŒ¥Ž–<L*ìÎmÖ»Kˆq.à G dÀ¨» ! „Ø”–d°{Ê NV ¹÷ˆpŽ,äˆ:‰8ój\z`ˆÓèö£½Z/a¿_ÿcÀ0Ê ¸ `5R1¿¡gŠ ç6¶ã”^’TÆ’z¥½OD¼gC ™2ŒJbõ]Ÿ`‡¹9u×F?ô¶)ïÔ8Í'Q®¦RKéõØy7. µÎ¶­¼ÍâÁgÅÆ “ ÇoÁm$dÂt·q6 Nf}7å­.’Ó Ç´u‚™3/ûÈæTýÊXÉ +Š + š +¨ +À +Ü +ø + (% N T [  c p x ~  +„ O ß  +ñ ”ü ‘ ¢ » Ò  +è  ó  ÿ    . O b u  +„    © ¶ »  Ê ×  ï  ü  .EuTÊÌÜÅ©co Ózà[ariÜõ '6?Od&u'œ ÄBÐ  ' 6 DP U_elq ƒŸ±·Ïàäþ0?H^ u +Š “¤¬ ± ¾Êåü  +1HHP +™ ¤®¾ +ÆHÑ!B<ƒ1’Ä×Ü áîõ +  % 1`=™žC81|0®ß å òÿ + +'>N_~‘ ©(· +à +ëHö +? J +Wb iu„ “ ¶Ë Ú çõú  #AH P^€w ø3Ie iw ‰ — ¤K²3þ62ix"Ž ±»Óç ö$%@ U c „(¥+Î)ú*$!Oq/ƒ³ºÉ*Ú  '3 [ k { „  +– ¡ ± Ç × é ø !!)!? I?#S?w?-Š? ¸?Ä?Ù? î?ø?@@ @ +)@ 4@¥@@æ@ú@A A$A-A5A;AQA +iA +tAA•A +¥A °A ºAÈAÌAæA ÷A B! B-B 1B?BSB bB oB|B—BžB ¦B´BÉB ßBëB +þB CC .CM\MqMMˆMŸMµM ÄM ÑMÝMïM NN .N:NONUN +\N +gNrN zN‡NœN «N¹N +¿NÊNÏN äNðN +OO2O OO[OmOˆO¤O ¿OËOÛOôOPP4-PbPP’P«PÈPÛPêP.QE3QyQ ŠQ ˜Q¥Q ½Q ËQÙQôQ úQ R R + R+R ŒOŒUŒZŒiŒorŒâŒèŒúŒ  &3E U cm† —¤ +ª<µ òŽ !3GWf{•¥´È×ñ 1 +ALQZ3q;¥;á¡‘¿‘FÆ’ ““ “ )“7“=“E“ W“x““‡““®“Γ3ç“#”?”W”j”z”””ª”¹”È”Δ Õ”á”þ”•F•W• +w• +‚•• ’•  • ®• »• È• Ö•!ä•!– (– 4–+@–Kl–0¸–Qé–˜;—¢Ô—$w˜5œ˜PÒ˜G#™-k™O™šjéšoT›eÄ›j*œ~•œpo…wõ<mž?ªž>êžt)ŸtžŸ` ‰t þ ~¡0„¡µ¡»¡¡Ô¡é¡ ú¡¢6 +¢oA¢±¢³¢º¢4¢#÷¢È£Gä£%,¤XR¤U«¤O¥Q¥h¥q¥z¥‚¥ +‹¥ –¥ ¢¥¬¥ µ¥¿¥È¥#Ú¥þ¥ ¦¦¦#¦2¦9¦B¦U¦h¦q¦ƒ¦ •¦Ÿ¦ ¤¦ ²¦À¦ צá¦é¦ï¦ ò¦ü¦§*§ I§j§ p§}§„§§ ¬§¹§ Á§˧ܧ ߧ ë§ õ§¨¨¨ +%¨0¨ 8¨E¨M¨m¨ v¨„¨Š¨™¨¸¨ ǨÓ¨ +Û¨æ¨ø¨ ©©%© 5©C© W© e©s© ƒ©©£©¹©É©Û© ì© ø©ªªª-ª Gª Qª +^ªiªoª~ªšª©ª»ªÕªæªÿª«"« 2« S« ]«g« o«y« «‹« «¯« µ«ëÓ«Ú«à«ç« ú«¬ +¬ ¬ ¬ +'¬ +2¬=¬V¬_¬ g¬q¬ w¬„¬Š¬¬–¬¬¤¬¬¬´¬ Ǭ Ó¬à¬ú¬ ­­­­%­?­N­ +n­y­Œ­ ›­ §­³­»­íÙ­ è­ õ­® ®®®®,®G®P®X®k®® ¡® ®®¼®®Ò®Ø®ß® +ç® ò®ÿ® ¯ ¯ ++¯ 6¯ D¯ Q¯ [¯ h¯u¯ †¯¯ ˜¯¢¯©¯ +¯¯º¯ ïϯد ç¯ ô¯° ° °°.°5° >° K° Y°f° o° }°‹° š°¦°¹°¿°°Ç°Ï° Þ° ë° ÷°±± ,±9±?±H±Y±l±~±(±¹±Á±ʱà±ø± +²4$²1Y²/‹²»²Ѳá²³ ³³³0³#A³ e³†³¥³¬³¼³"̳ï³ +÷³´´%´,´5´K´ \´h´o´w´‡´™´®´ +Ç´ +Ò´ +Ý´è´ î´ü´µµµµ +?µJµ[µaµ +jµuµ{µ„µ‰µžµ´µõ ˵صçµëµñµôµ¶¶ + ¶¶¶$¶5(¶^¶ p¶z¶Š¶¶–¶ ž¶¬¶!Á¶ 㶠·%· +E· P·\·c·g·o·t·z·€· ‡· ‘·›·¡·¨· ¯·½·.зÿ·@¸]¹*x¹n£¹[º=nºP¬ºQýºNO»ož»F¼|U¼DÒ¼4½KL½[˜½Wô½5L¾E‚¾1Ⱦ=ú¾78¿;p¿ ¬¿¶¿ +½¿ È¿ +Ò¿ Ý¿ é¿õ¿ À +ÀÀ!À2À +GÀRÀ[ÀdÀ"À¤ÀºÀ;ÂÀþÀÁ +%Á 0Á<Á \ÁiÁpÁxÁ €Á ŒÁ šÁ ¦Á +´Á +¿Á ÊÁ ×ÁãÁ øÁ  Â#Ân2‚¡ÂD$Ã7iÃ6¡ÃØÃñà ùÃÄ Ä .Ä<Ä TÄ`ÄxÄÄ¡Ä!³ÄÕÄîÄ"Å(ÅDÅVÅnÅ +ÅŠÅ  Å ÁÅ"âÅ"Æ(Æ@Æ,ZÆ;‡ÆÃÆâÆ$úÆÇ(Ç CÇdÇzÇŽÇ ¡ÇÂÇØÇìÇ*ÿÇ*ÈJÈ +eÈpÈ +‰È”È ­È»ÈØÈ ðÈ ýÈ É É#É76É9nÊ4¨ÊÝÊ÷ÊýÊË—Ë +³Ë¾ËÛËøËÌÌ-Ì=ÌNÌcÌ|Ì‘Ì:¦ÌBáÌ$Í>D͖̓ͩͺÍËÍÜÍíÍôÍ$ùÍÎ5Î:MÎ ˆÎ•ÎªÎ½ÎÐÎÙÎîÎ ÷ÎÏÏ+ÏCÏ8^Ï-—ÏÅÏÌÏ ÔÏÞÏîÏ÷Ï Ð !Ð-Ð MÐ2[ÐŽÐТР¨Ð¶ÐÐÐÙÐèÐùÐÑ>&ÑeÑ lÑ yÑ †ÑÑ˜Ñ ŸÑ«Ñ³Ñ »Ñ ÇÑÕÑ ÜÑŠèÑsÒ xÒ …Ò ’Ò œÒ ©Ò+ÊÒöÒ ÓÓS&ÓFzÓFÁÓOÔ@XÔ™Ô.Õ$HÕYmÕ*ÇÕXòÕ6KÖ@‚Ö/ÃÖ-óÖ!×1× +M× +X× c×m׆ע׻×Ò×æ×'û×$#Ø$HØmØ1ŒØ+¾ØêØðØ +Ù0Ù0?ÙpÙ.Ù-°ÙÞÙñÙÚÚ&Ú +.Ú9ÚTÚkÚ qÚ{Ú„Ú “Ú´ÚËÚ!ÛÚ=ýÚE;ÛEÛIÇÛ9ÜCKÜ(Ü ¸Ü"ÙÜüÜKÝ"d݇Ý#¢ÝAÆÝAÞ"JÞ"mÞIÞEÚÞ! ßBß$Qßvߋߚ߸ßÍß Ôßâßùßà*à9àAà GàTà gàsà ‘àŸà1¯àáà +ñàüà á +á á'áBá +]á*há“á§á »áÇáÚáìá õá â + â â #â(Dâmâƒâ˜â±âÍâ#êâ'ã6ãNã'dã.Œã»ã×ãîãää%ä6ä¢>äáä èä ôäþäå&.å&Uå|å—å3©å3Ýå)æ ;æGæ\æoæ'ƒæ +«æ4¶æ'ëæ;ç(Oç;xç2´ç6çç6è4Uè#Šè=®èìèôèéé3éLéfé+é*­éØé*ôéê>êUêfêê žêªêÈêàêñêë&ë ;ëIë Xëfë~ë’ë¤ë´ëÉëÜëíë ôëì ì +ì='ìeìwìì ¤ì ÅìÒìéìîìôìíí4íGí`írí†íží ·íÅíÜí ííûí îî #î2/î3bî–î¥î#¸î>Üîï9ïHïWïmï‚ï’ï£ï´ïÄïÓïâïúï ðð 4ðBðVðpðð¯ðÄð Öð ÷ð ñ9ñ KñXñ _ñmñ|ñ „ññ ˜ñ ¤ñ±ñÊñæñò +òò0ò CòOò mòyò‚ò ‘ò›ò)¤òŽÎòN]ó<¬óéó úóôô %ô/ô?ô\ôeô~ô•ô ©ô ¶ô Ãô Ðô Þôêôþôõõ&õ6õIõJ\õ §õÈõÛõíõöö0öAö"Uö+xö¤ö ¹öÅöÕö +äöïö ÷#÷C÷b÷÷—÷©÷Ã÷(Õ÷$þ÷#ø6øKøiø%zø øºøÙøôøù$ù#:ù^ù rù ù ‹ù—ù0§ù Øùäù&þù%ú\8ú[•úñú2÷ú**û#Uû$yû0žûÏûïûøû ü9ü1Nü€ü‰ü ˜ü¦ü'ºü2âü ý 6ý$Wý'|ý*¤ý$ÏýVôý`Kþ¬þ³þ ¼þÈþÞþ$ùþÿ 7ÿCÿ ]ÿiÿ)rÿ$œÿÁÿÒÿãÿ÷ÿ    '1O +l-w&¥ ÌIØt"U—Jíl8i¥icyaÝŸ?Kßf+w’k +vhh}kæŸRò  % 7 M T j { „ œ  °  +¾  É Ö ï  +# +8 +N +c +w +Š +¢ +´ + Ê +ë +)  3 = &E !l Ž ¦  Á  â    1 ? S \ k  z ˆ › ª ¿  Ò à    ( : K c  › ° (É ò ø ÿ   + (2XAš ±¥½cu‹£ ¼ Æ Ôâë=AW my  œ +¦±¶ ÇÔ ñ +ý- GƒUÙôù^ n€{ü  š ´ +Õà ò   8$K$p•D¤ é ö (6 +;FLSZs†› +³"¾áøü"9Yhp ¦ ³ÀÇÏÕÜ â ðü&CT Yf*ƒ®a¶  +$/? +GOR&¢\É&.3Au‰Ž•¦¬Á ÑÝä÷|í„OrAÂ9> C +Q\ n x„ œ ª*¸ã ù -& T `lj × +ãîö ý  3 E _ | ” ¦ ¸  ¿ Ì  ß é ñ  ! !!,!‘F! Ø!%å!! "-"!J"l" r"€"" +ž"©"]¹"D#B\#Ÿ#³#%É# ï#û#$$$ 3$@$[$w$Ž$' $#È$-ì$:%5U%+‹%·%Ö%9î% (&4&F&:Z&•&.©&@Ø&'-' F'S' h'v'$•'º'Ð'å'ü'(&(E(^(&~( ¥(Æ(à(ñ()&)>)%W)}))¶)È)à)ÿ)*&8* _*€*š*ª*À*Ý*ô*(+;+Z+}r+ð,ù, --,- +L-W-]-m-†-–-Gœ-ä-ø- .. 2. @. N. [./h./˜.-È.,ö.#/9/P/g/}/“/ š/¦/Ä/ à/í/lõ/ b0=l0ª0 Â0 Ð0Ý0 î0 ü0* 141;1O1W1 f1(t1#1Á1×1ì12 +2 2&2>2M2l2‹2š2 °2¾2Ü2û2 +3)383 W3e3ƒ3¢3¨3 Ç3Ñ3Ù3â3ý34'*4R4c4v4–4ž4+®4Ú4ú4%5 75E5M5i5@…5Æ5Î5Õ5Ý5ò566+6E6^6|6š6³6Ã6Ø6ç6þ67547j7!q7%“7 ¹7Ç7Ï7Õ7Ü70÷7(8?8 X8d8 u88 †8’8š8 ¬8¸8Ê8Ü8÷89 '959I9Z9n9„9—9 ª9Ë9ß9ø9,:+>:j: ˆ:–:¥: ¹:Å:!Ù:û:; +; ;;5;T;p; +Œ; +—; +¢;)­; ×; ä; ñ;$ý;"<1<L<g<y< +ˆ<#“< ·<Å<#×< û< = =,$=Q=.i=˜=®="Í=1ð= ">0>N>]>p>v>>”>¥>¬>½>•Ó>“i?&ý?$@<@ +O@Z@b@t@†@˜@°@È@Ñ@¤à@…A•A «A +µAÀA ÈAÕAìABB/BBB$`B%…B'«B&ÓB$úBC!:C(\C +…C C œC¨C¿CÏC ÖC àC_ìC.LD{D+ƒD¯D8¸DñD EE(E FE$gEŒE “E ¡E­EÀEØE çEóE F FF.F CFMF fFpF …F¦F¶FÌFæF*G%0GVGhGmG G ‰G/—G/ÇG-÷G,%HRHdH;uH±HÂH ÈHÒH ÙH æHðH ÷HI III$I AINI hI,tI¡I°I ÁIâIòIJ$J7JFJZJ lJxJ~JM…J<ÓJK K'K 7K$EK&jK­‘K6?LvL~LQ…L ×M +áMìM üM N%N =N8JN ƒN‘N¦N»NÂNËN áNëNúNOÞ&OPP )P 5PBP IPSP\PzP˜P¨P·PÕPêP þP QQQ3Q DQNQ!WQyQ‹Q$¤QÉQÞQóQ +R +R8R @RNRkR ˆR–R «R¸RÔR ñRÿR S*S GSTS#pS@”SÕSÚS àS#T$%T*JT*uT& TÇTÛT@íT^.U?U>ÍUP V]V;dVD VåVüVW&W*W /W8;W>tW³WÄWÝWõW X%X9XYXvxXïXÿXY.YKY`YpY‚Y”Y£Y¶YÔYçYøY +Z='Z,eZ’Z£Z´Z%ÄZêZÿZ +[[5[O[g[ ƒ[‘[ ¢[®[Î[î[\\*\>\U\#q\,•\Â\*Ü\(]50]f]5…]»]Ë]à]ô] +^^8^L^:`^;›^×^í^ _ _ _8_MS_$¡_Æ_ Ï_.Ý_ `W`'w`Ÿ` ¼`Ê`Ñ`æ` ü` a a"a 3a AaMagapa‚a‡aa¡a±aºaÎa éa÷ab +b $b".bQb"bb…b”b³bÒbâb"c"%cHcgc{c•c°cÆcæc?d)@djd"‚d!¥dÇdædødIeM]e«e¿eÚe)óef.f =f ^fhfxf‡f—f¦fºfÉfØfífgg +2g=g¬Rgjÿg +jhuh +|h‡h˜h h¯hÄhàhöh#i7iUili{ii¬iÂi#ßij!j8jHj^j{j’j$°jÕjôj kk,kFkZk!tk–k²k +ÇkÒkãkll$'lLl llzl"˜l»l×lélm%m'Cm$km m±m"Ãm"æm nny€︀ ¨´½ÂÈàø ‚‚-‚?‚F‚V‚f‚‚ +”‚ Ÿ‚ ­‚Q»‚ ƒ"ƒ4ƒKƒbƒxƒƒ¥ƒ·ƒ(΃÷ƒ „$„:„6L„ƒ„›„¬„Á„Ö„ö„…!+…M…^…u…#Š…®…É…Þ…!þ… †2†F†X†q†ˆ†™†¡†¶†Ó†9܆‡‡4‡:‡ J‡W‡i‡‚‡ —‡ ¥‡²‡¹‡Á‡ ʇׇEç‡-ˆ¾ˆψçˆÿˆ‰ ‰8‰(?‰,h‰•‰#²‰Ö‰ í‰$Š#3Š WŠcŠtŠ|Š…Š"¤ŠÇŠ ÏŠ ÜŠèŠ ùŠ‹ +‹#‹,‹=‹Q‹d‹t‹‡‹‹$­‹Ò‹+å‹Œ''Œ&OŒ vŒ‚Œ —Œ¤Œ +¸ŒÃŒÉŒØŒìŒ õŒ 9 +> I U_o`ˆ3é>Ž.\Ž3‹Žn¿Ž\.œ‹I(!rÝ”!r‘”‘%¨’åΓ´”.D•Ts•È•Ý–™ý–¬——D˜ J˜W˜<^˜›˜2™[Pšf¬š^›_r›9Ò›\ œžiœ\0eE–4ÜYŸXkŸDÄŸ  Ù™ ís¡Ña¢‘3£žÅ£™d¤–þ¤D•¥ Ú¦j{§ 槩2!ª@Tª_•ª õª6« 8«B« U«v«’«›«¢« +³«²¾« +q¬&|¬'£¬ˬå¬ û¬ ­­3­C­b­s­ƒ­ ˜­¢­a·­ ¯&¯A¯P¯e¯}¯’¯¦¯¿¯ܯñ¯°°"+°N°_° p°|° ° +›°¦°ª°+²°LÞ°Y+±P…±òÖ±’ɲg\´Ä´ Ô´á´é´ ò´ ü´µ µ<µEµNµ+Wµ"ƒµ&¦µ=͵' ¶3¶I¶b¶%y¶Ÿ¶¼¶жá¶æ¶ ì¶"ø¶·$·M-·${· + · +«·¶·¾·Ó·ç·û·¸¸//¸3_¸“¸ +¤¸.¯¸SÞ¸+2¹n^¹Å͹M‚»_лy0¼Kª¼fö¼h]¾‘ƾ›X¿ô¿”„ÀÁ›·Á“S™çÂ_ÃdáÃ_FÄ“¦Ä:ÅØÅŸXÆÈøÆÁÇ2ÇÇúÇÈ ÈÈ4ÈFÈ_È?aȃ¡È%É'É,É02É&cÉÝŠÉKhÊ2´ÊkçÊWSË^«Ë! +Ì ,Ì9Ì HÌ UÌbÌ yÌ…Ì •Ì £Ì±ÌÀÌ1ÏÌ ÍÍ )Í 6Í @ÍNÍUÍ\Ízͬ͘ÍÅÍßÍîÍõÍÎÎ+Î :Î GÎTÎ WÎcÎvÎ"“Î"¶ÎÙÎ èÎõÎýÎ!Ï'Ï0Ï 9ÏEÏ\Ï _ÏmÏvÏ"‡ÏªÏ ²Ï¾ÏÑÏÙÏáÏ!éÏ Ð Ð "Ð,Ð@Ð_Ð~ÐИРкÐÉÐÚÐëÐûÐ Ñ$Ñ3ÑCÑYÑhÑ$|ѡѳÑÅÑ×ÑíÑüÑ ÒÒ+Ò +HÒSÒ eÒ rÒ~Ò”Ò«ÒÀÒÛÒóÒÓ$Ó:ÓQÓ,fÓ“Ó šÓ §Ó ±Ó½Ó +ÄÓÏÓéÓ þÓÔÔ +,Ô7Ô +@ÔKÔ^ÔmÔ +pÔ {Ô ‡Ô”Ô £Ô¯ÔËÔ ÜÔèÔðÔ ÷Ô ÕÕÕÕ'Õ-Õ 5ÕBÕ +^Õ iÕwÕ ŒÕ™Õ«Õ²Õ¹ÕÁÕÜÕ;øÕ4Ö;ÖTÖ cÖ pÖ|Ö „ÖÖ§Ö·ÖÇÖÖÖÙÖ âÖìÖóÖ× "×,×4×"N×2qפ׳×Ã×Ê× Û×è×ï× ö× ØØ!Ø3Ø FØRØaØ sØØ ŽØœØ ­Ø»ØÃØ ÓØ ÝØçØ +ðØ ûØ ÙÙ 5ÙCÙKÙ +TÙ_Ùqيّ٠™Ù¦ÙµÙ ÄÙÎÙßÙðÙÚÚ&Ú/Ú2Ú7Ú?ÚNÚ ]ÚkÚ~Ú™ÚµÚ ÊÚ×ÚèÚúÚÛ+Û;=ÛyÛ Û‹Û¢ÛºÛ(ÒÛ,ûÛ-(Ü0V܇ܠÜ<½ÜúÜ Ý +ÝÝ4Ý%QÝ%wÝ)Ý +ÇÝÒÝâÝ,öÝ#Þ,Þ5ÞDÞVÞ +\ÞgÞ}Þ ™Þ¥Þ ¬ÞºÞÔÞèÞüÞ ß +ß )ß 3ß =ßJßRß bß +lß!wß™ß©ß »ßÉß +Ûßæß ïßùß"þß!à:àIàRàZàiàmàsàvà…à‰à +àšà¡à§àG«à(óà +á'á7á<á AáKáZá'qá'™á&Áá&èá +â +â%â,â1â9â>âCâIâOâXâaâgâmâuâW„â9Üâã[¯­›}røʪ2ç7=ù€ž-‡~U³º>8 W8WÌòV¸nÚ•€ê†Ã0¡ŠeŸÜr<Ý4üãšOÍ®š†¨éÝŒ° S ß+#åc8ùt®ù§W–sòï£lBýg\0'ÍG©=b½mŒº/¿x:‘Ö¦6 ø\T\ן¬Ã#ìýB-ÂLÞƈSs‰àïM2 Ï=€±ÏMú‰ÛåHÕv;—í§3%(þ ÌºÅÜ—w$ Z_v ê!Reþ÷`Hxç+±¼ B†Z„´ ¢X‚!¾+[À!Æ·¥+*¼hesªcw3 ‚ÅëÂã0žiŠò# Òô§oëLóž›TÓÔKªXg€_ +ÚN;69 ^ÖÚÞ¥´öP Œzï}"„+²Ûß, –éêùn( µÞµ2§.Cö/µ™ðœ‡­£VƒèúšG9×ô·üEO=OÄv!ú†õ1_çš>ö¡Ã?¯þpÝÖ¯è _,Ë] C ‹ë6`€G|ž  {89ßÑ®áØvS½›àýºXÖãœãÛ”(¥M ÉåU0 Nÿ±XÓ½E : ¼2Òr”˜ÍHƒ³ªÁa„ꋺð5oÇVhü­|?B¡A &4³~ µ’>LÛfÞË$®0èâ¼5Ÿ™47zç³–ç±}Ï +€]ÈP•ú +¸]F 2ð +•"x[§i„'Éø¬eãï&ñ’Ç›("äqä>ŠU9Ü…±m> t`,’ÜrGäÀQ¶v¸¨Š + ' Ó´âÉù|’¿è£Ð,NÍí34±ã Dn†EŸ›3$ i«¸gùìLÔéc>túIÐB†·'^ü©"Û~@! ûÀŽ]ïY ìø ]èw7Q-Ý—hË ”€i«©–UªËˆAî yJá…OyAjapmÐZü D­Ùš k,º{Z…΋ol *#¨(¹S1 åWȸÉ@Ӊίzo*ŒVoŽELVÔœrG ©J ; ?=|Qí›Ì´ñ áþ Ì—fJÙY@0«¤bø—ÔX% =óvRIm/IÆjûF1Y&wÓÜXÚ$æ ômŠYi4È TsGAè}*2ÿC厎N¡ïÜRkH²¢‘ñmŸ«!r£ükE«Õß”‡^Tm·ÅŽ A^­N Y¿I½?3[ÍÖ' K1e,&n-wkɺôÐkd6êoI˜“Š¨›ƒ³ó—¦;Ç0•Cæ× ß—§5?HuW ŒÄqÿÕSB  ï>I”ýÀﶷý ‘d†IÂÁa;Þu°d½ ÑF²£¤ŒL×eèß[BR°°Æ +zfþNñ¥\Ï[é)çóNž‡ÒòC¾Ëùö øà^™ÿ.îku•1ã:vKÂdAát*5 X»s­C•H6vÉÖ¶TFc­x'^+ûf( ÷Ä–ŒHÒ*ÕNÙòæ‘ JƒO ¨#QqAÌj™;:Q Ì ×Õ…Äü&(mBì²ôÛ÷è +6‡£uÎëÕ.öžj.  ‰’\t¬p¶kÄÍüêb%Qý¢`泃zF£gœé0|ˆð8SqÔß wñ&"§F¢)}Põâ@ ¬œµJœÈæa¥2Ò¥ÇxJwÉÄÏ<¥êFPúСÑp¢#4p›5 ðqc)¹K“Sê';«·ëÚ$ÿÓ'O/Î txƒÌ< L ΑÈt£ëÏâlCµœõÜ%B j§Âi+š ,÷1¤l¶K@ f-= "& “Ñ)s…äØd+òT "¿W¹¦=AÏôÆ&sjíÐà®<›þÐæH ¬ñ?‡óÔñDEO±Ø«$À…ÑC„bñU +%íÞ“×êMÑóVJ €°ag‰˜<ø~\ 6K Ó? yBß‹¯Dä"Å/ÊÅr =ô[ Z¬ØÚTðé„h- ¤<@ì]i lc d»ÿ] ‰JU:*ó¦pð4à`V‡˜¯Û}‘P“ku é V ¿ŽA?4 ^ÊFåPZ—ªDasˆ»wó©x†~n„ÜD7.Ë[ô7 l¤-1ÒoÚ‚´;î~ûC@ÛbÀ 12Ýò³ž™Ã¬Þ/¹ÁØ%†Öw:ÃÊ ;”#Xy(+ÜÙÃØ"擹MÙÊWUÆ”Ìy…åƒ. ²%°ÞõnÑdòà´{ÖæeÁƃæIy™±€½¢žh`h{ë O 6 ²@œg¡Ðèl >5 C‹ª@Ý9‚ÈVšXG‘´=Ŷ:l˜±øMÑ {õp¾•L÷ýbK ¢ÀìÇö:áf· ³îÒ~tES ÓG¾çn¬!Guj$ˆ2)ÿ<éKÝTýu*P9ì>ls¢Óà#5E¾9íY߇[ú$z¡“z[ÇGûeد’fà jüDúM¹}¦…uôÍ,>¾~Žc3xi9Ò•÷IÍ7ò.‚»z#õžFÚQSA8©%Œ1îΘ©´ +Ÿ)Â/’{½Q¼agÙ¸Á9(®bþ;oR4þQ²‹ë\ä ¿¤Å˜#Ý:«M L”âPí,ÊÎõ»¨¡ŠD©Õ ²%Ð÷$à¸É¿}* š._|'-h Á7Ϙ&÷´8|‹¡äáħ$) þ_Ò°) xÌŠÞµãʼnö]¶ûq^i¾úU)ùO°!ã{â+ ^²MY·ÉHö n¨àR ?@ ÊY ÈM‡^ hRŸ×¼»JbýX í‹Æ7-¼EךR _]<¼{TEaŽ®\5Äk¹Õ‹\(–! yqÀWñ3ºyP®¥ V–¿5/ ÚWÙZâªá`I 3P‚û…‘³f ¬îåù¤ÙÕûáªÝ–¥á4Ûp»7S|r«ïË~Ñ!â& ¦¨3rÿ™¤ì¹Z ¯œZð®U ˜íÇî<-‘‚YëÖ¦—<L*ìÎn×»K‰q.à +H eÁ¨» " „Ù•–d°|Ë NW ¹øˆpŽ,äˆ:‰8ój\zaˆÔé÷¤¾Z0b¿_ÿcÁ0Ê ¸ `5R1À¢gŠ ç6¶ä”_’UÇ’{¦½OD½hD ™2ŒJcö]Ÿ`ˆº9vØF?õ·)ðÔ8Í'Q¯¦RKÄ©õØy8/ µÏ¶­¼ÎâÂgÅÆ “ ÇoÁm%dÂt¸q6 Nf}7å­.“Ô Èµu‚‚™3/ûÈçTþËYÊ Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -310,7 +308,7 @@ %s Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: +Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove itemRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: %sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' Saving '%s' failed: @@ -344,9 +342,9 @@ did not save indexed colormaps correctly. Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-28 18:35+0100 -PO-Revision-Date: 2005-04-29 12:35+0200 -Last-Translator: Sven Neumann +POT-Creation-Date: 2005-06-18 02:39+0200 +PO-Revision-Date: 2005-06-21 19:47+0200 +Last-Translator: Hendrik Richter Language-Team: German MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 @@ -398,9 +396,9 @@ (%s)Schwebende Auswahl in EbeneSchwebende Auswahl in EbeneSchwebende AuswahlenFloyd-Steinberg (normal)Floyd-Steinberg (reduziertes Farbbluten)FokusOrdnerOrdnerSchriftordnerSchrift-UISchrift:SchriftenSchriftenmenüFür die GIMP Benutzerinstallation muss ein Ordner namens »%s« angelegt werden.Auto-Hinting erzwingenVordergrundVorder- und Hintergrundfarben. Das schwarze und weiße Rechteck setzt die Farben zurück. Die Pfeile vertauschen die Farbe. Doppelklick öffnet den FarbauswahldialogVordergrundfarbe:Vordergrundfarbe ist:Vordergrund: %d, %d, %dVorwärts (Traditionell)_Vom PfadFreie AuswahlFreie AuswahlFreihandDem _Thema entsprechendAuflösung vom _Fenstersystem beziehen (zur Zeit %d x %d dpi)Von Links nach RechtsVon Rechts nach LinksAus AuswahlDem Thema entsprechend_Zauberstab_VollbildZauberstabGIMPGIMP ErweiterungGIMP MeldungLeistungsfähigkeit von GIMPGIMP PluginGIMP StartGIMP Text EditorGIMP Tipp des TagesGIMP-BenutzerinstallationGIMP XCF BildGIMP konnte die grafische Benutzeroberfläche nicht initialisieren. Stellen Sie sicher, dass Ihre Anzeige korrekt eingerichtet ist.Hilfe-Browser von The GimpGIMP wurde für den aktuellen Benutzer nicht korrekt installiert. Es wurde keine Benutzerinstallation ausgeführt, da die Option »--nointerface« übergeben wurde. -Starten Sie GIMP ohne die Option »--nointerface«, um die Benutzerinstallation durchzuführen.GIMP verwendet für Bilddaten eine begrenzte Menge an Arbeitsspeicher, den sogenannten »Kachel-Cache«. Sie sollten seine Größe so wählen, daß er in den Arbeitsspeicher passt. Bedenken Sie dabei die Menge an Arbeitsspeicher, die bereits von anderen Programmen belegt wird.GIMP verwendet eine zusätzliche gtkrc-Datei für GIMP-spezifische Oberflächen-Einstellungen.GIMP-VersionGIMP warnt den Benutzer, falls versucht wurde, ein Bild zu erstellen, das mehr Speicher belegen würde, als die hier angegebene.GammaAllgemeinDies ist generell ausschließlich für 8-Bit-Anzeigen relevant. Dies legt die Mindestanzahl der für GIMP bereitgestellten Systemfarben fest.Optimale Palette erzeugenQuelle für BildschirmauflösungGigantischGimprc-Prozeduren_Glas-EffekteFarbverlauf:FarbverlaufseditorFarbverlaufseditormenüFarbverlaufsordnerFarbe des linken Segment-Endpunktes Farbe des rechten Segment-EndpunktesFarbverlauf-UIFarbverlauf '%s' ist fehlerhaft: Segmente reichen nicht von 0 bis 1.Farbverlauf:FarbverläufeFarbverlaufsmenüFaser extrahierenFaser mischenGrauGraustufenGrünGrün:GitterAbstand der GitterlinienKanal vergrößernAuswahl vergrößernAuswahl vergrößern umHilfslinieMagnetische Hilfslinien und GitterHilfslinien-ProzedurenHSVHSV (%0.3f, %0.3f, %0.3f)HSV (Farbton _gegen Uhrzeigersinn)HSV (Farbton _im Uhrzeigersinn)HTML_Notation:Höh_e:Zu verwendender Hilfe-_Browser:Markerposition: %0.6fHarte KantenHarte KantenHärteHärte:HöheHöhe:HilfeHilfe-BrowserHilfesystemDer Hilfe-Browser startet nichtDer Hilfe-Browser wurde nicht gefundenHilfe-ProzedurenHex:GlanzlichterFenstertyp-Hint für _Docks:Fenstertyp-Hint für as _Werkzeugfenster:HintingHinting ändert die Schriftränder, um bei kleinen Größen ein schickes Schriftbild zu erzeugen._HistogrammHistogrammHistogrammskalaJournalHorizontalHorizontaler Versatz der ersten Gitterlinie; dies darf eine negative Zahl sein.Horizontaler Abstand der Gitterlinien.Legt fest, wieviele »zuletzt geöffnet«-Einträge im Dateimenü vorgehalten werden sollen.FarbtonFarbton-SättigungFarbton-Sättigung funktioniert nur bei RGB Ebenen.Farb_ton-SättigungTon:RiesigSymbol _und Text_BildPfad i_mportieren...I_nterpolation:I_ntervall:SymbolSymbol und Beschr.Symbol und TextFalls verfügbar, werden Hints von den Schriften verwenden, möglicherweise bevorzugen Sie aber stets automatisches Hinting.Wenn diese Option ausgewählt ist, wird das Verschiebenwerkzeug die aktive Ebene oder den aktiven Pfad wechseln, wenn eine Ebene oder ein Pfad angeklickt wird. Diese Funktion bildet das normale Verhalten älterer The-Gimp-Versionen nach.Wenn Sie das Bild nicht sichern, gehen die Änderungen der letzten %s verloren.Wenn Sie GIMP jetzt beenden, gehen folgende Änderungenverlorgen:Umgebungsdatei %s enthält ungültigen Variablennamen: %sBildBild + GitterBildeditorBildinformationenBildmenüBildgrößeFormat der StatusleisteBild-VorlagenBild VorschauFormat des Bildtitels und der StatusleisteFormat des BildtitelsErscheinungsbild der BildfensterBildfensterAuswahl auf alle sichtbaren Bereiche stützenBildgrößeBildmaskeDa die Auflösung des Bildes außerhalb des gültigen Bereiches liegt, wird die Vorgabeauflösung verwendet.BildgrößeBildquelleBildartBilderBildmenüImporteinstellungenFarbpalette importierenPfade importierenPfade aus SVG importierenEine Farbpalette importierenFarbpalette importierenPfade importierenImportierter Pfad_Tinte_InvertierenMaske in_vertierenSteigerndEinzug:Einzug der ersten ZeileIndex:IndiziertIndizierte FarbenIndizierte FarbumwandlungIndizierte Farbebenen werden immer ohne Interpolation skaliert. Die ausgewählte Interpolation wird nur auf Kanäle und Maske Auswirkungen haben.Info-FensterAnfänglicher _Vergrößerungsfaktor:Initialisierung Ebenenmaske nach:Plugins werden initialisiertPlugin »%s« wird initialisiert +Starten Sie GIMP ohne die Option »--nointerface«, um die Benutzerinstallation durchzuführen.GIMP verwendet für Bilddaten eine begrenzte Menge an Arbeitsspeicher, den sogenannten »Kachel-Cache«. Sie sollten seine Größe so wählen, daß er in den Arbeitsspeicher passt. Bedenken Sie dabei die Menge an Arbeitsspeicher, die bereits von anderen Programmen belegt wird.GIMP verwendet eine zusätzliche gtkrc-Datei für GIMP-spezifische Oberflächen-Einstellungen.GIMP-VersionGIMP warnt den Benutzer, falls versucht wurde, ein Bild zu erstellen, das mehr Speicher belegen würde, als die hier angegebene.GammaAllgemeinDies ist generell ausschließlich für 8-Bit-Anzeigen relevant. Dies legt die Mindestanzahl der für GIMP bereitgestellten Systemfarben fest.Optimale Palette erzeugenQuelle für BildschirmauflösungGigantischGimprc-Prozeduren_Glas-EffekteFarbverlauf:FarbverlaufseditorFarbverlaufseditormenüFarbverlaufsordnerFarbe des linken Segment-Endpunktes Farbe des rechten Segment-EndpunktesFarbverlauf-UIFarbverlauf '%s' ist fehlerhaft: Segmente reichen nicht von 0 bis 1.Farbverlauf:FarbverläufeFarbverlaufsmenüFaser extrahierenFaser mischenGrauGraustufenGrünGrün:GitterAbstand der GitterlinienKanal vergrößernAuswahl vergrößernAuswahl vergrößern umHilfslinieMagnetische Hilfslinien und GitterHilfslinien-ProzedurenHSVHSV (%0.3f, %0.3f, %0.3f)HSV (Farbton _gegen Uhrzeigersinn)HSV (Farbton _im Uhrzeigersinn)HTML_Notation:Höh_e:Zu verwendender Hilfe-_Browser:Markerposition: %0.6fHarte KantenHarte KantenHärteHärte:HöheHöhe:HilfeHilfe-BrowserHilfesystemDer Hilfe-Browser startet nichtDer Hilfe-Browser wurde nicht gefundenHilfe-ProzedurenHex:GlanzlichterFenstertyp-Hint für _Docks:Fenstertyp-Hint für das _Werkzeugfenster:HintingHinting ändert die Schriftränder, um bei kleinen Größen ein schickes Schriftbild zu erzeugen._HistogrammHistogrammHistogrammskalaJournalHorizontalHorizontaler Versatz der ersten Gitterlinie; dies darf eine negative Zahl sein.Horizontaler Abstand der Gitterlinien.Legt fest, wieviele »zuletzt geöffnet«-Einträge im Dateimenü vorgehalten werden sollen.FarbtonFarbton-SättigungFarbton-Sättigung funktioniert nur bei RGB Ebenen.Farb_ton-SättigungTon:RiesigSymbol _und Text_BildPfad i_mportieren...I_nterpolation:I_ntervall:SymbolSymbol und Beschr.Symbol und TextFalls verfügbar, werden Hints von den Schriften verwenden, möglicherweise bevorzugen Sie aber stets automatisches Hinting.Wenn diese Option ausgewählt ist, wird das Verschiebenwerkzeug die aktive Ebene oder den aktiven Pfad wechseln, wenn eine Ebene oder ein Pfad angeklickt wird. Diese Funktion bildet das normale Verhalten älterer The-Gimp-Versionen nach.Wenn Sie das Bild nicht sichern, gehen die Änderungen der letzten %s verloren.Wenn Sie GIMP jetzt beenden, gehen folgende Änderungenverlorgen:Umgebungsdatei %s enthält ungültigen Variablennamen: %sBildBild + GitterBildeditorBildinformationenBildmenüBildgrößeFormat der StatusleisteBild-VorlagenBild VorschauFormat des Bildtitels und der StatusleisteFormat des BildtitelsErscheinungsbild der BildfensterBildfensterAuswahl auf alle sichtbaren Bereiche stützenBildgrößeBildmaskeDa die Auflösung des Bildes außerhalb des gültigen Bereiches liegt, wird die Vorgabeauflösung verwendet.BildgrößeBildquelleBildartBilderBildmenüImporteinstellungenFarbpalette importierenPfade importierenPfade aus SVG importierenEine Farbpalette importierenFarbpalette importierenPfade importierenImportierter Pfad_Tinte_InvertierenMaske in_vertierenSteigerndEinzug:Einzug der ersten ZeileIndex:IndiziertIndizierte FarbenIndizierte FarbumwandlungIndizierte Farbebenen werden immer ohne Interpolation skaliert. Die ausgewählte Interpolation wird nur auf Kanäle und Maske Auswirkungen haben.Info-FensterAnfänglicher _Vergrößerungsfaktor:Initialisierung Ebenenmaske nach:Plugins werden initialisiertPlugin »%s« wird initialisiert TinteInline pixbufEingabegeräteEingabegeräteQuellwerteAnker einfügenEine private Farbtabelle installieren; ist möglicherweise auf Pseudocolor-Anzeigen sinnvoll.Installation fehlgeschlagen. Wenden Sie sich an den Systemverwalter.Installation erfolgreich. Drücken Sie »Weiter« um fortzufahren.Dauernd auffrischenIntelligente _ScherenIntensität %0.3f Deckkraft: %0.3fOberflächeInterne GIMP ProzedurInterne ProzedurenInterpolation:ÃœberkreuzenAuswahlschnittmenge bildenSchnittpunkte (Fadenkreuze)Schnittpunkte (Punkte)Ungültiges UTF-8Ungültige UTF-8-Daten in Datei »%s«.Ungültiger UTF-8 Text in XCF DateiUngültiger UTF-8 Text in Pinseldatei »%s«.Ungültige UTF-8-Zeichenkette in Farbverlaufsdatei »%s«.Ungültige UTF-8-Zeichenkette in Palettendatei »%s«Ungültiger UTF-8 Text in Musterdatei '%s'.Ungültige Zeichenfolge in URIFalscher Tastenkürzel.Ungültige Breite oder Höhe. Beide müssen positiv sein.InvertierenKanal invertierenAuswahl invertierenDas Invertieren funktioniert mit indizierten Ebenen nicht.Auswahl invertierenSind Sie sicher, dass Sie fortfahren möchten?Scheinbar haben Sie bereits The Gimp in der Version 2.0 benutzt.ObjekteigenschaftenSichtbarkeit des ObjektsAusrichtung:Transparenz erhaltenOben behaltenVerhältnis von %s beibehaltenSeitenverhältnis von %s beibehaltenHöhe beibehalten %sTransparenz erhaltenBreite beibehalten %sPfeiltaste RunterPfeiltaste Runter (Alt)Pfeiltaste Runter (Strg + Alt)Pfeiltaste Runter (Strg)Pfeiltaste Runter (Shift + Alt)Pfeiltaste Runter (Shift + Strg + Alt)Pfeiltaste Runter (Shift + Strg)Pfeiltaste Runter (Shift)Pfeiltaste LinksPfeiltaste Links (Alt)Pfeiltaste Links (Strg + Alt)Pfeiltaste Links (Strg)Pfeiltaste (Shift + Alt)Pfeiltaste Links (Shift + Strg + Alt)Pfeiltaste Links (Shift + Strg)Pfeiltaste Links (Shift)Pfeiltaste RechtsPfeiltaste Rechts (Alt)Pfeiltaste Rechts (Strg + Alt)Pfeiltaste Rechts (Strg)Pfeiltaste Rechts (Shift + Alt)Pfeiltaste Rechts (Shift + Strg + Alt)Pfeiltaste Rechts (Shift + Strg)Pfeiltaste Rechts (Shift)Pfeiltaste HochPfeiltaste Hoch (Alt)Pfeiltaste Hoch (Strg + Alt)Pfeiltaste Hoch (Strg)Pfeiltaste Hoch (Shift + Alt)Pfeiltaste »Hoch« (Shift + Strg + Alt)Pfeiltaste Hoch (Shift + Strg)Pfeiltaste Hoch (Shift)Tastenkombinationen können in GIMP dynamisch vergeben werden. Die Datei menurc ist eine Speicherung Ihrer Konfiguration, so daß diese auch in der nächsten Sitzung erhalten bleibt. Diese Datei kann editiert werden, es ist jedoch einfacher, die Tastenkombinationen aus GIMP heraus zu konfigurieren. Wird diese Datei gelöscht, so wird die Vorgabe-Tastenbelegung wiederhergestellt.TastaturTastaturereignisseTastenkürzelLinks nach RechtsFarbe des li_nken Endpunktes...QuerformatGroßGroß (256x256)Größere VorschaubilderLetzter Fehler:EbeneEbene »%s« hat keinen Alphakanal. Ebene ist darüber plaziert worden.EbeneneigenschaftenEbenen_größe... EbenenfüllartAuswahl aus EbenenmaskeEbenenauswahlEbenengrößeEbenen_modusEbenen_name:Diese Ebene kann nicht weiter abgesenkt werden.Diese Ebene kann nicht weiter angehoben werden.Diese Ebene befindet sich bereits ganz unten.Diese Ebene befindet sich bereits ganz oben.Ebene auf BildgrößeEbene nach ganz _untenEbene auf _BildgrößeEbene nach ganz _oben_Alphakanal der EbeneEbenenEbenenmenüEigenschaften Ebenen vereinenFarbe des linken EndpunktesLinksbündigLänge:Wenn diese Option ausgewählt ist, versucht The Gimp bei jedem Start die letzte Sitzung wieder herzustellen.FarbwerteWerte für indizierte Ebenen können nicht geändert werden. Helle Schachbrett-FarbeNur AufhellenDurchgezogenZeilen- -abstand:Linienbreite:Linien_stil:Der für das Gitter verwendete Linienstil.LinearVerknüpftes ObjektÖffnenKurven öffnenWerte öffnenRechte Farbe laden von _HintergrundfarbeKurveneinstellungen aus Datei ladenWerte aus Datei ladenText aus Datei ladenVorschau wird geladen...Ort:LogarithmischLange StricheSuche nach ArbeitsdatenKanal absenkenKanel nach ganz unten absenkenKanel nach ganz unten absenkenEbene absenkenEbene nach ganz untenPfad absenkenPfad nach ganz unten absenkenPfad nach ganz _unten absenkenKanal absenkenKanel nach ganz unten absenkenEbene absenkenEbene nach ganz unten absenkenPfad absenkenPfad nach ganz unten absenkenVer_größern bzw. VerkleinernA_lleAuf Bildschirm _verschieben..._AbbildenMagentaMagenta:Vergrößern / Verkleinern_Transparent machenLadbare Module verwaltenGeschwindigkeit der laufenden _Ameisen:Maskendeckkraft:Maske aus _AuswahlMaske aus _invertierter AuswahlMatrix:Maximale Tiefe:Maximale Datei_größe für Vorschaubilder:Maximale Größe _neuer Bilder:Maximale Farbdifferenz_Maximaler Speicher für das Journal:Durchschnitt:Me_ssenAbstände und Winkel messenAbstände und Winkel messenMessen Sie die Lineale aus und tragen Sie die Längen unten ein.Median:MittelStricheNach un_ten vereinenNach unten vereinenEbenen vereinenFarbpalette vereinenSichtbare Ebenen vereinenSichtbare Pfade vereinenSichtbare _Ebenen vereinen...Sichtbare _Ebenen vereinen...Sichtbare Pfade vereinenEbenen vereinenFarbpalette vereinenPfade vereinenNachrichten-ProzedurenMeldung %d mal wiederholt.Meldung einmal wiederholt.Ausgabe erfolgt jetzt auf der Standard-Fehlerausgabe.MittenBenutzereinstellungen übernehmenMinimale Anzahl an _Journalschritten:VerschiedenesGehrungModusModus:Gewählte Farbe bearbeitenDie Farbwerte des gewählten Bereichs bearbeitenAlle Farben bearbeitenZeilenabstand verändernModulordnerModule verwaltenModulpfadModuleMousezeigerMausradMausradereignisseVerschiebenAnker verschiebenKanal verschiebenSchwebende Auswahl bewegenHilfslinie verschiebenHilfslinie verschieben: Ebene bewegenEbenenmaske bewegenPfad verschiebenAuswahl verschiebenTextebene verschiebenVerschiebewerkzeugObjekt verschiebenEbenen und Auswahlen verschiebenAuswahl verschiebenAktive Ebene verschiebenAktiven Pfad verschiebenDen gewählten Filter nach unten verschiebenDen gewählten Filter nach oben verschiebenAuf Bildschirm verschieben...Verschieben: Multiplikation_Anzahl der Farben:_NavigationNavi_gationsfensterGröße der _Navigationsvorschau:Name_Name:NavigationNeuer KanalFarbe für neuen KanalEinstellungen des neuen KanalsNeue Farbe aus _HintergrundNeue Farbe aus _VordergrundNeues BildNeue EbeneNeuer PfadEinstellungen des hinzuzufügenden PfadesNeue VorlageNeuer PinselNeuer KanalNeuer Kanal mit den aktuellen WertenNeuer Kanal...Neue Farbe aus HintergrundNeue Farbe aus VordergrundNeuer FarbverlaufNeu importiertNeue EbeneNeue Ebene mit den aktuellen WertenNeue Ebene..._Neue FarbpaletteNeuer Pfad mit den aktuellen WertenNeuer Pfad...Neues MusterNeue VektorenKeine Pinsel für dieses Werkzeug vorhanden.Kein Filter ausgewähltKeinen linearen Farbverlauf in »%s« gefundenNicht mehr verfügbarKeine Pfade in »%s« gefundenKeine Pfade in der Ablage gefundenFür diese Operation sind keine Muster vorhanden.Keine AuswahlKeine Auswahl zum Nachziehen.Keine VorschauNicht ausgerichtetKeineKeine (am schnellsten)NormalNormal (128x128)PunkteNormales FensterKeine reguläre DateiEs sind nicht genügend Ebenen als »Sichtbar« markiert, um den Vorgang »Sichtbare Ebenen vereinen« auszuführen. Es müssen mindestens zwei sein.Es sind nicht genügend Pfade als »Sichtbar« markiert, um den Vorgang »Sichtbare Pfade vereinen« auszuführen. Es müssen mindestens zwei sein.Zahl der zu verwendenden _Prozessoren:Anzahl der GitterlinienAnzahl der Ebenen:A_nders...VersatzKanal verschiebenEbene verschiebenEbene verschiebenEbenenmaske verschiebenVersatz um (x/_2),(y/2)Versatz:Auf FestplatteAuf Rechnern mit mehreren Prozessoren legt dieser Wert fest, wieviele Prozessoren GIMP gleichzeitig belegen soll (nur, falls GIMP mit --enable-mp kompiliert wurde).Nur im SpeicherAls _Ebene öffnen...DeckkraftDeckkraft:ÖffnenBild öffnenBild als Ebene öffnenBild von Ort öffnenTextdatei (UTF-8) öffnen_Von Ort öffnen..._Zuletzt geöffnetDialog um ein Bild zu öffnenDen Dialog zur Pinselauswahl öffnenDen Dialog zur Schriftauswahl öffnenDen Dialog zur Farbverlaufswahl öffnenDen Dialog zur Palettenauswahl öffnenDen Dialog zur Musterauswahl öffnenGewählten Eintrag entfernenÖffnen von '%s' schlug fehl: +abstand:Linienbreite:Linien_stil:Der für das Gitter verwendete Linienstil.LinearVerknüpftes ObjektÖffnenKurven öffnenWerte öffnenRechte Farbe laden von _HintergrundfarbeKurveneinstellungen aus Datei ladenWerte aus Datei ladenText aus Datei ladenVorschau wird geladen...Ort:LogarithmischLange StricheSuche nach ArbeitsdatenKanal absenkenKanel nach ganz unten absenkenKanel nach ganz unten absenkenEbene absenkenEbene nach ganz untenPfad absenkenPfad nach ganz unten absenkenPfad nach ganz _unten absenkenKanal absenkenKanel nach ganz unten absenkenEbene absenkenEbene nach ganz unten absenkenPfad absenkenPfad nach ganz unten absenkenVer_größern bzw. VerkleinernA_lleAuf Bildschirm _verschieben..._AbbildenMagentaMagenta:Vergrößern / Verkleinern_Transparent machenLadbare Module verwaltenGeschwindigkeit der laufenden _Ameisen:Maskendeckkraft:Maske aus _AuswahlMaske aus _invertierter AuswahlMatrix:Maximale Tiefe:Maximale Datei_größe für Vorschaubilder:Maximale Größe _neuer Bilder:Maximale Farbdifferenz_Maximaler Speicher für das Journal:Durchschnitt:Me_ssenAbstände und Winkel messenAbstände und Winkel messenMessen Sie die Lineale aus und tragen Sie die Längen unten ein.Median:MittelStricheNach un_ten vereinenNach unten vereinenEbenen vereinenFarbpalette vereinenSichtbare Ebenen vereinenSichtbare Pfade vereinenSichtbare _Ebenen vereinen...Sichtbare _Ebenen vereinen...Sichtbare Pfade vereinenEbenen vereinenFarbpalette vereinenPfade vereinenNachrichten-ProzedurenMeldung %d mal wiederholt.Meldung einmal wiederholt.Ausgabe erfolgt jetzt auf der Standard-Fehlerausgabe.MittenBenutzereinstellungen übernehmenMinimale Anzahl an _Journalschritten:VerschiedenesGehrungModusModus:Gewählte Farbe bearbeitenDie Farbwerte des gewählten Bereichs bearbeitenAlle Farben bearbeitenZeilenabstand verändernModulordnerModule verwaltenModulpfadModuleMousezeigerMausradMausradereignisseVerschiebenAnker verschiebenKanal verschiebenSchwebende Auswahl bewegenHilfslinie verschiebenHilfslinie verschieben: Ebene bewegenEbenenmaske bewegenPfad verschiebenAuswahl verschiebenTextebene verschiebenVerschiebewerkzeugObjekt verschiebenEbenen und Auswahlen verschiebenAuswahl verschiebenAktive Ebene verschiebenAktiven Pfad verschiebenDen gewählten Filter nach unten verschiebenDen gewählten Filter nach oben verschiebenAuf Bildschirm verschieben...Verschieben: Multiplikation_Anzahl der Farben:_NavigationNavi_gationsfensterGröße der _Navigationsvorschau:Name_Name:NavigationNeuer KanalFarbe für neuen KanalEinstellungen des neuen KanalsNeue Farbe aus _HintergrundNeue Farbe aus _VordergrundNeues BildNeue EbeneNeuer PfadEinstellungen des hinzuzufügenden PfadesNeue VorlageNeuer PinselNeuer KanalNeuer Kanal mit den aktuellen WertenNeuer Kanal...Neue Farbe aus HintergrundNeue Farbe aus VordergrundNeuer FarbverlaufNeu importiertNeue EbeneNeue Ebene mit den aktuellen WertenNeue Ebene..._Neue FarbpaletteNeuer Pfad mit den aktuellen WertenNeuer Pfad...Neues MusterNeue VektorenKeine Pinsel für dieses Werkzeug vorhanden.Kein Filter ausgewähltKeinen linearen Farbverlauf in »%s« gefundenNicht mehr verfügbarKeine Pfade in »%s« gefundenKeine Pfade in der Ablage gefundenFür diese Operation sind keine Muster vorhanden.Keine AuswahlKeine Auswahl zum Nachziehen.Keine VorschauNicht ausgerichtetKeineKeine (am schnellsten)NormalNormal (128x128)PunkteNormales FensterKeine reguläre DateiEs sind nicht genügend Ebenen als »Sichtbar« markiert, um den Vorgang »Sichtbare Ebenen vereinen« auszuführen. Es müssen mindestens zwei sein.Es sind nicht genügend Pfade als »Sichtbar« markiert, um den Vorgang »Sichtbare Pfade vereinen« auszuführen. Es müssen mindestens zwei sein.Zahl der zu verwendenden _Prozessoren:Anzahl der GitterlinienAnzahl der Ebenen:A_nders...VersatzKanal verschiebenEbene verschiebenEbene verschiebenEbenenmaske verschiebenVersatz um (x/_2),(y/2)Versatz:Auf FestplatteAuf Rechnern mit mehreren Prozessoren legt dieser Wert fest, wieviele Prozessoren GIMP gleichzeitig belegen soll (nur, falls GIMP mit --enable-mp kompiliert wurde).Nur im SpeicherAls _Ebene öffnen...DeckkraftDeckkraft:ÖffnenBild öffnenBild als Ebene öffnenBild von Ort öffnenTextdatei (UTF-8) öffnen_Von Ort öffnen..._Zuletzt geöffnetDialog um ein Bild zu öffnenDen Dialog zur Pinselauswahl öffnenDen Dialog zur Schriftauswahl öffnenDen Dialog zur Farbverlaufswahl öffnenDen Dialog zur Palettenauswahl öffnenDen Dialog zur Musterauswahl öffnenGewählten Eintrag öffnenÖffnen von '%s' schlug fehl: %s»%s« konnte nicht geöffnet werden: %sOptionen: Ursprung X:Ursprung Y:Ursprüngliche Breite:Anders (%s) ...UmrissZielwerteÃœberlagernPDB-Aufruffehler für Prozedur »%s«: @@ -417,7 +415,7 @@ %s Möglicherweise sind eines oder mehrere Textattribute fehlerhaft. Falls Sie die Textebene nicht bearbeiten, können Sie dies getrost ignorieren.ProzedurdatenbankProzedurdatenbankFortschrittPseudofarbenZweck:QualitätErkundenNeue Plugins werden abgefragtPlugin »%s« wird abgefragt -Schnelles LadenSchnelle MaskeAttribute der schnellen MaskeSchnelle Maske MenüSchnelles SpeichernQuickMaskGIMP beendenRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB FarbeRGB leerRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Rechts nach Links»%s« _nochmal anzeigenWerkzeugeinstellungen _zurücksetzenKanal _zurücksetzenFarbe _zurücksetzenBereich _zurücksetzenFarbe des _rechten Endpunktes...KreisförmigRadius:Kanal anhebenKanal nach ganz oben anhebenKanal nach ganz oben anhebenEbene anhebenEbene nach ganz obenPfad anhebenPfad nach ganz oben anhebenPfad nach ganz _oben anhebenKanal anhebenKanal nach ganz oben anhebenEbene anhebenEbene nach ganz oben anhebenPfad anhebenPfad nach ganz oben anhebenDie Ansichten dieses Bildes anhebenFenster in den Vordergrund bringen, falls es schon geöffnet istRateRate:Letzten Vorgang nochmal anzeigenMittelpunkte in Auswahl _zentrierenMittelpunkt des Segments _zentrierenPunkte _gleichmäßig im Segment verteilenPunkte _gleichmäßig in Auswahl verteilenGespeicherte Einstellungen _umbenennen»%s« _wiederholen_Zurücksetzen...Palette »%s« wird gelesen: Keine Grün-Komponente in Zeile %d.Farbpalette »%s« wird geladen: Falsche Anzahl von Spalten in Zeile %d. Benutze Standardwert.Palette »%s« wird gelesen: Keine Blau-Komponente in Zeile %d.Palette »%s« wird gelesen: Keine Rot-Komponente in Zeile %d.Palette »%s« wird gelesen: RGB-Wert in Zeile %d außerhalb des Wertebereiches.BereitMöchten Sie wirklich die Liste alter Operationen löschen?Die Neuzuweisung dieses Tastenkürzels wird es von »%s« entfernen._Vorschau neu erzeugenVorschau neu erzeugenRechteckige AuswahlRotRot:WiederholenDas Bild auf eine bestimmte Anzahl von Farben reduzierenDas Bild mittels eines Schwellwerts auf zwei Farben reduzierenPinsel neu ladenFarbverläufe n_eu ladenFarbpaletten n_eu ladenMuster n_eu ladenRegistriert_Momentan verwendetes Thema neu ladenA_lle Vorschaufenster neu ladenAlle Vorschaufenster neu ladenDas gewählte Werkzeug und Muster, die gewählte Farbe sowie den gewählten Pinsel über GIMP-Sitzungen hinweg merken.Entferntes BildKanal entfernen_Hängende Einträge entfernenSchwebende Auswahl entfernenHilfslinie entfernenEbene entfernenParasit entfernenParasit entfernenPfad entfernenEintrag _entfernenHängende Einträge entfernenSchwebende AuswahlParasit entfernenGewählten Eintrag entfernenDen gewählten Filter aus der Liste aktiver Filter entfernen.Entfernen des Tastenkürzels fehlgeschlagen.Kanal umbenennenEbene umbenennenPfad umbenennenGespeicherte Einstellungen umbenennenTextebene umbenennenObjekt umbenennenNachziehenKanalreihenfolge ändernEbenenreihenfolge ändernPfadreihenfolge ändernLetzten Vorgang wiederholenWiederholung:Auswahl ersetzenDuplizierenFarbverlauf-Segment duplizierenFarbverlauf-Auswahl duplizierenSegment duplizierenAuswahl duplizierenKanal zurücksetzenEbene zurücksetzenVektoren zurücksetzenSchriftenliste neu einlesenWerkzeugeinstellungen zurücksetzen_Alle Werkzeugeinstellungen zurücksetzen...Alle Filter zurücksetzen_Alle Filtereinstellungen zurücksetzen...Alle Werkzeugeinstellungen zurücksetzenDen gewählten Filter auf Vorgabewerte zurücksetzen.Auf Vorgabewerte zurücksetzenOrdnung & Sichtbarkeit der Werkzeuge wiederherstellenGröße ändernKanalgröße ändernBildgröße ändernEbenengröße ändernPfadgröße ändernTextebenengröße ändernBildgröße ändernBildgröße ändernFenstergröße beim _Vergrößern und Verkleinern anpassenFenstergröße anpassen, wenn sich die _Bildgröße ändertGröße verändern...Auflösung ändernAuflösung:RessourcenverbrauchRessourcenkonfigurationEinstellungen laden von...Stellt gespeicherte Tastenkürzel bei jedem Neustart von The Gimp wieder her.Bearbeiten auf Polygone beschränkenUmkehrenZurücksetzenWollen Sie von »%s« zu »%s« zurückkehren?Bild zurücksetzenBild konnte nicht zurückgesetzt werden, da kein Dateiname mit dem Bild verknüpft ist.Zurücksetzen von '%s' schlug fehl: +Schnelles LadenSchnelle MaskeAttribute der schnellen MaskeSchnelle Maske MenüSchnelles SpeichernQuickMaskGIMP beendenRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB FarbeRGB leerRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Rechts nach Links»%s« _nochmal anzeigenWerkzeugeinstellungen _zurücksetzenKanal _zurücksetzenFarbe _zurücksetzenBereich _zurücksetzenFarbe des _rechten Endpunktes...KreisförmigRadius:Kanal anhebenKanal nach ganz oben anhebenKanal nach ganz oben anhebenEbene anhebenEbene nach ganz obenPfad anhebenPfad nach ganz oben anhebenPfad nach ganz _oben anhebenKanal anhebenKanal nach ganz oben anhebenEbene anhebenEbene nach ganz oben anhebenPfad anhebenPfad nach ganz oben anhebenDie Ansichten dieses Bildes anhebenFenster in den Vordergrund bringen, falls es schon geöffnet istRateRate:Letzten Vorgang nochmal anzeigenMittelpunkte in Auswahl _zentrierenMittelpunkt des Segments _zentrierenPunkte _gleichmäßig im Segment verteilenPunkte _gleichmäßig in Auswahl verteilenGespeicherte Einstellungen _umbenennen»%s« _wiederholen_Zurücksetzen...Palette »%s« wird gelesen: Keine Grün-Komponente in Zeile %d.Farbpalette »%s« wird geladen: Falsche Anzahl von Spalten in Zeile %d. Benutze Standardwert.Palette »%s« wird gelesen: Keine Blau-Komponente in Zeile %d.Palette »%s« wird gelesen: Keine Rot-Komponente in Zeile %d.Palette »%s« wird gelesen: RGB-Wert in Zeile %d außerhalb des Wertebereiches.BereitMöchten Sie wirklich die Liste alter Operationen löschen?Die Neuzuweisung dieses Tastenkürzels wird es von »%s« entfernen._Vorschau neu erzeugenVorschau neu erzeugenRechteckige AuswahlRotRot:WiederholenDas Bild auf eine bestimmte Anzahl von Farben reduzierenDas Bild mittels eines Schwellwerts auf zwei Farben reduzierenPinsel neu ladenFarbverläufe n_eu ladenFarbpaletten n_eu ladenMuster n_eu ladenRegistriert_Momentan verwendetes Thema neu ladenA_lle Vorschaufenster neu ladenAlle Vorschaufenster neu ladenDas gewählte Werkzeug und Muster, die gewählte Farbe sowie den gewählten Pinsel über GIMP-Sitzungen hinweg merken.Entferntes BildKanal entfernen_Hängende Einträge entfernenSchwebende Auswahl entfernenHilfslinie entfernenEbene entfernenParasit entfernenParasit entfernenPfad entfernenEintrag _entfernenHängende Einträge entfernenSchwebende AuswahlObjekt entfernenParasit entfernenGewählten Eintrag entfernenDen gewählten Filter aus der Liste aktiver Filter entfernen.Entfernen des Tastenkürzels fehlgeschlagen.Kanal umbenennenEbene umbenennenPfad umbenennenGespeicherte Einstellungen umbenennenTextebene umbenennenObjekt umbenennenNachziehenKanalreihenfolge ändernEbenenreihenfolge ändernPfadreihenfolge ändernLetzten Vorgang wiederholenWiederholung:Auswahl ersetzenDuplizierenFarbverlauf-Segment duplizierenFarbverlauf-Auswahl duplizierenSegment duplizierenAuswahl duplizierenKanal zurücksetzenEbene zurücksetzenVektoren zurücksetzenSchriftenliste neu einlesenWerkzeugeinstellungen zurücksetzen_Alle Werkzeugeinstellungen zurücksetzen...Alle Filter zurücksetzen_Alle Filtereinstellungen zurücksetzen...Alle Werkzeugeinstellungen zurücksetzenDen gewählten Filter auf Vorgabewerte zurücksetzen.Auf Vorgabewerte zurücksetzenOrdnung & Sichtbarkeit der Werkzeuge wiederherstellenGröße ändernKanalgröße ändernBildgröße ändernEbenengröße ändernPfadgröße ändernTextebenengröße ändernBildgröße ändernBildgröße ändernFenstergröße beim _Vergrößern und Verkleinern anpassenFenstergröße anpassen, wenn sich die _Bildgröße ändertGröße verändern...Auflösung ändernAuflösung:RessourcenverbrauchRessourcenkonfigurationEinstellungen laden von...Stellt gespeicherte Tastenkürzel bei jedem Neustart von The Gimp wieder her.Bearbeiten auf Polygone beschränkenUmkehrenZurücksetzenWollen Sie von »%s« zu »%s« zurückkehren?Bild zurücksetzenBild konnte nicht zurückgesetzt werden, da kein Dateiname mit dem Bild verknüpft ist.Zurücksetzen von '%s' schlug fehl: %sFarbe des rechten EndpunktesRechtsbündigDrehen90° drehen (_links)90° drehen (_rechts)Kanal drehenEbene drehenPfad drehenTextebene drehen_180° drehenBild drehenEbene oder Auswahl drehenDrehe...DrehinformationenRundS_cheren_Gitter anzeigenVer_kleinern...S_pitzenFarben _vertauschenRechte Farbe s_peichern inAbtastgrößeVereinigung überprüfenSättg.:SättigungSpeichern»%s« als POV-Ray-Datei speichernKurven speichernFehlerprotokoll in Datei speichernBild speichernGerätestatus _jetzt speichernTastenkürzel _jetzt speichernWerte speichernWerkzeugeinstellungen speichernFensterpositionen _jetzt speichernAlle Fehler in Datei _speichern...Aus_wahl in Datei speichern...Speichern _unter..._Kopie speichern unter...Kopie des Bildes speichernAlle Fehler speichernAls _POV-Ray-Datei speichern...Als _Vorlage speichern...Speichert geänderte Tastenkürzel, wenn The Gimp beendet wird.Aktuelle Einstellungen in Datei speichernGerätestatus speichern»%s« als POV-Ray-Datei speichernAktuelle Werte in Datei speichernEinstellungen speichern als...Auswahl speichernAuswahl in Kanal speichernMöchten Sie die Änderungen am Bild »%s« vor dem Schließen speichern?Die Positionen und Größen der Hauptdialoge beim Beenden von GIMP speichern.In _Kanal speichernGespeicherte Einstellungen»%s« wird gespeichert '%s' konnte nicht gespeichert werden: @@ -442,7 +440,7 @@ Sie können die Ebene bearbeiten oder eine neue Text-Ebene mit denselben Text-Attributen erstellen.Der Name des Verzeichnisses mit der GIMP-Benutzerkonfiguration kann nicht inUTF-8 umgewandelt werden: %s Wahrscheinlich speichert Ihr Dateisystem Dateien in einer Kodierung anders als UTF-8 und dieser Zustand ist GLib nicht bekannt. Bitte setzen Sie die Umgebungsvariable G_FILENAME_ENCODING.Die Datei sessionrc wird verwendet, um zu speichern, welche Fenster beim Schließen von GIMP geöffnet waren. Sie können GIMP so konfigurieren, daß diese Dialoge beim Start an der gespeicherten Position wieder geöffnet werden.Das Vorschaubild im Bild-öffnen-Dialog wird automatisch aktualisiert, wenn die anzusehende Datei kleiner als die hier festgelegte Größe ist.Der Blockspeicher stellt sicher, dass The GimpDie Einheit des Koordinatensystems, wenn der Punkt-für-Punkt-Modus nicht aktiv ist.Die Datei unitrc wird dazu verwendet, Ihre Einheiten-Datenbank zu speichern. Sie können zusätzliche Einheiten definieren und sie wie die vordefinierten Einheiten wie Zoll, Millimeter, Punkt und Pica einsetzen. Diese Datei wird jedesmal überschrieben, wenn Sie GIMP beenden.Vertikale Auflösung des BildesDer für Dock-Fenster gesetzte Fenstertyp-Hint. Dies beeinflusst möglicherweise die Art, auf die Ihr Fenstermanager Dock-Fenster dekoriert und handhabt.Der für die Werkzeugkiste gesetzte Fenstertyp-Hint. Dies beeinflusst möglicherweise die Art, auf die Ihr Fenstermanager das Werkzeugkisten-Fenster dekoriert und handhabt.ThemaThemenordnerThemenEs sind %d Bilder mit ungespeicherten Änderungen geöffnet:Es sind nicht genügend Ebenen unter dieser Ebene als »Sichtbar« -markiert, um den Vorgang »Nach unten vereinen« auszuführen.Es gibt immer einen Zusammenhang zwischen Speicherbenutzung und Geschwindigkeit. In den meisten Fällen versucht The Gimp die Geschwindigkeit durch Verwendung des Zwischenspeichers zu erhöhen. Falls jedoch nicht ausreichend Zwischenspeicher bereitgestellt werden kann, sollten Sie diese Option auswählen.Es gibt weder eine aktive Ebene noch einen aktiven Kanal, die bzw. der kopiert werden kann.Es gibt weder eine aktive Ebene noch einen aktiven Kanal, aus der bzw. dem ausgeschnitten werden kann.Es gibt weder eine aktive Ebene noch einen aktiven Kanal, die bzw. der nachgezogen werden kannEs gibt weder eine aktive Ebene noch einen aktiven Kanal, die bzw. der nachgezogen werden kann.Kein Bild mit ungesicherten Änderungen vorhanden:Es sollte eine Datei namens »%s« vorhanden sein. Bitte überprüfen Sie Ihre Installation.Fehler beim Verarbeiten der Syntax Ihrer »%s«-Datei. Vorgabewerte werden verwendet. Unter »%s« wurde eine Sicherungskopie Ihrer Konfiguration gespeichert.Diese Datei enthält eine Sammlung von Standard-Mediengrößen, die als Bildvorlagen dienen.Dieser Ordner wird nach Bildvorlagen durchsucht.Dieser Ordner wird nach vom Benutzer installierten Themen durchsucht.Dieser Ordner wird verwendet, um benutzerdefinierte Schriften zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Schriftordner. Verwenden Sie diese Funktion ausschließlich, falls Sie GIMP-spezifische Schriften verwenden wollen. Legen Sie diese andernfalls im globalen Schriftordner ab.Dieser Ordner wird verwendet, um Parameter-Dateien für das Kurven-Werkzeug zu speichern.Dieser Ordner wird verwendet, um Parameter-Dateien für das Werte-Werkzeug zu speichern.Dieser Ordner wird verwendet, um Werkzeugeinstellungen +markiert, um den Vorgang »Nach unten vereinen« auszuführen.Es gibt immer einen Zusammenhang zwischen Speicherbenutzung und Geschwindigkeit. In den meisten Fällen versucht The Gimp die Geschwindigkeit durch Verwendung des Zwischenspeichers zu erhöhen. Falls jedoch nicht ausreichend Zwischenspeicher bereitgestellt werden kann, sollten Sie diese Option auswählen.Es gibt weder eine aktive Ebene noch einen aktiven Kanal, die bzw. der kopiert werden kann.Es gibt weder eine aktive Ebene noch einen aktiven Kanal, aus der bzw. dem ausgeschnitten werden kann.Es gibt weder eine aktive Ebene noch einen aktiven Kanal, die bzw. der nachgezogen werden kannEs gibt weder eine aktive Ebene noch einen aktiven Kanal, die bzw. der nachgezogen werden kann.Es ist ein Bild mit ungesicherten Änderungen geeöffnet:Es sollte eine Datei namens »%s« vorhanden sein. Bitte überprüfen Sie Ihre Installation.Fehler beim Verarbeiten der Syntax Ihrer »%s«-Datei. Vorgabewerte werden verwendet. Unter »%s« wurde eine Sicherungskopie Ihrer Konfiguration gespeichert.Diese Datei enthält eine Sammlung von Standard-Mediengrößen, die als Bildvorlagen dienen.Dieser Ordner wird nach Bildvorlagen durchsucht.Dieser Ordner wird nach vom Benutzer installierten Themen durchsucht.Dieser Ordner wird verwendet, um benutzerdefinierte Schriften zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Schriftordner. Verwenden Sie diese Funktion ausschließlich, falls Sie GIMP-spezifische Schriften verwenden wollen. Legen Sie diese andernfalls im globalen Schriftordner ab.Dieser Ordner wird verwendet, um Parameter-Dateien für das Kurven-Werkzeug zu speichern.Dieser Ordner wird verwendet, um Parameter-Dateien für das Werte-Werkzeug zu speichern.Dieser Ordner wird verwendet, um Werkzeugeinstellungen zu speichern.Dieser Ordner wird verwendet, um selbsterstellte Skripte zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Skriptordner.Dieser Ordner wird verwendet, um vom Benutzer erstellte, temporäre oder in anderer Weise nicht systemweit unterstützte DLL-Module zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Modulordner.Dieser Ordner wird verwendet, um selbsterstellte, temporäre oder in anderer Weise nicht systemweit unterstützte Erweiterungen der Plugin-Umgebung zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Umgebungsordner.Dieser Ordner wird verwendet, um selbsterstellte, temporäre oder in anderer Weise nicht systemweit unterstützte Plugins zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Plugin-Ordner.Dieser Ordner wird verwendet, um benutzerdefinierte Pinsel zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Pinselordner.Dieser Ordner wird verwendet, um benutzerdefinierte Farbverläufe zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Farbverlaufsordner.Dieser Ordner wird verwendet, um benutzerdefinierte Farbpaletten zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Palettenordner.Dieser Ordner wird verwendet, um benutzerdefinierte Füllmuster zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Musterordner.Dieser Ordner wird verwendet, um temporäre Bilddaten abzulegen, um so den Bedarf an Hauptspeicher zu verringern. Falls GIMP unsauber beendet wird, kann es passieren, das hier Dateien mit Namen wie gimp<#>.<#> zurückbleiben. Diese Dateien sind für eine andere GIMP-Sitzung nutzlos und können bedenkenlos gelöscht werden.Dieser Ordner wird eine Reihe von wichtigen Dateien enthalten. Wählen Sie eine der Dateien oder Ordner aus der Liste aus, um weitere Informationen zu erhalten.Innerhalb dieses Abstands in Pixeln ist das automatische Einrasten bei Hilfslinien und Rasterlinien aktiv.Die Veröffentlichung dieses Programms erfolgt in der Hoffnung, daß es Ihnen von Nutzen sein wird, aber OHNE JEDE GEWÄHRLEISTUNG - sogar ohne die implizite Gewährleistung der MARKTREIFE oder der EIGNUNG FÃœR EINEN BESTIMMTEN ZWECK. Details finden Sie in der GNU General Public License.Dieses Programm ist freie Software. Sie können es unter den Bedingungen der GNU General Public License, wie von der Free Software Foundation herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 der Lizenz oder (wenn Sie es wünschen) jeder späteren Version.Dieses Eingabefeld ist auf %d Zeichen beschränkt.Dieses Werkzeug verfügt über keine Einstellungsmöglichkeiten.Dieses Fenster hat %d offene Reiter. Das Schließen dieses Fensters wird auch diese schließen.SchwellwertSchwellwert funktioniert nicht mit indizierten Ebenen.Schwelle:Vorschau %d von %dGröße des gesamten _Speichers:Größe des Datenspeichers:Neigung:WinzigTitel und StatusNac_h PfadUm ein Tastenkürzel zu konfigurieren, klicken Sie auf die entsprechende Zeile und geben Sie dann ein neues Tastenkürzel ein oder drücken Sie die Rücktaste, um es zu löschen.Viel SpassSchnelle Maske aktivieren/deaktivieren_Schnelle Maske aktivieren/deaktivierenZu viele Fehlermeldungen!WerkzeugeinstellungenWerkzeugmenüWerkzeug-Modus %sWerkzeug_einstellungenWerkzeug-SymbolWerkzeug-Symbol mit Fadenkreuz_WerkzeugfensterWerkzeugfensterWerkzeugfenstermenüWerkzeugeWerkzeugfenstermenüWerzeuge wie die unscharfe Auswahl und Ausfüllen erkennen Regionen mit Hilfe eines Ähnlichkeitsalgorithmus. Die Erkennung beginnt am ausgwählten Pixel und setzt sich nach allen Seiten solange fort, bis der Farbunterschied eines Pixels vom Ausgangspixel größer ist, als ein zuvor festgelegter Wert. Dieser Wert repräsentiert den Vorgabeschwellwert.Tr_ansparenzAlpha in Maske übernehmenTransformationKanal transformierenTransformationsrichtungEbene transformierenPfad transformierenTextebene transformierenTransformwerkzeug ProzedurenEbene transformierenPfad transformierenAuswahl transformierenTransformationTransformationswerkzeug ProzedurenTransformiere...Ãœbersetzung vonTransparenzTransparenz_typ:DreieckswelleEchtfarbenTypTyp %sBitte geben Sie ein neues Tastenkürzel einNeues Tastenkürzel eingeben oder die Rücktaste drücken, um es zu löschenEs konnte keine Ebenenenmaske hinzugefügt werden, da diese Ebene bereits eine Maske hat.Ausschneiden oder Kopieren fehlgeschlagen, da der ausgewählte Bereich leer ist.Es konnte testweise keine Auslangerungsdatei geöffnet werden. Um einen Datenverlust zu vermeiden überprüfen Sie bitte den Ort und die Zugriffsrechte des Auslagerungsverzeichnis welches in Ihren Einstellungen angegeben ist .(derzeit »%s«)Die Auslagerungsdatei konnte nicht geöffnet werden. Der Speicher für The Gimp hat sich erschöpft und es kann keine Auslagerungsdatei verwendet werden. Einige Elemente Ihres Bildes könnten verloren gehen. Versuchen Sie Ihre Arbeit unter einem anderen Dateinamen abzuspeichern, starten Sie anschließend The Gimp neu und überprüfen Sie den Ort Ihres Auslagerungsverzeichnisses in den Einstellungen.%s Rückfrage konnte nicht ausgeführt werden. Möglicherweise ist das ensprechende Plugin abgestürzt.Nicht definiertRückgängigJournal_JournalEinheitenUnbekanntUnbekannter DateitypUnbekannter Palettendateityp: %sEntladenNamenlosNamenlos»_Punkt für Punkt« als Vorgabe verwendenDynamische _Tastenkürzel benutzenStattdessen Internet-Browser verwendenBeim Verkleinern der Auswahl alle sichtbaren Ebenen verwendenSchwarz/Weiß-Palette (1-Bit) verwendenFarbe aus FarbverlaufEigene Palette verwendenInfo-Fenster verwendenInternet-optimierte Palette verwendenBenutzerinstallation LogbuchBenutzeroberflächeWerkzeug FensterWertWert:VektormodusVersion %s wurde Euch gebracht vonVersion:VertikalVertikaler Versatz der ersten Gitterlinie; dies darf eine negative Zahl sein.Vertikaler Abstand der Gitterlinien.Sehr großSehr kleinAnsichtAls _Raster anzeigenAls _Liste anzeigenAls Raster anzeigenAls Liste anzeigenVisuelle Klasse:Visuelle Tiefe:Warnung: Daten konnten nicht geladen werden: %sWarnung: Daten konnten nicht gespeichert werden: diff -uraN gimp-2.2.7/po/de.po gimp-2.2.8/po/de.po --- gimp-2.2.7/po/de.po 2005-05-03 13:30:54.000000000 +0200 +++ gimp-2.2.8/po/de.po 2005-06-23 19:00:08.000000000 +0200 @@ -7,25 +7,25 @@ # Roman Joost # Hendrik Brandt , 2004. # Sven Neumann , 2004. -# +# Hendrik Richter , 2005. # msgid "" msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-01-28 18:35+0100\n" -"PO-Revision-Date: 2005-04-29 12:35+0200\n" -"Last-Translator: Sven Neumann \n" +"POT-Creation-Date: 2005-06-18 02:39+0200\n" +"PO-Revision-Date: 2005-06-21 19:47+0200\n" +"Last-Translator: Hendrik Richter \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: app/app_procs.c:144 +#: ../app/app_procs.c:144 msgid "(This console window will close in ten seconds)\n" msgstr "(Dieses Konsolenfenster wird in zehn Sekunden geschlossen)\n" -#: app/app_procs.c:238 +#: ../app/app_procs.c:239 msgid "" "GIMP is not properly installed for the current user.\n" "User installation was skipped because the '--no-interface' flag was used.\n" @@ -37,7 +37,7 @@ "Starten Sie GIMP ohne die Option »--nointerface«, um die " "Benutzerinstallation durchzuführen." -#: app/app_procs.c:289 +#: ../app/app_procs.c:290 #, c-format msgid "" "Unable to open a test swap file. To avoid data loss please check the " @@ -49,19 +49,19 @@ "Zugriffsrechte des Auslagerungsverzeichnis welches in Ihren Einstellungen " "angegeben ist .(derzeit »%s«)" -#: app/app_procs.c:348 app/core/gimppalette-import.c:441 +#: ../app/app_procs.c:349 ../app/core/gimppalette-import.c:441 #, c-format msgid "Opening '%s' failed: %s" msgstr "»%s« konnte nicht geöffnet werden: %s" -#: app/batch.c:84 app/batch.c:101 +#: ../app/batch.c:84 ../app/batch.c:101 #, c-format msgid "The batch interpreter '%s' is not available, batch mode disabled." msgstr "" "Der Interpreter »%s« ist nicht verfügbar, der Stapelverarbeitungsmodus wurde " "deaktiviert." -#: app/main.c:211 +#: ../app/main.c:211 msgid "" "GIMP could not initialize the graphical user interface.\n" "Make sure a proper setup for your display environment exists." @@ -69,15 +69,15 @@ "GIMP konnte die grafische Benutzeroberfläche nicht initialisieren.\n" "Stellen Sie sicher, dass Ihre Anzeige korrekt eingerichtet ist." -#: app/main.c:222 app/widgets/gimptoolbox.c:559 -#: data/misc/gimp.desktop.in.in.h:3 +#: ../app/main.c:222 ../app/widgets/gimptoolbox.c:559 +#: ../data/misc/gimp.desktop.in.in.h:3 msgid "The GIMP" msgstr "The GIMP" #. #. * anything else starting with a '-' is an error. #. -#: app/main.c:422 +#: ../app/main.c:422 #, c-format msgid "" "\n" @@ -86,11 +86,11 @@ "\n" "Ungültige Option »%s«\n" -#: app/main.c:501 +#: ../app/main.c:501 msgid "GIMP version" msgstr "GIMP-Version" -#: app/main.c:509 +#: ../app/main.c:509 #, c-format msgid "" "\n" @@ -101,23 +101,23 @@ "Verwendung: %s [Option ...] [Datei ...]\n" "\n" -#: app/main.c:511 +#: ../app/main.c:511 msgid "Options:\n" msgstr "Optionen:\n" -#: app/main.c:512 +#: ../app/main.c:512 msgid " -h, --help Output this help.\n" msgstr " -h, --help Diese Hilfe ausgeben.\n" -#: app/main.c:513 +#: ../app/main.c:513 msgid " -v, --version Output version information.\n" msgstr " -v, --version Versionsinformationen ausgeben.\n" -#: app/main.c:514 +#: ../app/main.c:514 msgid " --verbose Show startup messages.\n" msgstr " --verbose Startmeldungen ausgeben.\n" -#: app/main.c:515 +#: ../app/main.c:515 msgid "" " --no-shm Do not use shared memory between GIMP and " "plugins.\n" @@ -125,13 +125,13 @@ " --no-shm Kein geteilter Speicher zwischen GIMP und " "Plugins.\n" -#: app/main.c:516 +#: ../app/main.c:516 msgid " --no-cpu-accel Do not use special CPU accelerations.\n" msgstr "" " --no-no-cpu-accel Keine speziellen Prozessorbeschleunigungen " "verwenden.\n" -#: app/main.c:517 +#: ../app/main.c:517 msgid "" " -d, --no-data Do not load brushes, gradients, palettes, " "patterns.\n" @@ -139,43 +139,43 @@ " -d, --no-data Keine Muster, Farbverläufe, Farbpaletten und " "Pinsel laden.\n" -#: app/main.c:518 +#: ../app/main.c:518 msgid " -f, --no-fonts Do not load any fonts.\n" msgstr " -f, --no-fonts Keine Schriftarten laden.\n" -#: app/main.c:519 +#: ../app/main.c:519 msgid " -i, --no-interface Run without a user interface.\n" msgstr " -i, --no-interface Ohne Benutzeroberfläche starten.\n" -#: app/main.c:520 +#: ../app/main.c:520 msgid " --display Use the designated X display.\n" msgstr " --display Benutzt die angegebene X Anzeige.\n" -#: app/main.c:521 +#: ../app/main.c:521 msgid " -s, --no-splash Do not show the startup window.\n" msgstr " -s, --no-splash Kein Startfenster anzeigen.\n" -#: app/main.c:522 +#: ../app/main.c:522 msgid " --session Use an alternate sessionrc file.\n" msgstr "" " --session Ein alternatives Sitzungsprofil verwenden.\n" -#: app/main.c:523 +#: ../app/main.c:523 msgid " -g, --gimprc Use an alternate gimprc file.\n" msgstr " -g, --gimprc Ein alternatives gimprc-Profil verwenden.\n" -#: app/main.c:524 +#: ../app/main.c:524 msgid " --system-gimprc Use an alternate system gimprc file.\n" msgstr " --system-gimprc Ein alternatives Systemprofil verwenden.\n" -#: app/main.c:525 +#: ../app/main.c:525 msgid "" " --dump-gimprc Output a gimprc file with default settings.\n" msgstr "" " --dump-gimprc Eine gimprc-Datei mit Vorgabeeinstellungen " "ausgeben.\n" -#: app/main.c:526 +#: ../app/main.c:526 msgid "" " -c, --console-messages Display warnings to console instead of a dialog " "box.\n" @@ -183,14 +183,14 @@ " -c, --console-messages Warnungen auf der Kommandozeile statt in einem " "Dialog ausgeben.\n" -#: app/main.c:527 +#: ../app/main.c:527 msgid "" " --debug-handlers Enable non-fatal debugging signal handlers.\n" msgstr "" " --debug-handlers Aktiviert Fehlersuchroutinen für nicht-" "schwerwiegende Signale.\n" -#: app/main.c:528 +#: ../app/main.c:528 msgid "" " --stack-trace-mode \n" " Debugging mode for fatal signals.\n" @@ -199,7 +199,7 @@ " Fehlerdiagnose-Modus bei schwerwiegenden " "Signalen.\n" -#: app/main.c:530 +#: ../app/main.c:530 msgid "" " --pdb-compat-mode \n" " Procedural Database compatibility mode.\n" @@ -207,7 +207,7 @@ " --pdb-compat-mode \n" " Prozeduraler Datenbank-Kompatibilitätsmodus.\n" -#: app/main.c:532 +#: ../app/main.c:532 msgid "" " --batch-interpreter \n" " The procedure to process batch commands with.\n" @@ -215,12 +215,12 @@ " --batch-interpreter \n" " Die Prozedur um Stapelverarbeitung auszuführen.\n" -#: app/main.c:534 +#: ../app/main.c:534 msgid " -b, --batch Process commands in batch mode.\n" msgstr "" " -b, --batch Befehle im Stapelverarbeitungsmodus ausführen.\n" -#: app/sanity.c:194 +#: ../app/sanity.c:194 #, c-format msgid "" "The configured filename encoding cannot be converted to UTF-8: %s\n" @@ -232,7 +232,7 @@ "\n" "Bitte überprüfen Sie den Wert der Umgebungsvariable G_FILENAME_ENCODING." -#: app/sanity.c:213 +#: ../app/sanity.c:213 #, c-format msgid "" "The name of the directory holding the GIMP user configuration cannot be " @@ -250,806 +250,818 @@ "Umgebungsvariable G_FILENAME_ENCODING." #. initialize the list of gimp brushes -#: app/actions/actions.c:93 app/core/gimp.c:856 app/dialogs/dialogs.c:138 -#: app/dialogs/preferences-dialog.c:2297 app/pdb/internal_procs.c:92 +#: ../app/actions/actions.c:94 ../app/core/gimp.c:856 +#: ../app/dialogs/dialogs.c:138 ../app/dialogs/preferences-dialog.c:2297 +#: ../app/pdb/internal_procs.c:92 msgid "Brushes" msgstr "Pinsel" -#: app/actions/actions.c:96 app/dialogs/dialogs.c:150 +#: ../app/actions/actions.c:97 ../app/dialogs/dialogs.c:150 msgid "Buffers" msgstr "Ablagen" -#: app/actions/actions.c:99 app/dialogs/dialogs.c:163 +#: ../app/actions/actions.c:100 ../app/dialogs/dialogs.c:163 msgid "Channels" msgstr "Kanäle" -#: app/actions/actions.c:102 +#: ../app/actions/actions.c:103 msgid "Colormap Editor" msgstr "Farbtabelleneditor" -#: app/actions/actions.c:105 app/pdb/internal_procs.c:101 +#: ../app/actions/actions.c:106 ../app/pdb/internal_procs.c:101 msgid "Context" msgstr "Kontext" -#: app/actions/actions.c:108 +#: ../app/actions/actions.c:109 msgid "Debug" msgstr "Fehlersuche" -#: app/actions/actions.c:111 +#: ../app/actions/actions.c:112 msgid "Dialogs" msgstr "Dialoge" -#: app/actions/actions.c:114 +#: ../app/actions/actions.c:115 msgid "Dockable" msgstr "Andockbar" -#: app/actions/actions.c:117 app/dialogs/dialogs.c:152 +#: ../app/actions/actions.c:118 ../app/dialogs/dialogs.c:152 msgid "Document History" msgstr "Dokumentenindex" -#: app/actions/actions.c:120 app/core/core-enums.c:1041 -#: app/core/core-enums.c:1071 +#: ../app/actions/actions.c:121 ../app/core/core-enums.c:1043 +#: ../app/core/core-enums.c:1073 msgid "Drawable" msgstr "Bild" -#: app/actions/actions.c:123 app/tools/tools-enums.c:144 +#: ../app/actions/actions.c:124 ../app/tools/tools-enums.c:144 msgid "Edit" msgstr "Bearbeiten" -#: app/actions/actions.c:126 app/dialogs/dialogs.c:131 +#: ../app/actions/actions.c:127 ../app/dialogs/dialogs.c:131 msgid "Error Console" msgstr "Fehlerkonsole" -#: app/actions/actions.c:129 +#: ../app/actions/actions.c:130 msgid "File" msgstr "_Datei" #. initialize the list of gimp fonts -#: app/actions/actions.c:132 app/core/gimp.c:872 app/dialogs/dialogs.c:146 -#: app/dialogs/preferences-dialog.c:2313 app/pdb/internal_procs.c:128 +#: ../app/actions/actions.c:133 ../app/core/gimp.c:872 +#: ../app/dialogs/dialogs.c:146 ../app/dialogs/preferences-dialog.c:2313 +#: ../app/pdb/internal_procs.c:128 msgid "Fonts" msgstr "Schriften" -#: app/actions/actions.c:135 app/dialogs/dialogs.c:205 +#: ../app/actions/actions.c:136 ../app/dialogs/dialogs.c:205 msgid "Gradient Editor" msgstr "Farbverlaufseditor" #. initialize the list of gimp gradients -#: app/actions/actions.c:138 app/core/gimp.c:868 app/dialogs/dialogs.c:142 -#: app/dialogs/preferences-dialog.c:2309 app/pdb/internal_procs.c:140 +#: ../app/actions/actions.c:139 ../app/core/gimp.c:868 +#: ../app/dialogs/dialogs.c:142 ../app/dialogs/preferences-dialog.c:2309 +#: ../app/pdb/internal_procs.c:140 msgid "Gradients" msgstr "Farbverläufe" -#: app/actions/actions.c:141 +#: ../app/actions/actions.c:142 msgid "Help" msgstr "Hilfe" -#: app/actions/actions.c:144 app/pdb/internal_procs.c:149 -#: app/tools/tools-enums.c:176 +#: ../app/actions/actions.c:145 ../app/pdb/internal_procs.c:149 +#: ../app/tools/tools-enums.c:176 msgid "Image" msgstr "Bild" #. list & grid views -#: app/actions/actions.c:147 app/dialogs/dialogs.c:136 +#: ../app/actions/actions.c:148 ../app/dialogs/dialogs.c:136 msgid "Images" msgstr "Bilder" -#: app/actions/actions.c:150 app/dialogs/dialogs.c:159 +#: ../app/actions/actions.c:151 ../app/dialogs/dialogs.c:159 msgid "Layers" msgstr "Ebenen" -#: app/actions/actions.c:153 app/dialogs/dialogs.c:209 +#: ../app/actions/actions.c:154 ../app/dialogs/dialogs.c:209 msgid "Palette Editor" msgstr "Farbpaletteneditor" #. initialize the list of gimp palettes -#: app/actions/actions.c:156 app/core/gimp.c:864 app/dialogs/dialogs.c:144 -#: app/dialogs/preferences-dialog.c:2305 app/pdb/internal_procs.c:170 +#: ../app/actions/actions.c:157 ../app/core/gimp.c:864 +#: ../app/dialogs/dialogs.c:144 ../app/dialogs/preferences-dialog.c:2305 +#: ../app/pdb/internal_procs.c:170 msgid "Palettes" msgstr "Farbpaletten" #. initialize the list of gimp patterns -#: app/actions/actions.c:159 app/core/gimp.c:860 app/dialogs/dialogs.c:140 -#: app/dialogs/preferences-dialog.c:2301 app/pdb/internal_procs.c:185 +#: ../app/actions/actions.c:160 ../app/core/gimp.c:860 +#: ../app/dialogs/dialogs.c:140 ../app/dialogs/preferences-dialog.c:2301 +#: ../app/pdb/internal_procs.c:185 msgid "Patterns" msgstr "Muster" -#: app/actions/actions.c:162 app/dialogs/preferences-dialog.c:2317 +#: ../app/actions/actions.c:163 ../app/dialogs/preferences-dialog.c:2317 msgid "Plug-Ins" msgstr "Plugins" -#: app/actions/actions.c:165 +#: ../app/actions/actions.c:166 msgid "QuickMask" msgstr "QuickMask" -#: app/actions/actions.c:168 +#: ../app/actions/actions.c:169 msgid "Select" msgstr "Auswählen" #. initialize the template list -#: app/actions/actions.c:171 app/core/gimp.c:880 app/dialogs/dialogs.c:154 +#: ../app/actions/actions.c:172 ../app/core/gimp.c:880 +#: ../app/dialogs/dialogs.c:154 msgid "Templates" msgstr "Vorlagen" -#: app/actions/actions.c:174 +#: ../app/actions/actions.c:175 msgid "Text Editor" msgstr "Text Editor" -#: app/actions/actions.c:177 app/dialogs/dialogs.c:123 -#: app/dialogs/preferences-dialog.c:1585 app/dialogs/preferences-dialog.c:1588 -#: app/gui/gui.c:410 +#: ../app/actions/actions.c:178 ../app/dialogs/dialogs.c:123 +#: ../app/dialogs/preferences-dialog.c:1585 +#: ../app/dialogs/preferences-dialog.c:1588 ../app/gui/gui.c:410 msgid "Tool Options" msgstr "Werkzeugeinstellungen" -#: app/actions/actions.c:180 app/dialogs/dialogs.c:148 +#: ../app/actions/actions.c:181 ../app/dialogs/dialogs.c:148 msgid "Tools" msgstr "Werkzeuge" -#: app/actions/actions.c:183 app/dialogs/dialogs.c:167 -#: app/pdb/internal_procs.c:176 app/tools/gimpvectortool.c:160 +#: ../app/actions/actions.c:184 ../app/dialogs/dialogs.c:167 +#: ../app/pdb/internal_procs.c:176 ../app/tools/gimpvectortool.c:160 msgid "Paths" msgstr "Pfade" -#: app/actions/actions.c:186 +#: ../app/actions/actions.c:187 msgid "View" msgstr "Ansicht" -#: app/actions/brushes-actions.c:43 +#: ../app/actions/brushes-actions.c:43 msgid "Brushes Menu" msgstr "Pinselmenü" -#: app/actions/brushes-actions.c:47 +#: ../app/actions/brushes-actions.c:47 msgid "_New Brush" msgstr "_Neuer Pinsel" -#: app/actions/brushes-actions.c:48 +#: ../app/actions/brushes-actions.c:48 msgid "New brush" msgstr "Neuer Pinsel" -#: app/actions/brushes-actions.c:53 +#: ../app/actions/brushes-actions.c:53 msgid "D_uplicate Brush" msgstr "Pinsel _duplizieren" -#: app/actions/brushes-actions.c:54 +#: ../app/actions/brushes-actions.c:54 msgid "Duplicate brush" msgstr "Pinsel duplizieren" -#: app/actions/brushes-actions.c:59 +#: ../app/actions/brushes-actions.c:59 msgid "_Delete Brush" msgstr "Pinsel _löschen" -#: app/actions/brushes-actions.c:60 +#: ../app/actions/brushes-actions.c:60 msgid "Delete brush" msgstr "Pinsel löschen" -#: app/actions/brushes-actions.c:65 +#: ../app/actions/brushes-actions.c:65 msgid "_Refresh Brushes" msgstr "Pinsel n_eu laden" -#: app/actions/brushes-actions.c:66 +#: ../app/actions/brushes-actions.c:66 msgid "Refresh brushes" msgstr "Pinsel neu laden" -#: app/actions/brushes-actions.c:74 +#: ../app/actions/brushes-actions.c:74 msgid "_Edit Brush..." msgstr "Pinsel _bearbeiten..." -#: app/actions/brushes-actions.c:75 +#: ../app/actions/brushes-actions.c:75 msgid "Edit brush" msgstr "Pinsel bearbeiten..." -#: app/actions/buffers-actions.c:42 +#: ../app/actions/buffers-actions.c:42 msgid "Buffers Menu" msgstr "Ablagemenü" -#: app/actions/buffers-actions.c:46 +#: ../app/actions/buffers-actions.c:46 msgid "_Paste Buffer" msgstr "Ablage e_infügen" -#: app/actions/buffers-actions.c:47 +#: ../app/actions/buffers-actions.c:47 msgid "Paste the selected buffer" msgstr "Ausgewählte Ablage einfügen." -#: app/actions/buffers-actions.c:52 +#: ../app/actions/buffers-actions.c:52 msgid "Paste Buffer _Into" msgstr "Ablage ein_fügen in" -#: app/actions/buffers-actions.c:53 +#: ../app/actions/buffers-actions.c:53 msgid "Paste the selected buffer into the selection" msgstr "Gewählte Ablage in Auswahl einfügen" -#: app/actions/buffers-actions.c:58 +#: ../app/actions/buffers-actions.c:58 msgid "Paste Buffer as _New" msgstr "Ablage als _neues Bild einfügen" -#: app/actions/buffers-actions.c:59 +#: ../app/actions/buffers-actions.c:59 msgid "Paste the selected buffer as new image" msgstr "Neues Bild aus gewählte Ablage erstellen." -#: app/actions/buffers-actions.c:64 +#: ../app/actions/buffers-actions.c:64 msgid "_Delete Buffer" msgstr "Ablage _löschen" -#: app/actions/buffers-actions.c:65 +#: ../app/actions/buffers-actions.c:65 msgid "Delete the selected buffer" msgstr "Die gewählten Ablage löschen" -#: app/actions/channels-actions.c:44 +#: ../app/actions/channels-actions.c:44 msgid "Channels Menu" msgstr "Kanalmenü" -#: app/actions/channels-actions.c:48 +#: ../app/actions/channels-actions.c:48 msgid "_Edit Channel Attributes..." msgstr "Kanalei_genschaften..." -#: app/actions/channels-actions.c:49 +#: ../app/actions/channels-actions.c:49 msgid "Edit channel attributes" msgstr "Kanaleigenschaften bearbeiten" -#: app/actions/channels-actions.c:54 +#: ../app/actions/channels-actions.c:54 msgid "_New Channel..." msgstr "_Neuer Kanal..." -#: app/actions/channels-actions.c:55 +#: ../app/actions/channels-actions.c:55 msgid "New channel..." msgstr "Neuer Kanal..." -#: app/actions/channels-actions.c:60 +#: ../app/actions/channels-actions.c:60 msgid "_New Channel" msgstr "_Neuer Kanal" -#: app/actions/channels-actions.c:61 +#: ../app/actions/channels-actions.c:61 msgid "New channel with last values" msgstr "Neuer Kanal mit den aktuellen Werten" -#: app/actions/channels-actions.c:66 +#: ../app/actions/channels-actions.c:66 msgid "D_uplicate Channel" msgstr "Kanal _duplizieren" -#: app/actions/channels-actions.c:67 +#: ../app/actions/channels-actions.c:67 msgid "Duplicate channel" msgstr "Kanal duplizieren" -#: app/actions/channels-actions.c:72 +#: ../app/actions/channels-actions.c:72 msgid "_Delete Channel" msgstr "Kanal _löschen" -#: app/actions/channels-actions.c:73 app/core/core-enums.c:1089 +#: ../app/actions/channels-actions.c:73 ../app/core/core-enums.c:1091 msgid "Delete channel" msgstr "Kanal löschen" -#: app/actions/channels-actions.c:78 +#: ../app/actions/channels-actions.c:78 msgid "_Raise Channel" msgstr "Kanal _anheben" -#: app/actions/channels-actions.c:79 +#: ../app/actions/channels-actions.c:79 msgid "Raise channel" msgstr "Kanal anheben" -#: app/actions/channels-actions.c:84 +#: ../app/actions/channels-actions.c:84 msgid "Raise Channel to _Top" msgstr "Kanal nach ganz oben anheben" -#: app/actions/channels-actions.c:85 +#: ../app/actions/channels-actions.c:85 msgid "Raise channel to top" msgstr "Kanal nach ganz oben anheben" -#: app/actions/channels-actions.c:90 +#: ../app/actions/channels-actions.c:90 msgid "_Lower Channel" msgstr "Kanal a_bsenken" -#: app/actions/channels-actions.c:91 +#: ../app/actions/channels-actions.c:91 msgid "Lower channel" msgstr "Kanal absenken" -#: app/actions/channels-actions.c:96 +#: ../app/actions/channels-actions.c:96 msgid "Lower Channel to _Bottom" msgstr "Kanel nach ganz unten absenken" -#: app/actions/channels-actions.c:97 +#: ../app/actions/channels-actions.c:97 msgid "Lower channel to bottom" msgstr "Kanel nach ganz unten absenken" -#: app/actions/channels-actions.c:105 +#: ../app/actions/channels-actions.c:105 msgid "Channel to Sele_ction" msgstr "Aus_wahl aus Kanal" -#: app/actions/channels-actions.c:106 +#: ../app/actions/channels-actions.c:106 msgid "Channel to selection" msgstr "Auswahl aus Kanal erstellen" -#: app/actions/channels-actions.c:111 app/actions/layers-actions.c:226 -#: app/actions/vectors-actions.c:173 +#: ../app/actions/channels-actions.c:111 ../app/actions/layers-actions.c:226 +#: ../app/actions/vectors-actions.c:173 msgid "_Add to Selection" msgstr "Zur Auswahl _hinzufügen" -#: app/actions/channels-actions.c:112 app/actions/vectors-actions.c:174 +#: ../app/actions/channels-actions.c:112 ../app/actions/vectors-actions.c:174 msgid "Add" msgstr "Hinzufügen" -#: app/actions/channels-actions.c:117 app/actions/layers-actions.c:231 -#: app/actions/layers-actions.c:254 app/actions/vectors-actions.c:179 +#: ../app/actions/channels-actions.c:117 ../app/actions/layers-actions.c:231 +#: ../app/actions/layers-actions.c:254 ../app/actions/vectors-actions.c:179 msgid "_Subtract from Selection" msgstr "Von Auswahl ab_ziehen" -#: app/actions/channels-actions.c:118 app/actions/vectors-actions.c:180 -#: app/widgets/gimpwidgets-constructors.c:69 -#: app/widgets/gimpwidgets-constructors.c:102 +#: ../app/actions/channels-actions.c:118 ../app/actions/vectors-actions.c:180 +#: ../app/widgets/gimpwidgets-constructors.c:69 +#: ../app/widgets/gimpwidgets-constructors.c:102 msgid "Subtract" msgstr "Subtraktion" -#: app/actions/channels-actions.c:123 app/actions/layers-actions.c:236 -#: app/actions/layers-actions.c:259 app/actions/vectors-actions.c:185 +#: ../app/actions/channels-actions.c:123 ../app/actions/layers-actions.c:236 +#: ../app/actions/layers-actions.c:259 ../app/actions/vectors-actions.c:185 msgid "_Intersect with Selection" msgstr "Schnittmenge _bilden" -#: app/actions/channels-actions.c:124 app/actions/vectors-actions.c:186 +#: ../app/actions/channels-actions.c:124 ../app/actions/vectors-actions.c:186 msgid "Intersect" msgstr "Ãœberkreuzen" -#: app/actions/channels-commands.c:86 app/actions/channels-commands.c:383 +#: ../app/actions/channels-commands.c:86 +#: ../app/actions/channels-commands.c:383 msgid "Channel Attributes" msgstr "Kanaleigenschaften" -#: app/actions/channels-commands.c:89 +#: ../app/actions/channels-commands.c:89 msgid "Edit Channel Attributes" msgstr "Kanaleigenschaften bearbeiten" -#: app/actions/channels-commands.c:91 +#: ../app/actions/channels-commands.c:91 msgid "Edit Channel Color" msgstr "Kanalfarbe bearbeiten" -#: app/actions/channels-commands.c:92 app/actions/channels-commands.c:124 +#: ../app/actions/channels-commands.c:92 +#: ../app/actions/channels-commands.c:124 msgid "Fill Opacity:" msgstr "Deckkraft:" -#: app/actions/channels-commands.c:117 app/actions/channels-commands.c:118 -#: app/actions/channels-commands.c:159 app/actions/channels-commands.c:163 -#: app/widgets/gimpchanneltreeview.c:256 +#: ../app/actions/channels-commands.c:117 +#: ../app/actions/channels-commands.c:118 +#: ../app/actions/channels-commands.c:159 +#: ../app/actions/channels-commands.c:163 +#: ../app/widgets/gimpchanneltreeview.c:256 msgid "New Channel" msgstr "Neuer Kanal" -#: app/actions/channels-commands.c:121 +#: ../app/actions/channels-commands.c:121 msgid "New Channel Options" msgstr "Einstellungen des neuen Kanals" -#: app/actions/channels-commands.c:123 +#: ../app/actions/channels-commands.c:123 msgid "New Channel Color" msgstr "Farbe für neuen Kanal" -#: app/actions/channels-commands.c:246 +#: ../app/actions/channels-commands.c:246 #, c-format msgid "%s Channel Copy" msgstr "Kanal-Kopie (%s)" -#: app/actions/channels-commands.c:311 app/core/gimpselection.c:595 -#: app/pdb/selection_cmds.c:921 app/pdb/selection_cmds.c:1045 +#: ../app/actions/channels-commands.c:311 ../app/core/gimpselection.c:595 +#: ../app/pdb/selection_cmds.c:921 ../app/pdb/selection_cmds.c:1045 msgid "Channel to Selection" msgstr "Auswahl aus Kanal" -#: app/actions/colormap-editor-actions.c:43 +#: ../app/actions/colormap-editor-actions.c:43 msgid "Colormap Menu" msgstr "Farbtabellenmenü" -#: app/actions/colormap-editor-actions.c:47 -#: app/actions/palette-editor-actions.c:47 +#: ../app/actions/colormap-editor-actions.c:47 +#: ../app/actions/palette-editor-actions.c:47 msgid "_Edit Color..." msgstr "Farbe _bearbeiten..." -#: app/actions/colormap-editor-actions.c:48 -#: app/actions/palette-editor-actions.c:48 +#: ../app/actions/colormap-editor-actions.c:48 +#: ../app/actions/palette-editor-actions.c:48 msgid "Edit color" msgstr "Farbe bearbeiten" -#: app/actions/colormap-editor-actions.c:56 +#: ../app/actions/colormap-editor-actions.c:56 msgid "_Add Color from FG" msgstr "_Vordergrundfarbe hinzufügen" -#: app/actions/colormap-editor-actions.c:57 +#: ../app/actions/colormap-editor-actions.c:57 msgid "Add color from FG" msgstr "Farbe des Vordergrunds hinzufügen" -#: app/actions/colormap-editor-actions.c:62 +#: ../app/actions/colormap-editor-actions.c:62 msgid "_Add Color from BG" msgstr "_Hintergrundfarbe hinzufügen" -#: app/actions/colormap-editor-actions.c:63 +#: ../app/actions/colormap-editor-actions.c:63 msgid "Add color from BG" msgstr "Farbe des Hintergrunds hinzufügen" -#: app/actions/colormap-editor-commands.c:70 +#: ../app/actions/colormap-editor-commands.c:70 #, c-format msgid "Edit colormap entry #%d" msgstr "Farbpaletteneintrag Nr. %d bearbeiten" -#: app/actions/colormap-editor-commands.c:76 +#: ../app/actions/colormap-editor-commands.c:76 msgid "Edit Colormap Entry" msgstr "Farbpaletteneintrag bearbeiten" -#: app/actions/context-actions.c:46 +#: ../app/actions/context-actions.c:46 msgid "_Context" msgstr "_Kontext" -#: app/actions/context-actions.c:47 app/actions/layers-actions.c:53 -#: app/actions/plug-in-actions.c:64 +#: ../app/actions/context-actions.c:47 ../app/actions/layers-actions.c:53 +#: ../app/actions/plug-in-actions.c:64 msgid "_Colors" msgstr "_Farben" -#: app/actions/context-actions.c:48 app/actions/layers-actions.c:59 +#: ../app/actions/context-actions.c:48 ../app/actions/layers-actions.c:59 msgid "_Opacity" msgstr "_Deckkraft" -#: app/actions/context-actions.c:49 +#: ../app/actions/context-actions.c:49 msgid "Paint _Mode" msgstr "Bearbeitungs_modus" -#: app/actions/context-actions.c:50 +#: ../app/actions/context-actions.c:50 msgid "_Tool" msgstr "_Werkzeug" -#: app/actions/context-actions.c:51 app/dialogs/preferences-dialog.c:1627 +#: ../app/actions/context-actions.c:51 +#: ../app/dialogs/preferences-dialog.c:1627 msgid "_Brush" msgstr "_Pinsel" -#: app/actions/context-actions.c:52 app/actions/plug-in-actions.c:78 -#: app/dialogs/preferences-dialog.c:1630 +#: ../app/actions/context-actions.c:52 ../app/actions/plug-in-actions.c:78 +#: ../app/dialogs/preferences-dialog.c:1630 msgid "_Pattern" msgstr "_Muster" -#: app/actions/context-actions.c:53 +#: ../app/actions/context-actions.c:53 msgid "_Palette" msgstr "_Palette" -#: app/actions/context-actions.c:54 app/dialogs/palette-import-dialog.c:219 -#: app/dialogs/preferences-dialog.c:1633 +#: ../app/actions/context-actions.c:54 +#: ../app/dialogs/palette-import-dialog.c:219 +#: ../app/dialogs/preferences-dialog.c:1633 msgid "_Gradient" msgstr "Far_bverlauf" -#: app/actions/context-actions.c:55 +#: ../app/actions/context-actions.c:55 msgid "_Font" msgstr "_Schrift" -#: app/actions/context-actions.c:57 +#: ../app/actions/context-actions.c:57 msgid "_Shape" msgstr "_Form" -#: app/actions/context-actions.c:58 +#: ../app/actions/context-actions.c:58 msgid "_Radius" msgstr "_Radius" -#: app/actions/context-actions.c:59 +#: ../app/actions/context-actions.c:59 msgid "S_pikes" msgstr "S_pitzen" -#: app/actions/context-actions.c:60 +#: ../app/actions/context-actions.c:60 msgid "_Hardness" msgstr "_Härte" -#: app/actions/context-actions.c:61 +#: ../app/actions/context-actions.c:61 msgid "_Aspect" msgstr "P_erspektive" -#: app/actions/context-actions.c:62 +#: ../app/actions/context-actions.c:62 msgid "A_ngle" msgstr "Wi_nkel" -#: app/actions/context-actions.c:65 +#: ../app/actions/context-actions.c:65 msgid "_Default Colors" msgstr "_Vorgabefarben" -#: app/actions/context-actions.c:70 +#: ../app/actions/context-actions.c:70 msgid "S_wap Colors" msgstr "Farben _vertauschen" -#: app/actions/data-commands.c:79 app/core/gimpimage.c:1283 -#: app/core/gimppalette-import.c:219 app/core/gimppalette.c:523 -#: app/core/gimppalette.c:634 app/dialogs/palette-import-dialog.c:684 -#: app/pdb/image_cmds.c:3760 +#: ../app/actions/data-commands.c:79 ../app/core/gimpimage.c:1285 +#: ../app/core/gimppalette-import.c:219 ../app/core/gimppalette.c:523 +#: ../app/core/gimppalette.c:634 ../app/dialogs/palette-import-dialog.c:684 +#: ../app/pdb/image_cmds.c:3762 msgid "Untitled" msgstr "Namenlos" -#: app/actions/data-commands.c:149 +#: ../app/actions/data-commands.c:149 msgid "Delete Object" msgstr "Objekt löschen" -#: app/actions/data-commands.c:167 +#: ../app/actions/data-commands.c:167 #, c-format msgid "Are you sure you want to delete '%s' from the list and from disk?" msgstr "»%s« wirklich aus der Liste und von der Platte löschen?" -#: app/actions/dialogs-actions.c:38 +#: ../app/actions/dialogs-actions.c:38 msgid "_Dialogs" msgstr "_Dialoge" -#: app/actions/dialogs-actions.c:39 +#: ../app/actions/dialogs-actions.c:39 msgid "Create New Doc_k" msgstr "Dock _hinzufügen" -#: app/actions/dialogs-actions.c:42 +#: ../app/actions/dialogs-actions.c:42 msgid "_Layers, Channels & Paths" msgstr "_Ebenen, Kanäle und Pfade" -#: app/actions/dialogs-actions.c:47 +#: ../app/actions/dialogs-actions.c:47 msgid "_Brushes, Patterns & Gradients" msgstr "_Pinsel, Muster und Farbverläufe" -#: app/actions/dialogs-actions.c:52 +#: ../app/actions/dialogs-actions.c:52 msgid "_Misc. Stuff" msgstr "_Verschiedenes" -#: app/actions/dialogs-actions.c:57 +#: ../app/actions/dialogs-actions.c:57 msgid "Tool_box" msgstr "_Werkzeugfenster" -#: app/actions/dialogs-actions.c:65 +#: ../app/actions/dialogs-actions.c:65 msgid "Tool _Options" msgstr "Werkzeug_einstellungen" -#: app/actions/dialogs-actions.c:70 +#: ../app/actions/dialogs-actions.c:70 msgid "_Device Status" msgstr "_Gerätestatus" -#: app/actions/dialogs-actions.c:75 +#: ../app/actions/dialogs-actions.c:75 msgid "_Layers" msgstr "_Ebenen" -#: app/actions/dialogs-actions.c:80 +#: ../app/actions/dialogs-actions.c:80 msgid "_Channels" msgstr "_Kanäle" -#: app/actions/dialogs-actions.c:85 app/tools/gimpvectortool.c:162 +#: ../app/actions/dialogs-actions.c:85 ../app/tools/gimpvectortool.c:162 msgid "_Paths" msgstr "_Pfade" -#: app/actions/dialogs-actions.c:90 +#: ../app/actions/dialogs-actions.c:90 msgid "Color_map" msgstr "Farb_tabelle" -#: app/actions/dialogs-actions.c:95 +#: ../app/actions/dialogs-actions.c:95 msgid "Histogra_m" msgstr "_Histogramm" -#: app/actions/dialogs-actions.c:100 +#: ../app/actions/dialogs-actions.c:100 msgid "_Selection Editor" msgstr "Auswahl_editor" -#: app/actions/dialogs-actions.c:105 +#: ../app/actions/dialogs-actions.c:105 msgid "Na_vigation" msgstr "_Navigation" -#: app/actions/dialogs-actions.c:110 +#: ../app/actions/dialogs-actions.c:110 msgid "Undo _History" msgstr "_Journal" -#: app/actions/dialogs-actions.c:115 +#: ../app/actions/dialogs-actions.c:115 msgid "Colo_rs" msgstr "_Farben" -#: app/actions/dialogs-actions.c:120 +#: ../app/actions/dialogs-actions.c:120 msgid "_Brushes" msgstr "_Pinsel" -#: app/actions/dialogs-actions.c:125 +#: ../app/actions/dialogs-actions.c:125 msgid "P_atterns" msgstr "_Muster" -#: app/actions/dialogs-actions.c:130 +#: ../app/actions/dialogs-actions.c:130 msgid "_Gradients" msgstr "Fa_rbverläufe" -#: app/actions/dialogs-actions.c:135 +#: ../app/actions/dialogs-actions.c:135 msgid "Pal_ettes" msgstr "Farb_paletten" -#: app/actions/dialogs-actions.c:140 +#: ../app/actions/dialogs-actions.c:140 msgid "_Fonts" msgstr "_Schriften" -#: app/actions/dialogs-actions.c:145 +#: ../app/actions/dialogs-actions.c:145 msgid "B_uffers" msgstr "A_blagen" -#: app/actions/dialogs-actions.c:150 +#: ../app/actions/dialogs-actions.c:150 msgid "_Images" msgstr "_Bilder" -#: app/actions/dialogs-actions.c:155 +#: ../app/actions/dialogs-actions.c:155 msgid "Document Histor_y" msgstr "_Dokumentenindex" -#: app/actions/dialogs-actions.c:160 +#: ../app/actions/dialogs-actions.c:160 msgid "_Templates" msgstr "_Vorlagen" -#: app/actions/dialogs-actions.c:165 +#: ../app/actions/dialogs-actions.c:165 msgid "T_ools" msgstr "_Werkzeuge" -#: app/actions/dialogs-actions.c:170 +#: ../app/actions/dialogs-actions.c:170 msgid "Error Co_nsole" msgstr "_Fehleranzeige" -#: app/actions/dialogs-actions.c:180 +#: ../app/actions/dialogs-actions.c:180 msgid "_Preferences" msgstr "_Einstellungen" -#: app/actions/dialogs-actions.c:185 +#: ../app/actions/dialogs-actions.c:185 msgid "_Module Manager" msgstr "_Modulverwaltung" -#: app/actions/dialogs-actions.c:190 +#: ../app/actions/dialogs-actions.c:190 msgid "_Tip of the Day" msgstr "_Tipp des Tages" -#: app/actions/dialogs-actions.c:195 +#: ../app/actions/dialogs-actions.c:195 msgid "_About" msgstr "_Ãœber" -#: app/actions/dockable-actions.c:49 +#: ../app/actions/dockable-actions.c:49 msgid "Dialogs Menu" msgstr "Dialogmenü" -#: app/actions/dockable-actions.c:53 +#: ../app/actions/dockable-actions.c:53 msgid "_Add Tab" msgstr "Reiter _hinzufügen" -#: app/actions/dockable-actions.c:54 +#: ../app/actions/dockable-actions.c:54 msgid "_Preview Size" msgstr "Vorschau_größe" -#: app/actions/dockable-actions.c:55 +#: ../app/actions/dockable-actions.c:55 msgid "_Tab Style" msgstr "Reiter_stil" -#: app/actions/dockable-actions.c:58 +#: ../app/actions/dockable-actions.c:58 msgid "_Close Tab" msgstr "Reiter s_chließen" -#: app/actions/dockable-actions.c:63 +#: ../app/actions/dockable-actions.c:63 msgid "_Detach Tab" msgstr "Reiter _lösen" -#: app/actions/dockable-actions.c:68 +#: ../app/actions/dockable-actions.c:68 msgid "M_ove to Screen..." msgstr "Auf Bildschirm _verschieben..." -#: app/actions/dockable-actions.c:76 +#: ../app/actions/dockable-actions.c:76 msgid "_Show Image Selection" msgstr "_Bildauswahl anzeigen" -#: app/actions/dockable-actions.c:82 +#: ../app/actions/dockable-actions.c:82 msgid "Auto _Follow Active Image" msgstr "Automatisch dem a_ktiven Bild folgen" -#: app/actions/dockable-actions.c:101 +#: ../app/actions/dockable-actions.c:101 msgid "_Tiny" msgstr "_Winzig" -#: app/actions/dockable-actions.c:102 +#: ../app/actions/dockable-actions.c:102 msgid "E_xtra Small" msgstr "_Sehr klein" -#: app/actions/dockable-actions.c:103 +#: ../app/actions/dockable-actions.c:103 msgid "_Small" msgstr "_Klein" -#: app/actions/dockable-actions.c:104 +#: ../app/actions/dockable-actions.c:104 msgid "_Medium" msgstr "_Mittel" -#: app/actions/dockable-actions.c:105 +#: ../app/actions/dockable-actions.c:105 msgid "_Large" msgstr "_Groß" -#: app/actions/dockable-actions.c:106 +#: ../app/actions/dockable-actions.c:106 msgid "Ex_tra Large" msgstr "S_ehr groß" -#: app/actions/dockable-actions.c:107 +#: ../app/actions/dockable-actions.c:107 msgid "_Huge" msgstr "_Riesig" -#: app/actions/dockable-actions.c:108 +#: ../app/actions/dockable-actions.c:108 msgid "_Enormous" msgstr "_Enorm" -#: app/actions/dockable-actions.c:109 +#: ../app/actions/dockable-actions.c:109 msgid "_Gigantic" msgstr "_Gigantisch" -#: app/actions/dockable-actions.c:114 +#: ../app/actions/dockable-actions.c:114 msgid "_Icon" msgstr "_Symbol" -#: app/actions/dockable-actions.c:115 +#: ../app/actions/dockable-actions.c:115 msgid "Current _Status" msgstr "Aktueller _Status" -#: app/actions/dockable-actions.c:116 +#: ../app/actions/dockable-actions.c:116 msgid "_Text" msgstr "nur _Text" -#: app/actions/dockable-actions.c:117 +#: ../app/actions/dockable-actions.c:117 msgid "I_con & Text" msgstr "Symbol _und Text" -#: app/actions/dockable-actions.c:118 +#: ../app/actions/dockable-actions.c:118 msgid "St_atus & Text" msgstr "St_atus und Text" -#: app/actions/dockable-actions.c:127 +#: ../app/actions/dockable-actions.c:127 msgid "View as _List" msgstr "Als _Liste anzeigen" -#: app/actions/dockable-actions.c:132 +#: ../app/actions/dockable-actions.c:132 msgid "View as _Grid" msgstr "Als _Raster anzeigen" -#: app/actions/documents-actions.c:42 +#: ../app/actions/documents-actions.c:42 msgid "Documents Menu" msgstr "Dokumentenmenü" -#: app/actions/documents-actions.c:46 +#: ../app/actions/documents-actions.c:46 msgid "_Open Image" msgstr "Bild ö_ffnen" -#: app/actions/documents-actions.c:47 +#: ../app/actions/documents-actions.c:47 msgid "Open the selected entry" -msgstr "Gewählten Eintrag entfernen" +msgstr "Gewählten Eintrag öffnen" -#: app/actions/documents-actions.c:52 +#: ../app/actions/documents-actions.c:52 msgid "_Raise or Open Image" msgstr "Bild öffnen oder _anheben" -#: app/actions/documents-actions.c:53 +#: ../app/actions/documents-actions.c:53 msgid "Raise window if already open" msgstr "Fenster in den Vordergrund bringen, falls es schon geöffnet ist" -#: app/actions/documents-actions.c:58 +#: ../app/actions/documents-actions.c:58 msgid "File Open _Dialog" msgstr "Datei Öffnen-_Dialog" -#: app/actions/documents-actions.c:59 +#: ../app/actions/documents-actions.c:59 msgid "Open image dialog" msgstr "Dialog um ein Bild zu öffnen" -#: app/actions/documents-actions.c:64 +#: ../app/actions/documents-actions.c:64 msgid "Remove _Entry" msgstr "Eintrag _entfernen" -#: app/actions/documents-actions.c:65 +#: ../app/actions/documents-actions.c:65 msgid "Remove the selected entry" msgstr "Gewählten Eintrag entfernen" -#: app/actions/documents-actions.c:70 +#: ../app/actions/documents-actions.c:70 msgid "Recreate _Preview" msgstr "_Vorschau neu erzeugen" -#: app/actions/documents-actions.c:71 +#: ../app/actions/documents-actions.c:71 msgid "Recreate preview" msgstr "Vorschau neu erzeugen" -#: app/actions/documents-actions.c:76 +#: ../app/actions/documents-actions.c:76 msgid "Reload _all Previews" msgstr "A_lle Vorschaufenster neu laden" -#: app/actions/documents-actions.c:77 +#: ../app/actions/documents-actions.c:77 msgid "Reload all previews" msgstr "Alle Vorschaufenster neu laden" -#: app/actions/documents-actions.c:82 +#: ../app/actions/documents-actions.c:82 msgid "Remove Dangling E_ntries" msgstr "_Hängende Einträge entfernen" -#: app/actions/documents-actions.c:83 +#: ../app/actions/documents-actions.c:83 msgid "Remove dangling entries" msgstr "Hängende Einträge entfernen" -#: app/actions/documents-commands.c:251 app/actions/file-commands.c:170 -#: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 -#: app/dialogs/file-open-location-dialog.c:193 -#: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 -#: app/widgets/gimptoolbox-dnd.c:125 +#: ../app/actions/documents-commands.c:251 ../app/actions/file-commands.c:170 +#: ../app/dialogs/file-open-dialog.c:198 ../app/dialogs/file-open-dialog.c:249 +#: ../app/dialogs/file-open-location-dialog.c:195 +#: ../app/display/gimpdisplayshell-dnd.c:334 +#: ../app/widgets/gimplayertreeview.c:804 ../app/widgets/gimptoolbox-dnd.c:125 #, c-format msgid "" "Opening '%s' failed:\n" @@ -1060,240 +1072,240 @@ "\n" "%s" -#: app/actions/drawable-actions.c:45 +#: ../app/actions/drawable-actions.c:45 msgid "_Desaturate" msgstr "Sättigung ent_fernen" -#: app/actions/drawable-actions.c:50 +#: ../app/actions/drawable-actions.c:50 msgid "_Equalize" msgstr "_Egalisieren" -#: app/actions/drawable-actions.c:55 +#: ../app/actions/drawable-actions.c:55 msgid "In_vert" msgstr "_Invertieren" -#: app/actions/drawable-actions.c:60 +#: ../app/actions/drawable-actions.c:60 msgid "_White Balance" msgstr "_Weißabgleich" -#: app/actions/drawable-actions.c:65 +#: ../app/actions/drawable-actions.c:65 msgid "_Offset..." msgstr "_Versatz" -#: app/actions/drawable-actions.c:73 app/actions/vectors-actions.c:153 +#: ../app/actions/drawable-actions.c:73 ../app/actions/vectors-actions.c:153 msgid "_Linked" msgstr "_Verknüpft" -#: app/actions/drawable-actions.c:79 app/actions/vectors-actions.c:147 +#: ../app/actions/drawable-actions.c:79 ../app/actions/vectors-actions.c:147 msgid "_Visible" msgstr "_Sichtbar" -#: app/actions/drawable-actions.c:88 app/actions/image-actions.c:141 +#: ../app/actions/drawable-actions.c:88 ../app/actions/image-actions.c:141 msgid "Flip _Horizontally" msgstr "_Horizontal spiegeln" -#: app/actions/drawable-actions.c:93 app/actions/image-actions.c:146 +#: ../app/actions/drawable-actions.c:93 ../app/actions/image-actions.c:146 msgid "Flip _Vertically" msgstr "_Vertikal spiegeln" #. please use the degree symbol in the translation -#: app/actions/drawable-actions.c:101 app/actions/image-actions.c:155 +#: ../app/actions/drawable-actions.c:101 ../app/actions/image-actions.c:155 msgid "Rotate 90 degrees _CW" msgstr "90° drehen (_rechts)" -#: app/actions/drawable-actions.c:106 app/actions/image-actions.c:160 +#: ../app/actions/drawable-actions.c:106 ../app/actions/image-actions.c:160 msgid "Rotate _180 degrees" msgstr "_180° drehen" -#: app/actions/drawable-actions.c:111 app/actions/image-actions.c:165 +#: ../app/actions/drawable-actions.c:111 ../app/actions/image-actions.c:165 msgid "Rotate 90 degrees CC_W" msgstr "90° drehen (_links)" -#: app/actions/drawable-commands.c:58 +#: ../app/actions/drawable-commands.c:58 msgid "Desaturate operates only on RGB color layers." msgstr "Die Sättigung kann nur bei RGB-Ebenen verringert werden." -#: app/actions/drawable-commands.c:76 +#: ../app/actions/drawable-commands.c:76 msgid "Equalize does not operate on indexed layers." msgstr "Das Angleichen funktioniert mit indizierten Ebenen nicht." -#: app/actions/drawable-commands.c:94 +#: ../app/actions/drawable-commands.c:94 msgid "Invert does not operate on indexed layers." msgstr "Das Invertieren funktioniert mit indizierten Ebenen nicht." -#: app/actions/drawable-commands.c:114 +#: ../app/actions/drawable-commands.c:114 msgid "White Balance operates only on RGB color layers." msgstr "Der Weißabgleich funktioniert nur bei RGB Ebenen." -#: app/actions/edit-actions.c:61 +#: ../app/actions/edit-actions.c:61 msgid "_Edit" msgstr "Bearbeite_n" -#: app/actions/edit-actions.c:62 +#: ../app/actions/edit-actions.c:62 msgid "_Buffer" msgstr "A_blagen" -#: app/actions/edit-actions.c:65 app/actions/edit-actions.c:230 +#: ../app/actions/edit-actions.c:65 ../app/actions/edit-actions.c:230 msgid "_Undo" msgstr "_Rückgängig" -#: app/actions/edit-actions.c:66 app/dialogs/dialogs.c:183 -#: app/pdb/internal_procs.c:209 +#: ../app/actions/edit-actions.c:66 ../app/dialogs/dialogs.c:183 +#: ../app/pdb/internal_procs.c:209 msgid "Undo" msgstr "Rückgängig" -#: app/actions/edit-actions.c:71 app/actions/edit-actions.c:231 +#: ../app/actions/edit-actions.c:71 ../app/actions/edit-actions.c:231 msgid "_Redo" msgstr "_Wiederholen" -#: app/actions/edit-actions.c:72 +#: ../app/actions/edit-actions.c:72 msgid "Redo" msgstr "Wiederholen" -#: app/actions/edit-actions.c:77 +#: ../app/actions/edit-actions.c:77 msgid "_Clear Undo History" msgstr "Liste _alter Operationen entfernen" -#: app/actions/edit-actions.c:78 +#: ../app/actions/edit-actions.c:78 msgid "Clear undo history..." msgstr "Liste alter Operationen entfernen" -#: app/actions/edit-actions.c:83 +#: ../app/actions/edit-actions.c:83 msgid "Cu_t" msgstr "_Ausschneiden" -#: app/actions/edit-actions.c:88 +#: ../app/actions/edit-actions.c:88 msgid "_Copy" msgstr "_Kopieren" #. GIMP_STOCK_COPY_VISIBLE, -#: app/actions/edit-actions.c:93 +#: ../app/actions/edit-actions.c:93 msgid "Copy _Visible" msgstr "Kopiere _Sichtbares" -#: app/actions/edit-actions.c:98 +#: ../app/actions/edit-actions.c:98 msgid "_Paste" msgstr "E_infügen" -#: app/actions/edit-actions.c:103 +#: ../app/actions/edit-actions.c:103 msgid "Paste _Into" msgstr "In Aus_wahl einfügen" -#: app/actions/edit-actions.c:108 +#: ../app/actions/edit-actions.c:108 msgid "Paste as _New" msgstr "Als _neues Bild einfügen" -#: app/actions/edit-actions.c:113 +#: ../app/actions/edit-actions.c:113 msgid "Cu_t Named..." msgstr "In Ablage _ausschneiden" -#: app/actions/edit-actions.c:118 +#: ../app/actions/edit-actions.c:118 msgid "_Copy Named..." msgstr "In Ablage _kopieren" -#: app/actions/edit-actions.c:123 +#: ../app/actions/edit-actions.c:123 msgid "_Paste Named..." msgstr "Aus Ablage e_infügen..." -#: app/actions/edit-actions.c:128 +#: ../app/actions/edit-actions.c:128 msgid "Cl_ear" msgstr "_Löschen" -#: app/actions/edit-actions.c:136 +#: ../app/actions/edit-actions.c:136 msgid "Fill with _FG Color" msgstr "Mit _VG-Farbe füllen" -#: app/actions/edit-actions.c:141 +#: ../app/actions/edit-actions.c:141 msgid "Fill with B_G Color" msgstr "Mit _HG-Farbe füllen" -#: app/actions/edit-actions.c:146 +#: ../app/actions/edit-actions.c:146 msgid "Fill with P_attern" msgstr "Mit _Muster füllen" -#: app/actions/edit-actions.c:214 +#: ../app/actions/edit-actions.c:214 #, c-format msgid "_Undo %s" msgstr "_Rückgängig: %s" -#: app/actions/edit-actions.c:219 +#: ../app/actions/edit-actions.c:219 #, c-format msgid "_Redo %s" msgstr "_Wiederholen: %s" -#: app/actions/edit-commands.c:104 +#: ../app/actions/edit-commands.c:104 msgid "Clear Undo History" msgstr "Liste alter Operationen löschen" -#: app/actions/edit-commands.c:122 +#: ../app/actions/edit-commands.c:122 msgid "Really clear image's undo history?" msgstr "Möchten Sie wirklich die Liste alter Operationen löschen?" -#: app/actions/edit-commands.c:210 +#: ../app/actions/edit-commands.c:210 msgid "Cut Named" msgstr "In Ablage ausschneiden" -#: app/actions/edit-commands.c:213 app/actions/edit-commands.c:233 +#: ../app/actions/edit-commands.c:213 ../app/actions/edit-commands.c:233 msgid "Enter a name for this buffer" msgstr "Geben Sie dieser Ablage einen Namen" -#: app/actions/edit-commands.c:230 +#: ../app/actions/edit-commands.c:230 msgid "Copy Named" msgstr "In Ablage kopieren" -#: app/actions/edit-commands.c:337 +#: ../app/actions/edit-commands.c:337 msgid "There is no active layer or channel to cut from." msgstr "" "Es gibt weder eine aktive Ebene noch einen aktiven Kanal, aus der bzw. dem " "ausgeschnitten werden kann." -#: app/actions/edit-commands.c:349 app/actions/edit-commands.c:386 +#: ../app/actions/edit-commands.c:349 ../app/actions/edit-commands.c:386 msgid "(Unnamed Buffer)" msgstr "(Namenlose Ablage)" -#: app/actions/edit-commands.c:374 +#: ../app/actions/edit-commands.c:374 msgid "There is no active layer or channel to copy from." msgstr "" "Es gibt weder eine aktive Ebene noch einen aktiven Kanal, die bzw. der " "kopiert werden kann." -#: app/actions/error-console-actions.c:40 +#: ../app/actions/error-console-actions.c:40 msgid "Error Console Menu" msgstr "Fehlerkonsolenmenü" -#: app/actions/error-console-actions.c:44 +#: ../app/actions/error-console-actions.c:44 msgid "_Clear Errors" msgstr "Fehler _löschen" -#: app/actions/error-console-actions.c:45 +#: ../app/actions/error-console-actions.c:45 msgid "Clear errors" msgstr "Fehler löschen" -#: app/actions/error-console-actions.c:53 +#: ../app/actions/error-console-actions.c:53 msgid "Save _All Errors to File..." msgstr "Alle Fehler in Datei _speichern..." -#: app/actions/error-console-actions.c:54 +#: ../app/actions/error-console-actions.c:54 msgid "Save all errors" msgstr "Alle Fehler speichern" -#: app/actions/error-console-actions.c:59 +#: ../app/actions/error-console-actions.c:59 msgid "Save _Selection to File..." msgstr "Aus_wahl in Datei speichern..." -#: app/actions/error-console-actions.c:60 +#: ../app/actions/error-console-actions.c:60 msgid "Save selection" msgstr "Auswahl speichern" -#: app/actions/error-console-commands.c:69 +#: ../app/actions/error-console-commands.c:69 msgid "Cannot save. Nothing is selected." msgstr "Es konnte nicht gespeichert werden, da nichts ausgewählt wurde." -#: app/actions/error-console-commands.c:80 +#: ../app/actions/error-console-commands.c:80 msgid "Save Error Log to File" msgstr "Fehlerprotokoll in Datei speichern" -#: app/actions/error-console-commands.c:132 +#: ../app/actions/error-console-commands.c:132 #, c-format msgid "" "Error writing file '%s':\n" @@ -1302,55 +1314,55 @@ "Fehler beim Schreiben der Datei »%s«:\n" "%s" -#: app/actions/file-actions.c:61 +#: ../app/actions/file-actions.c:61 msgid "_File" msgstr "_Datei" -#: app/actions/file-actions.c:62 +#: ../app/actions/file-actions.c:62 msgid "Open _Recent" msgstr "_Zuletzt geöffnet" -#: app/actions/file-actions.c:63 +#: ../app/actions/file-actions.c:63 msgid "_Acquire" msgstr "_Holen" -#: app/actions/file-actions.c:66 app/actions/file-actions.c:71 +#: ../app/actions/file-actions.c:66 ../app/actions/file-actions.c:71 msgid "_Open..." msgstr "Ö_ffnen..." -#: app/actions/file-actions.c:76 +#: ../app/actions/file-actions.c:76 msgid "Op_en as Layer..." msgstr "Als _Ebene öffnen..." -#: app/actions/file-actions.c:81 +#: ../app/actions/file-actions.c:81 msgid "Open _Location..." msgstr "_Von Ort öffnen..." -#: app/actions/file-actions.c:86 +#: ../app/actions/file-actions.c:86 msgid "_Save" msgstr "_Speichern" -#: app/actions/file-actions.c:91 +#: ../app/actions/file-actions.c:91 msgid "Save _as..." msgstr "Speichern _unter..." -#: app/actions/file-actions.c:96 +#: ../app/actions/file-actions.c:96 msgid "Save a Cop_y..." msgstr "_Kopie speichern unter..." -#: app/actions/file-actions.c:101 +#: ../app/actions/file-actions.c:101 msgid "Save as _Template..." msgstr "Als _Vorlage speichern..." -#: app/actions/file-actions.c:106 +#: ../app/actions/file-actions.c:106 msgid "Re_vert..." msgstr "_Zurücksetzen..." -#: app/actions/file-actions.c:111 +#: ../app/actions/file-actions.c:111 msgid "_Quit" msgstr "_Beenden" -#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:281 +#: ../app/actions/file-commands.c:215 ../app/dialogs/file-save-dialog.c:282 #, c-format msgid "" "Saving '%s' failed:\n" @@ -1361,38 +1373,38 @@ "\n" "%s" -#: app/actions/file-commands.c:238 app/dialogs/file-save-dialog.c:78 +#: ../app/actions/file-commands.c:238 ../app/dialogs/file-save-dialog.c:78 msgid "Save Image" msgstr "Bild speichern" -#: app/actions/file-commands.c:254 +#: ../app/actions/file-commands.c:254 msgid "Save a Copy of the Image" msgstr "Kopie des Bildes speichern" -#: app/actions/file-commands.c:265 +#: ../app/actions/file-commands.c:265 msgid "Create New Template" msgstr "Ein neue Vorlage erstellen" -#: app/actions/file-commands.c:269 +#: ../app/actions/file-commands.c:269 msgid "Enter a name for this template" msgstr "Geben Sie dieser Vorlage einen Namen" -#: app/actions/file-commands.c:291 +#: ../app/actions/file-commands.c:291 msgid "Revert failed. No file name associated with this image." msgstr "" "Bild konnte nicht zurückgesetzt werden, da kein Dateiname mit dem Bild " "verknüpft ist." -#: app/actions/file-commands.c:303 +#: ../app/actions/file-commands.c:303 msgid "Revert Image" msgstr "Bild zurücksetzen" -#: app/actions/file-commands.c:324 +#: ../app/actions/file-commands.c:324 #, c-format msgid "Revert '%s' to '%s'?" msgstr "Wollen Sie von »%s« zu »%s« zurückkehren?" -#: app/actions/file-commands.c:330 +#: ../app/actions/file-commands.c:330 msgid "" "By reverting the image to the state saved on disk, you will lose all " "changes, including all undo information." @@ -1400,19 +1412,19 @@ "Indem Sie das Bild auf den zuletzt gespeicherten Stand zurücksetzen, werden " "alle Änderungen einschließlich des Journals verloren gehen." -#: app/actions/file-commands.c:380 +#: ../app/actions/file-commands.c:380 msgid "Open Image as Layer" msgstr "Bild als Ebene öffnen" -#: app/actions/file-commands.c:385 app/dialogs/file-open-dialog.c:74 +#: ../app/actions/file-commands.c:385 ../app/dialogs/file-open-dialog.c:74 msgid "Open Image" msgstr "Bild öffnen" -#: app/actions/file-commands.c:451 +#: ../app/actions/file-commands.c:451 msgid "(Unnamed Template)" msgstr "(Namenlose Vorlage)" -#: app/actions/file-commands.c:500 +#: ../app/actions/file-commands.c:500 #, c-format msgid "" "Reverting to '%s' failed:\n" @@ -1423,255 +1435,256 @@ "\n" "%s" -#: app/actions/fonts-actions.c:44 +#: ../app/actions/fonts-actions.c:44 msgid "Fonts Menu" msgstr "Schriftenmenü" -#: app/actions/fonts-actions.c:48 +#: ../app/actions/fonts-actions.c:48 msgid "_Rescan Font List" msgstr "Schriften _neu einlesen" -#: app/actions/fonts-actions.c:49 +#: ../app/actions/fonts-actions.c:49 msgid "Rescan font list" msgstr "Schriftenliste neu einlesen" -#: app/actions/gradient-editor-actions.c:46 +#: ../app/actions/gradient-editor-actions.c:46 msgid "Gradient Editor Menu" msgstr "Farbverlaufseditormenü" -#: app/actions/gradient-editor-actions.c:50 +#: ../app/actions/gradient-editor-actions.c:50 msgid "_Load Left Color From" msgstr "Linke Farbe l_aden von" -#: app/actions/gradient-editor-actions.c:52 +#: ../app/actions/gradient-editor-actions.c:52 msgid "_Save Left Color To" msgstr "Linke Farbe _speichern in" -#: app/actions/gradient-editor-actions.c:55 +#: ../app/actions/gradient-editor-actions.c:55 msgid "Load Right Color Fr_om" msgstr "Rechte Farbe laden von _Hintergrundfarbe" -#: app/actions/gradient-editor-actions.c:57 +#: ../app/actions/gradient-editor-actions.c:57 msgid "Sa_ve Right Color To" msgstr "Rechte Farbe s_peichern in" -#: app/actions/gradient-editor-actions.c:63 +#: ../app/actions/gradient-editor-actions.c:63 msgid "L_eft Endpoint's Color..." msgstr "Farbe des li_nken Endpunktes..." -#: app/actions/gradient-editor-actions.c:68 +#: ../app/actions/gradient-editor-actions.c:68 msgid "R_ight Endpoint's Color..." msgstr "Farbe des _rechten Endpunktes..." -#: app/actions/gradient-editor-actions.c:108 +#: ../app/actions/gradient-editor-actions.c:108 msgid "Ble_nd Endpoints' Colors" msgstr "Farben der Enpunkte _mitteln" -#: app/actions/gradient-editor-actions.c:113 +#: ../app/actions/gradient-editor-actions.c:113 msgid "Blend Endpoints' Opacit_y" msgstr "Deckkraft der Enpunkte m_itteln" -#: app/actions/gradient-editor-actions.c:143 +#: ../app/actions/gradient-editor-actions.c:143 msgid "_Left Neighbor's Right Endpoint" msgstr "Linke Farbe laden von/Rechtem Endpunkt des _linken Nachbars" -#: app/actions/gradient-editor-actions.c:148 +#: ../app/actions/gradient-editor-actions.c:148 msgid "_Right Endpoint" msgstr "Farbe des rechten Endpunktes" -#: app/actions/gradient-editor-actions.c:153 -#: app/actions/gradient-editor-actions.c:201 +#: ../app/actions/gradient-editor-actions.c:153 +#: ../app/actions/gradient-editor-actions.c:201 msgid "_FG Color" msgstr "VG/HG Farbe" -#: app/actions/gradient-editor-actions.c:158 -#: app/actions/gradient-editor-actions.c:206 +#: ../app/actions/gradient-editor-actions.c:158 +#: ../app/actions/gradient-editor-actions.c:206 msgid "_BG Color" msgstr "VG/HG Farbe" -#: app/actions/gradient-editor-actions.c:191 +#: ../app/actions/gradient-editor-actions.c:191 msgid "_Right Neighbor's Left Endpoint" msgstr "Rechte Farbe laden von/Linkem Endpunkt des _rechten Nachbars" -#: app/actions/gradient-editor-actions.c:196 +#: ../app/actions/gradient-editor-actions.c:196 msgid "_Left Endpoint" msgstr "Farbe des linken Endpunktes" -#: app/actions/gradient-editor-actions.c:245 +#: ../app/actions/gradient-editor-actions.c:245 msgid "_Linear" msgstr "_Linear" -#: app/actions/gradient-editor-actions.c:250 +#: ../app/actions/gradient-editor-actions.c:250 msgid "_Curved" msgstr "_Kurven" -#: app/actions/gradient-editor-actions.c:255 +#: ../app/actions/gradient-editor-actions.c:255 msgid "_Sinusoidal" msgstr "_Sinusartig" -#: app/actions/gradient-editor-actions.c:260 +#: ../app/actions/gradient-editor-actions.c:260 msgid "Spherical (i_ncreasing)" msgstr "Sphärisch (_zunehmend)" -#: app/actions/gradient-editor-actions.c:265 +#: ../app/actions/gradient-editor-actions.c:265 msgid "Spherical (_decreasing)" msgstr "Sphärisch (_abnehmend)" -#: app/actions/gradient-editor-actions.c:270 -#: app/actions/gradient-editor-actions.c:293 +#: ../app/actions/gradient-editor-actions.c:270 +#: ../app/actions/gradient-editor-actions.c:293 msgid "(Varies)" msgstr "(Variiert)" -#: app/actions/gradient-editor-actions.c:278 app/actions/image-actions.c:123 +#: ../app/actions/gradient-editor-actions.c:278 +#: ../app/actions/image-actions.c:123 msgid "_RGB" msgstr "_RGB" -#: app/actions/gradient-editor-actions.c:283 +#: ../app/actions/gradient-editor-actions.c:283 msgid "HSV (_counter-clockwise hue)" msgstr "HSV (Farbton _gegen Uhrzeigersinn)" -#: app/actions/gradient-editor-actions.c:288 +#: ../app/actions/gradient-editor-actions.c:288 msgid "HSV (clockwise _hue)" msgstr "HSV (Farbton _im Uhrzeigersinn)" -#: app/actions/gradient-editor-actions.c:301 +#: ../app/actions/gradient-editor-actions.c:301 msgid "Zoom In" msgstr "Hineinzoomen" -#: app/actions/gradient-editor-actions.c:302 -#: app/actions/palette-editor-actions.c:78 app/actions/view-actions.c:216 -#: app/widgets/widgets-enums.c:353 +#: ../app/actions/gradient-editor-actions.c:302 +#: ../app/actions/palette-editor-actions.c:78 +#: ../app/actions/view-actions.c:216 ../app/widgets/widgets-enums.c:353 msgid "Zoom in" msgstr "Hineinzoomen" -#: app/actions/gradient-editor-actions.c:307 +#: ../app/actions/gradient-editor-actions.c:307 msgid "Zoom Out" msgstr "Herauszoomen" -#: app/actions/gradient-editor-actions.c:308 -#: app/actions/palette-editor-actions.c:84 app/actions/view-actions.c:210 -#: app/widgets/widgets-enums.c:354 +#: ../app/actions/gradient-editor-actions.c:308 +#: ../app/actions/palette-editor-actions.c:84 +#: ../app/actions/view-actions.c:210 ../app/widgets/widgets-enums.c:354 msgid "Zoom out" msgstr "Herauszoomen" -#: app/actions/gradient-editor-actions.c:313 +#: ../app/actions/gradient-editor-actions.c:313 msgid "Zoom All" msgstr "Alles anzeigen" -#: app/actions/gradient-editor-actions.c:314 -#: app/actions/palette-editor-actions.c:90 +#: ../app/actions/gradient-editor-actions.c:314 +#: ../app/actions/palette-editor-actions.c:90 msgid "Zoom all" msgstr "Alles anzeigen" -#: app/actions/gradient-editor-actions.c:589 +#: ../app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "Farb_verlaufsfunktion für Segment" -#: app/actions/gradient-editor-actions.c:591 +#: ../app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "_Färbungsart für Segment" -#: app/actions/gradient-editor-actions.c:594 +#: ../app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "Segment sp_iegeln" -#: app/actions/gradient-editor-actions.c:596 +#: ../app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "Segment duplizieren..." -#: app/actions/gradient-editor-actions.c:598 +#: ../app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "Segment _mittig teilen" -#: app/actions/gradient-editor-actions.c:600 +#: ../app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "Segment _gleichmäßig aufteilen..." -#: app/actions/gradient-editor-actions.c:602 +#: ../app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "Segment _löschen" -#: app/actions/gradient-editor-actions.c:604 +#: ../app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "Mittelpunkt des Segments _zentrieren" -#: app/actions/gradient-editor-actions.c:606 +#: ../app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "Punkte _gleichmäßig im Segment verteilen" -#: app/actions/gradient-editor-actions.c:611 +#: ../app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "Farb_verlaufsfunktion für Auswahl" -#: app/actions/gradient-editor-actions.c:613 +#: ../app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "_Färbungsart für Auswahl" -#: app/actions/gradient-editor-actions.c:616 +#: ../app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "Auswahl sp_iegeln" -#: app/actions/gradient-editor-actions.c:618 +#: ../app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "Auswahl _duplizieren..." -#: app/actions/gradient-editor-actions.c:620 +#: ../app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "Segment an _Mittelpunkten aufteilen" -#: app/actions/gradient-editor-actions.c:622 +#: ../app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "Segmente _gleichmäßig aufteilen..." -#: app/actions/gradient-editor-actions.c:624 +#: ../app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "Auswahl _löschen" -#: app/actions/gradient-editor-actions.c:626 +#: ../app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "Mittelpunkte in Auswahl _zentrieren" -#: app/actions/gradient-editor-actions.c:628 +#: ../app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "Punkte _gleichmäßig in Auswahl verteilen" -#: app/actions/gradient-editor-commands.c:85 +#: ../app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "Farbe des linken Endpunktes" -#: app/actions/gradient-editor-commands.c:87 +#: ../app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "Farbe des linken Segment-Endpunktes " -#: app/actions/gradient-editor-commands.c:189 +#: ../app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "Farbe des rechten Endpunktes" -#: app/actions/gradient-editor-commands.c:191 +#: ../app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "Farbe des rechten Segment-Endpunktes" -#: app/actions/gradient-editor-commands.c:358 +#: ../app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "Segment duplizieren" -#: app/actions/gradient-editor-commands.c:359 +#: ../app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "Farbverlauf-Segment duplizieren" -#: app/actions/gradient-editor-commands.c:363 +#: ../app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "Auswahl duplizieren" -#: app/actions/gradient-editor-commands.c:364 +#: ../app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "Farbverlauf-Auswahl duplizieren" -#: app/actions/gradient-editor-commands.c:376 +#: ../app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "Duplizieren" -#: app/actions/gradient-editor-commands.c:391 +#: ../app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1679,7 +1692,7 @@ "Geben Sie an, wie oft das\n" "ausgewählte Segments wiederholt werden soll." -#: app/actions/gradient-editor-commands.c:394 +#: ../app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." @@ -1687,27 +1700,27 @@ "Geben Sie an, wie oft die\n" "Auswahl wiederholt werden soll." -#: app/actions/gradient-editor-commands.c:452 +#: ../app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "Segment gleichmäßig teilen" -#: app/actions/gradient-editor-commands.c:453 +#: ../app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "Farbverlauf-Segment gleichmäßig teilen" -#: app/actions/gradient-editor-commands.c:457 +#: ../app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "Segmente gleichmäßig aufteilen" -#: app/actions/gradient-editor-commands.c:458 +#: ../app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "Farbverlauf-Segmente gleichmäßig aufteilen" -#: app/actions/gradient-editor-commands.c:470 +#: ../app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "Teilen" -#: app/actions/gradient-editor-commands.c:486 +#: ../app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1715,7 +1728,7 @@ "Geben Sie an, in wieviele Abschnitte das\n" "ausgewählte Segment aufgeteilt werden soll." -#: app/actions/gradient-editor-commands.c:489 +#: ../app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." @@ -1723,1560 +1736,1565 @@ "Geben Sie an, in wieviele Abschnitte die\n" "Segmente in der Auswahl aufgeteilt werden sollen." -#: app/actions/gradients-actions.c:44 +#: ../app/actions/gradients-actions.c:44 msgid "Gradients Menu" msgstr "Farbverlaufsmenü" -#: app/actions/gradients-actions.c:48 +#: ../app/actions/gradients-actions.c:48 msgid "_New Gradient" msgstr "_Neuer Farbverlauf" -#: app/actions/gradients-actions.c:49 +#: ../app/actions/gradients-actions.c:49 msgid "New gradient" msgstr "Neuer Farbverlauf" -#: app/actions/gradients-actions.c:54 +#: ../app/actions/gradients-actions.c:54 msgid "D_uplicate Gradient" msgstr "Farbverlauf _duplizieren" -#: app/actions/gradients-actions.c:55 +#: ../app/actions/gradients-actions.c:55 msgid "Duplicate gradient" msgstr "Farbverlauf duplizieren" -#: app/actions/gradients-actions.c:60 +#: ../app/actions/gradients-actions.c:60 msgid "Save as _POV-Ray..." msgstr "Als _POV-Ray-Datei speichern..." -#: app/actions/gradients-actions.c:61 +#: ../app/actions/gradients-actions.c:61 msgid "Save gradient as POV-Ray" msgstr "»%s« als POV-Ray-Datei speichern" -#: app/actions/gradients-actions.c:66 +#: ../app/actions/gradients-actions.c:66 msgid "_Delete Gradient..." msgstr "Farbverlauf _löschen..." -#: app/actions/gradients-actions.c:67 +#: ../app/actions/gradients-actions.c:67 msgid "Delete gradient" msgstr "Farbverlauf löschen..." -#: app/actions/gradients-actions.c:72 +#: ../app/actions/gradients-actions.c:72 msgid "_Refresh Gradients" msgstr "Farbverläufe n_eu laden" -#: app/actions/gradients-actions.c:73 +#: ../app/actions/gradients-actions.c:73 msgid "Refresh gradients" msgstr "Farbverläufe n_eu laden" -#: app/actions/gradients-actions.c:81 +#: ../app/actions/gradients-actions.c:81 msgid "_Edit Gradient..." msgstr "Farbverlauf _bearbeiten..." -#: app/actions/gradients-actions.c:82 +#: ../app/actions/gradients-actions.c:82 msgid "Edit gradient" msgstr "Farbverlauf bearbeiten..." -#: app/actions/gradients-commands.c:65 +#: ../app/actions/gradients-commands.c:65 #, c-format msgid "Save '%s' as POV-Ray" msgstr "»%s« als POV-Ray-Datei speichern" -#: app/actions/help-actions.c:38 app/actions/help-actions.c:41 +#: ../app/actions/help-actions.c:38 ../app/actions/help-actions.c:41 msgid "_Help" msgstr "_Hilfe" -#: app/actions/help-actions.c:46 +#: ../app/actions/help-actions.c:46 msgid "_Context Help" msgstr "_Kontexthilfe" -#: app/actions/image-actions.c:47 +#: ../app/actions/image-actions.c:47 msgid "Toolbox Menu" msgstr "Werkzeugfenstermenü" -#: app/actions/image-actions.c:51 app/actions/image-actions.c:55 +#: ../app/actions/image-actions.c:51 ../app/actions/image-actions.c:55 msgid "Image Menu" msgstr "Bildmenü" -#: app/actions/image-actions.c:58 +#: ../app/actions/image-actions.c:58 msgid "_Xtns" msgstr "_Xtns" -#: app/actions/image-actions.c:59 +#: ../app/actions/image-actions.c:59 msgid "_Image" msgstr "_Bild" -#: app/actions/image-actions.c:60 +#: ../app/actions/image-actions.c:60 msgid "_Mode" msgstr "_Modus" -#: app/actions/image-actions.c:61 app/actions/layers-actions.c:57 +#: ../app/actions/image-actions.c:61 ../app/actions/layers-actions.c:57 msgid "_Transform" msgstr "_Transformation" -#: app/actions/image-actions.c:62 +#: ../app/actions/image-actions.c:62 msgid "_Guides" msgstr "_Hilfslinie" -#: app/actions/image-actions.c:65 app/actions/image-actions.c:70 +#: ../app/actions/image-actions.c:65 ../app/actions/image-actions.c:70 msgid "_New..." msgstr "_Neu..." -#: app/actions/image-actions.c:75 +#: ../app/actions/image-actions.c:75 msgid "Can_vas Size..." msgstr "_Leinwandgröße" -#: app/actions/image-actions.c:80 +#: ../app/actions/image-actions.c:80 msgid "F_it Canvas to Layers" msgstr "Leinwand auf Ebenen anpassen" -#: app/actions/image-actions.c:85 +#: ../app/actions/image-actions.c:85 msgid "_Print Size..." msgstr "_Druckgröße..." -#: app/actions/image-actions.c:90 +#: ../app/actions/image-actions.c:90 msgid "_Scale Image..." msgstr "Bild _skalieren" -#: app/actions/image-actions.c:95 +#: ../app/actions/image-actions.c:95 msgid "_Crop Image" msgstr "Bild _zuschneiden" -#: app/actions/image-actions.c:100 +#: ../app/actions/image-actions.c:100 msgid "_Duplicate" msgstr "_Duplizieren" -#: app/actions/image-actions.c:105 +#: ../app/actions/image-actions.c:105 msgid "Merge Visible _Layers..." msgstr "Sichtbare _Ebenen vereinen..." -#: app/actions/image-actions.c:110 app/actions/layers-actions.c:138 +#: ../app/actions/image-actions.c:110 ../app/actions/layers-actions.c:138 msgid "_Flatten Image" msgstr "Bild z_usammenfügen" -#: app/actions/image-actions.c:115 +#: ../app/actions/image-actions.c:115 msgid "Configure G_rid..." msgstr "_Gitter konfigurieren" -#: app/actions/image-actions.c:128 +#: ../app/actions/image-actions.c:128 msgid "_Grayscale" msgstr "_Graustufen" -#: app/actions/image-actions.c:133 +#: ../app/actions/image-actions.c:133 msgid "_Indexed..." msgstr "I_ndiziert" -#: app/actions/image-commands.c:192 +#: ../app/actions/image-commands.c:192 msgid "Set Image Canvas Size" msgstr "Leinwandgröße festlegen" -#: app/actions/image-commands.c:219 app/actions/image-commands.c:449 +#: ../app/actions/image-commands.c:219 ../app/actions/image-commands.c:449 msgid "Resizing..." msgstr "Größe verändern..." -#: app/actions/image-commands.c:242 +#: ../app/actions/image-commands.c:242 msgid "Set Image Print Resolution" msgstr "Bildauflösung ändern" -#: app/actions/image-commands.c:289 +#: ../app/actions/image-commands.c:289 msgid "Flipping..." msgstr "Spiegeln..." -#: app/actions/image-commands.c:310 app/pdb/drawable_transform_cmds.c:1035 -#: app/pdb/drawable_transform_cmds.c:1193 app/pdb/transform_tools_cmds.c:339 -#: app/tools/gimprotatetool.c:159 +#: ../app/actions/image-commands.c:310 +#: ../app/pdb/drawable_transform_cmds.c:1035 +#: ../app/pdb/drawable_transform_cmds.c:1193 +#: ../app/pdb/transform_tools_cmds.c:339 ../app/tools/gimprotatetool.c:159 msgid "Rotating..." msgstr "Drehe..." -#: app/actions/image-commands.c:332 app/actions/layers-commands.c:535 +#: ../app/actions/image-commands.c:332 ../app/actions/layers-commands.c:535 msgid "Cannot crop because the current selection is empty." msgstr "" "Es konnte nicht ausgeschnitten oder kopiert werden,\n" "da der ausgewählte Bereich leer ist." -#: app/actions/image-commands.c:484 +#: ../app/actions/image-commands.c:484 msgid "Change Print Size" msgstr "Druckgröße ändern" -#: app/actions/image-commands.c:508 app/core/gimpimage-scale.c:71 -#: app/dialogs/image-scale-dialog.c:91 +#: ../app/actions/image-commands.c:508 ../app/core/gimpimage-scale.c:71 +#: ../app/dialogs/image-scale-dialog.c:91 msgid "Scale Image" msgstr "Bild skalieren" -#: app/actions/image-commands.c:521 app/actions/layers-commands.c:959 -#: app/pdb/drawable_transform_cmds.c:1346 -#: app/pdb/drawable_transform_cmds.c:1503 app/pdb/transform_tools_cmds.c:458 -#: app/tools/gimpscaletool.c:153 +#: ../app/actions/image-commands.c:521 ../app/actions/layers-commands.c:959 +#: ../app/pdb/drawable_transform_cmds.c:1346 +#: ../app/pdb/drawable_transform_cmds.c:1503 +#: ../app/pdb/transform_tools_cmds.c:458 ../app/tools/gimpscaletool.c:153 msgid "Scaling..." msgstr "Skalierung" -#: app/actions/images-actions.c:43 +#: ../app/actions/images-actions.c:43 msgid "Images Menu" msgstr "Bildmenü" -#: app/actions/images-actions.c:47 +#: ../app/actions/images-actions.c:47 msgid "_Raise Views" msgstr "Ansichten an_heben" -#: app/actions/images-actions.c:48 +#: ../app/actions/images-actions.c:48 msgid "Raise this image's displays" msgstr "Die Ansichten dieses Bildes anheben" -#: app/actions/images-actions.c:53 app/actions/view-actions.c:68 +#: ../app/actions/images-actions.c:53 ../app/actions/view-actions.c:68 msgid "_New View" msgstr "_Neue Ansicht" -#: app/actions/images-actions.c:54 +#: ../app/actions/images-actions.c:54 msgid "Create a new display for this image" msgstr "Eine neue Ansicht für dieses Bild erzeugen" -#: app/actions/images-actions.c:59 +#: ../app/actions/images-actions.c:59 msgid "_Delete Image" msgstr "Bild _löschen" -#: app/actions/images-actions.c:60 +#: ../app/actions/images-actions.c:60 msgid "Delete this image" msgstr "Dieses Bild löschen" -#: app/actions/layers-actions.c:48 +#: ../app/actions/layers-actions.c:48 msgid "Layers Menu" msgstr "Ebenenmenü" -#: app/actions/layers-actions.c:51 +#: ../app/actions/layers-actions.c:51 msgid "_Layer" msgstr "_Ebene" -#: app/actions/layers-actions.c:52 +#: ../app/actions/layers-actions.c:52 msgid "Stac_k" msgstr "_Stapel" -#: app/actions/layers-actions.c:54 app/tools/gimplevelstool.c:665 +#: ../app/actions/layers-actions.c:54 ../app/tools/gimplevelstool.c:665 msgid "_Auto" msgstr "_Automatisch" -#: app/actions/layers-actions.c:55 +#: ../app/actions/layers-actions.c:55 msgid "_Mask" msgstr "_Maske" -#: app/actions/layers-actions.c:56 +#: ../app/actions/layers-actions.c:56 msgid "Tr_ansparency" msgstr "Tr_ansparenz" -#: app/actions/layers-actions.c:58 +#: ../app/actions/layers-actions.c:58 msgid "_Properties" msgstr "_Eigenschaften" -#: app/actions/layers-actions.c:60 +#: ../app/actions/layers-actions.c:60 msgid "Layer _Mode" msgstr "Ebenen_modus" -#: app/actions/layers-actions.c:63 +#: ../app/actions/layers-actions.c:63 msgid "Te_xt Tool" msgstr "Te_xt-Werkzeug" -#: app/actions/layers-actions.c:68 +#: ../app/actions/layers-actions.c:68 msgid "_Edit Layer Attributes..." msgstr "Ebenenei_genschaften..." -#: app/actions/layers-actions.c:69 +#: ../app/actions/layers-actions.c:69 msgid "Edit layer attributes" msgstr "Ebeneneigenschaften bearbeiten" -#: app/actions/layers-actions.c:74 +#: ../app/actions/layers-actions.c:74 msgid "_New Layer..." msgstr "_Neue Ebene..." -#: app/actions/layers-actions.c:75 +#: ../app/actions/layers-actions.c:75 msgid "New layer..." msgstr "Neue Ebene..." -#: app/actions/layers-actions.c:80 +#: ../app/actions/layers-actions.c:80 msgid "_New Layer" msgstr "_Neue Ebene" -#: app/actions/layers-actions.c:81 +#: ../app/actions/layers-actions.c:81 msgid "New layer with last values" msgstr "Neue Ebene mit den aktuellen Werten" -#: app/actions/layers-actions.c:86 +#: ../app/actions/layers-actions.c:86 msgid "D_uplicate Layer" msgstr "Ebene _duplizieren" -#: app/actions/layers-actions.c:87 +#: ../app/actions/layers-actions.c:87 msgid "Duplicate layer" msgstr "Ebene duplizieren" -#: app/actions/layers-actions.c:92 +#: ../app/actions/layers-actions.c:92 msgid "_Delete Layer" msgstr "Ebene _löschen" -#: app/actions/layers-actions.c:93 app/core/core-enums.c:1079 +#: ../app/actions/layers-actions.c:93 ../app/core/core-enums.c:1081 msgid "Delete layer" msgstr "Ebene löschen" -#: app/actions/layers-actions.c:98 +#: ../app/actions/layers-actions.c:98 msgid "_Raise Layer" msgstr "Ebene an_heben" -#: app/actions/layers-actions.c:99 +#: ../app/actions/layers-actions.c:99 msgid "Raise layer" msgstr "Ebene anheben" -#: app/actions/layers-actions.c:104 +#: ../app/actions/layers-actions.c:104 msgid "Layer to _Top" msgstr "Ebene nach ganz _oben" -#: app/actions/layers-actions.c:105 +#: ../app/actions/layers-actions.c:105 msgid "Raise layer to top" msgstr "Ebene nach ganz oben anheben" -#: app/actions/layers-actions.c:110 +#: ../app/actions/layers-actions.c:110 msgid "_Lower Layer" msgstr "Ebene a_bsenken" -#: app/actions/layers-actions.c:111 +#: ../app/actions/layers-actions.c:111 msgid "Lower layer" msgstr "Ebene absenken" -#: app/actions/layers-actions.c:116 +#: ../app/actions/layers-actions.c:116 msgid "Layer to _Bottom" msgstr "Ebene nach ganz _unten" -#: app/actions/layers-actions.c:117 +#: ../app/actions/layers-actions.c:117 msgid "Lower layer to bottom" msgstr "Ebene nach ganz unten absenken" -#: app/actions/layers-actions.c:122 +#: ../app/actions/layers-actions.c:122 msgid "_Anchor Layer" msgstr "Ebene _verankern" -#: app/actions/layers-actions.c:123 +#: ../app/actions/layers-actions.c:123 msgid "Anchor floating layer" msgstr "Schwebende Auswahl verankern" -#: app/actions/layers-actions.c:128 +#: ../app/actions/layers-actions.c:128 msgid "Merge Do_wn" msgstr "Nach un_ten vereinen" -#: app/actions/layers-actions.c:133 +#: ../app/actions/layers-actions.c:133 msgid "Merge _Visible Layers..." msgstr "Sichtbare _Ebenen vereinen..." -#: app/actions/layers-actions.c:143 +#: ../app/actions/layers-actions.c:143 msgid "_Discard Text Information" msgstr "Te_xtinformationen verwerfen" -#: app/actions/layers-actions.c:148 +#: ../app/actions/layers-actions.c:148 msgid "Layer B_oundary Size..." msgstr "Ebenen_größe... " -#: app/actions/layers-actions.c:153 +#: ../app/actions/layers-actions.c:153 msgid "Layer to _Image Size" msgstr "Ebene auf _Bildgröße" -#: app/actions/layers-actions.c:158 +#: ../app/actions/layers-actions.c:158 msgid "_Scale Layer..." msgstr "Ebene _skalieren..." -#: app/actions/layers-actions.c:163 +#: ../app/actions/layers-actions.c:163 msgid "Cr_op Layer" msgstr "Ebene zuschneiden" -#: app/actions/layers-actions.c:168 +#: ../app/actions/layers-actions.c:168 msgid "Add La_yer Mask..." msgstr "Ebenenmaske _hinzufügen..." -#: app/actions/layers-actions.c:173 +#: ../app/actions/layers-actions.c:173 msgid "Add Alpha C_hannel" msgstr "Alphakanal hin_zufügen" -#: app/actions/layers-actions.c:181 +#: ../app/actions/layers-actions.c:181 msgid "Keep Transparency" msgstr "Transparenz erhalten" -#: app/actions/layers-actions.c:187 +#: ../app/actions/layers-actions.c:187 msgid "Edit Layer Mask" msgstr "Ebenenmaske editieren" -#: app/actions/layers-actions.c:193 +#: ../app/actions/layers-actions.c:193 msgid "Show Layer Mask" msgstr "Ebenenmaske anzeigen" -#: app/actions/layers-actions.c:199 +#: ../app/actions/layers-actions.c:199 msgid "Disable Layer Mask" msgstr "Ebenenmaske deaktivieren" -#: app/actions/layers-actions.c:208 +#: ../app/actions/layers-actions.c:208 msgid "Apply Layer _Mask" msgstr "Ebenenmaske an_wenden..." -#: app/actions/layers-actions.c:213 +#: ../app/actions/layers-actions.c:213 msgid "Delete Layer Mas_k" msgstr "Ebenenmaske lös_chen" -#: app/actions/layers-actions.c:221 +#: ../app/actions/layers-actions.c:221 msgid "_Mask to Selection" msgstr "_Auswahl aus Maske" -#: app/actions/layers-actions.c:244 +#: ../app/actions/layers-actions.c:244 msgid "Al_pha to Selection" msgstr "Aus_wahl aus Alphakanal" -#: app/actions/layers-actions.c:249 +#: ../app/actions/layers-actions.c:249 msgid "A_dd to Selection" msgstr "Zur Auswahl _hinzufügen" -#: app/actions/layers-actions.c:267 +#: ../app/actions/layers-actions.c:267 msgid "Select _Top Layer" msgstr "_Oberste Ebene auswählen" -#: app/actions/layers-actions.c:272 +#: ../app/actions/layers-actions.c:272 msgid "Select _Bottom Layer" msgstr "_Unterste Ebene auswählen" -#: app/actions/layers-actions.c:277 +#: ../app/actions/layers-actions.c:277 msgid "Select _Previous Layer" msgstr "_Vorherige Ebene auswählen" -#: app/actions/layers-actions.c:282 +#: ../app/actions/layers-actions.c:282 msgid "Select _Next Layer" msgstr "_Nächste Ebene auswählen" -#: app/actions/layers-actions.c:290 +#: ../app/actions/layers-actions.c:290 msgid "Set Opacity" msgstr "Ebenentransparenz ändern" -#: app/actions/layers-commands.c:196 +#: ../app/actions/layers-commands.c:196 msgid "Layer Attributes" msgstr "Ebeneneigenschaften" -#: app/actions/layers-commands.c:199 +#: ../app/actions/layers-commands.c:199 msgid "Edit Layer Attributes" msgstr "Ebeneneigenschaften bearbeiten" -#: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 -#: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 +#: ../app/actions/layers-commands.c:232 ../app/actions/layers-commands.c:234 +#: ../app/actions/layers-commands.c:291 ../app/actions/layers-commands.c:295 +#: ../app/widgets/gimpdrawabletreeview.c:238 +#: ../app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "Neue Ebene" -#: app/actions/layers-commands.c:237 +#: ../app/actions/layers-commands.c:237 msgid "Create a New Layer" msgstr "Eine neue Ebene erstellen" -#: app/actions/layers-commands.c:470 +#: ../app/actions/layers-commands.c:470 msgid "Set Layer Boundary Size" msgstr "Ebenengröße festlegen" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 +#: ../app/actions/layers-commands.c:512 ../app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "Ebene skalieren" -#: app/actions/layers-commands.c:545 +#: ../app/actions/layers-commands.c:545 msgid "Crop Layer" msgstr "Ebene zuschneiden" -#: app/actions/layers-commands.c:683 +#: ../app/actions/layers-commands.c:683 msgid "Layer Mask to Selection" msgstr "Auswahl aus Ebenenmaske" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1065 -#: app/dialogs/layer-add-mask-dialog.c:62 +#: ../app/actions/layers-commands.c:904 ../app/core/gimplayer.c:1065 +#: ../app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "Ebenenmaske hinzufügen" -#: app/actions/layers-commands.c:975 app/actions/layers-commands.c:1007 +#: ../app/actions/layers-commands.c:975 ../app/actions/layers-commands.c:1007 msgid "Invalid width or height. Both must be positive." msgstr "Ungültige Breite oder Höhe. Beide müssen positiv sein." -#: app/actions/palette-editor-actions.c:43 +#: ../app/actions/palette-editor-actions.c:43 msgid "Palette Editor Menu" msgstr "Farbpaletteneditormenü" -#: app/actions/palette-editor-actions.c:53 +#: ../app/actions/palette-editor-actions.c:53 msgid "_Delete Color" msgstr "Farbe _löschen" -#: app/actions/palette-editor-actions.c:54 +#: ../app/actions/palette-editor-actions.c:54 msgid "Delete color" msgstr "Farbe löschen" -#: app/actions/palette-editor-actions.c:62 +#: ../app/actions/palette-editor-actions.c:62 msgid "New Color from _FG" msgstr "Neue Farbe aus _Vordergrund" -#: app/actions/palette-editor-actions.c:63 +#: ../app/actions/palette-editor-actions.c:63 msgid "New color from FG" msgstr "Neue Farbe aus Vordergrund" -#: app/actions/palette-editor-actions.c:68 +#: ../app/actions/palette-editor-actions.c:68 msgid "New Color from _BG" msgstr "Neue Farbe aus _Hintergrund" -#: app/actions/palette-editor-actions.c:69 +#: ../app/actions/palette-editor-actions.c:69 msgid "New color from BG" msgstr "Neue Farbe aus Hintergrund" -#: app/actions/palette-editor-actions.c:77 app/actions/view-actions.c:215 +#: ../app/actions/palette-editor-actions.c:77 +#: ../app/actions/view-actions.c:215 msgid "Zoom _In" msgstr "Hin_einzoomen" -#: app/actions/palette-editor-actions.c:83 app/actions/view-actions.c:209 +#: ../app/actions/palette-editor-actions.c:83 +#: ../app/actions/view-actions.c:209 msgid "Zoom _Out" msgstr "Hera_uszoomen" -#: app/actions/palette-editor-actions.c:89 +#: ../app/actions/palette-editor-actions.c:89 msgid "Zoom _All" msgstr "_Alles anzeigen" -#: app/actions/palette-editor-commands.c:68 +#: ../app/actions/palette-editor-commands.c:68 msgid "Edit Palette Color" msgstr "Paletten-Farbe bearbeiten" -#: app/actions/palette-editor-commands.c:70 +#: ../app/actions/palette-editor-commands.c:70 msgid "Edit Color Palette Entry" msgstr "Paletten-Farbeintrag bearbeiten" -#: app/actions/palettes-actions.c:44 +#: ../app/actions/palettes-actions.c:44 msgid "Palettes Menu" msgstr "Farbpalettenmenü" -#: app/actions/palettes-actions.c:48 +#: ../app/actions/palettes-actions.c:48 msgid "_New Palette" msgstr "_Neue Farbpalette" -#: app/actions/palettes-actions.c:49 +#: ../app/actions/palettes-actions.c:49 msgid "New palette" msgstr "_Neue Farbpalette" -#: app/actions/palettes-actions.c:54 +#: ../app/actions/palettes-actions.c:54 msgid "_Import Palette..." msgstr "Farbpalette _importieren..." -#: app/actions/palettes-actions.c:55 +#: ../app/actions/palettes-actions.c:55 msgid "Import palette" msgstr "Farbpalette importieren" -#: app/actions/palettes-actions.c:60 +#: ../app/actions/palettes-actions.c:60 msgid "D_uplicate Palette" msgstr "Farbpalette _duplizieren" -#: app/actions/palettes-actions.c:61 +#: ../app/actions/palettes-actions.c:61 msgid "Duplicate palette" msgstr "Farbpalette _duplizieren" -#: app/actions/palettes-actions.c:66 +#: ../app/actions/palettes-actions.c:66 msgid "_Merge Palettes..." msgstr "Farbpaletten _vereinen..." -#: app/actions/palettes-actions.c:67 +#: ../app/actions/palettes-actions.c:67 msgid "Merge palettes" msgstr "Farbpalette vereinen" -#: app/actions/palettes-actions.c:72 +#: ../app/actions/palettes-actions.c:72 msgid "_Delete Palette" msgstr "Farbpalette _löschen" -#: app/actions/palettes-actions.c:73 +#: ../app/actions/palettes-actions.c:73 msgid "Delete palette" msgstr "Farbpalette _löschen" -#: app/actions/palettes-actions.c:78 +#: ../app/actions/palettes-actions.c:78 msgid "_Refresh Palettes" msgstr "Farbpaletten n_eu laden" -#: app/actions/palettes-actions.c:79 +#: ../app/actions/palettes-actions.c:79 msgid "Refresh palettes" msgstr "Farbpaletten n_eu laden" -#: app/actions/palettes-actions.c:87 +#: ../app/actions/palettes-actions.c:87 msgid "_Edit Palette..." msgstr "Farbpalette _bearbeiten..." -#: app/actions/palettes-actions.c:88 +#: ../app/actions/palettes-actions.c:88 msgid "Edit palette" msgstr "Farbpalette _bearbeiten..." -#: app/actions/palettes-commands.c:72 +#: ../app/actions/palettes-commands.c:72 msgid "Merge Palette" msgstr "Farbpalette vereinen" -#: app/actions/palettes-commands.c:76 +#: ../app/actions/palettes-commands.c:76 msgid "Enter a name for the merged palette" msgstr "Geben sie dieser vereinten Farbpalette einen Namen" -#: app/actions/patterns-actions.c:43 +#: ../app/actions/patterns-actions.c:43 msgid "Patterns Menu" msgstr "Mustermenü" -#: app/actions/patterns-actions.c:47 +#: ../app/actions/patterns-actions.c:47 msgid "_New Pattern" msgstr "_Neues Muster" -#: app/actions/patterns-actions.c:48 +#: ../app/actions/patterns-actions.c:48 msgid "New pattern" msgstr "Neues Muster" -#: app/actions/patterns-actions.c:53 +#: ../app/actions/patterns-actions.c:53 msgid "D_uplicate Pattern" msgstr "Muster _duplizieren" -#: app/actions/patterns-actions.c:54 +#: ../app/actions/patterns-actions.c:54 msgid "Duplicate pattern" msgstr "Muster _duplizieren" -#: app/actions/patterns-actions.c:59 +#: ../app/actions/patterns-actions.c:59 msgid "_Delete Pattern..." msgstr "Muster _löschen..." -#: app/actions/patterns-actions.c:60 +#: ../app/actions/patterns-actions.c:60 msgid "Delete pattern" msgstr "Muster _löschen..." -#: app/actions/patterns-actions.c:65 +#: ../app/actions/patterns-actions.c:65 msgid "_Refresh Patterns" msgstr "Muster n_eu laden" -#: app/actions/patterns-actions.c:66 +#: ../app/actions/patterns-actions.c:66 msgid "Refresh patterns" msgstr "Muster n_eu laden" -#: app/actions/patterns-actions.c:74 +#: ../app/actions/patterns-actions.c:74 msgid "_Edit Pattern..." msgstr "Muster _bearbeiten..." -#: app/actions/patterns-actions.c:75 +#: ../app/actions/patterns-actions.c:75 msgid "Edit pattern" msgstr "Muster _bearbeiten..." -#: app/actions/plug-in-actions.c:62 +#: ../app/actions/plug-in-actions.c:62 msgid "Filte_rs" msgstr "Filte_r" -#: app/actions/plug-in-actions.c:63 +#: ../app/actions/plug-in-actions.c:63 msgid "_Blur" msgstr "_Weichzeichnen" -#: app/actions/plug-in-actions.c:65 +#: ../app/actions/plug-in-actions.c:65 msgid "Ma_p" msgstr "_Abbilden" -#: app/actions/plug-in-actions.c:66 +#: ../app/actions/plug-in-actions.c:66 msgid "_Noise" msgstr "_Rauschen" -#: app/actions/plug-in-actions.c:67 +#: ../app/actions/plug-in-actions.c:67 msgid "Edge-De_tect" msgstr "_Kanten finden" -#: app/actions/plug-in-actions.c:68 +#: ../app/actions/plug-in-actions.c:68 msgid "En_hance" msgstr "_Verbessern" -#: app/actions/plug-in-actions.c:69 +#: ../app/actions/plug-in-actions.c:69 msgid "_Generic" msgstr "_Generisch" -#: app/actions/plug-in-actions.c:70 +#: ../app/actions/plug-in-actions.c:70 msgid "Gla_ss Effects" msgstr "_Glas-Effekte" -#: app/actions/plug-in-actions.c:71 +#: ../app/actions/plug-in-actions.c:71 msgid "_Light Effects" msgstr "_Licht-Effekte" -#: app/actions/plug-in-actions.c:72 +#: ../app/actions/plug-in-actions.c:72 msgid "_Distorts" msgstr "Ver_zerren" -#: app/actions/plug-in-actions.c:73 +#: ../app/actions/plug-in-actions.c:73 msgid "_Artistic" msgstr "_Künstlerisch" -#: app/actions/plug-in-actions.c:74 +#: ../app/actions/plug-in-actions.c:74 msgid "_Map" msgstr "_Abbilden" -#: app/actions/plug-in-actions.c:75 +#: ../app/actions/plug-in-actions.c:75 msgid "_Render" msgstr "_Render" -#: app/actions/plug-in-actions.c:76 +#: ../app/actions/plug-in-actions.c:76 msgid "_Clouds" msgstr "_Wolken" -#: app/actions/plug-in-actions.c:77 +#: ../app/actions/plug-in-actions.c:77 msgid "_Nature" msgstr "_Natur" -#: app/actions/plug-in-actions.c:79 +#: ../app/actions/plug-in-actions.c:79 msgid "_Web" msgstr "_Web" -#: app/actions/plug-in-actions.c:80 +#: ../app/actions/plug-in-actions.c:80 msgid "An_imation" msgstr "A_nimation" -#: app/actions/plug-in-actions.c:81 +#: ../app/actions/plug-in-actions.c:81 msgid "C_ombine" msgstr "K_ombinieren" -#: app/actions/plug-in-actions.c:82 +#: ../app/actions/plug-in-actions.c:82 msgid "To_ys" msgstr "Viel Spass" -#: app/actions/plug-in-actions.c:85 +#: ../app/actions/plug-in-actions.c:85 msgid "Reset all Filters..." msgstr "_Alle Filtereinstellungen zurücksetzen..." -#: app/actions/plug-in-actions.c:93 app/actions/plug-in-actions.c:363 +#: ../app/actions/plug-in-actions.c:93 ../app/actions/plug-in-actions.c:363 msgid "Repeat Last" msgstr "Letzten Vorgang wiederholen" -#: app/actions/plug-in-actions.c:98 app/actions/plug-in-actions.c:365 +#: ../app/actions/plug-in-actions.c:98 ../app/actions/plug-in-actions.c:365 msgid "Re-Show Last" msgstr "Letzten Vorgang nochmal anzeigen" -#: app/actions/plug-in-actions.c:349 +#: ../app/actions/plug-in-actions.c:349 #, c-format msgid "Re_peat \"%s\"" msgstr "»%s« _wiederholen" -#: app/actions/plug-in-actions.c:350 +#: ../app/actions/plug-in-actions.c:350 #, c-format msgid "R_e-show \"%s\"" msgstr "»%s« _nochmal anzeigen" -#: app/actions/plug-in-commands.c:193 +#: ../app/actions/plug-in-commands.c:193 msgid "Reset all Filters" msgstr "Alle Filter zurücksetzen" -#: app/actions/plug-in-commands.c:207 +#: ../app/actions/plug-in-commands.c:207 msgid "Do you really want to reset all filters to default values?" msgstr "" "Möchten sie alle Filter auf Vorgabeeinstellungen zurücksetzen?Wollen Sie " "wirklich alle Werkzeugeinstellungen auf Vorgabewerte zurüchsetzen?" -#: app/actions/qmask-actions.c:42 +#: ../app/actions/qmask-actions.c:42 msgid "Quick Mask Menu" msgstr "Schnelle Maske Menü" -#: app/actions/qmask-actions.c:46 +#: ../app/actions/qmask-actions.c:46 msgid "_Configure Color and Opacity..." msgstr "Farbe und Deckkraft _festlegen..." -#: app/actions/qmask-actions.c:54 +#: ../app/actions/qmask-actions.c:54 msgid "_Quick Mask Active" msgstr "_Schnelle Maske aktiv" -#: app/actions/qmask-actions.c:60 +#: ../app/actions/qmask-actions.c:60 msgid "Toggle _Quick Mask" msgstr "_Schnelle Maske aktivieren/deaktivieren" -#: app/actions/qmask-actions.c:70 +#: ../app/actions/qmask-actions.c:70 msgid "Mask _Selected Areas" msgstr "Maske aus _Auswahl" -#: app/actions/qmask-actions.c:75 +#: ../app/actions/qmask-actions.c:75 msgid "Mask _Unselected Areas" msgstr "Maske aus _invertierter Auswahl" -#: app/actions/qmask-commands.c:106 +#: ../app/actions/qmask-commands.c:106 msgid "Quick Mask Attributes" msgstr "Attribute der schnellen Maske" -#: app/actions/qmask-commands.c:109 +#: ../app/actions/qmask-commands.c:109 msgid "Edit Quick Mask Attributes" msgstr "Attribute der schnellen Maske bearbeiten" -#: app/actions/qmask-commands.c:111 +#: ../app/actions/qmask-commands.c:111 msgid "Edit Quick Mask Color" msgstr "Farbe der schnellen Maske bearbeiten" -#: app/actions/qmask-commands.c:112 +#: ../app/actions/qmask-commands.c:112 msgid "Mask Opacity:" msgstr "Maskendeckkraft:" -#: app/actions/select-actions.c:44 +#: ../app/actions/select-actions.c:44 msgid "Selection Editor Menu" msgstr "Auswahleditor" -#: app/actions/select-actions.c:47 +#: ../app/actions/select-actions.c:47 msgid "_Select" msgstr "_Auswahl" -#: app/actions/select-actions.c:50 +#: ../app/actions/select-actions.c:50 msgid "_All" msgstr "_Alles" -#: app/actions/select-actions.c:51 +#: ../app/actions/select-actions.c:51 msgid "Select all" msgstr "Alles auswählen" -#: app/actions/select-actions.c:56 +#: ../app/actions/select-actions.c:56 msgid "_None" msgstr "A_ufheben" -#: app/actions/select-actions.c:57 +#: ../app/actions/select-actions.c:57 msgid "Select none" msgstr "Auswahl aufheben" -#: app/actions/select-actions.c:62 +#: ../app/actions/select-actions.c:62 msgid "_Invert" msgstr "_Invertieren" -#: app/actions/select-actions.c:63 +#: ../app/actions/select-actions.c:63 msgid "Invert selection" msgstr "Auswahl invertieren" -#: app/actions/select-actions.c:68 +#: ../app/actions/select-actions.c:68 msgid "_Float" msgstr "_Schwebend" -#: app/actions/select-actions.c:73 +#: ../app/actions/select-actions.c:73 msgid "Fea_ther..." msgstr "A_usblenden..." -#: app/actions/select-actions.c:78 +#: ../app/actions/select-actions.c:78 msgid "_Sharpen" msgstr "Sch_ärfen" -#: app/actions/select-actions.c:83 +#: ../app/actions/select-actions.c:83 msgid "S_hrink..." msgstr "Ver_kleinern..." -#: app/actions/select-actions.c:88 +#: ../app/actions/select-actions.c:88 msgid "_Grow..." msgstr "Ver_größern..." -#: app/actions/select-actions.c:93 +#: ../app/actions/select-actions.c:93 msgid "Bo_rder..." msgstr "_Rand..." -#: app/actions/select-actions.c:98 +#: ../app/actions/select-actions.c:98 msgid "Save to _Channel" msgstr "In _Kanal speichern" -#: app/actions/select-actions.c:99 +#: ../app/actions/select-actions.c:99 msgid "Save selection to channel" msgstr "Auswahl in Kanal speichern" -#: app/actions/select-actions.c:104 +#: ../app/actions/select-actions.c:104 msgid "_Stroke Selection..." msgstr "Auswahl nach_ziehen" -#: app/actions/select-actions.c:105 +#: ../app/actions/select-actions.c:105 msgid "Stroke selection..." msgstr "Auswahl nachziehen..." -#: app/actions/select-actions.c:110 +#: ../app/actions/select-actions.c:110 msgid "_Stroke Selection" msgstr "Auswahl nach_ziehen" -#: app/actions/select-actions.c:111 +#: ../app/actions/select-actions.c:111 msgid "Stroke selection with last values" msgstr "Auswahl mit den aktuellen Werten nachziehen" -#: app/actions/select-commands.c:136 app/core/gimpselection.c:201 +#: ../app/actions/select-commands.c:136 ../app/core/gimpselection.c:201 msgid "Feather Selection" msgstr "Auswahl ausblenden" -#: app/actions/select-commands.c:140 +#: ../app/actions/select-commands.c:140 msgid "Feather selection by" msgstr "Auswahl ausblenden um" -#: app/actions/select-commands.c:171 app/core/gimpselection.c:208 +#: ../app/actions/select-commands.c:171 ../app/core/gimpselection.c:208 msgid "Shrink Selection" msgstr "Auswahl verkleinern" -#: app/actions/select-commands.c:175 +#: ../app/actions/select-commands.c:175 msgid "Shrink selection by" msgstr "Auswahl verkleinern um" -#: app/actions/select-commands.c:184 +#: ../app/actions/select-commands.c:184 msgid "Shrink from image border" msgstr "Verkleinere vom Bildrand" -#: app/actions/select-commands.c:205 app/core/gimpselection.c:207 +#: ../app/actions/select-commands.c:205 ../app/core/gimpselection.c:207 msgid "Grow Selection" msgstr "Auswahl vergrößern" -#: app/actions/select-commands.c:209 +#: ../app/actions/select-commands.c:209 msgid "Grow selection by" msgstr "Auswahl vergrößern um" -#: app/actions/select-commands.c:228 app/core/gimpselection.c:206 +#: ../app/actions/select-commands.c:228 ../app/core/gimpselection.c:206 msgid "Border Selection" msgstr "Auswahl umranden" -#: app/actions/select-commands.c:232 +#: ../app/actions/select-commands.c:232 msgid "Border selection by" msgstr "Neue Auswahl größer um" -#: app/actions/select-commands.c:275 app/actions/select-commands.c:301 -#: app/actions/vectors-commands.c:365 app/actions/vectors-commands.c:392 -#: app/dialogs/stroke-dialog.c:275 +#: ../app/actions/select-commands.c:275 ../app/actions/select-commands.c:301 +#: ../app/actions/vectors-commands.c:365 ../app/actions/vectors-commands.c:392 +#: ../app/dialogs/stroke-dialog.c:275 msgid "There is no active layer or channel to stroke to." msgstr "" "Es gibt weder eine aktive Ebene noch einen aktiven Kanal, die bzw. der " "nachgezogen werden kann." -#: app/actions/select-commands.c:280 app/core/gimpselection.c:184 +#: ../app/actions/select-commands.c:280 ../app/core/gimpselection.c:184 msgid "Stroke Selection" msgstr "Auswahl nachziehen" -#: app/actions/templates-actions.c:42 +#: ../app/actions/templates-actions.c:42 msgid "Templates Menu" msgstr "Vorlagenmenü" -#: app/actions/templates-actions.c:46 +#: ../app/actions/templates-actions.c:46 msgid "_Create Image from Template..." msgstr "B_ild aus Vorlage erstellen..." -#: app/actions/templates-actions.c:47 +#: ../app/actions/templates-actions.c:47 msgid "Create a new image from the selected template" msgstr "Ein neues Bild von dieser Vorlage erzeugen" -#: app/actions/templates-actions.c:52 +#: ../app/actions/templates-actions.c:52 msgid "_New Template..." msgstr "_Neue Vorlage..." -#: app/actions/templates-actions.c:53 +#: ../app/actions/templates-actions.c:53 msgid "Create a new template" msgstr "Eine neue Vorlage erstellen" -#: app/actions/templates-actions.c:58 +#: ../app/actions/templates-actions.c:58 msgid "D_uplicate Template..." msgstr "Vorlage _duplizieren..." -#: app/actions/templates-actions.c:59 +#: ../app/actions/templates-actions.c:59 msgid "Duplicate the selected template" msgstr "Die gewählten Vorlage duplizieren" -#: app/actions/templates-actions.c:64 +#: ../app/actions/templates-actions.c:64 msgid "_Edit Template..." msgstr "Vorlage _bearbeiten..." -#: app/actions/templates-actions.c:65 +#: ../app/actions/templates-actions.c:65 msgid "Edit the selected template" msgstr "Die ausgewählte Vorlage bearbeiten" -#: app/actions/templates-actions.c:70 +#: ../app/actions/templates-actions.c:70 msgid "_Delete Template" msgstr "Vorlage _löschen" -#: app/actions/templates-actions.c:71 +#: ../app/actions/templates-actions.c:71 msgid "Delete the selected template" msgstr "Die gewählten Vorlage löschen" -#: app/actions/templates-commands.c:123 +#: ../app/actions/templates-commands.c:123 msgid "New Template" msgstr "Neue Vorlage" -#: app/actions/templates-commands.c:126 +#: ../app/actions/templates-commands.c:126 msgid "Create a New Template" msgstr "Ein neue Vorlage erstellen" -#: app/actions/templates-commands.c:185 app/actions/templates-commands.c:188 +#: ../app/actions/templates-commands.c:185 +#: ../app/actions/templates-commands.c:188 msgid "Edit Template" msgstr "Vorlage bearbeiten" -#: app/actions/templates-commands.c:224 +#: ../app/actions/templates-commands.c:224 msgid "Delete Template" msgstr "Vorlage löschen" -#: app/actions/templates-commands.c:243 +#: ../app/actions/templates-commands.c:243 #, c-format msgid "" "Are you sure you want to delete template '%s' from the list and from disk?" msgstr "Vorlage »%s« wirklich aus der Liste und von der Platte löschen?" -#: app/actions/text-editor-actions.c:44 +#: ../app/actions/text-editor-actions.c:44 msgid "Open" msgstr "Öffnen" -#: app/actions/text-editor-actions.c:45 +#: ../app/actions/text-editor-actions.c:45 msgid "Load text from file" msgstr "Text aus Datei laden" -#: app/actions/text-editor-actions.c:50 app/core/gimp-edit.c:350 +#: ../app/actions/text-editor-actions.c:50 ../app/core/gimp-edit.c:350 msgid "Clear" msgstr "Löschen" -#: app/actions/text-editor-actions.c:51 +#: ../app/actions/text-editor-actions.c:51 msgid "Clear all text" msgstr "Gesamten Text löschen" -#: app/actions/text-editor-actions.c:59 +#: ../app/actions/text-editor-actions.c:59 msgid "LTR" msgstr "Links nach Rechts" -#: app/actions/text-editor-actions.c:60 app/text/text-enums.c:51 +#: ../app/actions/text-editor-actions.c:60 ../app/text/text-enums.c:51 msgid "From left to right" msgstr "Von Links nach Rechts" -#: app/actions/text-editor-actions.c:65 +#: ../app/actions/text-editor-actions.c:65 msgid "RTL" msgstr "Rechts nach Links" -#: app/actions/text-editor-actions.c:66 app/text/text-enums.c:52 +#: ../app/actions/text-editor-actions.c:66 ../app/text/text-enums.c:52 msgid "From right to left" msgstr "Von Rechts nach Links" -#: app/actions/text-editor-commands.c:60 +#: ../app/actions/text-editor-commands.c:60 msgid "Open Text File (UTF-8)" msgstr "Textdatei (UTF-8) öffnen" -#: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 -#: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 -#: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 -#: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 -#: app/xcf/xcf.c:291 +#: ../app/actions/text-editor-commands.c:132 +#: ../app/config/gimpconfig-utils.c:552 ../app/config/gimpscanner.c:92 +#: ../app/core/gimpbrush.c:396 ../app/core/gimpbrushgenerated.c:601 +#: ../app/core/gimpbrushpipe.c:338 ../app/core/gimpgradient-load.c:63 +#: ../app/core/gimppalette.c:360 ../app/core/gimppattern.c:328 +#: ../app/tools/gimpimagemaptool.c:608 ../app/xcf/xcf.c:291 #, c-format msgid "Could not open '%s' for reading: %s" msgstr "»%s« konnte nicht zum Lesen geöffnet werden: %s" -#: app/actions/tool-options-actions.c:56 +#: ../app/actions/tool-options-actions.c:56 msgid "Tool Options Menu" msgstr "Werkzeugmenü" -#: app/actions/tool-options-actions.c:60 +#: ../app/actions/tool-options-actions.c:60 msgid "_Save Options to" msgstr "Einstellungen _speichern als" -#: app/actions/tool-options-actions.c:64 +#: ../app/actions/tool-options-actions.c:64 msgid "_Restore Options from" msgstr "Einstellungen l_aden aus" -#: app/actions/tool-options-actions.c:68 +#: ../app/actions/tool-options-actions.c:68 msgid "Re_name Saved Options" msgstr "Gespeicherte Einstellungen _umbenennen" -#: app/actions/tool-options-actions.c:72 +#: ../app/actions/tool-options-actions.c:72 msgid "_Delete Saved Options" msgstr "Gespeicherte Einstellungen _löschen" # XXX -#: app/actions/tool-options-actions.c:76 +#: ../app/actions/tool-options-actions.c:76 msgid "_New Entry..." msgstr "_Neuer Eintrag..." -#: app/actions/tool-options-actions.c:81 +#: ../app/actions/tool-options-actions.c:81 msgid "R_eset Tool Options" msgstr "Werkzeugeinstellungen _zurücksetzen" -#: app/actions/tool-options-actions.c:82 +#: ../app/actions/tool-options-actions.c:82 msgid "Reset to default values" msgstr "Auf Vorgabewerte zurücksetzen" -#: app/actions/tool-options-actions.c:87 +#: ../app/actions/tool-options-actions.c:87 msgid "Reset _all Tool Options..." msgstr "_Alle Werkzeugeinstellungen zurücksetzen..." -#: app/actions/tool-options-actions.c:88 +#: ../app/actions/tool-options-actions.c:88 msgid "Reset all tool options" msgstr "Alle Werkzeugeinstellungen zurücksetzen" -#: app/actions/tool-options-commands.c:73 +#: ../app/actions/tool-options-commands.c:73 msgid "Save Tool Options" msgstr "Werkzeugeinstellungen speichern" -#: app/actions/tool-options-commands.c:77 +#: ../app/actions/tool-options-commands.c:77 msgid "Enter a name for the saved options" msgstr "Geben Sie diesen Einstellungen einen Namen" -#: app/actions/tool-options-commands.c:78 -#: app/actions/tool-options-commands.c:251 -#: app/actions/tool-options-commands.c:269 +#: ../app/actions/tool-options-commands.c:78 +#: ../app/actions/tool-options-commands.c:251 +#: ../app/actions/tool-options-commands.c:269 msgid "Saved Options" msgstr "Gespeicherte Einstellungen" -#: app/actions/tool-options-commands.c:146 +#: ../app/actions/tool-options-commands.c:146 msgid "Rename Saved Tool Options" msgstr "Gespeicherte Einstellungen umbenennen" -#: app/actions/tool-options-commands.c:150 +#: ../app/actions/tool-options-commands.c:150 msgid "Enter a new name for the saved options" msgstr "Geben Sie diesen Einstellungen einen neuen Namen" -#: app/actions/tool-options-commands.c:215 +#: ../app/actions/tool-options-commands.c:215 msgid "Reset Tool Options" msgstr "Werkzeugeinstellungen zurücksetzen" -#: app/actions/tool-options-commands.c:233 +#: ../app/actions/tool-options-commands.c:233 msgid "Do you really want to reset all tool options to default values?" msgstr "" "Wollen Sie wirklich alle Werkzeugeinstellungen auf Vorgabewerte zurüchsetzen?" -#: app/actions/tools-actions.c:47 +#: ../app/actions/tools-actions.c:47 msgid "Tools Menu" msgstr "Werkzeugfenstermenü" -#: app/actions/tools-actions.c:50 +#: ../app/actions/tools-actions.c:50 msgid "_Tools" msgstr "_Werkzeuge" -#: app/actions/tools-actions.c:51 +#: ../app/actions/tools-actions.c:51 msgid "_Selection Tools" msgstr "_Auswahlwerkzeuge" -#: app/actions/tools-actions.c:52 +#: ../app/actions/tools-actions.c:52 msgid "_Paint Tools" msgstr "_Malwerkzeuge" -#: app/actions/tools-actions.c:53 +#: ../app/actions/tools-actions.c:53 msgid "_Transform Tools" msgstr "_Transformationen" -#: app/actions/tools-actions.c:54 +#: ../app/actions/tools-actions.c:54 msgid "_Color Tools" msgstr "_Farben" -#: app/actions/tools-actions.c:57 +#: ../app/actions/tools-actions.c:57 msgid "_Reset Order & Visibility" msgstr "Ordnung & Sichtbarkeit _wiederherstellen" -#: app/actions/tools-actions.c:58 +#: ../app/actions/tools-actions.c:58 msgid "Reset tool order and visibility" msgstr "Ordnung & Sichtbarkeit der Werkzeuge wiederherstellen" -#: app/actions/tools-actions.c:66 +#: ../app/actions/tools-actions.c:66 msgid "_Show in Toolbox" msgstr "Im Werkzeugkasten _anzeigen" -#: app/actions/tools-actions.c:75 +#: ../app/actions/tools-actions.c:75 msgid "_By Color" msgstr "Nach _Farbe" -#: app/actions/tools-actions.c:80 +#: ../app/actions/tools-actions.c:80 msgid "_Arbitrary Rotation..." msgstr "_Beliebig drehen..." -#: app/actions/vectors-actions.c:44 +#: ../app/actions/vectors-actions.c:44 msgid "Paths Menu" msgstr "Pfadmenü" -#: app/actions/vectors-actions.c:48 +#: ../app/actions/vectors-actions.c:48 msgid "Path _Tool" msgstr "Pfadwe_rkzeug" -#: app/actions/vectors-actions.c:53 +#: ../app/actions/vectors-actions.c:53 msgid "_Edit Path Attributes..." msgstr "Pfadei_genschaften..." -#: app/actions/vectors-actions.c:54 +#: ../app/actions/vectors-actions.c:54 msgid "Edit path attributes" msgstr "Pfadeigenschaften ändern" -#: app/actions/vectors-actions.c:59 +#: ../app/actions/vectors-actions.c:59 msgid "_New Path..." msgstr "_Neuer Pfad..." -#: app/actions/vectors-actions.c:60 +#: ../app/actions/vectors-actions.c:60 msgid "New path..." msgstr "Neuer Pfad..." -#: app/actions/vectors-actions.c:65 +#: ../app/actions/vectors-actions.c:65 msgid "_New Path" msgstr "_Neuer Pfad" -#: app/actions/vectors-actions.c:66 +#: ../app/actions/vectors-actions.c:66 msgid "New path with last values" msgstr "Neuer Pfad mit den aktuellen Werten" -#: app/actions/vectors-actions.c:71 +#: ../app/actions/vectors-actions.c:71 msgid "D_uplicate Path" msgstr "Pfad _duplizieren" -#: app/actions/vectors-actions.c:72 +#: ../app/actions/vectors-actions.c:72 msgid "Duplicate path" msgstr "Pfad duplizieren" -#: app/actions/vectors-actions.c:77 +#: ../app/actions/vectors-actions.c:77 msgid "_Delete Path" msgstr "Pfad _löschen" -#: app/actions/vectors-actions.c:78 +#: ../app/actions/vectors-actions.c:78 msgid "Delete path" msgstr "Pfad löschen" -#: app/actions/vectors-actions.c:83 +#: ../app/actions/vectors-actions.c:83 msgid "Merge _Visible Paths" msgstr "Sichtbare Pfade vereinen" -#: app/actions/vectors-actions.c:88 +#: ../app/actions/vectors-actions.c:88 msgid "_Raise Path" msgstr "Pfad _anheben" -#: app/actions/vectors-actions.c:89 +#: ../app/actions/vectors-actions.c:89 msgid "Raise path" msgstr "Pfad anheben" -#: app/actions/vectors-actions.c:94 +#: ../app/actions/vectors-actions.c:94 msgid "Raise Path to _Top" msgstr "Pfad nach ganz _oben anheben" -#: app/actions/vectors-actions.c:95 +#: ../app/actions/vectors-actions.c:95 msgid "Raise path to top" msgstr "Pfad nach ganz oben anheben" -#: app/actions/vectors-actions.c:100 +#: ../app/actions/vectors-actions.c:100 msgid "_Lower Path" msgstr "Pfad a_bsenken" -#: app/actions/vectors-actions.c:101 +#: ../app/actions/vectors-actions.c:101 msgid "Lower path" msgstr "Pfad absenken" -#: app/actions/vectors-actions.c:106 +#: ../app/actions/vectors-actions.c:106 msgid "Lower Path to _Bottom" msgstr "Pfad nach ganz _unten absenken" -#: app/actions/vectors-actions.c:107 +#: ../app/actions/vectors-actions.c:107 msgid "Lower path to bottom" msgstr "Pfad nach ganz unten absenken" -#: app/actions/vectors-actions.c:112 +#: ../app/actions/vectors-actions.c:112 msgid "Stro_ke Path..." msgstr "_Pfad nachziehen..." -#: app/actions/vectors-actions.c:113 +#: ../app/actions/vectors-actions.c:113 msgid "Stroke path..." msgstr "Pfad nachziehen..." -#: app/actions/vectors-actions.c:118 +#: ../app/actions/vectors-actions.c:118 msgid "Stro_ke Path" msgstr "_Pfad nachziehen" -#: app/actions/vectors-actions.c:119 +#: ../app/actions/vectors-actions.c:119 msgid "Stroke path with last values" msgstr "Pfad mit aktuellen Werten nachziehen" -#: app/actions/vectors-actions.c:124 +#: ../app/actions/vectors-actions.c:124 msgid "Co_py Path" msgstr "Pfad _kopieren" -#: app/actions/vectors-actions.c:129 +#: ../app/actions/vectors-actions.c:129 msgid "Paste Pat_h" msgstr "Pfad e_infügen" -#: app/actions/vectors-actions.c:134 +#: ../app/actions/vectors-actions.c:134 msgid "I_mport Path..." msgstr "Pfad i_mportieren..." -#: app/actions/vectors-actions.c:139 +#: ../app/actions/vectors-actions.c:139 msgid "E_xport Path..." msgstr "Pfad e_xportieren..." -#: app/actions/vectors-actions.c:162 +#: ../app/actions/vectors-actions.c:162 msgid "Path to Sele_ction" msgstr "Aus_wahl aus Pfad" -#: app/actions/vectors-actions.c:163 app/tools/gimpvectortool.c:1893 +#: ../app/actions/vectors-actions.c:163 ../app/tools/gimpvectortool.c:1903 msgid "Path to selection" msgstr "Auswahl aus Pfad" -#: app/actions/vectors-actions.c:168 +#: ../app/actions/vectors-actions.c:168 msgid "Fr_om Path" msgstr "_Vom Pfad" -#: app/actions/vectors-actions.c:194 +#: ../app/actions/vectors-actions.c:194 msgid "Selecti_on to Path" msgstr "P_fad aus Auswahl" -#: app/actions/vectors-actions.c:195 +#: ../app/actions/vectors-actions.c:195 msgid "Selection to path" msgstr "Pfad aus Auswahl" # XXX -#: app/actions/vectors-actions.c:200 +#: ../app/actions/vectors-actions.c:200 msgid "To _Path" msgstr "Nac_h Pfad" -#: app/actions/vectors-actions.c:205 +#: ../app/actions/vectors-actions.c:205 msgid "Selection to Path (_Advanced)" msgstr "" "Pfad aus Auswahl\n" "%s Erweiterte Einstellungen" -#: app/actions/vectors-actions.c:206 +#: ../app/actions/vectors-actions.c:206 msgid "Advanced options" msgstr "Erweiterte Einstellungen" -#: app/actions/vectors-commands.c:140 +#: ../app/actions/vectors-commands.c:140 msgid "Path Attributes" msgstr "Pfadeigenschaften" -#: app/actions/vectors-commands.c:143 +#: ../app/actions/vectors-commands.c:143 msgid "Edit Path Attributes" msgstr "Pfadeigenschaften" -#: app/actions/vectors-commands.c:167 app/actions/vectors-commands.c:168 -#: app/actions/vectors-commands.c:190 +#: ../app/actions/vectors-commands.c:167 ../app/actions/vectors-commands.c:168 +#: ../app/actions/vectors-commands.c:190 msgid "New Path" msgstr "Neuer Pfad" -#: app/actions/vectors-commands.c:171 +#: ../app/actions/vectors-commands.c:171 msgid "New Path Options" msgstr "Einstellungen des hinzuzufügenden Pfades" -#: app/actions/vectors-commands.c:299 app/pdb/paths_cmds.c:1210 +#: ../app/actions/vectors-commands.c:299 ../app/pdb/paths_cmds.c:1210 msgid "Path to Selection" msgstr "Auswahl aus Pfad" -#: app/actions/vectors-commands.c:370 app/tools/gimpvectortool.c:1923 -#: app/vectors/gimpvectors.c:237 +#: ../app/actions/vectors-commands.c:370 ../app/tools/gimpvectortool.c:1933 +#: ../app/vectors/gimpvectors.c:237 msgid "Stroke Path" msgstr "Pfad nachziehen" -#: app/actions/view-actions.c:63 +#: ../app/actions/view-actions.c:63 msgid "_View" msgstr "An_sicht" -#: app/actions/view-actions.c:64 +#: ../app/actions/view-actions.c:64 msgid "_Zoom" msgstr "_Zoom" -#: app/actions/view-actions.c:65 +#: ../app/actions/view-actions.c:65 msgid "_Padding Color" msgstr "Benutzerdefinierte _Rahmenfarbe" -#: app/actions/view-actions.c:73 +#: ../app/actions/view-actions.c:73 msgid "_Close" msgstr "_Schließen" -#: app/actions/view-actions.c:78 +#: ../app/actions/view-actions.c:78 msgid "_Fit Image in Window" msgstr "_Fenster an Bild anpassen" -#: app/actions/view-actions.c:79 +#: ../app/actions/view-actions.c:79 msgid "Fit image in window" msgstr "Fenstergröße an Bild anpassen." -#: app/actions/view-actions.c:84 +#: ../app/actions/view-actions.c:84 msgid "Fit Image to Window" msgstr "_Bild dem Fenster anpassen" -#: app/actions/view-actions.c:85 +#: ../app/actions/view-actions.c:85 msgid "Fit image to window" msgstr "Bildgröße dem Fenster anpassen" -#: app/actions/view-actions.c:90 +#: ../app/actions/view-actions.c:90 msgid "_Info Window" msgstr "_Info-Fenster" -#: app/actions/view-actions.c:95 +#: ../app/actions/view-actions.c:95 msgid "Na_vigation Window" msgstr "Navi_gationsfenster" -#: app/actions/view-actions.c:100 +#: ../app/actions/view-actions.c:100 msgid "Display _Filters..." msgstr "Ansichts_filter..." -#: app/actions/view-actions.c:105 +#: ../app/actions/view-actions.c:105 msgid "Shrink _Wrap" msgstr "Fenster an_passen" -#: app/actions/view-actions.c:106 +#: ../app/actions/view-actions.c:106 msgid "Shrink wrap" msgstr "Fenster anpassen" -#: app/actions/view-actions.c:111 +#: ../app/actions/view-actions.c:111 msgid "Move to Screen..." msgstr "Auf Bildschirm verschieben..." -#: app/actions/view-actions.c:119 +#: ../app/actions/view-actions.c:119 msgid "_Dot for Dot" msgstr "_Punkt für Punkt" -#: app/actions/view-actions.c:125 +#: ../app/actions/view-actions.c:125 msgid "Show _Selection" msgstr "_Auswahl anzeigen" -#: app/actions/view-actions.c:131 +#: ../app/actions/view-actions.c:131 msgid "Show _Layer Boundary" msgstr "_Ebenenrahmen anzeigen" -#: app/actions/view-actions.c:137 +#: ../app/actions/view-actions.c:137 msgid "Show _Guides" msgstr "_Hilfslinien anzeigen" -#: app/actions/view-actions.c:143 +#: ../app/actions/view-actions.c:143 msgid "Sn_ap to Guides" msgstr "_Magnetische Hilfslinien" -#: app/actions/view-actions.c:149 +#: ../app/actions/view-actions.c:149 msgid "S_how Grid" msgstr "_Gitter anzeigen" -#: app/actions/view-actions.c:155 +#: ../app/actions/view-actions.c:155 msgid "Sna_p to Grid" msgstr "Magnetis_ches Gitter" -#: app/actions/view-actions.c:161 +#: ../app/actions/view-actions.c:161 msgid "Show _Menubar" msgstr "Menüleis_te anzeigen" -#: app/actions/view-actions.c:167 +#: ../app/actions/view-actions.c:167 msgid "Show R_ulers" msgstr "_Lineale anzeigen" -#: app/actions/view-actions.c:173 +#: ../app/actions/view-actions.c:173 msgid "Show Scroll_bars" msgstr "_Scrollbalken anzeigen" -#: app/actions/view-actions.c:179 +#: ../app/actions/view-actions.c:179 msgid "Show S_tatusbar" msgstr "_Statusleiste anzeigen" -#: app/actions/view-actions.c:185 +#: ../app/actions/view-actions.c:185 msgid "Fullscr_een" msgstr "_Vollbild" -#: app/actions/view-actions.c:234 +#: ../app/actions/view-actions.c:234 msgid "16:1 (1600%)" msgstr "16:1 (1600%)" -#: app/actions/view-actions.c:239 +#: ../app/actions/view-actions.c:239 msgid "8:1 (800%)" msgstr "8:1 (800%)" -#: app/actions/view-actions.c:244 +#: ../app/actions/view-actions.c:244 msgid "4:1 (400%)" msgstr "4:1 (400%)" -#: app/actions/view-actions.c:249 +#: ../app/actions/view-actions.c:249 msgid "2:1 (200%)" msgstr "2:1 (200%)" -#: app/actions/view-actions.c:254 +#: ../app/actions/view-actions.c:254 msgid "1:1 (100%)" msgstr "1:1 (100%)" -#: app/actions/view-actions.c:255 +#: ../app/actions/view-actions.c:255 msgid "Zoom 1:1" msgstr "Maßstab 1:1" -#: app/actions/view-actions.c:260 +#: ../app/actions/view-actions.c:260 msgid "1:2 (50%)" msgstr "1:2 (50%)" -#: app/actions/view-actions.c:265 +#: ../app/actions/view-actions.c:265 msgid "1:4 (25%)" msgstr "1:4 (25%)" -#: app/actions/view-actions.c:270 +#: ../app/actions/view-actions.c:270 msgid "1:8 (12.5%)" msgstr "1:8 (12,5%)" -#: app/actions/view-actions.c:275 +#: ../app/actions/view-actions.c:275 msgid "1:16 (6.25%)" msgstr "1:16 (6,25%)" -#: app/actions/view-actions.c:280 +#: ../app/actions/view-actions.c:280 msgid "O_ther..." msgstr "A_nders..." -#: app/actions/view-actions.c:288 +#: ../app/actions/view-actions.c:288 msgid "From _Theme" msgstr "Dem _Thema entsprechend" -#: app/actions/view-actions.c:293 +#: ../app/actions/view-actions.c:293 msgid "_Light Check Color" msgstr "H_elle Schachbrett-Farbe" -#: app/actions/view-actions.c:298 +#: ../app/actions/view-actions.c:298 msgid "_Dark Check Color" msgstr "_Dunkle Schachbrett-Farbe" -#: app/actions/view-actions.c:303 +#: ../app/actions/view-actions.c:303 msgid "Select _Custom Color..." msgstr "_Benutzerdefinierte Farbe wählen..." -#: app/actions/view-actions.c:308 +#: ../app/actions/view-actions.c:308 msgid "As in _Preferences" msgstr "Den _Einstellungen entsprechend" -#: app/actions/view-actions.c:592 +#: ../app/actions/view-actions.c:592 #, c-format msgid "Other (%s) ..." msgstr "Anders (%s) ..." -#: app/actions/view-actions.c:601 +#: ../app/actions/view-actions.c:601 #, c-format msgid "_Zoom (%s)" msgstr "_Zoom (%s)" -#: app/actions/view-commands.c:572 +#: ../app/actions/view-commands.c:572 msgid "Set Canvas Padding Color" msgstr "Farbe des Leinwandrahmens festlegen" -#: app/actions/view-commands.c:574 +#: ../app/actions/view-commands.c:574 msgid "Set Custom Canvas Padding Color" msgstr "Farbe des Leinwandrahmens festlegen" -#: app/base/base-enums.c:23 +#: ../app/base/base-enums.c:23 msgid "Smooth" msgstr "Weich" -#: app/base/base-enums.c:24 +#: ../app/base/base-enums.c:24 msgid "Freehand" msgstr "Freihand" -#: app/base/base-enums.c:55 app/widgets/gimpwidgets-constructors.c:76 -#: app/widgets/gimpwidgets-constructors.c:109 +#: ../app/base/base-enums.c:55 ../app/widgets/gimpwidgets-constructors.c:76 +#: ../app/widgets/gimpwidgets-constructors.c:109 msgid "Value" msgstr "Wert" -#: app/base/base-enums.c:56 app/core/core-enums.c:157 -#: app/tools/gimpcolorbalancetool.c:301 +#: ../app/base/base-enums.c:56 ../app/core/core-enums.c:157 +#: ../app/tools/gimpcolorbalancetool.c:301 msgid "Red" msgstr "Rot" -#: app/base/base-enums.c:57 app/core/core-enums.c:158 -#: app/tools/gimpcolorbalancetool.c:308 +#: ../app/base/base-enums.c:57 ../app/core/core-enums.c:158 +#: ../app/tools/gimpcolorbalancetool.c:308 msgid "Green" msgstr "Grün" -#: app/base/base-enums.c:58 app/core/core-enums.c:159 -#: app/tools/gimpcolorbalancetool.c:315 +#: ../app/base/base-enums.c:58 ../app/core/core-enums.c:159 +#: ../app/tools/gimpcolorbalancetool.c:315 msgid "Blue" msgstr "Blau" -#: app/base/base-enums.c:59 app/core/core-enums.c:162 +#: ../app/base/base-enums.c:59 ../app/core/core-enums.c:162 msgid "Alpha" msgstr "Alpha" -#: app/base/base-enums.c:60 app/display/gimpdisplayshell-title.c:234 -#: app/widgets/widgets-enums.c:114 +#: ../app/base/base-enums.c:60 ../app/display/gimpdisplayshell-title.c:234 +#: ../app/widgets/widgets-enums.c:114 msgid "RGB" msgstr "RGB" -#: app/base/base-enums.c:88 +#: ../app/base/base-enums.c:88 msgid "None (Fastest)" msgstr "Keine (am schnellsten)" -#: app/base/base-enums.c:89 app/core/core-enums.c:370 -#: app/widgets/widgets-enums.c:227 +#: ../app/base/base-enums.c:89 ../app/core/core-enums.c:370 +#: ../app/widgets/widgets-enums.c:227 msgid "Linear" msgstr "Linear" -#: app/base/base-enums.c:90 +#: ../app/base/base-enums.c:90 msgid "Cubic (Best)" msgstr "Kubisch (am besten)" -#: app/base/base-enums.c:188 +#: ../app/base/base-enums.c:188 msgid "Shadows" msgstr "Schatten" -#: app/base/base-enums.c:189 +#: ../app/base/base-enums.c:189 msgid "Midtones" msgstr "Mitten" -#: app/base/base-enums.c:190 +#: ../app/base/base-enums.c:190 msgid "Highlights" msgstr "Glanzlichter" -#: app/base/tile-swap.c:456 +#: ../app/base/tile-swap.c:456 msgid "" "Unable to open swap file. The Gimp has run out of memory and cannot use the " "swap file. Some parts of your images may be corrupted. Try to save your work " @@ -3290,66 +3308,66 @@ "anschließend The Gimp neu und überprüfen Sie den Ort Ihres " "Auslagerungsverzeichnisses in den Einstellungen." -#: app/config/gimpconfig-deserialize.c:100 +#: ../app/config/gimpconfig-deserialize.c:100 #, c-format msgid "value for token %s is not a valid UTF-8 string" msgstr "Wert für Symbol %s ist keine gültige UTF-8-Zeichenkette" -#: app/config/gimpconfig-deserialize.c:217 app/config/gimpconfig.c:424 -#: app/config/gimpconfig.c:437 app/config/gimpscanner.c:417 -#: app/config/gimpscanner.c:489 app/core/gimp-modules.c:132 -#: app/core/gimp-units.c:169 app/gui/session.c:158 -#: app/plug-in/plug-in-rc.c:183 +#: ../app/config/gimpconfig-deserialize.c:217 ../app/config/gimpconfig.c:424 +#: ../app/config/gimpconfig.c:437 ../app/config/gimpscanner.c:417 +#: ../app/config/gimpscanner.c:489 ../app/core/gimp-modules.c:132 +#: ../app/core/gimp-units.c:169 ../app/gui/session.c:158 +#: ../app/plug-in/plug-in-rc.c:183 msgid "fatal parse error" msgstr "Schwerwiegender Fehler bei Syntaxanalyse" #. please don't translate 'yes' and 'no' -#: app/config/gimpconfig-deserialize.c:467 +#: ../app/config/gimpconfig-deserialize.c:467 #, c-format msgid "expected 'yes' or 'no' for boolean token %s, got '%s'" msgstr "»yes« oder »no« für boolesches Symbol %s erwartet, »%s« erhalten" -#: app/config/gimpconfig-deserialize.c:541 +#: ../app/config/gimpconfig-deserialize.c:541 #, c-format msgid "invalid value '%s' for token %s" msgstr "ungültiger Wert »%s« für Symbol %s" -#: app/config/gimpconfig-deserialize.c:556 +#: ../app/config/gimpconfig-deserialize.c:556 #, c-format msgid "invalid value '%ld' for token %s" msgstr "ungültiger Wert »%ld« für Symbol %s" -#: app/config/gimpconfig-deserialize.c:625 +#: ../app/config/gimpconfig-deserialize.c:625 #, c-format msgid "while parsing token '%s': %s" msgstr "beim Verarbeiten von %s: %s" -#: app/config/gimpconfig-path.c:177 +#: ../app/config/gimpconfig-path.c:177 #, c-format msgid "Cannot expand ${%s}" msgstr "${%s} konnte nicht nicht expandiert werden" -#: app/config/gimpconfig-utils.c:561 app/config/gimpconfigwriter.c:143 -#: app/core/gimpbrushgenerated.c:255 app/core/gimpgradient-save.c:51 -#: app/core/gimpgradient-save.c:142 app/core/gimppalette.c:567 -#: app/gui/themes.c:238 app/tools/gimpimagemaptool.c:607 -#: app/vectors/gimpvectors-export.c:83 app/xcf/xcf.c:348 +#: ../app/config/gimpconfig-utils.c:561 ../app/config/gimpconfigwriter.c:143 +#: ../app/core/gimpbrushgenerated.c:255 ../app/core/gimpgradient-save.c:51 +#: ../app/core/gimpgradient-save.c:142 ../app/core/gimppalette.c:567 +#: ../app/gui/themes.c:238 ../app/tools/gimpimagemaptool.c:607 +#: ../app/vectors/gimpvectors-export.c:83 ../app/xcf/xcf.c:348 #, c-format msgid "Could not open '%s' for writing: %s" msgstr "»%s« konnte nicht zum Schreiben geöffnet werden: %s" -#: app/config/gimpconfig-utils.c:572 app/config/gimpconfig-utils.c:595 -#: app/vectors/gimpvectors-export.c:96 +#: ../app/config/gimpconfig-utils.c:572 ../app/config/gimpconfig-utils.c:595 +#: ../app/vectors/gimpvectors-export.c:96 #, c-format msgid "Error while writing '%s': %s" msgstr "Fehler beim Schreiben von »%s«: %s" -#: app/config/gimpconfig-utils.c:583 +#: ../app/config/gimpconfig-utils.c:583 #, c-format msgid "Error while reading '%s': %s" msgstr "Fehler beim Lesen von »%s«: %s" -#: app/config/gimpconfig-utils.c:625 +#: ../app/config/gimpconfig-utils.c:625 #, c-format msgid "" "There was an error parsing your '%s' file. Default values will be used. A " @@ -3359,12 +3377,12 @@ "verwendet. Unter »%s« wurde eine Sicherungskopie Ihrer Konfiguration " "gespeichert." -#: app/config/gimpconfigwriter.c:130 +#: ../app/config/gimpconfigwriter.c:130 #, c-format msgid "Could not create temporary file for '%s': %s" msgstr "Temporärdatei für »%s« konnte nicht angelegt werden: %s" -#: app/config/gimpconfigwriter.c:617 +#: ../app/config/gimpconfigwriter.c:617 #, c-format msgid "" "Error writing to temporary file for '%s': %s\n" @@ -3373,7 +3391,7 @@ "Fehler beim Schreiben in Temporärdatei für »%s«: %s\n" "Die Originaldatei wurde nicht geändert." -#: app/config/gimpconfigwriter.c:625 +#: ../app/config/gimpconfigwriter.c:625 #, c-format msgid "" "Error writing to temporary file for '%s': %s\n" @@ -3382,22 +3400,22 @@ "Fehler beim Schreiben in Temporärdatei für »%s«: %s\n" "Es wurde keine Datei angelegt." -#: app/config/gimpconfigwriter.c:636 +#: ../app/config/gimpconfigwriter.c:636 #, c-format msgid "Error writing to '%s': %s" msgstr "Fehler beim Schreiben von »%s«: %s" -#: app/config/gimpconfigwriter.c:654 +#: ../app/config/gimpconfigwriter.c:654 #, c-format msgid "Could not create '%s': %s" msgstr "»%s« konnte nicht angelegt werden: %s" -#: app/config/gimprc.c:335 app/config/gimprc.c:348 +#: ../app/config/gimprc.c:335 ../app/config/gimprc.c:348 #, c-format msgid "Parsing '%s'\n" msgstr "»%s« wird verarbeitet\n" -#: app/config/gimprc.c:595 +#: ../app/config/gimprc.c:595 #, c-format msgid "Saving '%s'\n" msgstr "»%s« wird gespeichert\n" @@ -3406,7 +3424,7 @@ #. * (the preferences dialog mainly) and only those that are should #. * be marked for translation. #. -#: app/config/gimprc-blurbs.h:13 +#: ../app/config/gimprc-blurbs.h:13 msgid "" "When enabled, an image will become the active image when its image window " "receives the focus. This is useful for window managers using \"click to focus" @@ -3416,11 +3434,11 @@ "dessen Fenster den Fokus erhält. Diese Funktion ist sinnvoll für Fenster-" "Manager die »Fokus durch anklicken« verwenden." -#: app/config/gimprc-blurbs.h:23 +#: ../app/config/gimprc-blurbs.h:23 msgid "Specifies how the area around the image should be drawn." msgstr "Legt fest, wie der Bereich um das Bild herum dargestellt werden soll." -#: app/config/gimprc-blurbs.h:26 +#: ../app/config/gimprc-blurbs.h:26 msgid "" "Sets the canvas padding color used if the padding mode is set to custom " "color." @@ -3428,19 +3446,19 @@ "Legt die Farbe des Leinwandrahmens fest, falls der Rahmenmodus " "»Benutzerdefinierte Farbe« ist." -#: app/config/gimprc-blurbs.h:30 +#: ../app/config/gimprc-blurbs.h:30 msgid "Ask for confirmation before closing an image without saving." msgstr "Vor dem Schließen eines Bildes ohne zu Speichern rückfragen." -#: app/config/gimprc-blurbs.h:33 +#: ../app/config/gimprc-blurbs.h:33 msgid "Sets the pixel format of cursors the GIMP will use." msgstr "Legt den von GIMP zu verwendenden Zeigermodus fest." -#: app/config/gimprc-blurbs.h:36 +#: ../app/config/gimprc-blurbs.h:36 msgid "Sets the mode of cursor the GIMP will use." msgstr "Legt den von GIMP zu verwendenden Zeigermodus fest." -#: app/config/gimprc-blurbs.h:39 +#: ../app/config/gimprc-blurbs.h:39 msgid "" "Context-dependent cursors are cool. They are enabled by default. However, " "they require overhead that you may want to do without." @@ -3449,7 +3467,7 @@ "aktiviert. Leider verschwenden Sie Ressourcen, die Sie möglicherweise " "anderweitig benötigen." -#: app/config/gimprc-blurbs.h:47 +#: ../app/config/gimprc-blurbs.h:47 msgid "" "When enabled, this will ensure that each pixel of an image gets mapped to a " "pixel on the screen." @@ -3457,13 +3475,13 @@ "Falls dies aktiviert ist, wird sichergestellt, dass jedes Pixel ein Bildes " "auf je ein Pixel auf dem Bildschirm abgebildet wird." -#: app/config/gimprc-blurbs.h:73 +#: ../app/config/gimprc-blurbs.h:73 msgid "This is the distance in pixels where Guide and Grid snapping activates." msgstr "" "Innerhalb dieses Abstands in Pixeln ist das automatische Einrasten bei " "Hilfslinien und Rasterlinien aktiv." -#: app/config/gimprc-blurbs.h:77 +#: ../app/config/gimprc-blurbs.h:77 msgid "" "Tools such as fuzzy-select and bucket fill find regions based on a seed-fill " "algorithm. The seed fill starts at the initially selected pixel and " @@ -3477,7 +3495,7 @@ "Pixels vom Ausgangspixel größer ist, als ein zuvor festgelegter Wert. Dieser " "Wert repräsentiert den Vorgabeschwellwert." -#: app/config/gimprc-blurbs.h:90 +#: ../app/config/gimprc-blurbs.h:90 msgid "" "The window type hint that is set on dock windows. This may affect the way " "your window manager decorates and handles dock windows." @@ -3486,42 +3504,42 @@ "möglicherweise die Art, auf die Ihr Fenstermanager Dock-Fenster dekoriert " "und handhabt." -#: app/config/gimprc-blurbs.h:121 +#: ../app/config/gimprc-blurbs.h:121 msgid "When enabled, the selected brush will be used for all tools." msgstr "" "Wenn diese Option ausgewählt ist, wird der ausgewählte Pinsel bei allen " "Werkzeugen verwendet." -#: app/config/gimprc-blurbs.h:127 +#: ../app/config/gimprc-blurbs.h:127 msgid "When enabled, the selected gradient will be used for all tools." msgstr "" "Wenn diese Option ausgewählt ist, wird der ausgewählte Farbverlauf bei allen " "Werkzeugen verwendet." -#: app/config/gimprc-blurbs.h:130 +#: ../app/config/gimprc-blurbs.h:130 msgid "When enabled, the selected pattern will be used for all tools." msgstr "" "Wenn diese Option ausgewählt ist, wird das ausgewählte Muster bei allen " "Werkzeugen verwendet." -#: app/config/gimprc-blurbs.h:146 +#: ../app/config/gimprc-blurbs.h:146 msgid "Sets the browser used by the help system." msgstr "Legt den vom Hilfesystem verwendeten Browser fest." -#: app/config/gimprc-blurbs.h:154 +#: ../app/config/gimprc-blurbs.h:154 msgid "Sets the text to appear in image window status bars." msgstr "Legt den in Statusleisten der Bildfenster anzuzeigenden Text fest." -#: app/config/gimprc-blurbs.h:157 +#: ../app/config/gimprc-blurbs.h:157 msgid "Sets the text to appear in image window titles." msgstr "Legt den Titelleisten der Bildfenster anzuzeigenden Text fest." -#: app/config/gimprc-blurbs.h:160 +#: ../app/config/gimprc-blurbs.h:160 msgid "When enabled, the GIMP will use a different info window per image view." msgstr "" "Legt fest, ob GIMP ein anderes Info-Fenster pro Bildansicht verwenden soll." -#: app/config/gimprc-blurbs.h:163 +#: ../app/config/gimprc-blurbs.h:163 msgid "" "When enabled, this will ensure that the full image is visible after a file " "is opened, otherwise it will be displayed with a scale of 1:1." @@ -3530,27 +3548,27 @@ "das gesamte Bild sichtbar sein soll. Andernfalls wird es im Maßstab 1:1 " "angezeigt." -#: app/config/gimprc-blurbs.h:167 +#: ../app/config/gimprc-blurbs.h:167 msgid "" "Install a private colormap; might be useful on 8-bit (256 colors) displays." msgstr "" "Eine private Farbtabelle installieren; ist möglicherweise auf Pseudocolor-" "Anzeigen sinnvoll." -#: app/config/gimprc-blurbs.h:170 +#: ../app/config/gimprc-blurbs.h:170 msgid "" "Sets the level of interpolation used for scaling and other transformations." msgstr "" "Legt den zum Skalieren und für andere Transformationen verwendeten " "Interpolationsgrad fest." -#: app/config/gimprc-blurbs.h:174 +#: ../app/config/gimprc-blurbs.h:174 msgid "How many recently opened image filenames to keep on the File menu." msgstr "" "Legt fest, wieviele »zuletzt geöffnet«-Einträge im Dateimenü vorgehalten " "werden sollen." -#: app/config/gimprc-blurbs.h:177 +#: ../app/config/gimprc-blurbs.h:177 msgid "" "Speed of marching ants in the selection outline. This value is in " "milliseconds (less time indicates faster marching)." @@ -3558,7 +3576,7 @@ "Geschwindigkeit der laufenden Ameisen im Auswahl-Umruss. Dieser Wert wird in " "Millisekunden angegeben (kleiner Wert bedeutet schnelleres Laufen)." -#: app/config/gimprc-blurbs.h:181 +#: ../app/config/gimprc-blurbs.h:181 msgid "" "GIMP will warn the user if an attempt is made to create an image that would " "take more memory than the size specified here." @@ -3566,11 +3584,11 @@ "GIMP warnt den Benutzer, falls versucht wurde, ein Bild zu erstellen, das " "mehr Speicher belegen würde, als die hier angegebene." -#: app/config/gimprc-blurbs.h:185 +#: ../app/config/gimprc-blurbs.h:185 msgid "When enabled, GIMP will show mnemonics in menus." msgstr "GIMP zeigt »Mnemonics«, wenn eingestellt." -#: app/config/gimprc-blurbs.h:188 +#: ../app/config/gimprc-blurbs.h:188 msgid "" "Generally only a concern for 8-bit displays, this sets the minimum number of " "system colors allocated for the GIMP." @@ -3578,7 +3596,7 @@ "Dies ist generell ausschließlich für 8-Bit-Anzeigen relevant. Dies legt die " "Mindestanzahl der für GIMP bereitgestellten Systemfarben fest." -#: app/config/gimprc-blurbs.h:199 +#: ../app/config/gimprc-blurbs.h:199 msgid "" "Sets the monitor's horizontal resolution, in dots per inch. If set to 0, " "forces the X server to be queried for both horizontal and vertical " @@ -3588,7 +3606,7 @@ "Wert auf Null gesetzt wird, werden die Informationen des X-Servers sowohl " "für horizontale als auch für vertikale Auflösung verwendet." -#: app/config/gimprc-blurbs.h:204 +#: ../app/config/gimprc-blurbs.h:204 msgid "" "Sets the monitor's vertical resolution, in dots per inch. If set to 0, " "forces the X server to be queried for both horizontal and vertical " @@ -3598,7 +3616,7 @@ "Wert auf Null gesetzt wird, werden die Informationen des X-Servers sowohl " "für horizontale als auch für vertikale Auflösung verwendet." -#: app/config/gimprc-blurbs.h:209 +#: ../app/config/gimprc-blurbs.h:209 msgid "" "If enabled, the move tool changes the active layer or path when a layer or " "path is being picked. This used to be the default behaviour in older " @@ -3609,7 +3627,7 @@ "angeklickt wird. Diese Funktion bildet das normale Verhalten älterer The-" "Gimp-Versionen nach." -#: app/config/gimprc-blurbs.h:214 +#: ../app/config/gimprc-blurbs.h:214 msgid "" "Sets the size of the navigation preview available in the lower right corner " "of the image window." @@ -3617,7 +3635,7 @@ "Legt die Größe der in der unteren rechten Ecke des Bildfensters verfügbaren " "Navigationsvorschau fest." -#: app/config/gimprc-blurbs.h:218 +#: ../app/config/gimprc-blurbs.h:218 msgid "" "On multiprocessor machines, if GIMP has been compiled with --enable-mp this " "sets how many processors GIMP should use simultaneously." @@ -3626,7 +3644,7 @@ "Prozessoren GIMP gleichzeitig belegen soll (nur, falls GIMP mit --enable-mp " "kompiliert wurde)." -#: app/config/gimprc-blurbs.h:232 +#: ../app/config/gimprc-blurbs.h:232 msgid "" "When enabled, the X server is queried for the mouse's current position on " "each motion event, rather than relying on the position hint. This means " @@ -3640,7 +3658,7 @@ "Pinseln genauer ist, aber auch langsamer sein kann.Seltsamerweise führt " "diese Option aber bei manchen X-Servern dazu, dass das Malen schneller geht." -#: app/config/gimprc-blurbs.h:245 +#: ../app/config/gimprc-blurbs.h:245 msgid "" "Sets whether GIMP should create previews of layers and channels. Previews in " "the layers and channels dialog are nice to have but they can slow things " @@ -3651,14 +3669,14 @@ "führt aber auch dazu, dass das System beim Bearbeiten sehr großer Bilder " "langsamer reagiert." -#: app/config/gimprc-blurbs.h:250 +#: ../app/config/gimprc-blurbs.h:250 msgid "" "Sets the preview size used for layers and channel previews in newly created " "dialogs." msgstr "" "Legt die Größe der Ebenen- und Kanalvorschau für neu erstellte Dialoge fest." -#: app/config/gimprc-blurbs.h:254 +#: ../app/config/gimprc-blurbs.h:254 msgid "" "When enabled, the image window will automatically resize itself, whenever " "the physical image size changes." @@ -3666,7 +3684,7 @@ "Wenn diese Option ausgewählt ist, wird sich die Größe des Bildfensters " "jedesmal anpassen, wenn sich die physikalische Größe des Bildes ändert." -#: app/config/gimprc-blurbs.h:258 +#: ../app/config/gimprc-blurbs.h:258 msgid "" "When enabled, the image window will automatically resize itself, when " "zooming into and out of images." @@ -3674,25 +3692,25 @@ "Wenn diese Option ausgewählt ist, wird sich die Größe des Bildfensters " "automatisch anpassen, wenn Sie in ein Bild hinein oder hinaus zoomen." -#: app/config/gimprc-blurbs.h:262 +#: ../app/config/gimprc-blurbs.h:262 msgid "Let GIMP try to restore your last saved session on each startup." msgstr "" "Wenn diese Option ausgewählt ist, versucht The Gimp bei jedem Start die " "letzte Sitzung wieder herzustellen." -#: app/config/gimprc-blurbs.h:265 +#: ../app/config/gimprc-blurbs.h:265 msgid "" "Remember the current tool, pattern, color, and brush across GIMP sessions." msgstr "" "Das gewählte Werkzeug und Muster, die gewählte Farbe sowie den gewählten " "Pinsel über GIMP-Sitzungen hinweg merken." -#: app/config/gimprc-blurbs.h:269 +#: ../app/config/gimprc-blurbs.h:269 msgid "Save the positions and sizes of the main dialogs when the GIMP exits." msgstr "" "Die Positionen und Größen der Hauptdialoge beim Beenden von GIMP speichern." -#: app/config/gimprc-blurbs.h:275 +#: ../app/config/gimprc-blurbs.h:275 msgid "" "When enabled, all paint tools will show a preview of the current brush's " "outline." @@ -3700,7 +3718,7 @@ "Wenn diese Option ausgewählt ist, werden alle Malwerkzeuge eine Vorschau der " "aktuellen Pinselkontur anzeigen." -#: app/config/gimprc-blurbs.h:279 +#: ../app/config/gimprc-blurbs.h:279 msgid "" "When enabled, dialogs will show a help button that gives access to the " "related help page. Without this button, the help page can still be reached " @@ -3711,7 +3729,7 @@ "Ohne diesen Knopf können Sie die Hilfe immer auch über die Taste F1 " "erreichen." -#: app/config/gimprc-blurbs.h:284 +#: ../app/config/gimprc-blurbs.h:284 msgid "" "When enabled, the cursor will be shown over the image while using a paint " "tool." @@ -3719,7 +3737,7 @@ "Wenn diese Option ausgewählt ist, wird der Zeiger des aktuellen " "Malwerkzeuges über dem Bild angezeigt." -#: app/config/gimprc-blurbs.h:288 +#: ../app/config/gimprc-blurbs.h:288 msgid "" "When enabled, the menubar is visible by default. This can also be toggled " "with the \"View->Show Menubar\" command." @@ -3727,7 +3745,7 @@ "Legt fest, ob die Menüleiste per Vorgabe angezeigt werden soll. Dies kann " "auch mit Hilfe des »Ansicht->Menüleiste anzeigen«-Befehls beeinflusst werden." -#: app/config/gimprc-blurbs.h:292 +#: ../app/config/gimprc-blurbs.h:292 msgid "" "When enabled, the rulers are visible by default. This can also be toggled " "with the \"View->Show Rulers\" command." @@ -3735,7 +3753,7 @@ "Legt fest, ob die Lineale per Vorgabe angezeigt werden soll. Dies kann auch " "mit Hilfe des »Ansicht->Lineale anzeigen«-Befehls beeinflusst werden." -#: app/config/gimprc-blurbs.h:296 +#: ../app/config/gimprc-blurbs.h:296 msgid "" "When enabled, the scrollbars are visible by default. This can also be " "toggled with the \"View->Show Scrollbars\" command." @@ -3743,7 +3761,7 @@ "Legt fest, ob die Rollbalken per Vorgabe angezeigt werden soll. Dies kann " "auch mit Hilfe des »Ansicht->Rollbalken anzeigen«-Befehls beeinflusst werden." -#: app/config/gimprc-blurbs.h:300 +#: ../app/config/gimprc-blurbs.h:300 msgid "" "When enabled, the statusbar is visible by default. This can also be toggled " "with the \"View->Show Statusbar\" command." @@ -3752,7 +3770,7 @@ "auch mit Hilfe des »Ansicht->Statusleiste anzeigen«-Befehls beeinflusst " "werden." -#: app/config/gimprc-blurbs.h:304 +#: ../app/config/gimprc-blurbs.h:304 msgid "" "When enabled, the selection is visible by default. This can also be toggled " "with the \"View->Show Selection\" command." @@ -3760,7 +3778,7 @@ "Legt fest, ob die Auswahl per Vorgabe angezeigt werden soll. Dies kann auch " "mit Hilfe des »Ansicht->Auswahl anzeigen«-Befehls beeinflusst werden." -#: app/config/gimprc-blurbs.h:308 +#: ../app/config/gimprc-blurbs.h:308 msgid "" "When enabled, the layer boundary is visible by default. This can also be " "toggled with the \"View->Show Layer Boundary\" command." @@ -3769,7 +3787,7 @@ "auch mit Hilfe des »Ansicht->Ebenenrahmen anzeigen«-Befehls beeinflusst " "werden." -#: app/config/gimprc-blurbs.h:312 +#: ../app/config/gimprc-blurbs.h:312 msgid "" "When enabled, the guides are visible by default. This can also be toggled " "with the \"View->Show Guides\" command." @@ -3778,7 +3796,7 @@ "auch mit Hilfe des »Ansicht->Hilfslinien anzeigen«-Befehls beeinflusst " "werden." -#: app/config/gimprc-blurbs.h:316 +#: ../app/config/gimprc-blurbs.h:316 msgid "" "When enabled, the grid is visible by default. This can also be toggled with " "the \"View->Show Grid\" command." @@ -3786,19 +3804,19 @@ "Legt fest, ob das Gitter per Vorgabe angezeigt werden soll. Dies kann auch " "mit Hilfe des »Ansicht->Gitter anzeigen«-Befehls beeinflusst werden." -#: app/config/gimprc-blurbs.h:320 +#: ../app/config/gimprc-blurbs.h:320 msgid "Enable to display a handy GIMP tip on startup." msgstr "" "Wenn diese Option ausgewählt ist, wird ein kurzer Tipp beim Starten von The " "Gimp angezeigt." -#: app/config/gimprc-blurbs.h:323 +#: ../app/config/gimprc-blurbs.h:323 msgid "Enable to display tooltips." msgstr "" "Wenn diese Option ausgewählt ist, wird eine Minihilfe unterhalb des " "Mauszeigers angezeigt." -#: app/config/gimprc-blurbs.h:326 +#: ../app/config/gimprc-blurbs.h:326 msgid "" "There is always a tradeoff between memory usage and speed. In most cases, " "the GIMP opts for speed over memory. However, if memory is a big issue, try " @@ -3810,7 +3828,7 @@ "ausreichend Zwischenspeicher bereitgestellt werden kann, sollten Sie diese " "Option auswählen." -#: app/config/gimprc-blurbs.h:331 +#: ../app/config/gimprc-blurbs.h:331 msgid "" "Sets the swap file location. The gimp uses a tile based memory allocation " "scheme. The swap file is used to quickly and easily swap tiles out to disk " @@ -3828,12 +3846,12 @@ "eines Netzwerkverzeichnisses erstellen. Für diesen Fall ist eine Auslagerung " "in den Ordner »/tmp« zu empfehlen." -#: app/config/gimprc-blurbs.h:340 +#: ../app/config/gimprc-blurbs.h:340 msgid "When enabled, menus can be torn off." msgstr "" "Wenn diese Option ausgewählt ist, können einzelne Menüs abgerissen werden." -#: app/config/gimprc-blurbs.h:343 +#: ../app/config/gimprc-blurbs.h:343 msgid "" "When enabled, you can change keyboard shortcuts for menu items by hitting a " "key combination while the menu item is highlighted." @@ -3842,16 +3860,16 @@ "vergeben, indem Sie in einem Menü eine Tastenkombination drücken, sobald der " "gewünschte Menüeintrag hervorgehoben ist." -#: app/config/gimprc-blurbs.h:347 +#: ../app/config/gimprc-blurbs.h:347 msgid "Save changed keyboard shortcuts when the GIMP exits." msgstr "Speichert geänderte Tastenkürzel, wenn The Gimp beendet wird." -#: app/config/gimprc-blurbs.h:350 +#: ../app/config/gimprc-blurbs.h:350 msgid "Restore saved keyboard shortcuts on each GIMP startup." msgstr "" "Stellt gespeicherte Tastenkürzel bei jedem Neustart von The Gimp wieder her." -#: app/config/gimprc-blurbs.h:353 +#: ../app/config/gimprc-blurbs.h:353 msgid "" "Sets the temporary storage directory. Files will appear here during the " "course of running the GIMP. Most files will disappear when the GIMP exits, " @@ -3864,7 +3882,7 @@ "verbleiben könnten, sollte dieses Verzeichnis nur für Sie und nicht für " "andere Benutzer zugänglich sein." -#: app/config/gimprc-blurbs.h:365 +#: ../app/config/gimprc-blurbs.h:365 msgid "" "Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can " "not create thumbnails if layer previews are disabled." @@ -3873,7 +3891,7 @@ "beachten Sie, dass The Gimp keine Vorschaubilder erstellen kann, wenn die " "Ebenevorschau deaktiviert ist." -#: app/config/gimprc-blurbs.h:369 +#: ../app/config/gimprc-blurbs.h:369 msgid "" "The thumbnail in the Open dialog will be automatically updated if the file " "being previewed is smaller than the size set here." @@ -3881,7 +3899,7 @@ "Das Vorschaubild im Bild-öffnen-Dialog wird automatisch aktualisiert, wenn " "die anzusehende Datei kleiner als die hier festgelegte Größe ist." -#: app/config/gimprc-blurbs.h:373 +#: ../app/config/gimprc-blurbs.h:373 msgid "" "The tile cache is used to make sure the GIMP doesn't thrash tiles between " "memory and disk. Setting this value higher will cause the GIMP to use less " @@ -3889,7 +3907,7 @@ "smaller cache size causes the GIMP to use more swap space and less memory." msgstr "Der Blockspeicher stellt sicher, dass The Gimp" -#: app/config/gimprc-blurbs.h:384 +#: ../app/config/gimprc-blurbs.h:384 msgid "" "The window type hint that is set on the toolbox. This may affect how your " "window manager decorates and handles the toolbox window." @@ -3898,17 +3916,17 @@ "möglicherweise die Art, auf die Ihr Fenstermanager das Werkzeugkisten-" "Fenster dekoriert und handhabt." -#: app/config/gimprc-blurbs.h:388 +#: ../app/config/gimprc-blurbs.h:388 msgid "Sets the manner in which transparency is displayed in images." msgstr "Legt fest, auf welche Art Transparenz in Bildern angezeigt wird." -#: app/config/gimprc-blurbs.h:391 +#: ../app/config/gimprc-blurbs.h:391 msgid "Sets the size of the checkerboard used to display transparency." msgstr "" "Legt die Größe des zum Anzeigen von Transparenz verwendeten Schachbretts " "fest." -#: app/config/gimprc-blurbs.h:394 +#: ../app/config/gimprc-blurbs.h:394 msgid "" "When enabled, the GIMP will not save if the image is unchanged since opening " "it." @@ -3916,7 +3934,7 @@ "Wenn diese Option ausgewählt ist, wird The Gimp keine Bilder speichern, die " "seit ihres Öffnens nicht verändert wurden." -#: app/config/gimprc-blurbs.h:398 +#: ../app/config/gimprc-blurbs.h:398 msgid "" "Sets the minimal number of operations that can be undone. More undo levels " "are kept available until the undo-size limit is reached." @@ -3924,7 +3942,7 @@ "Legt die minimale Anzahl an Einträgen im Journal fest. Weiterhin werden " "solange Journaleinträge erstellt bis das festgelegte Limit erreicht ist." -#: app/config/gimprc-blurbs.h:402 +#: ../app/config/gimprc-blurbs.h:402 msgid "" "Sets an upper limit to the memory that is used per image to keep operations " "on the undo stack. Regardless of this setting, at least as many undo-levels " @@ -3934,17 +3952,17 @@ "Einstellung ist auch abhängig wie viele der eingestellten Journaleinträge " "rückgängig gemacht werden können." -#: app/config/gimprc-blurbs.h:407 +#: ../app/config/gimprc-blurbs.h:407 msgid "Sets the size of the previews in the Undo History." msgstr "Legt die Größe der Vorschaubilder im Journal fest." -#: app/config/gimprc-blurbs.h:410 +#: ../app/config/gimprc-blurbs.h:410 msgid "When enabled, pressing F1 will open the help browser." msgstr "" "Wenn diese Option ausgewählt ist, wird beim Drücken der Taste F1 der Hilfe-" "Browser geöffnet." -#: app/config/gimprc-blurbs.h:413 +#: ../app/config/gimprc-blurbs.h:413 #, c-format msgid "" "Sets the external web browser to be used. This can be an absolute path or " @@ -3959,752 +3977,757 @@ "andernfalls wird die Adresse mit einem vorrangehenden Leerzeichen direkt " "hinter den Befehl gesetzt." -#: app/config/gimpscanner.c:220 +#: ../app/config/gimpscanner.c:220 msgid "invalid UTF-8 string" msgstr "ungültiger UTF-8 Text" -#: app/config/gimpscanner.c:516 +#: ../app/config/gimpscanner.c:516 #, c-format msgid "Error while parsing '%s' in line %d: %s" msgstr "Fehler beim Verarbeiten von »%s« in Zeile %d: %s" -#: app/core/core-enums.c:27 +#: ../app/core/core-enums.c:27 msgid "_White (full opacity)" msgstr "_Weiß (volle Deckkraft)" -#: app/core/core-enums.c:28 +#: ../app/core/core-enums.c:28 msgid "_Black (full transparency)" msgstr "_Schwarz (volle Transparenz)" -#: app/core/core-enums.c:29 +#: ../app/core/core-enums.c:29 msgid "Layer's _alpha channel" msgstr "_Alphakanal der Ebene" -#: app/core/core-enums.c:30 +#: ../app/core/core-enums.c:30 msgid "_Transfer layer's alpha channel" msgstr "_Alphakanal der Ebene übernehmen" -#: app/core/core-enums.c:31 +#: ../app/core/core-enums.c:31 msgid "_Selection" msgstr "A_uswahl" -#: app/core/core-enums.c:32 +#: ../app/core/core-enums.c:32 msgid "_Grayscale copy of layer" msgstr "_Graustufen-Kopie der Ebene" -#: app/core/core-enums.c:61 app/core/gimp-gradients.c:70 +#: ../app/core/core-enums.c:61 ../app/core/gimp-gradients.c:70 msgid "FG to BG (RGB)" msgstr "VG nach HG (RGB)" -#: app/core/core-enums.c:62 +#: ../app/core/core-enums.c:62 msgid "FG to BG (HSV)" msgstr "VG nach HG (HSV)" -#: app/core/core-enums.c:63 +#: ../app/core/core-enums.c:63 msgid "FG to transparent" msgstr "VG nach Transparent" -#: app/core/core-enums.c:64 +#: ../app/core/core-enums.c:64 msgid "Custom gradient" msgstr "Eigener Farbverlauf" -#: app/core/core-enums.c:92 +#: ../app/core/core-enums.c:92 msgid "FG color fill" msgstr "VG-Farbe" -#: app/core/core-enums.c:93 +#: ../app/core/core-enums.c:93 msgid "BG color fill" msgstr "HG-Farbe" -#: app/core/core-enums.c:94 +#: ../app/core/core-enums.c:94 msgid "Pattern fill" msgstr "Muster" -#: app/core/core-enums.c:123 +#: ../app/core/core-enums.c:123 msgid "Add to the current selection" msgstr "Zur Auswahl hinzufügen" -#: app/core/core-enums.c:124 +#: ../app/core/core-enums.c:124 msgid "Subtract from the current selection" msgstr "Von Auswahl abziehen" -#: app/core/core-enums.c:125 +#: ../app/core/core-enums.c:125 msgid "Replace the current selection" msgstr "Auswahl ersetzen" -#: app/core/core-enums.c:126 +#: ../app/core/core-enums.c:126 msgid "Intersect with the current selection" msgstr "Auswahlschnittmenge bilden" -#: app/core/core-enums.c:160 +#: ../app/core/core-enums.c:160 msgid "Gray" msgstr "Grau" -#: app/core/core-enums.c:161 +#: ../app/core/core-enums.c:161 msgid "Indexed" msgstr "Indiziert" -#: app/core/core-enums.c:219 app/core/core-enums.c:334 -#: app/core/core-enums.c:766 app/tools/gimptransformoptions.c:457 +#: ../app/core/core-enums.c:219 ../app/core/core-enums.c:334 +#: ../app/core/core-enums.c:766 ../app/tools/gimptransformoptions.c:457 msgid "None" msgstr "Keine" -#: app/core/core-enums.c:220 +#: ../app/core/core-enums.c:220 msgid "Floyd-Steinberg (normal)" msgstr "Floyd-Steinberg (normal)" -#: app/core/core-enums.c:221 +#: ../app/core/core-enums.c:221 msgid "Floyd-Steinberg (reduced color bleeding)" msgstr "Floyd-Steinberg (reduziertes Farbbluten)" -#: app/core/core-enums.c:222 +#: ../app/core/core-enums.c:222 msgid "Positioned" msgstr "Positioniert" -#: app/core/core-enums.c:251 +#: ../app/core/core-enums.c:251 msgid "Generate optimum palette" msgstr "Optimale Palette erzeugen" -#: app/core/core-enums.c:252 +#: ../app/core/core-enums.c:252 msgid "Use web-optimized palette" msgstr "Internet-optimierte Palette verwenden" -#: app/core/core-enums.c:253 +#: ../app/core/core-enums.c:253 msgid "Use black and white (1-bit) palette" msgstr "Schwarz/Weiß-Palette (1-Bit) verwenden" -#: app/core/core-enums.c:254 +#: ../app/core/core-enums.c:254 msgid "Use custom palette" msgstr "Eigene Palette verwenden" -#: app/core/core-enums.c:329 +#: ../app/core/core-enums.c:329 msgid "Foreground color" msgstr "Vordergrundfarbe:" -#: app/core/core-enums.c:330 +#: ../app/core/core-enums.c:330 msgid "Background color" msgstr "Hintergrundfarbe:" -#: app/core/core-enums.c:331 +#: ../app/core/core-enums.c:331 msgid "White" msgstr "Weiß" #. Transparency -#: app/core/core-enums.c:332 app/dialogs/preferences-dialog.c:1918 +#: ../app/core/core-enums.c:332 ../app/dialogs/preferences-dialog.c:1918 msgid "Transparency" msgstr "Transparenz" -#: app/core/core-enums.c:333 app/core/core-enums.c:470 -#: app/pdb/internal_procs.c:179 +#: ../app/core/core-enums.c:333 ../app/core/core-enums.c:470 +#: ../app/pdb/internal_procs.c:179 msgid "Pattern" msgstr "Muster" -#: app/core/core-enums.c:371 +#: ../app/core/core-enums.c:371 msgid "Bi-linear" msgstr "Bi-Linear" -#: app/core/core-enums.c:372 +#: ../app/core/core-enums.c:372 msgid "Radial" msgstr "Kreisförmig" -#: app/core/core-enums.c:373 app/core/core-enums.c:530 -#: app/core/core-enums.c:635 +#: ../app/core/core-enums.c:373 ../app/core/core-enums.c:530 +#: ../app/core/core-enums.c:635 msgid "Square" msgstr "Quadratisch" -#: app/core/core-enums.c:374 +#: ../app/core/core-enums.c:374 msgid "Conical (sym)" msgstr "Konisch (symmetrisch)" -#: app/core/core-enums.c:375 +#: ../app/core/core-enums.c:375 msgid "Conical (asym)" msgstr "Konisch (asymmetrisch)" -#: app/core/core-enums.c:376 +#: ../app/core/core-enums.c:376 msgid "Shaped (angular)" msgstr "Formangepaßt (winklig)" -#: app/core/core-enums.c:377 +#: ../app/core/core-enums.c:377 msgid "Shaped (spherical)" msgstr "Formangepaßt (sphärisch)" -#: app/core/core-enums.c:378 +#: ../app/core/core-enums.c:378 msgid "Shaped (dimpled)" msgstr "Formangepaßt (dimpled)" -#: app/core/core-enums.c:379 +#: ../app/core/core-enums.c:379 msgid "Spiral (cw)" msgstr "Spirale (rechtsdrehend)" -#: app/core/core-enums.c:380 +#: ../app/core/core-enums.c:380 msgid "Spiral (ccw)" msgstr "Spirale (rechtsdrehend)" -#: app/core/core-enums.c:410 +#: ../app/core/core-enums.c:410 msgid "Intersections (dots)" msgstr "Schnittpunkte (Punkte)" -#: app/core/core-enums.c:411 +#: ../app/core/core-enums.c:411 msgid "Intersections (crosshairs)" msgstr "Schnittpunkte (Fadenkreuze)" -#: app/core/core-enums.c:412 +#: ../app/core/core-enums.c:412 msgid "Dashed" msgstr "Gestrichelt" -#: app/core/core-enums.c:413 +#: ../app/core/core-enums.c:413 msgid "Double dashed" msgstr "Doppelt Gestrichelt" -#: app/core/core-enums.c:414 app/core/core-enums.c:469 +#: ../app/core/core-enums.c:414 ../app/core/core-enums.c:469 msgid "Solid" msgstr "Durchgezogen" -#: app/core/core-enums.c:441 +#: ../app/core/core-enums.c:441 msgid "Stroke line" msgstr "Nachzieheinstellungen" -#: app/core/core-enums.c:442 +#: ../app/core/core-enums.c:442 msgid "Stroke with a paint tool" msgstr "Mit Hilfe eines Malwerkzeugs nachziehen" -#: app/core/core-enums.c:498 +#: ../app/core/core-enums.c:498 msgid "Miter" msgstr "Gehrung" -#: app/core/core-enums.c:499 app/core/core-enums.c:529 +#: ../app/core/core-enums.c:499 ../app/core/core-enums.c:529 msgid "Round" msgstr "Rund" -#: app/core/core-enums.c:500 +#: ../app/core/core-enums.c:500 msgid "Bevel" msgstr "Schräg" -#: app/core/core-enums.c:528 +#: ../app/core/core-enums.c:528 msgid "Butt" msgstr "Stumpf" -#: app/core/core-enums.c:566 app/dialogs/preferences-dialog.c:1804 +#: ../app/core/core-enums.c:566 ../app/dialogs/preferences-dialog.c:1804 msgid "Custom" msgstr "Benutzerdefiniert" -#: app/core/core-enums.c:567 +#: ../app/core/core-enums.c:567 msgid "Line" msgstr "Durchgezogen" -#: app/core/core-enums.c:568 +#: ../app/core/core-enums.c:568 msgid "Long dashes" msgstr "Lange Striche" -#: app/core/core-enums.c:569 +#: ../app/core/core-enums.c:569 msgid "Medium dashes" msgstr "Striche" -#: app/core/core-enums.c:570 +#: ../app/core/core-enums.c:570 msgid "Short dashes" msgstr "Kurze Striche" -#: app/core/core-enums.c:571 +#: ../app/core/core-enums.c:571 msgid "Sparse dots" msgstr "Wenig Punkte" -#: app/core/core-enums.c:572 +#: ../app/core/core-enums.c:572 msgid "Normal dots" msgstr "Punkte" -#: app/core/core-enums.c:573 +#: ../app/core/core-enums.c:573 msgid "Dense dots" msgstr "Viele Punkte" -#: app/core/core-enums.c:574 +#: ../app/core/core-enums.c:574 msgid "Stipples" msgstr "Getüpfelt" -#: app/core/core-enums.c:575 +#: ../app/core/core-enums.c:575 msgid "Dash dot..." msgstr "Strich Punkt ..." -#: app/core/core-enums.c:576 +#: ../app/core/core-enums.c:576 msgid "Dash dot dot..." msgstr "Strich Punkt Punkt ..." -#: app/core/core-enums.c:604 +#: ../app/core/core-enums.c:604 msgid "Stock ID" msgstr "Stock-ID" -#: app/core/core-enums.c:605 +#: ../app/core/core-enums.c:605 msgid "Inline pixbuf" msgstr "Inline pixbuf" -#: app/core/core-enums.c:606 +#: ../app/core/core-enums.c:606 msgid "Image file" msgstr "Bildgröße" -#: app/core/core-enums.c:634 +#: ../app/core/core-enums.c:634 msgid "Circle" msgstr "Kreis" -#: app/core/core-enums.c:636 +#: ../app/core/core-enums.c:636 msgid "Diamond" msgstr "Diamant" -#: app/core/core-enums.c:664 app/dialogs/preferences-dialog.c:1950 +#: ../app/core/core-enums.c:664 ../app/dialogs/preferences-dialog.c:1950 msgid "Horizontal" msgstr "Horizontal" -#: app/core/core-enums.c:665 app/dialogs/preferences-dialog.c:1952 +#: ../app/core/core-enums.c:665 ../app/dialogs/preferences-dialog.c:1952 msgid "Vertical" msgstr "Vertikal" -#: app/core/core-enums.c:666 +#: ../app/core/core-enums.c:666 msgid "Unknown" msgstr "Unbekannt" -#: app/core/core-enums.c:730 +#: ../app/core/core-enums.c:730 msgid "Tiny" msgstr "Winzig" -#: app/core/core-enums.c:731 +#: ../app/core/core-enums.c:731 msgid "Very small" msgstr "Sehr klein" -#: app/core/core-enums.c:732 +#: ../app/core/core-enums.c:732 msgid "Small" msgstr "Klein" -#: app/core/core-enums.c:733 +#: ../app/core/core-enums.c:733 msgid "Medium" msgstr "Mittel" -#: app/core/core-enums.c:734 +#: ../app/core/core-enums.c:734 msgid "Large" msgstr "Groß" -#: app/core/core-enums.c:735 +#: ../app/core/core-enums.c:735 msgid "Very large" msgstr "Sehr groß" -#: app/core/core-enums.c:736 +#: ../app/core/core-enums.c:736 msgid "Huge" msgstr "Riesig" -#: app/core/core-enums.c:737 +#: ../app/core/core-enums.c:737 msgid "Enormous" msgstr "Enorm" -#: app/core/core-enums.c:738 +#: ../app/core/core-enums.c:738 msgid "Gigantic" msgstr "Gigantisch" -#: app/core/core-enums.c:767 +#: ../app/core/core-enums.c:767 msgid "Sawtooth wave" msgstr "Sägezahnwelle" -#: app/core/core-enums.c:768 +#: ../app/core/core-enums.c:768 msgid "Triangular wave" msgstr "Dreieckswelle" -#: app/core/core-enums.c:830 +#: ../app/core/core-enums.c:830 msgid "No thumbnails" msgstr "Keine Vorschau" -#: app/core/core-enums.c:831 +#: ../app/core/core-enums.c:831 msgid "Normal (128x128)" msgstr "Normal (128x128)" -#: app/core/core-enums.c:832 +#: ../app/core/core-enums.c:832 msgid "Large (256x256)" msgstr "Groß (256x256)" -#: app/core/core-enums.c:859 +#: ../app/core/core-enums.c:859 msgid "Forward (traditional)" msgstr "Vorwärts (Traditionell)" -#: app/core/core-enums.c:860 +#: ../app/core/core-enums.c:860 msgid "Backward (corrective)" msgstr "Rückwärts (Korrigierend)" -#: app/core/core-enums.c:1029 +#: ../app/core/core-enums.c:1030 msgid "<>" msgstr "<>" -#: app/core/core-enums.c:1030 +#: ../app/core/core-enums.c:1031 msgid "Scale image" msgstr "Bild skalieren" -#: app/core/core-enums.c:1031 +#: ../app/core/core-enums.c:1032 msgid "Resize image" msgstr "Bildgröße ändern" -#: app/core/core-enums.c:1032 +#: ../app/core/core-enums.c:1033 msgid "Flip image" msgstr "Bild spiegeln" -#: app/core/core-enums.c:1033 +#: ../app/core/core-enums.c:1034 msgid "Rotate image" msgstr "Bild drehen" -#: app/core/core-enums.c:1034 +#: ../app/core/core-enums.c:1035 msgid "Crop image" msgstr "Bild zuschneiden" -#: app/core/core-enums.c:1035 +#: ../app/core/core-enums.c:1036 msgid "Convert image" msgstr "Bild konvertieren" -#: app/core/core-enums.c:1036 +#: ../app/core/core-enums.c:1037 +msgid "Remove item" +msgstr "Objekt entfernen" + +#: ../app/core/core-enums.c:1038 msgid "Merge layers" msgstr "Ebenen vereinen" -#: app/core/core-enums.c:1037 +#: ../app/core/core-enums.c:1039 msgid "Merge vectors" msgstr "Pfade vereinen" -#: app/core/core-enums.c:1038 app/core/gimpchannel.c:383 +#: ../app/core/core-enums.c:1040 ../app/core/gimpchannel.c:383 msgid "Quick Mask" msgstr "Schnelle Maske" -#: app/core/core-enums.c:1039 app/core/core-enums.c:1068 -#: app/core/gimpimage-grid.c:59 app/dialogs/grid-dialog.c:144 -#: app/tools/tools-enums.c:175 +#: ../app/core/core-enums.c:1041 ../app/core/core-enums.c:1070 +#: ../app/core/gimpimage-grid.c:59 ../app/dialogs/grid-dialog.c:144 +#: ../app/tools/tools-enums.c:175 msgid "Grid" msgstr "Gitter" -#: app/core/core-enums.c:1040 app/core/core-enums.c:1069 +#: ../app/core/core-enums.c:1042 ../app/core/core-enums.c:1071 msgid "Guide" msgstr "Hilfslinie" -#: app/core/core-enums.c:1042 app/core/core-enums.c:1072 +#: ../app/core/core-enums.c:1044 ../app/core/core-enums.c:1074 msgid "Drawable mod" msgstr "Bild-Prozeduren" -#: app/core/core-enums.c:1043 app/core/core-enums.c:1073 +#: ../app/core/core-enums.c:1045 ../app/core/core-enums.c:1075 msgid "Selection mask" msgstr "Auswahlmaske" -#: app/core/core-enums.c:1044 app/core/core-enums.c:1076 +#: ../app/core/core-enums.c:1046 ../app/core/core-enums.c:1078 msgid "Item visibility" msgstr "Sichtbarkeit des Objekts" -#: app/core/core-enums.c:1045 +#: ../app/core/core-enums.c:1047 msgid "Linked item" msgstr "Verknüpftes Objekt" -#: app/core/core-enums.c:1046 +#: ../app/core/core-enums.c:1048 msgid "Item properties" msgstr "Objekteigenschaften" -#: app/core/core-enums.c:1047 app/core/core-enums.c:1075 +#: ../app/core/core-enums.c:1049 ../app/core/core-enums.c:1077 msgid "Move item" msgstr "Objekt verschieben" -#: app/core/core-enums.c:1048 +#: ../app/core/core-enums.c:1050 msgid "Scale item" msgstr "Bild skalieren" -#: app/core/core-enums.c:1049 +#: ../app/core/core-enums.c:1051 msgid "Resize item" msgstr "Bildgröße ändern" -#: app/core/core-enums.c:1050 app/core/core-enums.c:1080 +#: ../app/core/core-enums.c:1052 ../app/core/core-enums.c:1082 msgid "Add layer mask" msgstr "Ebenenmaske hinzufügen" -#: app/core/core-enums.c:1051 +#: ../app/core/core-enums.c:1053 msgid "Apply layer mask" msgstr "Ebenenmaske anwenden" -#: app/core/core-enums.c:1052 +#: ../app/core/core-enums.c:1054 msgid "Floating selection to layer" msgstr "Schwebende Auswahl in Ebene" -#: app/core/core-enums.c:1053 +#: ../app/core/core-enums.c:1055 msgid "Float selection" msgstr "Auswahl schwebend" -#: app/core/core-enums.c:1054 +#: ../app/core/core-enums.c:1056 msgid "Anchor floating selection" msgstr "Schwebende Auswahl verankern" -#: app/core/core-enums.c:1055 +#: ../app/core/core-enums.c:1057 msgid "Remove floating selection" msgstr "Schwebende Auswahl" -#: app/core/core-enums.c:1056 app/core/gimp-edit.c:267 +#: ../app/core/core-enums.c:1058 ../app/core/gimp-edit.c:267 msgid "Paste" msgstr "Einfügen" -#: app/core/core-enums.c:1057 app/core/gimp-edit.c:418 +#: ../app/core/core-enums.c:1059 ../app/core/gimp-edit.c:418 msgid "Cut" msgstr "Ausschneiden" -#: app/core/core-enums.c:1058 app/core/core-enums.c:1086 -#: app/tools/gimptexttool.c:142 app/widgets/widgets-enums.c:263 +#: ../app/core/core-enums.c:1060 ../app/core/core-enums.c:1088 +#: ../app/tools/gimptexttool.c:144 ../app/widgets/widgets-enums.c:263 msgid "Text" msgstr "Text" -#: app/core/core-enums.c:1059 app/core/core-enums.c:1099 -#: app/core/gimpdrawable-transform.c:867 +#: ../app/core/core-enums.c:1061 ../app/core/core-enums.c:1101 +#: ../app/core/gimpdrawable-transform.c:867 msgid "Transform" msgstr "Transformation" -#: app/core/core-enums.c:1060 app/core/core-enums.c:1100 -#: app/paint/gimppaintcore.c:345 +#: ../app/core/core-enums.c:1062 ../app/core/core-enums.c:1102 +#: ../app/paint/gimppaintcore.c:345 msgid "Paint" msgstr "Zeichnen" -#: app/core/core-enums.c:1061 app/core/core-enums.c:1102 +#: ../app/core/core-enums.c:1063 ../app/core/core-enums.c:1104 msgid "Attach parasite" msgstr "Parasit zuweisen" -#: app/core/core-enums.c:1062 app/core/core-enums.c:1103 +#: ../app/core/core-enums.c:1064 ../app/core/core-enums.c:1105 msgid "Remove parasite" msgstr "Parasit entfernen" -#: app/core/core-enums.c:1063 +#: ../app/core/core-enums.c:1065 msgid "Import paths" msgstr "Pfade importieren" -#: app/core/core-enums.c:1064 app/pdb/drawable_cmds.c:1693 +#: ../app/core/core-enums.c:1066 ../app/pdb/drawable_cmds.c:1693 msgid "Plug-In" msgstr "Plugin" -#: app/core/core-enums.c:1065 +#: ../app/core/core-enums.c:1067 msgid "Image type" msgstr "Bildart" -#: app/core/core-enums.c:1066 +#: ../app/core/core-enums.c:1068 msgid "Image size" msgstr "Bildgröße" -#: app/core/core-enums.c:1067 +#: ../app/core/core-enums.c:1069 msgid "Resolution change" msgstr "Auflösung ändern" -#: app/core/core-enums.c:1070 +#: ../app/core/core-enums.c:1072 msgid "Change indexed palette" msgstr "Indizierte Farbpalette ändern" -#: app/core/core-enums.c:1074 +#: ../app/core/core-enums.c:1076 msgid "Rename item" msgstr "Objekt umbenennen" -#: app/core/core-enums.c:1077 +#: ../app/core/core-enums.c:1079 msgid "Set item linked" msgstr "Objekt verknüpfen" -#: app/core/core-enums.c:1078 +#: ../app/core/core-enums.c:1080 msgid "New layer" msgstr "Neue Ebene" -#: app/core/core-enums.c:1081 +#: ../app/core/core-enums.c:1083 msgid "Delete layer mask" msgstr "Ebenenmaske löschen" -#: app/core/core-enums.c:1082 +#: ../app/core/core-enums.c:1084 msgid "Reposition layer" msgstr "Ebene zurücksetzen" -#: app/core/core-enums.c:1083 +#: ../app/core/core-enums.c:1085 msgid "Set layer mode" msgstr "Ebenenmodus festlegen" -#: app/core/core-enums.c:1084 +#: ../app/core/core-enums.c:1086 msgid "Set layer opacity" msgstr "Ebenentransparenz ändern" -#: app/core/core-enums.c:1085 +#: ../app/core/core-enums.c:1087 msgid "Set preserve trans" msgstr "»Transparenz beibehalten« setzen" -#: app/core/core-enums.c:1087 +#: ../app/core/core-enums.c:1089 msgid "Text modified" msgstr "Text verändert" -#: app/core/core-enums.c:1088 +#: ../app/core/core-enums.c:1090 msgid "New channel" msgstr "Neuer Kanal" -#: app/core/core-enums.c:1090 +#: ../app/core/core-enums.c:1092 msgid "Reposition channel" msgstr "Kanal zurücksetzen" -#: app/core/core-enums.c:1091 +#: ../app/core/core-enums.c:1093 msgid "Channel color" msgstr "Farbe des Kanals" -#: app/core/core-enums.c:1092 +#: ../app/core/core-enums.c:1094 msgid "New vectors" msgstr "Neue Vektoren" -#: app/core/core-enums.c:1093 +#: ../app/core/core-enums.c:1095 msgid "Delete vectors" msgstr "Vektoren löschen" -#: app/core/core-enums.c:1094 +#: ../app/core/core-enums.c:1096 msgid "Vectors mod" msgstr "Vektormodus" -#: app/core/core-enums.c:1095 +#: ../app/core/core-enums.c:1097 msgid "Reposition vectors" msgstr "Vektoren zurücksetzen" -#: app/core/core-enums.c:1096 +#: ../app/core/core-enums.c:1098 msgid "FS to layer" msgstr "Ebene aus Schwebender Auswahl" -#: app/core/core-enums.c:1097 +#: ../app/core/core-enums.c:1099 msgid "FS rigor" msgstr "FS Starre" -#: app/core/core-enums.c:1098 +#: ../app/core/core-enums.c:1100 msgid "FS relax" msgstr "FS Locker" -#: app/core/core-enums.c:1101 app/paint/gimpink.c:102 -#: app/tools/gimpinktool.c:62 +#: ../app/core/core-enums.c:1103 ../app/paint/gimpink.c:103 +#: ../app/tools/gimpinktool.c:62 msgid "Ink" msgstr "Tinte" -#: app/core/core-enums.c:1104 +#: ../app/core/core-enums.c:1106 msgid "EEK: can't undo" msgstr "EEK: kann nicht rückgängig gemacht werden" -#: app/core/gimp-edit.c:109 app/core/gimpselection.c:668 +#: ../app/core/gimp-edit.c:109 ../app/core/gimpselection.c:668 msgid "Unable to cut or copy because the selected region is empty." msgstr "" "Ausschneiden oder Kopieren fehlgeschlagen, da der ausgewählte Bereich leer " "ist." -#: app/core/gimp-edit.c:195 app/core/gimp-edit.c:319 +#: ../app/core/gimp-edit.c:195 ../app/core/gimp-edit.c:319 msgid "Pasted Layer" msgstr "Eingefügte Ebene" -#: app/core/gimp-edit.c:369 +#: ../app/core/gimp-edit.c:369 msgid "Fill with FG Color" msgstr "Mit VG-Farbe füllen" -#: app/core/gimp-edit.c:373 app/core/gimp-edit.c:394 +#: ../app/core/gimp-edit.c:373 ../app/core/gimp-edit.c:394 msgid "Fill with BG Color" msgstr "Mit HG-Farbe füllen" -#: app/core/gimp-edit.c:377 +#: ../app/core/gimp-edit.c:377 msgid "Fill with White" msgstr "Mit weiß füllen" -#: app/core/gimp-edit.c:381 +#: ../app/core/gimp-edit.c:381 msgid "Fill with Transparency" msgstr "Mit Transparenz füllen" -#: app/core/gimp-edit.c:385 +#: ../app/core/gimp-edit.c:385 msgid "Fill with Pattern" msgstr "Mit Muster füllen" -#: app/core/gimp-gradients.c:75 +#: ../app/core/gimp-gradients.c:75 msgid "FG to BG (HSV counter-clockwise)" msgstr "VG nach HG (HSV gegen Uhrzeigersinn)" -#: app/core/gimp-gradients.c:80 +#: ../app/core/gimp-gradients.c:80 msgid "FG to BG (HSV clockwise hue)" msgstr "VG nach HG (HSV-Farbton im Uhrzeigersinn)" -#: app/core/gimp-gradients.c:85 +#: ../app/core/gimp-gradients.c:85 msgid "FG to Transparent" msgstr "VG nach Transparent" -#: app/core/gimp-gui.c:153 +#: ../app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" #. register all internal procedures -#: app/core/gimp.c:638 +#: ../app/core/gimp.c:638 msgid "Procedural Database" msgstr "Prozedurdatenbank" -#: app/core/gimp.c:641 +#: ../app/core/gimp.c:641 msgid "Plug-In Environment" msgstr "Plugin-Umgebung" #. initialize the global parasite table -#: app/core/gimp.c:852 +#: ../app/core/gimp.c:852 msgid "Looking for data files" msgstr "Suche nach Arbeitsdaten" -#: app/core/gimp.c:852 +#: ../app/core/gimp.c:852 msgid "Parasites" msgstr "Parasiten" #. initialize the document history -#: app/core/gimp.c:876 +#: ../app/core/gimp.c:876 msgid "Documents" msgstr "Dokumente" #. initialize the module list -#: app/core/gimp.c:884 app/dialogs/preferences-dialog.c:2325 +#: ../app/core/gimp.c:884 ../app/dialogs/preferences-dialog.c:2325 msgid "Modules" msgstr "Module" -#: app/core/gimpbrush.c:534 +#: ../app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "%d Bytes konnten nicht von »%s« gelesen werden: %s" # CHECK -#: app/core/gimpbrush.c:554 +#: ../app/core/gimpbrush.c:554 #, c-format msgid "Fatal parse error in brush file '%s': Width = 0." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Pinseldatei »%s«: Breite = 0." # CHECK -#: app/core/gimpbrush.c:563 +#: ../app/core/gimpbrush.c:563 #, c-format msgid "Fatal parse error in brush file '%s': Height = 0." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Pinseldatei »%s«: Höhe = 0." # CHECK -#: app/core/gimpbrush.c:572 +#: ../app/core/gimpbrush.c:572 #, c-format msgid "Fatal parse error in brush file '%s': Bytes = 0." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Pinseldatei »%s«: Byte = 0." # CHECK -#: app/core/gimpbrush.c:596 +#: ../app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: " "Unbekannte Farbtiefe %d." -#: app/core/gimpbrush.c:609 +#: ../app/core/gimpbrush.c:609 #, c-format msgid "Fatal parse error in brush file '%s': Unknown version %d." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: " "Unbekannte Version %d." -#: app/core/gimpbrush.c:625 app/core/gimpbrush.c:745 +#: ../app/core/gimpbrush.c:625 ../app/core/gimpbrush.c:745 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: " "Datei scheint nicht vollständig zu sein." -#: app/core/gimpbrush.c:633 app/core/gimpbrushgenerated.c:648 -#: app/core/gimpbrushpipe.c:354 +#: ../app/core/gimpbrush.c:633 ../app/core/gimpbrushgenerated.c:648 +#: ../app/core/gimpbrushpipe.c:354 #, c-format msgid "Invalid UTF-8 string in brush file '%s'." msgstr "Ungültiger UTF-8 Text in Pinseldatei »%s«." -#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:475 app/core/gimppattern.c:400 -#: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 +#: ../app/core/gimpbrush.c:640 ../app/core/gimpcontext.c:1299 +#: ../app/core/gimpitem.c:475 ../app/core/gimppattern.c:400 +#: ../app/dialogs/template-options-dialog.c:80 +#: ../app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "Namenlos" -#: app/core/gimpbrush.c:734 +#: ../app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -4715,7 +4738,7 @@ "GIMP Pinsel müssen in GRAUSTUFE oder RGB vorliegen." # CHECK -#: app/core/gimpbrushgenerated.c:614 +#: ../app/core/gimpbrushgenerated.c:614 #, c-format msgid "Fatal parse error in brush file '%s': Not a GIMP brush file." msgstr "" @@ -4723,7 +4746,7 @@ "Datei ist keine GIMP Pinsel Datei" # CHECK -#: app/core/gimpbrushgenerated.c:630 +#: ../app/core/gimpbrushgenerated.c:630 #, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush version." msgstr "" @@ -4731,146 +4754,147 @@ "Unbekannte GIMP Pinsel Version" # CHECK -#: app/core/gimpbrushgenerated.c:669 +#: ../app/core/gimpbrushgenerated.c:669 #, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush shape." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: " "Unbekannte GIMP Pinsel Version" -#: app/core/gimpbrushgenerated.c:750 +#: ../app/core/gimpbrushgenerated.c:750 #, c-format msgid "Error while reading brush file '%s': %s" msgstr "Fehler beim Lesen von »%s«: %s" -#: app/core/gimpbrushgenerated.c:752 +#: ../app/core/gimpbrushgenerated.c:752 msgid "File is truncated" msgstr "Datei ist verkürzt" # CHECK -#: app/core/gimpbrushpipe.c:369 app/core/gimpbrushpipe.c:389 -#: app/core/gimpbrushpipe.c:479 +#: ../app/core/gimpbrushpipe.c:369 ../app/core/gimpbrushpipe.c:389 +#: ../app/core/gimpbrushpipe.c:479 #, c-format msgid "Fatal parse error in brush file '%s': File is corrupt." msgstr "" "Schwerwiegender Fehler beim Verarbeiten von Pinseldatei »%s«: Datei ist " "fehlerhaft." -#: app/core/gimpchannel.c:280 app/pdb/internal_procs.c:95 +#: ../app/core/gimpchannel.c:280 ../app/pdb/internal_procs.c:95 msgid "Channel" msgstr "Kanal" -#: app/core/gimpchannel.c:281 +#: ../app/core/gimpchannel.c:281 msgid "Rename Channel" msgstr "Kanal umbenennen" -#: app/core/gimpchannel.c:282 +#: ../app/core/gimpchannel.c:282 msgid "Move Channel" msgstr "Kanal verschieben" -#: app/core/gimpchannel.c:283 +#: ../app/core/gimpchannel.c:283 msgid "Scale Channel" msgstr "Kanal skalieren" -#: app/core/gimpchannel.c:284 +#: ../app/core/gimpchannel.c:284 msgid "Resize Channel" msgstr "Kanalgröße ändern" -#: app/core/gimpchannel.c:285 +#: ../app/core/gimpchannel.c:285 msgid "Flip Channel" msgstr "Kanal spiegeln" -#: app/core/gimpchannel.c:286 +#: ../app/core/gimpchannel.c:286 msgid "Rotate Channel" msgstr "Kanal drehen" -#: app/core/gimpchannel.c:287 app/core/gimpdrawable-transform.c:1121 +#: ../app/core/gimpchannel.c:287 ../app/core/gimpdrawable-transform.c:1121 msgid "Transform Channel" msgstr "Kanal transformieren" -#: app/core/gimpchannel.c:288 +#: ../app/core/gimpchannel.c:288 msgid "Stroke Channel" msgstr "Kanal nachzeichnen" -#: app/core/gimpchannel.c:310 +#: ../app/core/gimpchannel.c:310 msgid "Feather Channel" msgstr "Kanal ausblenden" -#: app/core/gimpchannel.c:311 +#: ../app/core/gimpchannel.c:311 msgid "Sharpen Channel" msgstr "Kanal schärfen" -#: app/core/gimpchannel.c:312 +#: ../app/core/gimpchannel.c:312 msgid "Clear Channel" msgstr "Kanal löschen" -#: app/core/gimpchannel.c:313 +#: ../app/core/gimpchannel.c:313 msgid "Fill Channel" msgstr "Kanal füllen" -#: app/core/gimpchannel.c:314 +#: ../app/core/gimpchannel.c:314 msgid "Invert Channel" msgstr "Kanal invertieren" -#: app/core/gimpchannel.c:315 +#: ../app/core/gimpchannel.c:315 msgid "Border Channel" msgstr "Kanal umranden" -#: app/core/gimpchannel.c:316 +#: ../app/core/gimpchannel.c:316 msgid "Grow Channel" msgstr "Kanal vergrößern" -#: app/core/gimpchannel.c:317 +#: ../app/core/gimpchannel.c:317 msgid "Shrink Channel" msgstr "Kanal verkleinern" -#: app/core/gimpchannel.c:631 +#: ../app/core/gimpchannel.c:631 msgid "Cannot stroke empty channel." msgstr "Leere Kanäle können nicht nachgezogen werden." -#: app/core/gimpchannel.c:1527 +#: ../app/core/gimpchannel.c:1527 msgid "Set Channel Color" msgstr "Farbe für Kanal setzen" -#: app/core/gimpchannel.c:1575 +#: ../app/core/gimpchannel.c:1575 msgid "Set Channel Opacity" msgstr "Transparenz des Kanals setzen" -#: app/core/gimpchannel.c:1644 app/core/gimpselection.c:563 +#: ../app/core/gimpchannel.c:1644 ../app/core/gimpselection.c:563 msgid "Selection Mask" msgstr "Auswahlmaske" -#: app/core/gimpchannel-select.c:56 app/tools/gimprectselecttool.c:96 +#: ../app/core/gimpchannel-select.c:56 ../app/tools/gimprectselecttool.c:96 msgid "Rect Select" msgstr "Rechteckige Auswahl" -#: app/core/gimpchannel-select.c:107 app/tools/gimpellipseselecttool.c:71 +#: ../app/core/gimpchannel-select.c:107 +#: ../app/tools/gimpellipseselecttool.c:71 msgid "Ellipse Select" msgstr "Elliptische Auswahl" -#: app/core/gimpchannel-select.c:373 +#: ../app/core/gimpchannel-select.c:373 msgid "Alpha to Selection" msgstr "Auswahl aus Alphakanal" -#: app/core/gimpchannel-select.c:414 +#: ../app/core/gimpchannel-select.c:414 #, c-format msgid "%s Channel to Selection" msgstr "Auswahl aus %s-Kanal" -#: app/core/gimpchannel-select.c:460 app/tools/gimpfuzzyselecttool.c:97 +#: ../app/core/gimpchannel-select.c:460 ../app/tools/gimpfuzzyselecttool.c:97 msgid "Fuzzy Select" msgstr "Zauberstab" -#: app/core/gimpchannel-select.c:505 +#: ../app/core/gimpchannel-select.c:505 msgid "Select by Color" msgstr "Nach Farbe auswählen" -#: app/core/gimpdata.c:314 +#: ../app/core/gimpdata.c:314 #, c-format msgid "Could not delete '%s': %s" msgstr "»%s« konnte nicht gelöscht werden: %s" -#: app/core/gimpdatafactory.c:291 app/core/gimpdatafactory.c:511 +#: ../app/core/gimpdatafactory.c:291 ../app/core/gimpdatafactory.c:511 #, c-format msgid "" "Warning: Failed to save data:\n" @@ -4880,17 +4904,17 @@ "Warnung: Daten konnten nicht gespeichert werden:\n" "%s" -#: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:272 app/core/gimpitem.c:275 +#: ../app/core/gimpdatafactory.c:411 ../app/core/gimpdatafactory.c:414 +#: ../app/core/gimpitem.c:272 ../app/core/gimpitem.c:275 msgid "copy" msgstr "Kopie" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:284 +#: ../app/core/gimpdatafactory.c:423 ../app/core/gimpitem.c:284 #, c-format msgid "%s copy" msgstr "%s-Kopie" -#: app/core/gimpdatafactory.c:614 +#: ../app/core/gimpdatafactory.c:614 #, c-format msgid "" "Warning: Failed to load data:\n" @@ -4900,471 +4924,472 @@ "Warnung: Daten konnten nicht geladen werden:\n" "%s" -#: app/core/gimpdrawable-blend.c:238 app/tools/gimpblendtool.c:101 +#: ../app/core/gimpdrawable-blend.c:238 ../app/tools/gimpblendtool.c:101 msgid "Blend" msgstr "Farbverlauf" -#: app/core/gimpdrawable-bucket-fill.c:85 app/paint/gimpclone.c:183 +#: ../app/core/gimpdrawable-bucket-fill.c:85 ../app/paint/gimpclone.c:183 msgid "No patterns available for this operation." msgstr "Für diese Operation sind keine Muster vorhanden." -#: app/core/gimpdrawable-bucket-fill.c:272 app/tools/gimpbucketfilltool.c:91 +#: ../app/core/gimpdrawable-bucket-fill.c:272 +#: ../app/tools/gimpbucketfilltool.c:91 msgid "Bucket Fill" msgstr "Füllen" -#: app/core/gimpdrawable-desaturate.c:98 +#: ../app/core/gimpdrawable-desaturate.c:98 msgid "Desaturate" msgstr "Entsättigen" -#: app/core/gimpdrawable-equalize.c:80 +#: ../app/core/gimpdrawable-equalize.c:80 msgid "Equalize" msgstr "Egalisieren" -#: app/core/gimpdrawable-invert.c:61 +#: ../app/core/gimpdrawable-invert.c:61 msgid "Invert" msgstr "Invertieren" -#: app/core/gimpdrawable-levels.c:112 app/core/gimpdrawable-levels.c:162 -#: app/tools/gimplevelstool.c:160 +#: ../app/core/gimpdrawable-levels.c:112 ../app/core/gimpdrawable-levels.c:162 +#: ../app/tools/gimplevelstool.c:160 msgid "Levels" msgstr "Farbwerte" -#: app/core/gimpdrawable-offset.c:316 +#: ../app/core/gimpdrawable-offset.c:316 msgid "Offset Drawable" msgstr "Ebene verschieben" -#: app/core/gimpdrawable-stroke.c:319 +#: ../app/core/gimpdrawable-stroke.c:319 msgid "Render Stroke" msgstr "Nachziehen" #. Start a transform undo group -#: app/core/gimpdrawable-transform.c:928 app/tools/gimpfliptool.c:82 +#: ../app/core/gimpdrawable-transform.c:928 ../app/tools/gimpfliptool.c:82 msgid "Flip" msgstr "Spiegeln" #. Start a transform undo group -#: app/core/gimpdrawable-transform.c:1009 app/tools/gimprotatetool.c:97 +#: ../app/core/gimpdrawable-transform.c:1009 ../app/tools/gimprotatetool.c:97 msgid "Rotate" msgstr "Drehen" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 +#: ../app/core/gimpdrawable-transform.c:1119 ../app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "Ebene transformieren" -#: app/core/gimpdrawable-transform.c:1134 +#: ../app/core/gimpdrawable-transform.c:1134 msgid "Transformation" msgstr "Transformation" -#: app/core/gimpenvirontable.c:285 +#: ../app/core/gimpenvirontable.c:285 #, c-format msgid "Empty variable name in environment file %s" msgstr "Umgebungsdatei %s enthält leeren Variablennamen" -#: app/core/gimpenvirontable.c:303 +#: ../app/core/gimpenvirontable.c:303 #, c-format msgid "Illegal variable name in environment file %s: %s" msgstr "Umgebungsdatei %s enthält ungültigen Variablennamen: %s" -#: app/core/gimpgradient-load.c:72 +#: ../app/core/gimpgradient-load.c:72 #, c-format msgid "Fatal parse error in gradient file '%s': Not a GIMP gradient file." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Syntax der Farbverlaufsdatei »%" "s«: Datei ist keine GIMP-Farbverlaufsdatei" -#: app/core/gimpgradient-load.c:87 +#: ../app/core/gimpgradient-load.c:87 #, c-format msgid "Invalid UTF-8 string in gradient file '%s'." msgstr "Ungültige UTF-8-Zeichenkette in Farbverlaufsdatei »%s«." # CHECK -#: app/core/gimpgradient-load.c:115 +#: ../app/core/gimpgradient-load.c:115 #, c-format msgid "Fatal parse error in gradient file '%s': File is corrupt." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Syntax der Farbverlaufsdatei »%" "s«: Datei ist fehlerhaft." -#: app/core/gimpgradient-load.c:172 +#: ../app/core/gimpgradient-load.c:172 #, c-format msgid "Corrupt segment %d in gradient file '%s'." msgstr "Fehlerhaftes Segment %d in Farbverlaufsdatei »%s«." -#: app/core/gimpgradient-load.c:183 app/core/gimpgradient-load.c:197 +#: ../app/core/gimpgradient-load.c:183 ../app/core/gimpgradient-load.c:197 #, c-format msgid "Gradient file '%s' is corrupt: Segments do not span the range 0-1." msgstr "Farbverlauf '%s' ist fehlerhaft: Segmente reichen nicht von 0 bis 1." -#: app/core/gimpgradient-load.c:281 +#: ../app/core/gimpgradient-load.c:281 #, c-format msgid "No linear gradients found in '%s'" msgstr "Keinen linearen Farbverlauf in »%s« gefunden" -#: app/core/gimpgradient-load.c:291 +#: ../app/core/gimpgradient-load.c:291 #, c-format msgid "Failed to import gradients from '%s': %s" msgstr "Fehler beim Farbverlauf-Import aus »%s«: %s" -#: app/core/gimpgrid.c:128 +#: ../app/core/gimpgrid.c:128 msgid "Line style used for the grid." msgstr "Der für das Gitter verwendete Linienstil." -#: app/core/gimpgrid.c:134 +#: ../app/core/gimpgrid.c:134 msgid "The foreground color of the grid." msgstr "Die Vordergrundfarbe des Gitters." -#: app/core/gimpgrid.c:139 +#: ../app/core/gimpgrid.c:139 msgid "" "The background color of the grid; only used in double dashed line style." msgstr "" "Die Hintergrundfarbe des Rasters. Diese wird nur verwendet falls doppelt " "gestrichelte Linien verwendet werden." -#: app/core/gimpgrid.c:145 +#: ../app/core/gimpgrid.c:145 msgid "Horizontal spacing of grid lines." msgstr "Horizontaler Abstand der Gitterlinien." -#: app/core/gimpgrid.c:150 +#: ../app/core/gimpgrid.c:150 msgid "Vertical spacing of grid lines." msgstr "Vertikaler Abstand der Gitterlinien." -#: app/core/gimpgrid.c:159 +#: ../app/core/gimpgrid.c:159 msgid "" "Horizontal offset of the first grid line; this may be a negative number." msgstr "" "Horizontaler Versatz der ersten Gitterlinie; dies darf eine negative Zahl " "sein." -#: app/core/gimpgrid.c:166 +#: ../app/core/gimpgrid.c:166 msgid "Vertical offset of the first grid line; this may be a negative number." msgstr "" "Vertikaler Versatz der ersten Gitterlinie; dies darf eine negative Zahl sein." -#: app/core/gimpimage-colormap.c:63 +#: ../app/core/gimpimage-colormap.c:63 msgid "Set Colormap" msgstr "Farbtabelle festlegen" -#: app/core/gimpimage-colormap.c:115 +#: ../app/core/gimpimage-colormap.c:115 msgid "Change Colormap entry" msgstr "Farbpaletteneintrag ändern" -#: app/core/gimpimage-colormap.c:135 +#: ../app/core/gimpimage-colormap.c:135 msgid "Add Color to Colormap" msgstr "Farbe zur Farbpalette hinzufügen" -#: app/core/gimpimage-convert.c:788 +#: ../app/core/gimpimage-convert.c:789 msgid "Convert Image to RGB" msgstr "Bild nach RGB konvertieren" -#: app/core/gimpimage-convert.c:792 +#: ../app/core/gimpimage-convert.c:793 msgid "Convert Image to Grayscale" msgstr "Bild in Graustufen konvertieren" -#: app/core/gimpimage-convert.c:796 +#: ../app/core/gimpimage-convert.c:797 msgid "Convert Image to Indexed" msgstr "Bild in indizierte Farben konvertieren" -#: app/core/gimpimage-convert.c:875 +#: ../app/core/gimpimage-convert.c:879 msgid "Converting to indexed (stage 2)..." msgstr "Bild in indizierte Farben konvertieren (Stufe 2)..." -#: app/core/gimpimage-convert.c:919 +#: ../app/core/gimpimage-convert.c:923 msgid "Converting to indexed (stage 3)..." msgstr "Bild in indizierte Farben konvertieren (Stufe 3)..." -#: app/core/gimpimage-crop.c:123 +#: ../app/core/gimpimage-crop.c:123 msgid "Crop Image" msgstr "Bild zuschneiden" -#: app/core/gimpimage-crop.c:126 app/core/gimpimage-resize.c:67 +#: ../app/core/gimpimage-crop.c:126 ../app/core/gimpimage-resize.c:67 msgid "Resize Image" msgstr "Bildgröße ändern" -#: app/core/gimpimage-guides.c:53 +#: ../app/core/gimpimage-guides.c:53 msgid "Add Horizontal Guide" msgstr "Horizontale Hilfslinie hinzufügen" -#: app/core/gimpimage-guides.c:80 +#: ../app/core/gimpimage-guides.c:80 msgid "Add Vertical Guide" msgstr "Vertikale Hilfslinie hinzufügen" -#: app/core/gimpimage-guides.c:143 app/tools/gimpmovetool.c:570 +#: ../app/core/gimpimage-guides.c:143 ../app/tools/gimpmovetool.c:570 msgid "Remove Guide" msgstr "Hilfslinie entfernen" -#: app/core/gimpimage-guides.c:167 +#: ../app/core/gimpimage-guides.c:167 msgid "Move Guide" msgstr "Hilfslinie verschieben" -#: app/core/gimpimage-merge.c:91 +#: ../app/core/gimpimage-merge.c:91 msgid "Merge Visible Layers" msgstr "Sichtbare Ebenen vereinen" -#: app/core/gimpimage-merge.c:107 +#: ../app/core/gimpimage-merge.c:107 msgid "Not enough visible layers for a merge. There must be at least two." msgstr "" "Es sind nicht genügend Ebenen als »Sichtbar« markiert, um den Vorgang " "»Sichtbare Ebenen vereinen« auszuführen. Es müssen mindestens zwei sein." -#: app/core/gimpimage-merge.c:142 +#: ../app/core/gimpimage-merge.c:142 msgid "Flatten Image" msgstr "Bild zusammenfügen" -#: app/core/gimpimage-merge.c:193 +#: ../app/core/gimpimage-merge.c:193 msgid "Merge Down" msgstr "Nach unten vereinen" -#: app/core/gimpimage-merge.c:202 +#: ../app/core/gimpimage-merge.c:202 msgid "There are not enough visible layers for a merge down." msgstr "" "Es sind nicht genügend Ebenen unter dieser Ebene als »Sichtbar«\n" "markiert, um den Vorgang »Nach unten vereinen« auszuführen." -#: app/core/gimpimage-merge.c:543 +#: ../app/core/gimpimage-merge.c:543 msgid "Merge Visible Paths" msgstr "Sichtbare Pfade vereinen" -#: app/core/gimpimage-merge.c:580 +#: ../app/core/gimpimage-merge.c:580 msgid "Not enough visible paths for a merge. There must be at least two." msgstr "" "Es sind nicht genügend Pfade als »Sichtbar« markiert, um den Vorgang " "»Sichtbare Pfade vereinen« auszuführen. Es müssen mindestens zwei sein." -#: app/core/gimpimage-qmask.c:67 +#: ../app/core/gimpimage-qmask.c:67 msgid "Enable Quick Mask" msgstr "Schnelle Maske aktivieren" -#: app/core/gimpimage-qmask.c:117 +#: ../app/core/gimpimage-qmask.c:117 msgid "Disable Quick Mask" msgstr "Schnelle Maske deaktivieren" -#: app/core/gimpimage-undo-push.c:3055 +#: ../app/core/gimpimage-undo-push.c:3055 #, c-format msgid "Can't undo %s" msgstr "%s konnte nicht rückgängig gemacht werden" -#: app/core/gimpimage.c:1357 +#: ../app/core/gimpimage.c:1359 msgid "Change Image Resolution" msgstr "Bildauflösung ändern" -#: app/core/gimpimage.c:1397 +#: ../app/core/gimpimage.c:1399 msgid "Change Image Unit" msgstr "Bildeinheit ändern" -#: app/core/gimpimage.c:2177 +#: ../app/core/gimpimage.c:2179 msgid "Attach Parasite to Image" msgstr "Parasit zuweisen" -#: app/core/gimpimage.c:2210 +#: ../app/core/gimpimage.c:2212 msgid "Remove Parasite from Image" msgstr "Parasit entfernen" -#: app/core/gimpimage.c:2678 +#: ../app/core/gimpimage.c:2680 msgid "Add Layer" msgstr "Ebene hinzufügen" -#: app/core/gimpimage.c:2745 +#: ../app/core/gimpimage.c:2744 ../app/core/gimpimage.c:2757 msgid "Remove Layer" msgstr "Ebene entfernen" -#: app/core/gimpimage.c:2816 +#: ../app/core/gimpimage.c:2831 msgid "Layer cannot be raised higher." msgstr "Diese Ebene kann nicht weiter angehoben werden." -#: app/core/gimpimage.c:2822 app/core/gimpimage.c:2872 +#: ../app/core/gimpimage.c:2837 ../app/core/gimpimage.c:2887 msgid "Cannot raise a layer without alpha." msgstr "Ebenen ohne Alphakanal können nicht angehoben werden." -#: app/core/gimpimage.c:2827 +#: ../app/core/gimpimage.c:2842 msgid "Raise Layer" msgstr "Ebene anheben" -#: app/core/gimpimage.c:2844 +#: ../app/core/gimpimage.c:2859 msgid "Layer cannot be lowered more." msgstr "Diese Ebene kann nicht weiter abgesenkt werden." -#: app/core/gimpimage.c:2849 +#: ../app/core/gimpimage.c:2864 msgid "Lower Layer" msgstr "Ebene absenken" -#: app/core/gimpimage.c:2866 +#: ../app/core/gimpimage.c:2881 msgid "Layer is already on top." msgstr "Diese Ebene befindet sich bereits ganz oben." -#: app/core/gimpimage.c:2877 +#: ../app/core/gimpimage.c:2892 msgid "Raise Layer to Top" msgstr "Ebene nach ganz oben" -#: app/core/gimpimage.c:2897 +#: ../app/core/gimpimage.c:2912 msgid "Layer is already on the bottom." msgstr "Diese Ebene befindet sich bereits ganz unten." -#: app/core/gimpimage.c:2902 +#: ../app/core/gimpimage.c:2917 msgid "Lower Layer to Bottom" msgstr "Ebene nach ganz unten" -#: app/core/gimpimage.c:2941 +#: ../app/core/gimpimage.c:2956 #, c-format msgid "Layer '%s' has no alpha. Layer was placed above it." msgstr "Ebene »%s« hat keinen Alphakanal. Ebene ist darüber plaziert worden." -#: app/core/gimpimage.c:2993 +#: ../app/core/gimpimage.c:3008 msgid "Add Channel" msgstr "Kanal hinzufügen" -#: app/core/gimpimage.c:3038 +#: ../app/core/gimpimage.c:3052 ../app/core/gimpimage.c:3063 msgid "Remove Channel" msgstr "Kanal entfernen" -#: app/core/gimpimage.c:3082 +#: ../app/core/gimpimage.c:3110 msgid "Channel cannot be raised higher." msgstr "Dieser Kanal kann nicht weiter angehoben werden." -#: app/core/gimpimage.c:3087 +#: ../app/core/gimpimage.c:3115 msgid "Raise Channel" msgstr "Kanal anheben" -#: app/core/gimpimage.c:3104 +#: ../app/core/gimpimage.c:3132 msgid "Channel is already on top." msgstr "Dieser Kanal befindet sich bereits ganz oben." -#: app/core/gimpimage.c:3109 +#: ../app/core/gimpimage.c:3137 msgid "Raise Channel to Top" msgstr "Kanal nach ganz oben anheben" -#: app/core/gimpimage.c:3126 +#: ../app/core/gimpimage.c:3154 msgid "Channel cannot be lowered more." msgstr "Dieser Kanal kann nicht weiter abgesenkt werden." -#: app/core/gimpimage.c:3131 +#: ../app/core/gimpimage.c:3159 msgid "Lower Channel" msgstr "Kanal absenken" -#: app/core/gimpimage.c:3151 +#: ../app/core/gimpimage.c:3179 msgid "Channel is already on the bottom." msgstr "Dieser Kanal befindet sich bereits ganz unten." -#: app/core/gimpimage.c:3156 +#: ../app/core/gimpimage.c:3184 msgid "Lower Channel to Bottom" msgstr "Kanel nach ganz unten absenken" -#: app/core/gimpimage.c:3231 +#: ../app/core/gimpimage.c:3259 msgid "Add Path" msgstr "Pfad hinzufügen" -#: app/core/gimpimage.c:3276 +#: ../app/core/gimpimage.c:3304 msgid "Remove Path" msgstr "Pfad entfernen" -#: app/core/gimpimage.c:3320 +#: ../app/core/gimpimage.c:3348 msgid "Path cannot be raised higher." msgstr "Dieser Pfad kann nicht weiter angehoben werden." -#: app/core/gimpimage.c:3325 +#: ../app/core/gimpimage.c:3353 msgid "Raise Path" msgstr "Pfad anheben" -#: app/core/gimpimage.c:3342 +#: ../app/core/gimpimage.c:3370 msgid "Path is already on top." msgstr "Dieser Pfad befindet sich bereits ganz oben." -#: app/core/gimpimage.c:3347 +#: ../app/core/gimpimage.c:3375 msgid "Raise Path to Top" msgstr "Pfad nach ganz oben anheben" -#: app/core/gimpimage.c:3364 +#: ../app/core/gimpimage.c:3392 msgid "Path cannot be lowered more." msgstr "Dieser Pfad kann nicht weiter abgesenkt werden." -#: app/core/gimpimage.c:3369 +#: ../app/core/gimpimage.c:3397 msgid "Lower Path" msgstr "Pfad absenken" -#: app/core/gimpimage.c:3389 +#: ../app/core/gimpimage.c:3417 msgid "Path is already on the bottom." msgstr "Dieser Pfad befindet sich bereits ganz unten." -#: app/core/gimpimage.c:3394 +#: ../app/core/gimpimage.c:3422 msgid "Lower Path to Bottom" msgstr "Pfad nach ganz unten absenken" -#: app/core/gimpimagefile.c:568 +#: ../app/core/gimpimagefile.c:568 msgid "Remote image" msgstr "Entferntes Bild" -#: app/core/gimpimagefile.c:573 app/dialogs/preferences-dialog.c:1472 +#: ../app/core/gimpimagefile.c:573 ../app/dialogs/preferences-dialog.c:1472 msgid "Folder" msgstr "Ordner" -#: app/core/gimpimagefile.c:578 +#: ../app/core/gimpimagefile.c:578 msgid "Special File" msgstr "Besondere Datei" -#: app/core/gimpimagefile.c:605 +#: ../app/core/gimpimagefile.c:605 msgid "Click to create preview" msgstr "Anklicken um Vorschau zu erstellen" -#: app/core/gimpimagefile.c:609 +#: ../app/core/gimpimagefile.c:609 msgid "Loading preview ..." msgstr "Vorschau wird geladen..." -#: app/core/gimpimagefile.c:613 +#: ../app/core/gimpimagefile.c:613 msgid "Preview is out of date" msgstr "Vorschau ist veraltet" -#: app/core/gimpimagefile.c:617 +#: ../app/core/gimpimagefile.c:617 msgid "Cannot create preview" msgstr "Vorschau konnte nicht erzeugt werden" #. pixel size -#: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:432 app/widgets/gimptemplateeditor.c:637 -#: app/widgets/gimptemplateeditor.c:675 +#: ../app/core/gimpimagefile.c:624 ../app/dialogs/info-window.c:552 +#: ../app/widgets/gimpsizebox.c:432 ../app/widgets/gimptemplateeditor.c:637 +#: ../app/widgets/gimptemplateeditor.c:675 #, c-format msgid "%d x %d pixels" msgstr "%d x %d Pixel" -#: app/core/gimpimagefile.c:639 +#: ../app/core/gimpimagefile.c:639 msgid "1 Layer" msgstr "1 Ebene" -#: app/core/gimpimagefile.c:641 +#: ../app/core/gimpimagefile.c:641 #, c-format msgid "%d Layers" msgstr "%d Ebenen" -#: app/core/gimpimagefile.c:682 +#: ../app/core/gimpimagefile.c:685 #, c-format msgid "Could not open thumbnail '%s': %s" msgstr "Vorschaudatei »%s« konnte nicht geöffnet werden: %s" -#: app/core/gimpitem.c:1091 +#: ../app/core/gimpitem.c:1091 msgid "Attach Parasite" msgstr "Parasit zuweisen" -#: app/core/gimpitem.c:1101 +#: ../app/core/gimpitem.c:1101 msgid "Attach Parasite to Item" msgstr "Parasit zuweisen" -#: app/core/gimpitem.c:1140 app/core/gimpitem.c:1147 +#: ../app/core/gimpitem.c:1140 ../app/core/gimpitem.c:1147 msgid "Remove Parasite from Item" msgstr "Parasit entfernen" -#: app/core/gimplayer-floating-sel.c:98 +#: ../app/core/gimplayer-floating-sel.c:98 msgid "Remove Floating Selection" msgstr "Schwebende Auswahl entfernen" -#: app/core/gimplayer-floating-sel.c:129 +#: ../app/core/gimplayer-floating-sel.c:129 msgid "Cannot anchor this layer because it is not a floating selection." msgstr "" "Diese Ebene konnte nicht verankert werden, da sie keine schwebende Auswahl " "ist." -#: app/core/gimplayer-floating-sel.c:136 +#: ../app/core/gimplayer-floating-sel.c:136 msgid "Anchor Floating Selection" msgstr "Schwebende Auswahl verankern" -#: app/core/gimplayer-floating-sel.c:209 +#: ../app/core/gimplayer-floating-sel.c:209 msgid "" "Cannot create a new layer from the floating selection because it belongs to " "a layer mask or channel." @@ -5372,41 +5397,42 @@ "Es konnte keine neue Ebene aus dieser schwebenden Auswahl erzeugt werden, da " "sie zu einer Ebenenmaske oder einem Kanal gehört." -#: app/core/gimplayer-floating-sel.c:215 +#: ../app/core/gimplayer-floating-sel.c:215 msgid "Floating Selection to Layer" msgstr "Schwebende Auswahl in Ebene" -#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 +#: ../app/core/gimplayer.c:250 ../app/pdb/internal_procs.c:152 msgid "Layer" msgstr "Ebene" -#: app/core/gimplayer.c:251 +#: ../app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "Ebene umbenennen" -#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: ../app/core/gimplayer.c:252 ../app/pdb/layer_cmds.c:669 +#: ../app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "Ebene bewegen" -#: app/core/gimplayer.c:254 +#: ../app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "Ebenengröße ändern" -#: app/core/gimplayer.c:255 +#: ../app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "Ebene spiegeln" -#: app/core/gimplayer.c:256 +#: ../app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "Ebene drehen" -#: app/core/gimplayer.c:339 app/core/gimplayer.c:1109 -#: app/core/gimplayermask.c:236 +#: ../app/core/gimplayer.c:339 ../app/core/gimplayer.c:1109 +#: ../app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s Maske" -#: app/core/gimplayer.c:385 +#: ../app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5415,51 +5441,51 @@ "Schwebende Auswahl\n" "(%s)" -#: app/core/gimplayer.c:1035 +#: ../app/core/gimplayer.c:1035 msgid "Cannot add layer mask to layer which is not part of an image." msgstr "Masken können nicht zu einer Ebene ohne Alphakanal hinzufügt werden." -#: app/core/gimplayer.c:1042 +#: ../app/core/gimplayer.c:1042 msgid "Unable to add a layer mask since the layer already has one." msgstr "" "Es konnte keine Ebenenenmaske hinzugefügt werden, da diese Ebene bereits " "eine Maske hat." -#: app/core/gimplayer.c:1049 +#: ../app/core/gimplayer.c:1049 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "Masken können nicht zu einer Ebene ohne Alphakanal hinzufügt werden." -#: app/core/gimplayer.c:1059 +#: ../app/core/gimplayer.c:1059 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" "Ebenenmasken mit anderen Abmessungen als die Ebene können nicht hinzufügt " "werden." -#: app/core/gimplayer.c:1163 +#: ../app/core/gimplayer.c:1163 msgid "Transfer Alpha to Mask" msgstr "Alpha in Maske übernehmen" -#: app/core/gimplayer.c:1323 +#: ../app/core/gimplayer.c:1323 msgid "Apply Layer Mask" msgstr "Ebenenmaske anwenden" -#: app/core/gimplayer.c:1324 +#: ../app/core/gimplayer.c:1324 msgid "Delete Layer Mask" msgstr "Ebenenmaske löschen" -#: app/core/gimplayer.c:1425 +#: ../app/core/gimplayer.c:1425 msgid "Add Alpha Channel" msgstr "Alphakanal hinzufügen" -#: app/core/gimplayer.c:1447 +#: ../app/core/gimplayer.c:1447 msgid "Layer to Image Size" msgstr "Ebene auf Bildgröße" -#: app/core/gimplayermask.c:132 +#: ../app/core/gimplayermask.c:132 msgid "Move Layer Mask" msgstr "Ebenenmaske bewegen" -#: app/core/gimppalette-import.c:490 +#: ../app/core/gimppalette-import.c:490 #, c-format msgid "" "Unknown type of palette file:\n" @@ -5468,7 +5494,7 @@ "Unbekannter Palettendateityp:\n" "%s" -#: app/core/gimppalette.c:375 +#: ../app/core/gimppalette.c:375 #, c-format msgid "" "Fatal parse error in palette file '%s': Missing magic header.\n" @@ -5479,27 +5505,27 @@ "Muß diese Datei erst von DOS konvertiert werden?" # CHECK -#: app/core/gimppalette.c:381 +#: ../app/core/gimppalette.c:381 #, c-format msgid "Fatal parse error in palette file '%s': Missing magic header." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Syntax der Farbverlaufsdatei »%" "s«: »magic«-Kopfzeile fehlt." -#: app/core/gimppalette.c:395 app/core/gimppalette.c:420 -#: app/core/gimppalette.c:450 app/core/gimppalette.c:536 +#: ../app/core/gimppalette.c:395 ../app/core/gimppalette.c:420 +#: ../app/core/gimppalette.c:450 ../app/core/gimppalette.c:536 #, c-format msgid "Fatal parse error in palette file '%s': Read error in line %d." msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Syntax der Farbpalettendatei »%" "s«: Lesefehler in Zeile %d." -#: app/core/gimppalette.c:410 +#: ../app/core/gimppalette.c:410 #, c-format msgid "Invalid UTF-8 string in palette file '%s'" msgstr "Ungültige UTF-8-Zeichenkette in Palettendatei »%s«" -#: app/core/gimppalette.c:438 +#: ../app/core/gimppalette.c:438 #, c-format msgid "" "Reading palette file '%s': Invalid number of columns in line %d. Using " @@ -5509,36 +5535,36 @@ "Benutze Standardwert." #. maybe we should just abort? -#: app/core/gimppalette.c:484 +#: ../app/core/gimppalette.c:484 #, c-format msgid "Reading palette file '%s': Missing RED component in line %d." msgstr "Palette »%s« wird gelesen: Keine Rot-Komponente in Zeile %d." -#: app/core/gimppalette.c:492 +#: ../app/core/gimppalette.c:492 #, c-format msgid "Reading palette '%s': Missing GREEN component in line %d." msgstr "Palette »%s« wird gelesen: Keine Grün-Komponente in Zeile %d." -#: app/core/gimppalette.c:500 +#: ../app/core/gimppalette.c:500 #, c-format msgid "Reading palette file '%s': Missing BLUE component in line %d." msgstr "Palette »%s« wird gelesen: Keine Blau-Komponente in Zeile %d." -#: app/core/gimppalette.c:510 +#: ../app/core/gimppalette.c:510 #, c-format msgid "Reading palette file '%s': RGB value out of range in line %d." msgstr "" "Palette »%s« wird gelesen: RGB-Wert in Zeile %d außerhalb des Wertebereiches." -#: app/core/gimppattern.c:337 app/core/gimppattern.c:384 -#: app/core/gimppattern.c:415 +#: ../app/core/gimppattern.c:337 ../app/core/gimppattern.c:384 +#: ../app/core/gimppattern.c:415 #, c-format msgid "Fatal parse error in pattern file '%s': Could not read %d bytes: %s" msgstr "" "Schwerwiegender Fehler beim Verarbeiten der Syntax der Musterdatei '%s': " "Konnte %d Bytes nicht lesen: %s" -#: app/core/gimppattern.c:357 +#: ../app/core/gimppattern.c:357 #, c-format msgid "" "Fatal parse error in pattern file '%s': Unknown pattern format version %d." @@ -5546,7 +5572,7 @@ "Schwerwiegender Fehler beim Verarbeiten der Syntax der Musterdatei '%s': " "Unbekannte Musterdatei version %d." -#: app/core/gimppattern.c:367 +#: ../app/core/gimppattern.c:367 #, c-format msgid "" "Fatal parse error in pattern file '%s: Unsupported pattern depth %d.\n" @@ -5556,138 +5582,138 @@ "Nicht unterstütze Mustertiefe %d.\n" "GIMP-Muster müssen in GRAUSTUFE oder RGB vorliegen." -#: app/core/gimppattern.c:393 +#: ../app/core/gimppattern.c:393 #, c-format msgid "Invalid UTF-8 string in pattern file '%s'." msgstr "Ungültiger UTF-8 Text in Musterdatei '%s'." -#: app/core/gimppdbprogress.c:260 app/widgets/gimppdbdialog.c:320 +#: ../app/core/gimppdbprogress.c:260 ../app/widgets/gimppdbdialog.c:320 #, c-format msgid "Unable to run %s callback. The corresponding plug-in may have crashed." msgstr "" "%s Rückfrage konnte nicht ausgeführt werden. Möglicherweise ist das " "ensprechende Plugin abgestürzt." -#: app/core/gimpprogress.c:107 app/core/gimpprogress.c:154 +#: ../app/core/gimpprogress.c:107 ../app/core/gimpprogress.c:154 msgid "Please wait..." msgstr "Bitte warten..." -#: app/core/gimpselection.c:183 app/tools/gimpeditselectiontool.c:258 +#: ../app/core/gimpselection.c:183 ../app/tools/gimpeditselectiontool.c:258 msgid "Move Selection" msgstr "Auswahl verschieben" -#: app/core/gimpselection.c:202 +#: ../app/core/gimpselection.c:202 msgid "Sharpen Selection" msgstr "Auswahl schärfen" -#: app/core/gimpselection.c:203 +#: ../app/core/gimpselection.c:203 msgid "Select None" msgstr "Nichts auswählen" -#: app/core/gimpselection.c:204 +#: ../app/core/gimpselection.c:204 msgid "Select All" msgstr "Alles auswählen" -#: app/core/gimpselection.c:205 +#: ../app/core/gimpselection.c:205 msgid "Invert Selection" msgstr "Auswahl invertieren" -#: app/core/gimpselection.c:307 +#: ../app/core/gimpselection.c:307 msgid "No selection to stroke." msgstr "Keine Auswahl zum Nachziehen." -#: app/core/gimpselection.c:815 +#: ../app/core/gimpselection.c:815 msgid "Cannot float selection because the selected region is empty." msgstr "" "Die Auswahl konnte nicht schwebend gemacht werden, da der ausgewählte " "Bereich leer ist." -#: app/core/gimpselection.c:822 +#: ../app/core/gimpselection.c:822 msgid "Float Selection" msgstr "Auswahl anheben" -#: app/core/gimpselection.c:839 +#: ../app/core/gimpselection.c:839 msgid "Floated Layer" msgstr "Schwebende Ebene" -#: app/core/gimptemplate.c:158 +#: ../app/core/gimptemplate.c:158 msgid "The unit used for coordinate display when not in dot-for-dot mode." msgstr "" "Die Einheit des Koordinatensystems, wenn der Punkt-für-Punkt-Modus nicht " "aktiv ist." -#: app/core/gimptemplate.c:165 +#: ../app/core/gimptemplate.c:165 msgid "The horizontal image resolution." msgstr "Horizontale Auflösung des Bildes" -#: app/core/gimptemplate.c:170 +#: ../app/core/gimptemplate.c:170 msgid "The vertical image resolution." msgstr "Vertikale Auflösung des Bildes" -#: app/core/gimptemplate.c:450 app/widgets/widgets-enums.c:24 +#: ../app/core/gimptemplate.c:450 ../app/widgets/widgets-enums.c:24 msgid "Background" msgstr "Hintergrund" #. pseudo unit -#: app/core/gimpunit.c:55 +#: ../app/core/gimpunit.c:55 msgid "pixel" msgstr "Pixel" -#: app/core/gimpunit.c:55 app/tools/gimpmeasuretool.c:787 -#: app/tools/gimpmeasuretool.c:875 app/tools/gimppainttool.c:681 +#: ../app/core/gimpunit.c:55 ../app/tools/gimpmeasuretool.c:787 +#: ../app/tools/gimpmeasuretool.c:875 ../app/tools/gimppainttool.c:681 msgid "pixels" msgstr "Pixel" #. standard units -#: app/core/gimpunit.c:58 +#: ../app/core/gimpunit.c:58 msgid "inch" msgstr "Zoll" -#: app/core/gimpunit.c:58 +#: ../app/core/gimpunit.c:58 msgid "inches" msgstr "Zoll" -#: app/core/gimpunit.c:59 +#: ../app/core/gimpunit.c:59 msgid "millimeter" msgstr "Millimeter" -#: app/core/gimpunit.c:59 +#: ../app/core/gimpunit.c:59 msgid "millimeters" msgstr "Millimeter" #. professional units -#: app/core/gimpunit.c:62 +#: ../app/core/gimpunit.c:62 msgid "point" msgstr "Punkt" -#: app/core/gimpunit.c:62 +#: ../app/core/gimpunit.c:62 msgid "points" msgstr "Punkt" -#: app/core/gimpunit.c:63 +#: ../app/core/gimpunit.c:63 msgid "pica" msgstr "Pica" -#: app/core/gimpunit.c:63 +#: ../app/core/gimpunit.c:63 msgid "picas" msgstr "Pica" -#: app/core/gimpunit.c:70 +#: ../app/core/gimpunit.c:70 msgid "percent" msgstr "Prozent" -#: app/dialogs/about-dialog.c:45 +#: ../app/dialogs/about-dialog.c:45 #, c-format msgid "Version %s brought to you by" msgstr "Version %s wurde Euch gebracht von" -#: app/dialogs/about-dialog.c:51 +#: ../app/dialogs/about-dialog.c:51 msgid "Translation by" msgstr "Ãœbersetzung von" #. Translators: insert your names here, separated by newline #. we'd prefer just the names, please no email addresses. -#: app/dialogs/about-dialog.c:54 +#: ../app/dialogs/about-dialog.c:54 msgid "translator-credits" msgstr "" "Daniel Egger\n" @@ -5698,194 +5724,196 @@ "Hendrik Brandt" # CHECK -#: app/dialogs/about-dialog.c:59 +#: ../app/dialogs/about-dialog.c:59 msgid "Contributions by" msgstr "Mitwirkende" -#: app/dialogs/about-dialog.c:153 +#: ../app/dialogs/about-dialog.c:153 msgid "About The GIMP" msgstr "Info zu GIMP" -#: app/dialogs/channel-options-dialog.c:138 +#: ../app/dialogs/channel-options-dialog.c:138 msgid "Channel Name:" msgstr "Kanalname:" -#: app/dialogs/convert-dialog.c:121 +#: ../app/dialogs/convert-dialog.c:121 msgid "Indexed Color Conversion" msgstr "Indizierte Farbumwandlung" -#: app/dialogs/convert-dialog.c:124 +#: ../app/dialogs/convert-dialog.c:124 msgid "Convert Image to Indexed Colors" msgstr "Bild in indizierte Farben konvertieren" -#: app/dialogs/convert-dialog.c:165 app/dialogs/dialogs.c:171 +#: ../app/dialogs/convert-dialog.c:165 ../app/dialogs/dialogs.c:171 msgid "Colormap" msgstr "Farbtabelle" -#: app/dialogs/convert-dialog.c:179 +#: ../app/dialogs/convert-dialog.c:179 msgid "_Maximum number of colors:" msgstr "Maximale Anzahl der Farben:" -#: app/dialogs/convert-dialog.c:206 +#: ../app/dialogs/convert-dialog.c:206 msgid "_Remove unused colors from final palette" msgstr "Nicht verwendete Farben aus endgültiger Palette _entfernen" #. dithering -#: app/dialogs/convert-dialog.c:221 app/tools/gimpblendoptions.c:269 +#: ../app/dialogs/convert-dialog.c:221 ../app/tools/gimpblendoptions.c:269 msgid "Dithering" msgstr "Rasterung" -#: app/dialogs/convert-dialog.c:233 +#: ../app/dialogs/convert-dialog.c:233 msgid "Color _dithering:" msgstr "Farb_rasterung:" -#: app/dialogs/convert-dialog.c:248 +#: ../app/dialogs/convert-dialog.c:248 msgid "Enable dithering of _transparency" msgstr "Rasterung für _Transparenz aktivieren" -#: app/dialogs/convert-dialog.c:274 +#: ../app/dialogs/convert-dialog.c:274 msgid "Converting to indexed..." msgstr "Bild in indizierte Farben konvertieren..." -#: app/dialogs/convert-dialog.c:382 +#: ../app/dialogs/convert-dialog.c:384 msgid "Cannot convert to a palette with more than 256 colors." msgstr "Kann nicht in eine Palette mit mehr als 256 Farben konvertieren." -#: app/dialogs/dialogs-constructors.c:164 app/gui/gui.c:161 +#: ../app/dialogs/dialogs-constructors.c:164 ../app/gui/gui.c:161 msgid "GIMP Message" msgstr "GIMP Meldung" -#: app/dialogs/dialogs.c:127 +#: ../app/dialogs/dialogs.c:127 msgid "Devices" msgstr "Eingabegeräte" -#: app/dialogs/dialogs.c:127 +#: ../app/dialogs/dialogs.c:127 msgid "Device Status" msgstr "Gerätestatus" -#: app/dialogs/dialogs.c:131 +#: ../app/dialogs/dialogs.c:131 msgid "Errors" msgstr "Fehler" -#: app/dialogs/dialogs.c:152 +#: ../app/dialogs/dialogs.c:152 msgid "History" msgstr "Journal" -#: app/dialogs/dialogs.c:154 +#: ../app/dialogs/dialogs.c:154 msgid "Image Templates" msgstr "Bild-Vorlagen" -#: app/dialogs/dialogs.c:175 +#: ../app/dialogs/dialogs.c:175 msgid "Histogram" msgstr "Histogramm" -#: app/dialogs/dialogs.c:179 +#: ../app/dialogs/dialogs.c:179 msgid "Selection" msgstr "Auswahl" -#: app/dialogs/dialogs.c:179 +#: ../app/dialogs/dialogs.c:179 msgid "Selection Editor" msgstr "Auswahleditor" -#: app/dialogs/dialogs.c:183 +#: ../app/dialogs/dialogs.c:183 msgid "Undo History" msgstr "Journal" -#: app/dialogs/dialogs.c:189 +#: ../app/dialogs/dialogs.c:189 msgid "Navigation" msgstr "Navigation" -#: app/dialogs/dialogs.c:189 +#: ../app/dialogs/dialogs.c:189 msgid "Display Navigation" msgstr "Ansichtsnavigation" -#: app/dialogs/dialogs.c:195 +#: ../app/dialogs/dialogs.c:195 msgid "FG/BG" msgstr "VG/HG" -#: app/dialogs/dialogs.c:195 +#: ../app/dialogs/dialogs.c:195 msgid "FG/BG Color" msgstr "VG/HG Farbe" -#: app/dialogs/dialogs.c:201 +#: ../app/dialogs/dialogs.c:201 msgid "Brush Editor" msgstr "Pinseleditor" -#: app/dialogs/file-open-location-dialog.c:71 +#: ../app/dialogs/file-open-location-dialog.c:71 msgid "Open Location" msgstr "Bild von Ort öffnen" -#: app/dialogs/file-open-location-dialog.c:104 +#: ../app/dialogs/file-open-location-dialog.c:104 msgid "Enter location (URI):" msgstr "Verweis(URI) zum Bild eingeben:" -#: app/dialogs/file-save-dialog.c:184 +#: ../app/dialogs/file-save-dialog.c:185 msgid "File exists" msgstr "Datei bereits vorhanden" -#: app/dialogs/file-save-dialog.c:189 +#: ../app/dialogs/file-save-dialog.c:190 msgid "_Replace" msgstr "_Ersetzen" -#: app/dialogs/file-save-dialog.c:199 +#: ../app/dialogs/file-save-dialog.c:200 #, c-format msgid "A file named '%s' already exists." msgstr "Eine Datei mit dem Namen »%s« ist bereits vorhanden." -#: app/dialogs/file-save-dialog.c:204 +#: ../app/dialogs/file-save-dialog.c:205 msgid "Do you want to replace it with the image you are saving?" msgstr "Möchten Sie dieses durch das zu speichernden Bild ersetzen?" -#: app/dialogs/grid-dialog.c:81 +#: ../app/dialogs/grid-dialog.c:81 msgid "Configure Grid" msgstr "Gitter konfigurieren" -#: app/dialogs/grid-dialog.c:82 +#: ../app/dialogs/grid-dialog.c:82 msgid "Configure Image Grid" msgstr "Bildgitter konfigurieren" -#: app/dialogs/image-merge-layers-dialog.c:60 +#: ../app/dialogs/image-merge-layers-dialog.c:60 msgid "Merge Layers" msgstr "Ebenen vereinen" -#: app/dialogs/image-merge-layers-dialog.c:62 +#: ../app/dialogs/image-merge-layers-dialog.c:62 msgid "Layers Merge Options" msgstr "Eigenschaften Ebenen vereinen" -#: app/dialogs/image-merge-layers-dialog.c:77 +#: ../app/dialogs/image-merge-layers-dialog.c:77 msgid "Final, Merged Layer should be:" msgstr "Die fertige, vereinte Ebene soll sein:" -#: app/dialogs/image-merge-layers-dialog.c:81 +#: ../app/dialogs/image-merge-layers-dialog.c:81 msgid "Expanded as necessary" msgstr "Nach Bedarf erweitern" -#: app/dialogs/image-merge-layers-dialog.c:84 +#: ../app/dialogs/image-merge-layers-dialog.c:84 msgid "Clipped to image" msgstr "Auf Bild beschnitten" -#: app/dialogs/image-merge-layers-dialog.c:87 +#: ../app/dialogs/image-merge-layers-dialog.c:87 msgid "Clipped to bottom layer" msgstr "Auf oberste Ebene beschnitten" -#: app/dialogs/image-new-dialog.c:95 +#: ../app/dialogs/image-new-dialog.c:95 msgid "Create a New Image" msgstr "Ein neues Bild erstellen" -#: app/dialogs/image-new-dialog.c:130 app/dialogs/preferences-dialog.c:1313 +#: ../app/dialogs/image-new-dialog.c:130 +#: ../app/dialogs/preferences-dialog.c:1313 msgid "_Template:" msgstr "_Vorlagen:" -#: app/dialogs/image-new-dialog.c:265 +#: ../app/dialogs/image-new-dialog.c:265 msgid "Confirm Image Size" msgstr "Bildgröße bestätigen" -#: app/dialogs/image-new-dialog.c:282 app/dialogs/image-scale-dialog.c:193 +#: ../app/dialogs/image-new-dialog.c:282 +#: ../app/dialogs/image-scale-dialog.c:193 #, c-format msgid "You are trying to create an image with a size of %s." msgstr "Sie versuchen ein Bild der Größe %s anzulegen." -#: app/dialogs/image-new-dialog.c:289 +#: ../app/dialogs/image-new-dialog.c:289 #, c-format msgid "" "An image of the choosen size will use more memory than what is configured as " @@ -5894,11 +5922,11 @@ "Ein Bild mit der ausgwählten Größe wird mehr Speicher verwenden, als unter " "»Maximale Bildgröße« in den Einstellungen angegeben ist (derzeit %s)." -#: app/dialogs/image-scale-dialog.c:164 +#: ../app/dialogs/image-scale-dialog.c:164 msgid "Confirm Scaling" msgstr "Skalieren bestätigen" -#: app/dialogs/image-scale-dialog.c:199 +#: ../app/dialogs/image-scale-dialog.c:199 #, c-format msgid "" "Scaling the image to the choosen size will make it use more memory than what " @@ -5909,7 +5937,7 @@ "verwendet als unter »Maximale Bildgröße« in den Einstellungen angegeben ist " "(derzeit %s)." -#: app/dialogs/image-scale-dialog.c:214 +#: ../app/dialogs/image-scale-dialog.c:214 msgid "" "Scaling the image to the choosen size will shrink some layers completely " "away." @@ -5917,382 +5945,384 @@ "Wenn Sie das Bild auf die gewünschte Größe verkleinern, werden einige Ebenen " "vollständig verschwinden." -#: app/dialogs/image-scale-dialog.c:218 +#: ../app/dialogs/image-scale-dialog.c:218 msgid "Is this what you want to do?" msgstr "Sind Sie sicher, dass Sie fortfahren möchten?" #. General -#: app/dialogs/info-dialog.c:377 app/dialogs/preferences-dialog.c:1543 -#: app/dialogs/preferences-dialog.c:1697 -#: app/widgets/gimpcontrollereditor.c:197 +#: ../app/dialogs/info-dialog.c:377 ../app/dialogs/preferences-dialog.c:1543 +#: ../app/dialogs/preferences-dialog.c:1697 +#: ../app/widgets/gimpcontrollereditor.c:197 msgid "General" msgstr "Allgemein" -#: app/dialogs/info-window.c:83 +#: ../app/dialogs/info-window.c:83 msgid "Static Gray" msgstr "Festes Grau" -#: app/dialogs/info-window.c:84 app/dialogs/info-window.c:610 +#: ../app/dialogs/info-window.c:84 ../app/dialogs/info-window.c:610 msgid "Grayscale" msgstr "Graustufen" -#: app/dialogs/info-window.c:85 +#: ../app/dialogs/info-window.c:85 msgid "Static Color" msgstr "Feste Farben" -#: app/dialogs/info-window.c:86 +#: ../app/dialogs/info-window.c:86 msgid "Pseudo Color" msgstr "Pseudofarben" -#: app/dialogs/info-window.c:87 +#: ../app/dialogs/info-window.c:87 msgid "True Color" msgstr "Echtfarben" -#: app/dialogs/info-window.c:88 +#: ../app/dialogs/info-window.c:88 msgid "Direct Color" msgstr "Direktfarben" -#: app/dialogs/info-window.c:131 +#: ../app/dialogs/info-window.c:131 msgid "Cursor" msgstr "Zeiger" -#: app/dialogs/info-window.c:141 app/dialogs/preferences-dialog.c:1932 -#: app/widgets/gimpgrideditor.c:267 app/widgets/gimpgrideditor.c:299 +#: ../app/dialogs/info-window.c:141 ../app/dialogs/preferences-dialog.c:1932 +#: ../app/widgets/gimpgrideditor.c:267 ../app/widgets/gimpgrideditor.c:299 msgid "Pixels" msgstr "Pixel" -#: app/dialogs/info-window.c:151 app/dialogs/info-window.c:157 -#: app/dialogs/info-window.c:173 app/dialogs/info-window.c:179 -#: app/dialogs/info-window.c:425 app/dialogs/info-window.c:426 -#: app/dialogs/info-window.c:427 app/dialogs/info-window.c:428 -#: app/widgets/gimpcolorframe.c:338 +#: ../app/dialogs/info-window.c:151 ../app/dialogs/info-window.c:157 +#: ../app/dialogs/info-window.c:173 ../app/dialogs/info-window.c:179 +#: ../app/dialogs/info-window.c:425 ../app/dialogs/info-window.c:426 +#: ../app/dialogs/info-window.c:427 ../app/dialogs/info-window.c:428 +#: ../app/widgets/gimpcolorframe.c:338 msgid "n/a" msgstr "n.v." -#: app/dialogs/info-window.c:154 app/dialogs/info-window.c:176 +#: ../app/dialogs/info-window.c:154 ../app/dialogs/info-window.c:176 msgid "X" msgstr "X" -#: app/dialogs/info-window.c:160 app/dialogs/info-window.c:182 +#: ../app/dialogs/info-window.c:160 ../app/dialogs/info-window.c:182 msgid "Y" msgstr "Y" -#: app/dialogs/info-window.c:163 app/pdb/internal_procs.c:212 +#: ../app/dialogs/info-window.c:163 ../app/pdb/internal_procs.c:212 msgid "Units" msgstr "Einheiten" -#: app/dialogs/info-window.c:228 +#: ../app/dialogs/info-window.c:228 msgid "Comment" msgstr "Kommentar" -#: app/dialogs/info-window.c:248 app/dialogs/info-window.c:634 -#: app/display/gimpdisplayshell-title.c:337 -#: app/display/gimpdisplayshell-title.c:349 app/widgets/gimpactiongroup.c:806 +#: ../app/dialogs/info-window.c:248 ../app/dialogs/info-window.c:634 +#: ../app/display/gimpdisplayshell-title.c:337 +#: ../app/display/gimpdisplayshell-title.c:349 +#: ../app/widgets/gimpactiongroup.c:806 msgid "(none)" msgstr "(Kein)" -#: app/dialogs/info-window.c:275 +#: ../app/dialogs/info-window.c:275 msgid "Info Window" msgstr "Info-Fenster" -#: app/dialogs/info-window.c:277 +#: ../app/dialogs/info-window.c:277 msgid "Image Information" msgstr "Bildinformationen" #. add the information fields -#: app/dialogs/info-window.c:294 +#: ../app/dialogs/info-window.c:294 msgid "Pixel dimensions:" msgstr "Größe in Pixel:" -#: app/dialogs/info-window.c:296 +#: ../app/dialogs/info-window.c:296 msgid "Print size:" msgstr "Größe beim Drucken:" -#: app/dialogs/info-window.c:298 +#: ../app/dialogs/info-window.c:298 msgid "Resolution:" msgstr "Auflösung:" -#: app/dialogs/info-window.c:300 +#: ../app/dialogs/info-window.c:300 msgid "Scale ratio:" msgstr "Skalierungsfaktor:" -#: app/dialogs/info-window.c:302 +#: ../app/dialogs/info-window.c:302 msgid "Number of layers:" msgstr "Anzahl der Ebenen:" -#: app/dialogs/info-window.c:304 +#: ../app/dialogs/info-window.c:304 msgid "Size in memory:" msgstr "Größe im Speicher:" -#: app/dialogs/info-window.c:306 +#: ../app/dialogs/info-window.c:306 msgid "Display type:" msgstr "Anzeigeart:" -#: app/dialogs/info-window.c:308 +#: ../app/dialogs/info-window.c:308 msgid "Visual class:" msgstr "Visuelle Klasse:" -#: app/dialogs/info-window.c:310 +#: ../app/dialogs/info-window.c:310 msgid "Visual depth:" msgstr "Visuelle Tiefe:" -#: app/dialogs/info-window.c:575 +#: ../app/dialogs/info-window.c:575 #, c-format msgid "pixels/%s" msgstr "Pixel/%s" -#: app/dialogs/info-window.c:577 +#: ../app/dialogs/info-window.c:577 #, c-format msgid "%g x %g %s" msgstr "%g x %g %s" -#: app/dialogs/info-window.c:580 app/dialogs/preferences-dialog.c:1954 +#: ../app/dialogs/info-window.c:580 ../app/dialogs/preferences-dialog.c:1954 msgid "dpi" msgstr "DPI" -#: app/dialogs/info-window.c:607 +#: ../app/dialogs/info-window.c:607 msgid "RGB Color" msgstr "RGB Farbe" -#: app/dialogs/info-window.c:614 +#: ../app/dialogs/info-window.c:614 msgid "Indexed Color" msgstr "Indizierte Farben" -#: app/dialogs/info-window.c:614 +#: ../app/dialogs/info-window.c:614 msgid "colors" msgstr "Farben" -#: app/dialogs/layer-add-mask-dialog.c:64 +#: ../app/dialogs/layer-add-mask-dialog.c:64 msgid "Add a Mask to the Layer" msgstr "Eine Maske zur Ebene hinzufügen" -#: app/dialogs/layer-add-mask-dialog.c:86 +#: ../app/dialogs/layer-add-mask-dialog.c:86 msgid "Initialize Layer Mask to:" msgstr "Initialisierung Ebenenmaske nach:" -#: app/dialogs/layer-add-mask-dialog.c:96 +#: ../app/dialogs/layer-add-mask-dialog.c:96 msgid "In_vert Mask" msgstr "Maske in_vertieren" -#: app/dialogs/layer-options-dialog.c:116 +#: ../app/dialogs/layer-options-dialog.c:116 msgid "Layer _Name:" msgstr "Ebenen_name:" #. The size labels -#: app/dialogs/layer-options-dialog.c:127 app/tools/gimpcroptool.c:1046 -#: app/tools/gimpselectionoptions.c:529 +#: ../app/dialogs/layer-options-dialog.c:127 ../app/tools/gimpcroptool.c:1046 +#: ../app/tools/gimpselectionoptions.c:529 msgid "Width:" msgstr "Breite:" -#: app/dialogs/layer-options-dialog.c:133 app/tools/gimpcroptool.c:1050 -#: app/tools/gimpscaletool.c:166 app/tools/gimpselectionoptions.c:537 +#: ../app/dialogs/layer-options-dialog.c:133 ../app/tools/gimpcroptool.c:1050 +#: ../app/tools/gimpscaletool.c:166 ../app/tools/gimpselectionoptions.c:537 msgid "Height:" msgstr "Höhe:" -#: app/dialogs/layer-options-dialog.c:190 +#: ../app/dialogs/layer-options-dialog.c:190 msgid "Layer Fill Type" msgstr "Ebenenfüllart" -#: app/dialogs/layer-options-dialog.c:205 +#: ../app/dialogs/layer-options-dialog.c:205 msgid "Set Name from _Text" msgstr "Name aus _Text setzen" -#: app/dialogs/module-dialog.c:122 +#: ../app/dialogs/module-dialog.c:122 msgid "Module Manager" msgstr "Module verwalten" -#: app/dialogs/module-dialog.c:124 +#: ../app/dialogs/module-dialog.c:124 msgid "Manage Loadable Modules" msgstr "Ladbare Module verwalten" -#: app/dialogs/module-dialog.c:168 +#: ../app/dialogs/module-dialog.c:168 msgid "Autoload" msgstr "Autom. laden" -#: app/dialogs/module-dialog.c:175 +#: ../app/dialogs/module-dialog.c:175 msgid "Module path" msgstr "Modulpfad" -#: app/dialogs/module-dialog.c:418 +#: ../app/dialogs/module-dialog.c:418 msgid "" msgstr "" -#: app/dialogs/module-dialog.c:430 app/dialogs/module-dialog.c:439 +#: ../app/dialogs/module-dialog.c:430 ../app/dialogs/module-dialog.c:439 msgid "On disk" msgstr "Auf Festplatte" -#: app/dialogs/module-dialog.c:430 +#: ../app/dialogs/module-dialog.c:430 msgid "Only in memory" msgstr "Nur im Speicher" -#: app/dialogs/module-dialog.c:439 +#: ../app/dialogs/module-dialog.c:439 msgid "No longer available" msgstr "Nicht mehr verfügbar" -#: app/dialogs/module-dialog.c:475 +#: ../app/dialogs/module-dialog.c:475 msgid "Load" msgstr "Öffnen" -#: app/dialogs/module-dialog.c:477 +#: ../app/dialogs/module-dialog.c:477 msgid "Query" msgstr "Erkunden" -#: app/dialogs/module-dialog.c:484 +#: ../app/dialogs/module-dialog.c:484 msgid "Unload" msgstr "Entladen" -#: app/dialogs/module-dialog.c:499 +#: ../app/dialogs/module-dialog.c:499 msgid "Purpose:" msgstr "Zweck:" -#: app/dialogs/module-dialog.c:500 +#: ../app/dialogs/module-dialog.c:500 msgid "Author:" msgstr "Autor:" -#: app/dialogs/module-dialog.c:501 +#: ../app/dialogs/module-dialog.c:501 msgid "Version:" msgstr "Version:" -#: app/dialogs/module-dialog.c:502 +#: ../app/dialogs/module-dialog.c:502 msgid "Copyright:" msgstr "Copyright:" -#: app/dialogs/module-dialog.c:503 +#: ../app/dialogs/module-dialog.c:503 msgid "Date:" msgstr "Datum:" -#: app/dialogs/module-dialog.c:504 +#: ../app/dialogs/module-dialog.c:504 msgid "Location:" msgstr "Ort:" -#: app/dialogs/module-dialog.c:505 app/widgets/gimpcontrollereditor.c:242 +#: ../app/dialogs/module-dialog.c:505 +#: ../app/widgets/gimpcontrollereditor.c:242 msgid "State:" msgstr "Status:" -#: app/dialogs/module-dialog.c:506 +#: ../app/dialogs/module-dialog.c:506 msgid "Last Error:" msgstr "Letzter Fehler:" -#: app/dialogs/module-dialog.c:507 +#: ../app/dialogs/module-dialog.c:507 msgid "Available Types:" msgstr "Verfügbare Typen:" -#: app/dialogs/offset-dialog.c:98 +#: ../app/dialogs/offset-dialog.c:98 msgid "Offset Layer" msgstr "Ebene verschieben" -#: app/dialogs/offset-dialog.c:100 +#: ../app/dialogs/offset-dialog.c:100 msgid "Offset Layer Mask" msgstr "Ebenenmaske verschieben" -#: app/dialogs/offset-dialog.c:102 +#: ../app/dialogs/offset-dialog.c:102 msgid "Offset Channel" msgstr "Kanal verschieben" #. The offset frame -#: app/dialogs/offset-dialog.c:108 app/dialogs/offset-dialog.c:136 -#: app/dialogs/resize-dialog.c:185 app/widgets/gimpgrideditor.c:274 +#: ../app/dialogs/offset-dialog.c:108 ../app/dialogs/offset-dialog.c:136 +#: ../app/dialogs/resize-dialog.c:185 ../app/widgets/gimpgrideditor.c:274 msgid "Offset" msgstr "Versatz" -#: app/dialogs/offset-dialog.c:168 app/dialogs/resize-dialog.c:214 +#: ../app/dialogs/offset-dialog.c:168 ../app/dialogs/resize-dialog.c:214 msgid "_X:" msgstr "_X:" -#: app/dialogs/offset-dialog.c:170 app/dialogs/resize-dialog.c:215 +#: ../app/dialogs/offset-dialog.c:170 ../app/dialogs/resize-dialog.c:215 msgid "_Y:" msgstr "_Y:" -#: app/dialogs/offset-dialog.c:197 +#: ../app/dialogs/offset-dialog.c:197 msgid "Offset by x/_2, y/2" msgstr "Versatz um (x/_2),(y/2)" #. The edge behaviour frame -#: app/dialogs/offset-dialog.c:206 +#: ../app/dialogs/offset-dialog.c:206 msgid "Edge Behaviour" msgstr "Kantenverhalten" -#: app/dialogs/offset-dialog.c:210 +#: ../app/dialogs/offset-dialog.c:210 msgid "_Wrap around" msgstr "_Falten" -#: app/dialogs/offset-dialog.c:213 +#: ../app/dialogs/offset-dialog.c:213 msgid "Fill with _background color" msgstr "Mit _Hintergrundfarbe auffüllen" -#: app/dialogs/offset-dialog.c:216 +#: ../app/dialogs/offset-dialog.c:216 msgid "Make _transparent" msgstr "_Transparent machen" -#: app/dialogs/palette-import-dialog.c:171 +#: ../app/dialogs/palette-import-dialog.c:171 msgid "Import Palette" msgstr "Farbpalette importieren" -#: app/dialogs/palette-import-dialog.c:173 +#: ../app/dialogs/palette-import-dialog.c:173 msgid "Import a New Palette" msgstr "Eine Farbpalette importieren" -#: app/dialogs/palette-import-dialog.c:179 +#: ../app/dialogs/palette-import-dialog.c:179 msgid "_Import" msgstr "_Importieren" #. The "Source" frame -#: app/dialogs/palette-import-dialog.c:208 +#: ../app/dialogs/palette-import-dialog.c:208 msgid "Select Source" msgstr "Quelle auswählen" -#: app/dialogs/palette-import-dialog.c:231 +#: ../app/dialogs/palette-import-dialog.c:231 msgid "I_mage" msgstr "_Bild" -#: app/dialogs/palette-import-dialog.c:246 +#: ../app/dialogs/palette-import-dialog.c:246 msgid "Palette _file" msgstr "_Farbpalette" -#: app/dialogs/palette-import-dialog.c:273 +#: ../app/dialogs/palette-import-dialog.c:273 msgid "Select palette file" msgstr "Wählen Sie die Palettenordner" #. The "Import" frame -#: app/dialogs/palette-import-dialog.c:304 +#: ../app/dialogs/palette-import-dialog.c:304 msgid "Import Options" msgstr "Importeinstellungen" -#: app/dialogs/palette-import-dialog.c:317 +#: ../app/dialogs/palette-import-dialog.c:317 msgid "New import" msgstr "Neu importiert" -#: app/dialogs/palette-import-dialog.c:319 +#: ../app/dialogs/palette-import-dialog.c:319 msgid "Palette _Name:" msgstr "Paletten_name:" -#: app/dialogs/palette-import-dialog.c:325 +#: ../app/dialogs/palette-import-dialog.c:325 msgid "N_umber of colors:" msgstr "_Anzahl der Farben:" -#: app/dialogs/palette-import-dialog.c:338 +#: ../app/dialogs/palette-import-dialog.c:338 msgid "C_olumns:" msgstr "_Spalten:" -#: app/dialogs/palette-import-dialog.c:350 +#: ../app/dialogs/palette-import-dialog.c:350 msgid "I_nterval:" msgstr "I_ntervall:" #. The "Preview" frame -#: app/dialogs/palette-import-dialog.c:362 +#: ../app/dialogs/palette-import-dialog.c:362 msgid "Preview" msgstr "Vorschau" -#: app/dialogs/preferences-dialog.c:294 +#: ../app/dialogs/preferences-dialog.c:294 msgid "You will have to restart GIMP for the following changes to take effect:" msgstr "" "Sie müssen GIMP neu starten, damit die folgenden Änderungen aktiv werden:" -#: app/dialogs/preferences-dialog.c:501 +#: ../app/dialogs/preferences-dialog.c:501 msgid "Configure Keyboard Shortcuts" msgstr "Tastenkürzel konfigurieren" -#: app/dialogs/preferences-dialog.c:551 +#: ../app/dialogs/preferences-dialog.c:551 msgid "" "To edit a shortcut key, click on the corresponding row and type a new " "accelerator, or press backspace to clear." @@ -6301,7 +6331,7 @@ "Zeile und geben Sie dann ein neues Tastenkürzel ein oder drücken Sie die " "Rücktaste, um es zu löschen." -#: app/dialogs/preferences-dialog.c:595 +#: ../app/dialogs/preferences-dialog.c:595 msgid "" "Your keyboard shortcuts will be reset to default values the next time you " "start GIMP." @@ -6309,7 +6339,7 @@ "Die Tastenkürzel werden beim nächsten Start von GIMP auf Vorgabewerte " "zurückgesetzt." -#: app/dialogs/preferences-dialog.c:629 +#: ../app/dialogs/preferences-dialog.c:629 msgid "" "Your window setup will be reset to default values the next time you start " "GIMP." @@ -6317,7 +6347,7 @@ "Die Fenstereinstellungen werden beim nächsten Start von GIMP auf " "Vorgabewerte zurückgesetzt." -#: app/dialogs/preferences-dialog.c:663 +#: ../app/dialogs/preferences-dialog.c:663 msgid "" "Your input device settings will be reset to default values the next time you " "start GIMP." @@ -6325,689 +6355,700 @@ "Die Einstellungen für Eingabegeräte werden beim nächsten Start von GIMP auf " "Vorgabewerte zurückgesetzt." -#: app/dialogs/preferences-dialog.c:1082 +#: ../app/dialogs/preferences-dialog.c:1082 msgid "Show _menubar" msgstr "_Menüleiste anzeigen" -#: app/dialogs/preferences-dialog.c:1085 +#: ../app/dialogs/preferences-dialog.c:1085 msgid "Show _rulers" msgstr "_Lineale anzeigen" -#: app/dialogs/preferences-dialog.c:1088 +#: ../app/dialogs/preferences-dialog.c:1088 msgid "Show scroll_bars" msgstr "Roll_balken anzeigen" -#: app/dialogs/preferences-dialog.c:1091 +#: ../app/dialogs/preferences-dialog.c:1091 msgid "Show s_tatusbar" msgstr "S_tatusleiste anzeigen" -#: app/dialogs/preferences-dialog.c:1099 +#: ../app/dialogs/preferences-dialog.c:1099 msgid "Show s_election" msgstr "Auswahl anzeigen" -#: app/dialogs/preferences-dialog.c:1102 +#: ../app/dialogs/preferences-dialog.c:1102 msgid "Show _layer boundary" msgstr "_Ebenenrahmen anzeigen" -#: app/dialogs/preferences-dialog.c:1105 +#: ../app/dialogs/preferences-dialog.c:1105 msgid "Show _guides" msgstr "_Hilfslinien anzeigen" -#: app/dialogs/preferences-dialog.c:1108 +#: ../app/dialogs/preferences-dialog.c:1108 msgid "Show gri_d" msgstr "_Gitter anzeigen" -#: app/dialogs/preferences-dialog.c:1114 +#: ../app/dialogs/preferences-dialog.c:1114 msgid "Canvas _padding mode:" msgstr "Modus des Leinwand_rahmens:" -#: app/dialogs/preferences-dialog.c:1119 +#: ../app/dialogs/preferences-dialog.c:1119 msgid "Custom p_adding color:" msgstr "Benutzerdefinierte _Rahmenfarbe:" -#: app/dialogs/preferences-dialog.c:1120 +#: ../app/dialogs/preferences-dialog.c:1120 msgid "Select custom canvas padding color" msgstr "Benutzerdefinierte Farbe für Leinwandrahmen festlegen" -#: app/dialogs/preferences-dialog.c:1191 +#: ../app/dialogs/preferences-dialog.c:1191 msgid "Preferences" msgstr "Einstellungen" -#: app/dialogs/preferences-dialog.c:1294 app/dialogs/preferences-dialog.c:1297 +#: ../app/dialogs/preferences-dialog.c:1294 +#: ../app/dialogs/preferences-dialog.c:1297 msgid "New Image" msgstr "Neues Bild" -#: app/dialogs/preferences-dialog.c:1335 +#: ../app/dialogs/preferences-dialog.c:1335 msgid "Default Image Grid" msgstr "Vorgabe-Bildgitter" -#: app/dialogs/preferences-dialog.c:1338 +#: ../app/dialogs/preferences-dialog.c:1338 msgid "Default Grid" msgstr "Vorgabe-Gitter" -#: app/dialogs/preferences-dialog.c:1358 +#: ../app/dialogs/preferences-dialog.c:1358 msgid "User Interface" msgstr "Benutzeroberfläche" -#: app/dialogs/preferences-dialog.c:1361 +#: ../app/dialogs/preferences-dialog.c:1361 msgid "Interface" msgstr "Oberfläche" #. Previews -#: app/dialogs/preferences-dialog.c:1368 +#: ../app/dialogs/preferences-dialog.c:1368 msgid "Previews" msgstr "Vorschaubilder" -#: app/dialogs/preferences-dialog.c:1371 +#: ../app/dialogs/preferences-dialog.c:1371 msgid "_Enable layer & channel previews" msgstr "_Vorschau von Ebenen und Kanälen aktivieren" -#: app/dialogs/preferences-dialog.c:1377 +#: ../app/dialogs/preferences-dialog.c:1377 msgid "Default _layer & channel preview size:" msgstr "Voreingestellte _Größe der Vorschau von Ebenen und Kanälen:" -#: app/dialogs/preferences-dialog.c:1380 +#: ../app/dialogs/preferences-dialog.c:1380 msgid "Na_vigation preview size:" msgstr "Größe der _Navigationsvorschau:" #. Keyboard Shortcuts -#: app/dialogs/preferences-dialog.c:1384 +#: ../app/dialogs/preferences-dialog.c:1384 msgid "Keyboard Shortcuts" msgstr "Tastenkürzel" -#: app/dialogs/preferences-dialog.c:1388 +#: ../app/dialogs/preferences-dialog.c:1388 msgid "Show menu _mnemonics (access keys)" msgstr "Menü _Mnemonics anzeigen" -#: app/dialogs/preferences-dialog.c:1391 +#: ../app/dialogs/preferences-dialog.c:1391 msgid "Use _dynamic keyboard shortcuts" msgstr "Dynamische _Tastenkürzel benutzen" -#: app/dialogs/preferences-dialog.c:1395 +#: ../app/dialogs/preferences-dialog.c:1395 msgid "Configure _Keyboard Shortcuts..." msgstr "Tastenkürzel _konfigurieren" -#: app/dialogs/preferences-dialog.c:1402 +#: ../app/dialogs/preferences-dialog.c:1402 msgid "_Save keyboard shortcuts on exit" msgstr "Tastenkürzel beim Beenden _speichern" -#: app/dialogs/preferences-dialog.c:1406 +#: ../app/dialogs/preferences-dialog.c:1406 msgid "Save Keyboard Shortcuts _Now" msgstr "Tastenkürzel _jetzt speichern" -#: app/dialogs/preferences-dialog.c:1413 +#: ../app/dialogs/preferences-dialog.c:1413 msgid "_Reset Saved Keyboard Shortcuts to Default Values" msgstr "Tastenkürzel auf Vorgabewerte _zurücksetzen" -#: app/dialogs/preferences-dialog.c:1428 app/dialogs/preferences-dialog.c:1431 -#: app/dialogs/preferences-dialog.c:1467 +#: ../app/dialogs/preferences-dialog.c:1428 +#: ../app/dialogs/preferences-dialog.c:1431 +#: ../app/dialogs/preferences-dialog.c:1467 msgid "Theme" msgstr "Thema" -#: app/dialogs/preferences-dialog.c:1437 +#: ../app/dialogs/preferences-dialog.c:1437 msgid "Select Theme" msgstr "Wählen Sie ein Thema" -#: app/dialogs/preferences-dialog.c:1519 +#: ../app/dialogs/preferences-dialog.c:1519 msgid "Reload C_urrent Theme" msgstr "_Momentan verwendetes Thema neu laden" -#: app/dialogs/preferences-dialog.c:1531 app/dialogs/preferences-dialog.c:1534 +#: ../app/dialogs/preferences-dialog.c:1531 +#: ../app/dialogs/preferences-dialog.c:1534 msgid "Help System" msgstr "Hilfesystem" -#: app/dialogs/preferences-dialog.c:1546 +#: ../app/dialogs/preferences-dialog.c:1546 msgid "Show tool _tips" msgstr "_Minihilfen anzeigen" -#: app/dialogs/preferences-dialog.c:1549 +#: ../app/dialogs/preferences-dialog.c:1549 msgid "Show help _buttons" msgstr "Hilfe_knopf anzeigen" -#: app/dialogs/preferences-dialog.c:1552 +#: ../app/dialogs/preferences-dialog.c:1552 msgid "Show tips on _startup" msgstr "Tipps beim _Start anzeigen" #. Help Browser -#: app/dialogs/preferences-dialog.c:1556 +#: ../app/dialogs/preferences-dialog.c:1556 msgid "Help Browser" msgstr "Hilfe-Browser" -#: app/dialogs/preferences-dialog.c:1560 +#: ../app/dialogs/preferences-dialog.c:1560 msgid "H_elp browser to use:" msgstr "Zu verwendender Hilfe-_Browser:" -#: app/dialogs/preferences-dialog.c:1565 +#: ../app/dialogs/preferences-dialog.c:1565 msgid "Web Browser" msgstr "Internet-Browser" -#: app/dialogs/preferences-dialog.c:1569 +#: ../app/dialogs/preferences-dialog.c:1569 msgid "Select web browser" msgstr "Internet-Browser wählen" -#: app/dialogs/preferences-dialog.c:1572 +#: ../app/dialogs/preferences-dialog.c:1572 msgid "_Web browser to use:" msgstr "Zu verwendender _Internet-Browser:" #. Snapping Distance -#: app/dialogs/preferences-dialog.c:1597 +#: ../app/dialogs/preferences-dialog.c:1597 msgid "Guide and Grid Snapping" msgstr "Magnetische Hilfslinien und Gitter" -#: app/dialogs/preferences-dialog.c:1602 +#: ../app/dialogs/preferences-dialog.c:1602 msgid "_Snap distance:" msgstr "_Reichweite des Magneten:" #. Contiguous Regions -#: app/dialogs/preferences-dialog.c:1606 +#: ../app/dialogs/preferences-dialog.c:1606 msgid "Finding Contiguous Regions" msgstr "Zusammenhängende Bereiche finden" -#: app/dialogs/preferences-dialog.c:1611 +#: ../app/dialogs/preferences-dialog.c:1611 msgid "Default _threshold:" msgstr "Voreingstellter _Schwellwert:" #. Scaling -#: app/dialogs/preferences-dialog.c:1615 +#: ../app/dialogs/preferences-dialog.c:1615 msgid "Scaling" msgstr "Skalierung" -#: app/dialogs/preferences-dialog.c:1619 +#: ../app/dialogs/preferences-dialog.c:1619 msgid "Default _interpolation:" msgstr "Voreingestellte _Interpolationsart:" #. Global Brush, Pattern, ... -#: app/dialogs/preferences-dialog.c:1623 +#: ../app/dialogs/preferences-dialog.c:1623 msgid "Paint Options Shared Between Tools" msgstr "Maleinstellungen werden von Werkzeuge gemeinsam benutzt." -#: app/dialogs/preferences-dialog.c:1636 +#: ../app/dialogs/preferences-dialog.c:1636 msgid "Move Tool" msgstr "Verschiebewerkzeug" -#: app/dialogs/preferences-dialog.c:1640 +#: ../app/dialogs/preferences-dialog.c:1640 msgid "Change current layer or path" msgstr "Aktive Ebene oder aktiven Pfad wechseln" -#: app/dialogs/preferences-dialog.c:1653 app/dialogs/preferences-dialog.c:1656 +#: ../app/dialogs/preferences-dialog.c:1653 +#: ../app/dialogs/preferences-dialog.c:1656 msgid "Toolbox" msgstr "Werkzeugfenster" #. Appearance -#: app/dialogs/preferences-dialog.c:1663 app/dialogs/preferences-dialog.c:1760 -#: app/widgets/gimpgrideditor.c:206 +#: ../app/dialogs/preferences-dialog.c:1663 +#: ../app/dialogs/preferences-dialog.c:1760 +#: ../app/widgets/gimpgrideditor.c:206 msgid "Appearance" msgstr "Erscheinungsbild" -#: app/dialogs/preferences-dialog.c:1667 +#: ../app/dialogs/preferences-dialog.c:1667 msgid "Show _foreground & background color" msgstr "Vordergrund & Hintergrundfarbe _anzeigen" -#: app/dialogs/preferences-dialog.c:1671 +#: ../app/dialogs/preferences-dialog.c:1671 msgid "Show active _brush, pattern & gradient" msgstr "ausgewählten _Pinsel, Muster und Farbverlauf anzeigen" -#: app/dialogs/preferences-dialog.c:1675 +#: ../app/dialogs/preferences-dialog.c:1675 msgid "Show active _image" msgstr "Aktuelles Bild anzeigen" -#: app/dialogs/preferences-dialog.c:1685 app/dialogs/preferences-dialog.c:1688 +#: ../app/dialogs/preferences-dialog.c:1685 +#: ../app/dialogs/preferences-dialog.c:1688 msgid "Image Windows" msgstr "Bildfenster" -#: app/dialogs/preferences-dialog.c:1700 +#: ../app/dialogs/preferences-dialog.c:1700 msgid "Use \"_Dot for dot\" by default" msgstr "»_Punkt für Punkt« als Vorgabe verwenden" -#: app/dialogs/preferences-dialog.c:1706 +#: ../app/dialogs/preferences-dialog.c:1706 msgid "Marching _ants speed:" msgstr "Geschwindigkeit der laufenden _Ameisen:" #. Zoom & Resize Behavior -#: app/dialogs/preferences-dialog.c:1710 +#: ../app/dialogs/preferences-dialog.c:1710 msgid "Zoom & Resize Behavior" msgstr "Verhalten bei Größenänderungen" -#: app/dialogs/preferences-dialog.c:1714 +#: ../app/dialogs/preferences-dialog.c:1714 msgid "Resize window on _zoom" msgstr "Fenstergröße beim _Vergrößern und Verkleinern anpassen" -#: app/dialogs/preferences-dialog.c:1717 +#: ../app/dialogs/preferences-dialog.c:1717 msgid "Resize window on image _size change" msgstr "Fenstergröße anpassen, wenn sich die _Bildgröße ändert" -#: app/dialogs/preferences-dialog.c:1723 +#: ../app/dialogs/preferences-dialog.c:1723 msgid "Fit to window" msgstr "Ans Fenster anpassen" -#: app/dialogs/preferences-dialog.c:1725 +#: ../app/dialogs/preferences-dialog.c:1725 msgid "Initial zoom _ratio:" msgstr "Anfänglicher _Vergrößerungsfaktor:" #. Mouse Cursors -#: app/dialogs/preferences-dialog.c:1729 +#: ../app/dialogs/preferences-dialog.c:1729 msgid "Mouse Cursors" msgstr "Mousezeiger" -#: app/dialogs/preferences-dialog.c:1733 +#: ../app/dialogs/preferences-dialog.c:1733 msgid "Show _brush outline" msgstr "Pinsel_umriss anzeigen" -#: app/dialogs/preferences-dialog.c:1736 +#: ../app/dialogs/preferences-dialog.c:1736 msgid "Show paint _tool cursor" msgstr "Zeiger des Mal_werkzeugs anzeigen" -#: app/dialogs/preferences-dialog.c:1742 +#: ../app/dialogs/preferences-dialog.c:1742 msgid "Cursor _mode:" msgstr "Zeiger_modus:" -#: app/dialogs/preferences-dialog.c:1745 +#: ../app/dialogs/preferences-dialog.c:1745 msgid "Cursor re_ndering:" msgstr "Zeiger_anzeige:" -#: app/dialogs/preferences-dialog.c:1757 +#: ../app/dialogs/preferences-dialog.c:1757 msgid "Image Window Appearance" msgstr "Erscheinungsbild der Bildfenster" -#: app/dialogs/preferences-dialog.c:1768 +#: ../app/dialogs/preferences-dialog.c:1768 msgid "Default Appearance in Normal Mode" msgstr "Voreingestelltes Erscheinungsbild im normalen Modus" -#: app/dialogs/preferences-dialog.c:1773 +#: ../app/dialogs/preferences-dialog.c:1773 msgid "Default Appearance in Fullscreen Mode" msgstr "Voreingestelltes Erscheinungsbild im Vollbildmodus" -#: app/dialogs/preferences-dialog.c:1782 +#: ../app/dialogs/preferences-dialog.c:1782 msgid "Image Title & Statusbar Format" msgstr "Format des Bildtitels und der Statusleiste" -#: app/dialogs/preferences-dialog.c:1785 +#: ../app/dialogs/preferences-dialog.c:1785 msgid "Title & Status" msgstr "Titel und Status" -#: app/dialogs/preferences-dialog.c:1805 +#: ../app/dialogs/preferences-dialog.c:1805 msgid "Standard" msgstr "Standard" -#: app/dialogs/preferences-dialog.c:1806 +#: ../app/dialogs/preferences-dialog.c:1806 msgid "Show zoom percentage" msgstr "Bildgröße in Prozent anzeigen" -#: app/dialogs/preferences-dialog.c:1807 +#: ../app/dialogs/preferences-dialog.c:1807 msgid "Show zoom ratio" msgstr "Maßstab als Verhältnis anzeigen" -#: app/dialogs/preferences-dialog.c:1808 +#: ../app/dialogs/preferences-dialog.c:1808 msgid "Show image size" msgstr "Bildgröße anzeigen" -#: app/dialogs/preferences-dialog.c:1809 +#: ../app/dialogs/preferences-dialog.c:1809 msgid "Show memory usage" msgstr "Speicherverbrauch anzeigen" -#: app/dialogs/preferences-dialog.c:1820 +#: ../app/dialogs/preferences-dialog.c:1820 msgid "Image Title Format" msgstr "Format des Bildtitels" -#: app/dialogs/preferences-dialog.c:1821 +#: ../app/dialogs/preferences-dialog.c:1821 msgid "Image Statusbar Format" msgstr "Format der Statusleiste" -#: app/dialogs/preferences-dialog.c:1906 app/dialogs/preferences-dialog.c:1909 +#: ../app/dialogs/preferences-dialog.c:1906 +#: ../app/dialogs/preferences-dialog.c:1909 msgid "Display" msgstr "Anzeige" -#: app/dialogs/preferences-dialog.c:1922 +#: ../app/dialogs/preferences-dialog.c:1922 msgid "Transparency _type:" msgstr "Transparenz_typ:" -#: app/dialogs/preferences-dialog.c:1925 +#: ../app/dialogs/preferences-dialog.c:1925 msgid "Check _size:" msgstr "_Größe des Schachbretts:" -#: app/dialogs/preferences-dialog.c:1928 +#: ../app/dialogs/preferences-dialog.c:1928 msgid "Get Monitor Resolution" msgstr "Quelle für Bildschirmauflösung" # c-format -#: app/dialogs/preferences-dialog.c:1970 +#: ../app/dialogs/preferences-dialog.c:1970 #, c-format msgid "From _windowing system (currently %d x %d dpi)" msgstr "Auflösung vom _Fenstersystem beziehen (zur Zeit %d x %d dpi)" -#: app/dialogs/preferences-dialog.c:1993 +#: ../app/dialogs/preferences-dialog.c:1993 msgid "_Manually" msgstr "_Manuell" -#: app/dialogs/preferences-dialog.c:2008 +#: ../app/dialogs/preferences-dialog.c:2008 msgid "C_alibrate..." msgstr "_Kalibrieren" -#: app/dialogs/preferences-dialog.c:2028 app/dialogs/preferences-dialog.c:2031 +#: ../app/dialogs/preferences-dialog.c:2028 +#: ../app/dialogs/preferences-dialog.c:2031 msgid "Input Devices" msgstr "Eingabegeräte" #. Extended Input Devices -#: app/dialogs/preferences-dialog.c:2038 +#: ../app/dialogs/preferences-dialog.c:2038 msgid "Extended Input Devices" msgstr "Erweiterte Eingabegeräte" -#: app/dialogs/preferences-dialog.c:2042 +#: ../app/dialogs/preferences-dialog.c:2042 msgid "Configure E_xtended Input Devices..." msgstr "_Erweiterte Eingabegeräte konfigurieren" -#: app/dialogs/preferences-dialog.c:2049 +#: ../app/dialogs/preferences-dialog.c:2049 msgid "_Save input device settings on exit" msgstr "Gerätestatus beim Beenden _speichern" -#: app/dialogs/preferences-dialog.c:2053 +#: ../app/dialogs/preferences-dialog.c:2053 msgid "Save Input Device Settings _Now" msgstr "Gerätestatus _jetzt speichern" -#: app/dialogs/preferences-dialog.c:2060 +#: ../app/dialogs/preferences-dialog.c:2060 msgid "_Reset Saved Input Device Settings to Default Values" msgstr "Gerätestatus _jetzt auf Vorgabewerte setzen" -#: app/dialogs/preferences-dialog.c:2075 +#: ../app/dialogs/preferences-dialog.c:2075 msgid "Additional Input Controllers" msgstr "Zusätzliche Eingabegräte" -#: app/dialogs/preferences-dialog.c:2078 +#: ../app/dialogs/preferences-dialog.c:2078 msgid "Input Controllers" msgstr "Eingabegeräte" -#: app/dialogs/preferences-dialog.c:2119 app/dialogs/preferences-dialog.c:2122 +#: ../app/dialogs/preferences-dialog.c:2119 +#: ../app/dialogs/preferences-dialog.c:2122 msgid "Window Management" msgstr "Fensterverwaltung" -#: app/dialogs/preferences-dialog.c:2128 +#: ../app/dialogs/preferences-dialog.c:2128 msgid "Window Manager Hints" msgstr "Fensterverwaltungs-Hints" -#: app/dialogs/preferences-dialog.c:2134 +#: ../app/dialogs/preferences-dialog.c:2134 msgid "Hint for the _toolbox:" -msgstr "Fenstertyp-Hint für as _Werkzeugfenster:" +msgstr "Fenstertyp-Hint für das _Werkzeugfenster:" -#: app/dialogs/preferences-dialog.c:2138 +#: ../app/dialogs/preferences-dialog.c:2138 msgid "Hint for the _docks:" msgstr "Fenstertyp-Hint für _Docks:" -#: app/dialogs/preferences-dialog.c:2141 +#: ../app/dialogs/preferences-dialog.c:2141 msgid "Focus" msgstr "Fokus" -#: app/dialogs/preferences-dialog.c:2145 +#: ../app/dialogs/preferences-dialog.c:2145 msgid "Activate the _focused image" msgstr "Das _fokussierte Bild aktivieren" #. Window Positions -#: app/dialogs/preferences-dialog.c:2149 +#: ../app/dialogs/preferences-dialog.c:2149 msgid "Window Positions" msgstr "Fensterpositionen" -#: app/dialogs/preferences-dialog.c:2152 +#: ../app/dialogs/preferences-dialog.c:2152 msgid "_Save window positions on exit" msgstr "Fensterpositionen beim Beenden _speichern" -#: app/dialogs/preferences-dialog.c:2156 +#: ../app/dialogs/preferences-dialog.c:2156 msgid "Save Window Positions _Now" msgstr "Fensterpositionen _jetzt speichern" -#: app/dialogs/preferences-dialog.c:2163 +#: ../app/dialogs/preferences-dialog.c:2163 msgid "_Reset Saved Window Positions to Default Values" msgstr "Fensterpositionen _jetzt auf Vorgabewerte setzen" -#: app/dialogs/preferences-dialog.c:2178 app/dialogs/preferences-dialog.c:2181 -#: app/dialogs/preferences-dialog.c:2329 +#: ../app/dialogs/preferences-dialog.c:2178 +#: ../app/dialogs/preferences-dialog.c:2181 +#: ../app/dialogs/preferences-dialog.c:2329 msgid "Environment" msgstr "Umgebung" -#: app/dialogs/preferences-dialog.c:2189 +#: ../app/dialogs/preferences-dialog.c:2189 msgid "Resource Consumption" msgstr "Ressourcenverbrauch" -#: app/dialogs/preferences-dialog.c:2199 +#: ../app/dialogs/preferences-dialog.c:2199 msgid "Minimal number of _undo levels:" msgstr "Minimale Anzahl an _Journalschritten:" -#: app/dialogs/preferences-dialog.c:2202 +#: ../app/dialogs/preferences-dialog.c:2202 msgid "Maximum undo _memory:" msgstr "_Maximaler Speicher für das Journal:" -#: app/dialogs/preferences-dialog.c:2205 +#: ../app/dialogs/preferences-dialog.c:2205 msgid "Tile cache _size:" msgstr "Größe des gesamten _Speichers:" -#: app/dialogs/preferences-dialog.c:2208 +#: ../app/dialogs/preferences-dialog.c:2208 msgid "Maximum _new image size:" msgstr "Maximale Größe _neuer Bilder:" -#: app/dialogs/preferences-dialog.c:2213 +#: ../app/dialogs/preferences-dialog.c:2213 msgid "Number of _processors to use:" msgstr "Zahl der zu verwendenden _Prozessoren:" #. Image Thumbnails -#: app/dialogs/preferences-dialog.c:2218 +#: ../app/dialogs/preferences-dialog.c:2218 msgid "Image Thumbnails" msgstr "Bild Vorschau" -#: app/dialogs/preferences-dialog.c:2223 +#: ../app/dialogs/preferences-dialog.c:2223 msgid "Size of _thumbnails:" msgstr "Größe der _Vorschaubilder:" -#: app/dialogs/preferences-dialog.c:2227 +#: ../app/dialogs/preferences-dialog.c:2227 msgid "Maximum _filesize for thumbnailing:" msgstr "Maximale Datei_größe für Vorschaubilder:" #. File Saving -#: app/dialogs/preferences-dialog.c:2231 +#: ../app/dialogs/preferences-dialog.c:2231 msgid "Saving Images" msgstr "Bilder speichern" -#: app/dialogs/preferences-dialog.c:2234 +#: ../app/dialogs/preferences-dialog.c:2234 msgid "Confirm closing of unsa_ved images" msgstr "Schließen _ungespeicherter Bilder bestätigen" -#: app/dialogs/preferences-dialog.c:2245 app/dialogs/preferences-dialog.c:2248 +#: ../app/dialogs/preferences-dialog.c:2245 +#: ../app/dialogs/preferences-dialog.c:2248 msgid "Folders" msgstr "Ordner" -#: app/dialogs/preferences-dialog.c:2263 +#: ../app/dialogs/preferences-dialog.c:2263 msgid "Temp folder:" msgstr "Temporärer Ordner:" -#: app/dialogs/preferences-dialog.c:2263 +#: ../app/dialogs/preferences-dialog.c:2263 msgid "Select Temp Folder" msgstr "Wählen Sie den Temporären Ordner" -#: app/dialogs/preferences-dialog.c:2264 -#: app/dialogs/user-install-dialog.c:1403 +#: ../app/dialogs/preferences-dialog.c:2264 +#: ../app/dialogs/user-install-dialog.c:1403 msgid "Swap folder:" msgstr "Auslagerungsordner:" -#: app/dialogs/preferences-dialog.c:2264 +#: ../app/dialogs/preferences-dialog.c:2264 msgid "Select Swap Folder" msgstr "Wählen Sie den Auslagerungsordner" -#: app/dialogs/preferences-dialog.c:2297 +#: ../app/dialogs/preferences-dialog.c:2297 msgid "Brush Folders" msgstr "Pinselordner" -#: app/dialogs/preferences-dialog.c:2299 +#: ../app/dialogs/preferences-dialog.c:2299 msgid "Select Brush Folders" msgstr "Wählen Sie die Pinselordner" -#: app/dialogs/preferences-dialog.c:2301 +#: ../app/dialogs/preferences-dialog.c:2301 msgid "Pattern Folders" msgstr "Musterordner" -#: app/dialogs/preferences-dialog.c:2303 +#: ../app/dialogs/preferences-dialog.c:2303 msgid "Select Pattern Folders" msgstr "Wählen Sie die Musterordner" -#: app/dialogs/preferences-dialog.c:2305 +#: ../app/dialogs/preferences-dialog.c:2305 msgid "Palette Folders" msgstr "Palettenordner" -#: app/dialogs/preferences-dialog.c:2307 +#: ../app/dialogs/preferences-dialog.c:2307 msgid "Select Palette Folders" msgstr "Wählen Sie die Palettenordner" -#: app/dialogs/preferences-dialog.c:2309 +#: ../app/dialogs/preferences-dialog.c:2309 msgid "Gradient Folders" msgstr "Farbverlaufsordner" -#: app/dialogs/preferences-dialog.c:2311 +#: ../app/dialogs/preferences-dialog.c:2311 msgid "Select Gradient Folders" msgstr "Wählen Sie die Farbverlaufsordner" -#: app/dialogs/preferences-dialog.c:2313 +#: ../app/dialogs/preferences-dialog.c:2313 msgid "Font Folders" msgstr "Schriftordner" -#: app/dialogs/preferences-dialog.c:2315 +#: ../app/dialogs/preferences-dialog.c:2315 msgid "Select Font Folders" msgstr "Wählen Sie die Schriftordner" -#: app/dialogs/preferences-dialog.c:2317 +#: ../app/dialogs/preferences-dialog.c:2317 msgid "Plug-In Folders" msgstr "Plugin-Ordner" -#: app/dialogs/preferences-dialog.c:2319 +#: ../app/dialogs/preferences-dialog.c:2319 msgid "Select Plug-In Folders" msgstr "Wählen Sie die Plugin-Ordner" -#: app/dialogs/preferences-dialog.c:2321 +#: ../app/dialogs/preferences-dialog.c:2321 msgid "Scripts" msgstr "Skripte" -#: app/dialogs/preferences-dialog.c:2321 +#: ../app/dialogs/preferences-dialog.c:2321 msgid "Script-Fu Folders" msgstr "Skript-Fu-Ordner" -#: app/dialogs/preferences-dialog.c:2323 +#: ../app/dialogs/preferences-dialog.c:2323 msgid "Select Script-Fu Folders" msgstr "Wählen Sie die Skript-Fu-Ordner" -#: app/dialogs/preferences-dialog.c:2325 +#: ../app/dialogs/preferences-dialog.c:2325 msgid "Module Folders" msgstr "Modulordner" -#: app/dialogs/preferences-dialog.c:2327 +#: ../app/dialogs/preferences-dialog.c:2327 msgid "Select Module Folders" msgstr "Wählen Sie die Modulordner" -#: app/dialogs/preferences-dialog.c:2329 +#: ../app/dialogs/preferences-dialog.c:2329 msgid "Environment Folders" msgstr "Umgebungsordner" -#: app/dialogs/preferences-dialog.c:2331 +#: ../app/dialogs/preferences-dialog.c:2331 msgid "Select Environment Folders" msgstr "Wählen Sie die Umgebungsordner" -#: app/dialogs/preferences-dialog.c:2333 +#: ../app/dialogs/preferences-dialog.c:2333 msgid "Themes" msgstr "Themen" -#: app/dialogs/preferences-dialog.c:2333 +#: ../app/dialogs/preferences-dialog.c:2333 msgid "Theme Folders" msgstr "Themenordner" -#: app/dialogs/preferences-dialog.c:2335 +#: ../app/dialogs/preferences-dialog.c:2335 msgid "Select Theme Folders" msgstr "Wählen Sie die Themenordner" -#: app/dialogs/print-size-dialog.c:128 +#: ../app/dialogs/print-size-dialog.c:128 msgid "Print Size" msgstr "Größe des Ausdrucks" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:223 -#: app/widgets/gimptemplateeditor.c:236 +#: ../app/dialogs/print-size-dialog.c:155 ../app/widgets/gimpsizebox.c:223 +#: ../app/widgets/gimptemplateeditor.c:236 msgid "_Width:" msgstr "_Breite:" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:227 -#: app/widgets/gimptemplateeditor.c:243 +#: ../app/dialogs/print-size-dialog.c:162 ../app/widgets/gimpsizebox.c:227 +#: ../app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" msgstr "Höh_e:" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:276 -#: app/widgets/gimptemplateeditor.c:363 +#: ../app/dialogs/print-size-dialog.c:210 ../app/widgets/gimpsizebox.c:276 +#: ../app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" msgstr "_X Auflösung:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:279 -#: app/widgets/gimptemplateeditor.c:370 +#: ../app/dialogs/print-size-dialog.c:217 ../app/widgets/gimpsizebox.c:279 +#: ../app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" msgstr "_Y Auflösung:" -#: app/dialogs/print-size-dialog.c:228 app/widgets/gimpsizebox.c:272 -#: app/widgets/gimptemplateeditor.c:383 +#: ../app/dialogs/print-size-dialog.c:228 ../app/widgets/gimpsizebox.c:272 +#: ../app/widgets/gimptemplateeditor.c:383 #, c-format msgid "pixels/%a" msgstr "Pixel/%a" -#: app/dialogs/quit-dialog.c:84 +#: ../app/dialogs/quit-dialog.c:84 msgid "Quit The GIMP" msgstr "GIMP beenden" -#: app/dialogs/quit-dialog.c:126 +#: ../app/dialogs/quit-dialog.c:126 msgid "If you quit GIMP now, these changes will be lost." msgstr "Wenn Sie GIMP jetzt beenden, gehen folgende Änderungenverlorgen:" -#: app/dialogs/quit-dialog.c:164 +#: ../app/dialogs/quit-dialog.c:164 msgid "There is one image with unsaved changes:" -msgstr "Kein Bild mit ungesicherten Änderungen vorhanden:" +msgstr "Es ist ein Bild mit ungesicherten Änderungen geeöffnet:" -#: app/dialogs/quit-dialog.c:167 +#: ../app/dialogs/quit-dialog.c:167 #, c-format msgid "There are %d images with unsaved changes:" msgstr "Es sind %d Bilder mit ungespeicherten Änderungen geöffnet:" -#: app/dialogs/quit-dialog.c:183 +#: ../app/dialogs/quit-dialog.c:183 msgid "_Discard Changes" msgstr "Änderungen _verwerfen" -#: app/dialogs/resize-dialog.c:115 +#: ../app/dialogs/resize-dialog.c:115 msgid "Canvas Size" msgstr "Leinwandgröße" -#: app/dialogs/resize-dialog.c:126 app/dialogs/scale-dialog.c:107 +#: ../app/dialogs/resize-dialog.c:126 ../app/dialogs/scale-dialog.c:107 msgid "Layer Size" msgstr "Ebenengröße" -#: app/dialogs/resolution-calibrate-dialog.c:67 +#: ../app/dialogs/resolution-calibrate-dialog.c:67 msgid "Calibrate Monitor Resolution" msgstr "Bildschirmauflösung kalibrieren" -#: app/dialogs/resolution-calibrate-dialog.c:120 +#: ../app/dialogs/resolution-calibrate-dialog.c:120 msgid "Measure the rulers and enter their lengths:" msgstr "Messen Sie die Lineale aus und tragen Sie die Längen unten ein." -#: app/dialogs/resolution-calibrate-dialog.c:145 +#: ../app/dialogs/resolution-calibrate-dialog.c:145 msgid "_Horizontal:" msgstr "_Horizontal:" -#: app/dialogs/resolution-calibrate-dialog.c:150 +#: ../app/dialogs/resolution-calibrate-dialog.c:150 msgid "_Vertical:" msgstr "_Vertikal:" #. Image size frame -#: app/dialogs/scale-dialog.c:96 app/widgets/gimptemplateeditor.c:214 +#: ../app/dialogs/scale-dialog.c:96 ../app/widgets/gimptemplateeditor.c:214 msgid "Image Size" msgstr "Bildgröße" -#: app/dialogs/scale-dialog.c:166 +#: ../app/dialogs/scale-dialog.c:166 msgid "Quality" msgstr "Qualität" -#: app/dialogs/scale-dialog.c:178 +#: ../app/dialogs/scale-dialog.c:178 msgid "I_nterpolation:" msgstr "I_nterpolation:" -#: app/dialogs/scale-dialog.c:192 +#: ../app/dialogs/scale-dialog.c:192 msgid "" "Indexed color layers are always scaled without interpolation. The chosen " "interpolation type will affect channels and masks only." @@ -7015,42 +7056,42 @@ "Indizierte Farbebenen werden immer ohne Interpolation skaliert. Die " "ausgewählte Interpolation wird nur auf Kanäle und Maske Auswirkungen haben." -#: app/dialogs/stroke-dialog.c:104 +#: ../app/dialogs/stroke-dialog.c:104 msgid "Choose Stroke Style" msgstr "Nachziehstil festlegen" -#: app/dialogs/stroke-dialog.c:209 +#: ../app/dialogs/stroke-dialog.c:209 msgid "Paint Tool:" msgstr "Malwerkzeug:" -#: app/dialogs/tips-dialog.c:90 +#: ../app/dialogs/tips-dialog.c:90 msgid "Your GIMP tips file appears to be missing!" msgstr "Ihre GIMP-Tippdatei scheint nicht zu existieren!" -#: app/dialogs/tips-dialog.c:92 +#: ../app/dialogs/tips-dialog.c:92 #, c-format msgid "There should be a file called '%s'. Please check your installation." msgstr "" "Es sollte eine Datei namens »%s« vorhanden sein. Bitte überprüfen Sie Ihre " "Installation." -#: app/dialogs/tips-dialog.c:98 +#: ../app/dialogs/tips-dialog.c:98 msgid "The GIMP tips file could not be parsed!" msgstr "Die Syntax der GIMP-Tippdatei konnte nicht analysiert werden!" -#: app/dialogs/tips-dialog.c:131 +#: ../app/dialogs/tips-dialog.c:131 msgid "GIMP Tip of the Day" msgstr "GIMP Tipp des Tages" -#: app/dialogs/tips-dialog.c:195 +#: ../app/dialogs/tips-dialog.c:195 msgid "Show tip next time GIMP starts" msgstr "Tipps beim nächsten Start anzeigen" -#: app/dialogs/tips-dialog.c:219 +#: ../app/dialogs/tips-dialog.c:219 msgid "_Previous tip" msgstr "_Vorheriger Tipp" -#: app/dialogs/tips-dialog.c:228 +#: ../app/dialogs/tips-dialog.c:228 msgid "_Next tip" msgstr "_Nächster Tipp" @@ -7059,11 +7100,11 @@ #. according to the name of the po file used for gimp-tips.xml. #. E.g. for the german translation, that would be "tips-locale:de". #. -#: app/dialogs/tips-parser.c:165 +#: ../app/dialogs/tips-parser.c:165 msgid "tips-locale:C" msgstr "tips-locale:de" -#: app/dialogs/user-install-dialog.c:134 +#: ../app/dialogs/user-install-dialog.c:134 msgid "" "The gimprc is used to store personal preferences that affect GIMP's default " "behavior. Paths to search for brushes, palettes, gradients, patterns, plug-" @@ -7073,7 +7114,7 @@ "Vorgabeverhalten zu speichern. Auch die Suchpfade für Pinsel, Paletten, " "Farbverläufe, Muster, Plugins und Module können hier konfiguriert werden." -#: app/dialogs/user-install-dialog.c:143 +#: ../app/dialogs/user-install-dialog.c:143 msgid "" "GIMP uses an additional gtkrc file so you can configure it to look " "differently than other GTK apps." @@ -7081,7 +7122,7 @@ "GIMP verwendet eine zusätzliche gtkrc-Datei für GIMP-spezifische Oberflächen-" "Einstellungen." -#: app/dialogs/user-install-dialog.c:149 +#: ../app/dialogs/user-install-dialog.c:149 msgid "" "Plug-ins and extensions are external programs run by the GIMP which provide " "additional functionality. These programs are searched for at run-time and " @@ -7094,7 +7135,7 @@ "Erzeugungsdatum werden in dieser Datei gespeichert. Diese Datei sollte nur " "von GIMP gelesen und nicht bearbeitet werden." -#: app/dialogs/user-install-dialog.c:159 +#: ../app/dialogs/user-install-dialog.c:159 msgid "" "Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump " "of your configuration so it can. be remembered for the next session. You " @@ -7108,7 +7149,7 @@ "Wird diese Datei gelöscht, so wird die Vorgabe-Tastenbelegung " "wiederhergestellt." -#: app/dialogs/user-install-dialog.c:169 +#: ../app/dialogs/user-install-dialog.c:169 msgid "" "The sessionrc is used to store what dialog windows were open the last time " "you quit The GIMP. You can configure The GIMP to reopen these dialogs at " @@ -7119,7 +7160,7 @@ "diese Dialoge beim Start an der gespeicherten Position wieder geöffnet " "werden." -#: app/dialogs/user-install-dialog.c:176 +#: ../app/dialogs/user-install-dialog.c:176 msgid "" "This file holds a collection of standard media sizes that serve as image " "templates." @@ -7127,7 +7168,7 @@ "Diese Datei enthält eine Sammlung von Standard-Mediengrößen, die als " "Bildvorlagen dienen." -#: app/dialogs/user-install-dialog.c:182 +#: ../app/dialogs/user-install-dialog.c:182 msgid "" "The unitrc is used to store your user units database. You can define " "additional units and use them just like you use the built-in units inches, " @@ -7139,7 +7180,7 @@ "Einheiten wie Zoll, Millimeter, Punkt und Pica einsetzen. Diese Datei wird " "jedesmal überschrieben, wenn Sie GIMP beenden." -#: app/dialogs/user-install-dialog.c:191 +#: ../app/dialogs/user-install-dialog.c:191 msgid "" "This folder is used to store user defined brushes. The GIMP checks this " "folder in addition to the system-wide GIMP brushes installation when " @@ -7148,7 +7189,7 @@ "Dieser Ordner wird verwendet, um benutzerdefinierte Pinsel zu speichern. " "GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Pinselordner." -#: app/dialogs/user-install-dialog.c:199 +#: ../app/dialogs/user-install-dialog.c:199 msgid "" "This folder is used to store fonts you only want visible in the GIMP. The " "GIMP checks this folder in addition to the system-wide GIMP fonts " @@ -7161,7 +7202,7 @@ "Schriften verwenden wollen. Legen Sie diese andernfalls im globalen " "Schriftordner ab." -#: app/dialogs/user-install-dialog.c:209 +#: ../app/dialogs/user-install-dialog.c:209 msgid "" "This folder is used to store user defined gradients. The GIMP checks this " "folder in addition to the system-wide GIMP gradients installation when " @@ -7171,7 +7212,7 @@ "speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten " "Farbverlaufsordner." -#: app/dialogs/user-install-dialog.c:216 +#: ../app/dialogs/user-install-dialog.c:216 msgid "" "This folder is used to store user defined palettes. The GIMP checks this " "folder in addition to the system-wide GIMP palettes installation when " @@ -7181,7 +7222,7 @@ "speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten " "Palettenordner." -#: app/dialogs/user-install-dialog.c:223 +#: ../app/dialogs/user-install-dialog.c:223 msgid "" "This folder is used to store user defined patterns. The GIMP checks this " "folder in addition to the system-wide GIMP patterns installation when " @@ -7190,7 +7231,7 @@ "Dieser Ordner wird verwendet, um benutzerdefinierte Füllmuster zu speichern. " "GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Musterordner." -#: app/dialogs/user-install-dialog.c:230 +#: ../app/dialogs/user-install-dialog.c:230 msgid "" "This folder is used to store user created, temporary, or otherwise non-" "system-supported plug-ins. The GIMP checks this folder in addition to the " @@ -7200,7 +7241,7 @@ "Weise nicht systemweit unterstützte Plugins zu speichern. GIMP durchsucht " "diesen Ordner zusätzlich zum systemweiten Plugin-Ordner." -#: app/dialogs/user-install-dialog.c:238 +#: ../app/dialogs/user-install-dialog.c:238 msgid "" "This folder is used to store user created, temporary, or otherwise non-" "system-supported DLL modules. The GIMP checks this folder in addition to " @@ -7211,7 +7252,7 @@ "anderer Weise nicht systemweit unterstützte DLL-Module zu speichern. GIMP " "durchsucht diesen Ordner zusätzlich zum systemweiten Modulordner." -#: app/dialogs/user-install-dialog.c:247 +#: ../app/dialogs/user-install-dialog.c:247 msgid "" "This folder is used to store user created, temporary, or otherwise non-" "system-supported additions to the plug-in environment. The GIMP checks this " @@ -7223,7 +7264,7 @@ "speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten " "Umgebungsordner." -#: app/dialogs/user-install-dialog.c:257 +#: ../app/dialogs/user-install-dialog.c:257 msgid "" "This folder is used to store user created and installed scripts. The GIMP " "checks this folder in addition to the systemwide GIMP scripts folder when " @@ -7232,15 +7273,15 @@ "Dieser Ordner wird verwendet, um selbsterstellte Skripte zu speichern. GIMP " "durchsucht diesen Ordner zusätzlich zum systemweiten Skriptordner." -#: app/dialogs/user-install-dialog.c:265 +#: ../app/dialogs/user-install-dialog.c:265 msgid "This folder is searched for image templates." msgstr "Dieser Ordner wird nach Bildvorlagen durchsucht." -#: app/dialogs/user-install-dialog.c:270 +#: ../app/dialogs/user-install-dialog.c:270 msgid "This folder is searched for user-installed themes." msgstr "Dieser Ordner wird nach vom Benutzer installierten Themen durchsucht." -#: app/dialogs/user-install-dialog.c:275 +#: ../app/dialogs/user-install-dialog.c:275 msgid "" "This folder is used to temporarily store undo buffers to reduce memory " "usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>." @@ -7253,43 +7294,43 @@ "Diese Dateien sind für eine andere GIMP-Sitzung nutzlos und können " "bedenkenlos gelöscht werden." -#: app/dialogs/user-install-dialog.c:284 +#: ../app/dialogs/user-install-dialog.c:284 msgid "This folder is used to store tool options." msgstr "" "Dieser Ordner wird verwendet, um Werkzeugeinstellungen\n" "zu speichern." -#: app/dialogs/user-install-dialog.c:289 +#: ../app/dialogs/user-install-dialog.c:289 msgid "This folder is used to store parameter files for the Curves tool." msgstr "" "Dieser Ordner wird verwendet, um Parameter-Dateien für das Kurven-Werkzeug " "zu speichern." -#: app/dialogs/user-install-dialog.c:294 +#: ../app/dialogs/user-install-dialog.c:294 msgid "This folder is used to store parameter files for the Levels tool." msgstr "" "Dieser Ordner wird verwendet, um Parameter-Dateien für das Werte-Werkzeug zu " "speichern." -#: app/dialogs/user-install-dialog.c:390 +#: ../app/dialogs/user-install-dialog.c:390 msgid "Installation successful. Click \"Continue\" to proceed." msgstr "Installation erfolgreich. Drücken Sie »Weiter« um fortzufahren." -#: app/dialogs/user-install-dialog.c:396 +#: ../app/dialogs/user-install-dialog.c:396 msgid "Installation failed. Contact system administrator." msgstr "Installation fehlgeschlagen. Wenden Sie sich an den Systemverwalter." -#: app/dialogs/user-install-dialog.c:609 +#: ../app/dialogs/user-install-dialog.c:609 msgid "GIMP User Installation" msgstr "GIMP-Benutzerinstallation" -#: app/dialogs/user-install-dialog.c:614 +#: ../app/dialogs/user-install-dialog.c:614 msgid "Continue" msgstr "Weiter" #. GPL_PAGE #. version number -#: app/dialogs/user-install-dialog.c:765 +#: ../app/dialogs/user-install-dialog.c:765 #, c-format msgid "" "Welcome to\n" @@ -7298,13 +7339,13 @@ "Willkommen zur\n" "GIMP %d.%d Benutzerinstallation" -#: app/dialogs/user-install-dialog.c:771 +#: ../app/dialogs/user-install-dialog.c:771 msgid "Click \"Continue\" to enter the GIMP user installation." msgstr "" "Drücken Sie »Weiter«, um die\n" "GIMP Benutzerinstallation zu starten." -#: app/dialogs/user-install-dialog.c:778 +#: ../app/dialogs/user-install-dialog.c:778 msgid "" "The GIMP - GNU Image Manipulation Program\n" "Copyright (C) 1995-2004\n" @@ -7314,7 +7355,7 @@ "Copyright © 1995-2004\n" "Spencer Kimball, Peter Mattis und das GIMP-Entwicklerteam." -#: app/dialogs/user-install-dialog.c:788 +#: ../app/dialogs/user-install-dialog.c:788 msgid "" "This program is free software; you can redistribute it and/or modify it " "under the terms of the GNU General Public License as published by the Free " @@ -7326,7 +7367,7 @@ "herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 " "der Lizenz oder (wenn Sie es wünschen) jeder späteren Version." -#: app/dialogs/user-install-dialog.c:794 +#: ../app/dialogs/user-install-dialog.c:794 msgid "" "This program is distributed in the hope that it will be useful, but WITHOUT " "ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " @@ -7338,7 +7379,7 @@ "implizite Gewährleistung der MARKTREIFE oder der EIGNUNG FÃœR EINEN " "BESTIMMTEN ZWECK. Details finden Sie in der GNU General Public License." -#: app/dialogs/user-install-dialog.c:800 +#: ../app/dialogs/user-install-dialog.c:800 msgid "" "You should have received a copy of the GNU General Public License along with " "this program; if not, write to the Free Software Foundation, Inc., 59 Temple " @@ -7348,38 +7389,38 @@ "Programm erhalten haben. Falls nicht, schreiben Sie an die Free Software " "Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA." -#: app/dialogs/user-install-dialog.c:810 +#: ../app/dialogs/user-install-dialog.c:810 msgid "Migrate User Settings" msgstr "Benutzereinstellungen übernehmen" -#: app/dialogs/user-install-dialog.c:811 +#: ../app/dialogs/user-install-dialog.c:811 msgid "Click \"Continue\" to proceed with the user installation." msgstr "" "Klicken Sie auf »Weiter«, um mit der Benutzerinstallation fortzufahren." -#: app/dialogs/user-install-dialog.c:816 +#: ../app/dialogs/user-install-dialog.c:816 msgid "It seems you have used GIMP 2.0 before." msgstr "Scheinbar haben Sie bereits The Gimp in der Version 2.0 benutzt." -#: app/dialogs/user-install-dialog.c:820 +#: ../app/dialogs/user-install-dialog.c:820 msgid "_Migrate GIMP 2.0 user settings" msgstr "_Benutzereinstellunge aus The Gimp 2.0 übernehmen" -#: app/dialogs/user-install-dialog.c:823 +#: ../app/dialogs/user-install-dialog.c:823 msgid "Do a _fresh user installation" msgstr "Eine _neue Benutzerinstallation erstellen" -#: app/dialogs/user-install-dialog.c:851 +#: ../app/dialogs/user-install-dialog.c:851 msgid "Personal GIMP Folder" msgstr "Persönlicher GIMP-Ordner" -#: app/dialogs/user-install-dialog.c:852 +#: ../app/dialogs/user-install-dialog.c:852 msgid "Click \"Continue\" to create your personal GIMP folder." msgstr "" "Drücken Sie »Weiter« um Ihren\n" "persönlichen GIMP-Ordner anzulegen." -#: app/dialogs/user-install-dialog.c:896 +#: ../app/dialogs/user-install-dialog.c:896 #, c-format msgid "" "For a proper GIMP installation, a folder named '%s' needs to be " @@ -7388,7 +7429,7 @@ "Für die GIMP Benutzerinstallation muss ein Ordner namens »%s« " "angelegt werden." -#: app/dialogs/user-install-dialog.c:903 +#: ../app/dialogs/user-install-dialog.c:903 msgid "" "This folder will contain a number of important files. Click on one of the " "files or folders in the tree to get more information about the selected item." @@ -7397,23 +7438,23 @@ "eine der Dateien oder Ordner aus der Liste aus, um weitere Informationen zu " "erhalten." -#: app/dialogs/user-install-dialog.c:991 +#: ../app/dialogs/user-install-dialog.c:991 msgid "User Installation Log" msgstr "Benutzerinstallation Logbuch" -#: app/dialogs/user-install-dialog.c:992 +#: ../app/dialogs/user-install-dialog.c:992 msgid "Please wait while your personal GIMP folder is being created..." msgstr "Bitte warten. Ihr persönlicher GIMP-Ordner wird angelegt..." -#: app/dialogs/user-install-dialog.c:999 +#: ../app/dialogs/user-install-dialog.c:999 msgid "GIMP Performance Tuning" msgstr "Leistungsfähigkeit von GIMP" -#: app/dialogs/user-install-dialog.c:1000 +#: ../app/dialogs/user-install-dialog.c:1000 msgid "Click \"Continue\" to accept the settings above." msgstr "Drücken Sie »Weiter«, um die Einstellungen zu übernehmen." -#: app/dialogs/user-install-dialog.c:1005 +#: ../app/dialogs/user-install-dialog.c:1005 msgid "" "For optimal GIMP performance, some settings may have to be adjusted." msgstr "" @@ -7421,22 +7462,22 @@ "einige\n" "Einstellungen anzupassen." -#: app/dialogs/user-install-dialog.c:1065 +#: ../app/dialogs/user-install-dialog.c:1065 #, c-format msgid "Copying file '%s' from '%s'..." msgstr "Datei »%s« wird von »%s« kopiert..." -#: app/dialogs/user-install-dialog.c:1084 +#: ../app/dialogs/user-install-dialog.c:1084 #, c-format msgid "Creating folder '%s'..." msgstr "Ordner »%s« wird angelegt..." -#: app/dialogs/user-install-dialog.c:1098 +#: ../app/dialogs/user-install-dialog.c:1098 #, c-format msgid "Cannot create folder '%s': %s" msgstr "Ordner »%s« konnte nicht angelegt werden: %s" -#: app/dialogs/user-install-dialog.c:1362 +#: ../app/dialogs/user-install-dialog.c:1362 msgid "" "GIMP uses a limited amount of memory to store image data, the so-called " "\"Tile Cache\". You should adjust its size to fit into memory. Consider " @@ -7447,11 +7488,11 @@ "Arbeitsspeicher passt. Bedenken Sie dabei die Menge an Arbeitsspeicher, die " "bereits von anderen Programmen belegt wird." -#: app/dialogs/user-install-dialog.c:1375 +#: ../app/dialogs/user-install-dialog.c:1375 msgid "Tile cache size:" msgstr "Größe des Datenspeichers:" -#: app/dialogs/user-install-dialog.c:1387 +#: ../app/dialogs/user-install-dialog.c:1387 msgid "" "All image and undo data which doesn't fit into the Tile Cache will be " "written to a swap file. This file should be located on a local filesystem " @@ -7464,98 +7505,98 @@ "UNIX ist das systemweite temporäre Ordner eine gute Wahl (meist »/tmp« oder " "»/var/tmp«)." -#: app/dialogs/user-install-dialog.c:1398 +#: ../app/dialogs/user-install-dialog.c:1398 msgid "Select swap dir" msgstr "Wählen Sie den Auslagerungsordner" -#: app/dialogs/vectors-export-dialog.c:53 +#: ../app/dialogs/vectors-export-dialog.c:53 msgid "Export Path to SVG" msgstr "Pfade nach SVG exportieren" -#: app/dialogs/vectors-export-dialog.c:78 +#: ../app/dialogs/vectors-export-dialog.c:78 msgid "Export the active path" msgstr "Aktiven Pfad exportieren" -#: app/dialogs/vectors-export-dialog.c:79 +#: ../app/dialogs/vectors-export-dialog.c:79 msgid "Export all paths from this image" msgstr "Alle Pfade dieses Bildes exportieren" -#: app/dialogs/vectors-import-dialog.c:57 +#: ../app/dialogs/vectors-import-dialog.c:57 msgid "Import Paths from SVG" msgstr "Pfade aus SVG importieren" -#: app/dialogs/vectors-import-dialog.c:83 +#: ../app/dialogs/vectors-import-dialog.c:83 msgid "All Files (*.*)" msgstr "Alle Dateien (*.*)" -#: app/dialogs/vectors-import-dialog.c:88 +#: ../app/dialogs/vectors-import-dialog.c:88 msgid "Scalable SVG image (*.svg)" msgstr "Skalierbare Vektorgrafik (*.svg)" -#: app/dialogs/vectors-import-dialog.c:99 +#: ../app/dialogs/vectors-import-dialog.c:99 msgid "_Merge imported paths" msgstr "_Importieren Pfade zusammenführen" -#: app/dialogs/vectors-import-dialog.c:109 +#: ../app/dialogs/vectors-import-dialog.c:109 msgid "_Scale imported paths to fit image" msgstr "Importierte Pfade auf Bildgröße _skalieren" -#: app/dialogs/vectors-options-dialog.c:113 +#: ../app/dialogs/vectors-options-dialog.c:113 msgid "Path Name:" msgstr "Pfadname:" -#: app/display/display-enums.c:24 +#: ../app/display/display-enums.c:24 msgid "Tool icon" msgstr "Werkzeug-Symbol" -#: app/display/display-enums.c:25 +#: ../app/display/display-enums.c:25 msgid "Tool icon with crosshair" msgstr "Werkzeug-Symbol mit Fadenkreuz" -#: app/display/display-enums.c:26 +#: ../app/display/display-enums.c:26 msgid "Crosshair only" msgstr "Nur Fadenkreuz" -#: app/display/display-enums.c:55 +#: ../app/display/display-enums.c:55 msgid "From theme" msgstr "Dem Thema entsprechend" -#: app/display/display-enums.c:56 +#: ../app/display/display-enums.c:56 msgid "Light check color" msgstr "Helle Schachbrett-Farbe" -#: app/display/display-enums.c:57 +#: ../app/display/display-enums.c:57 msgid "Dark check color" msgstr "Dunkle Schachbrett-Farbe" -#: app/display/display-enums.c:58 +#: ../app/display/display-enums.c:58 msgid "Custom color" msgstr "Benutzerdefinierte Farbe" -#: app/display/gimpdisplayshell.c:943 +#: ../app/display/gimpdisplayshell.c:943 msgid "Zoom image when window size changes" msgstr "Bild zoomen, wenn die Fenstergröße sich ändert" -#: app/display/gimpdisplayshell.c:963 +#: ../app/display/gimpdisplayshell.c:963 msgid "Toggle Quick Mask" msgstr "Schnelle Maske aktivieren/deaktivieren" -#: app/display/gimpdisplayshell-close.c:122 -#: app/display/gimpdisplayshell-close.c:185 +#: ../app/display/gimpdisplayshell-close.c:122 +#: ../app/display/gimpdisplayshell-close.c:185 #, c-format msgid "Close %s" msgstr "%s schließen" -#: app/display/gimpdisplayshell-close.c:131 +#: ../app/display/gimpdisplayshell-close.c:131 msgid "Do_n't save" msgstr "_Nicht speichern" -#: app/display/gimpdisplayshell-close.c:192 +#: ../app/display/gimpdisplayshell-close.c:192 #, c-format msgid "Save the changes to image '%s' before closing?" msgstr "Möchten Sie die Änderungen am Bild »%s« vor dem Schließen speichern?" -#: app/display/gimpdisplayshell-close.c:209 +#: ../app/display/gimpdisplayshell-close.c:209 #, c-format msgid "If you don't save the image, changes from the last %s will be lost." msgstr "" @@ -7563,431 +7604,436 @@ "verloren." #. one second, the time period -#: app/display/gimpdisplayshell-close.c:266 +#: ../app/display/gimpdisplayshell-close.c:266 msgid "second" msgstr "Sekunde" -#: app/display/gimpdisplayshell-close.c:269 +#: ../app/display/gimpdisplayshell-close.c:269 #, c-format msgid "%d seconds" msgstr "%d Sekunden" -#: app/display/gimpdisplayshell-close.c:275 +#: ../app/display/gimpdisplayshell-close.c:275 msgid "minute" msgstr "Minute" -#: app/display/gimpdisplayshell-close.c:277 +#: ../app/display/gimpdisplayshell-close.c:277 #, c-format msgid "%d minutes" msgstr "%d Minuten" -#: app/display/gimpdisplayshell-dnd.c:98 +#: ../app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "Neue Ebene ablegen" -#: app/display/gimpdisplayshell-dnd.c:142 +#: ../app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "Neuen Pfad ablegen" -#: app/display/gimpdisplayshell-filter-dialog.c:73 +#: ../app/display/gimpdisplayshell-filter-dialog.c:73 msgid "Color Display Filters" msgstr "Ansichtsfarbfilter" -#: app/display/gimpdisplayshell-filter-dialog.c:76 +#: ../app/display/gimpdisplayshell-filter-dialog.c:76 msgid "Configure Color Display Filters" msgstr "Ansichtsfarbfilter konfigurieren" -#: app/display/gimpdisplayshell-layer-select.c:122 +#: ../app/display/gimpdisplayshell-layer-select.c:122 msgid "Layer Select" msgstr "Ebenenauswahl" -#: app/display/gimpdisplayshell-scale.c:537 +#: ../app/display/gimpdisplayshell-scale.c:541 msgid "Zoom Ratio" msgstr "Skalierungsverhältnis" -#: app/display/gimpdisplayshell-scale.c:539 +#: ../app/display/gimpdisplayshell-scale.c:543 msgid "Select Zoom Ratio" msgstr "Skalierung festlegen" -#: app/display/gimpdisplayshell-scale.c:574 +#: ../app/display/gimpdisplayshell-scale.c:578 msgid "Zoom Ratio:" msgstr "Skalierung:" -#: app/display/gimpdisplayshell-scale.c:601 +#: ../app/display/gimpdisplayshell-scale.c:605 msgid "Zoom:" msgstr "Maßstab:" -#: app/display/gimpdisplayshell-title.c:234 +#: ../app/display/gimpdisplayshell-title.c:234 msgid "RGB-empty" msgstr "RGB leer" -#: app/display/gimpdisplayshell-title.c:237 +#: ../app/display/gimpdisplayshell-title.c:237 msgid "grayscale-empty" msgstr "Graustufen leer" -#: app/display/gimpdisplayshell-title.c:237 +#: ../app/display/gimpdisplayshell-title.c:237 msgid "grayscale" msgstr "Graustufen" -#: app/display/gimpdisplayshell-title.c:240 +#: ../app/display/gimpdisplayshell-title.c:240 msgid "indexed-empty" msgstr "indiziert leer" -#: app/display/gimpdisplayshell-title.c:240 +#: ../app/display/gimpdisplayshell-title.c:240 msgid "indexed" msgstr "indiziert" -#: app/display/gimpdisplayshell-title.c:292 +#: ../app/display/gimpdisplayshell-title.c:292 msgid "(modified)" msgstr "(verändert)" -#: app/display/gimpdisplayshell-title.c:298 +#: ../app/display/gimpdisplayshell-title.c:298 msgid "(clean)" msgstr "(bereinigt)" -#: app/display/gimpdisplayshell-title.c:325 +#: ../app/display/gimpdisplayshell-title.c:325 msgid "1 layer" msgstr "1 Ebene" -#: app/display/gimpdisplayshell-title.c:325 +#: ../app/display/gimpdisplayshell-title.c:325 #, c-format msgid "%d layers" msgstr "%d Ebenen" -#: app/display/gimpstatusbar.c:142 +#: ../app/display/gimpstatusbar.c:142 msgid "Shadow type" msgstr "Schattentyp" -#: app/display/gimpstatusbar.c:143 +#: ../app/display/gimpstatusbar.c:143 msgid "Style of bevel around the statusbar text" msgstr "Randstil des Textes in der Statuszeile" -#: app/display/gimpstatusbar.c:218 +#: ../app/display/gimpstatusbar.c:229 msgid "Cancel" msgstr "Abbrechen" -#: app/file/file-open.c:105 app/file/file-save.c:132 +#: ../app/file/file-open.c:105 ../app/file/file-save.c:132 msgid "Unknown file type" msgstr "Unbekannter Dateityp" -#: app/file/file-open.c:120 app/file/file-save.c:146 +#: ../app/file/file-open.c:120 ../app/file/file-save.c:146 msgid "Not a regular file" msgstr "Keine reguläre Datei" -#: app/file/file-open.c:173 +#: ../app/file/file-open.c:173 msgid "Plug-In returned SUCCESS but did not return an image" msgstr "Plugin lieferte ERFOLG, hat jedoch kein Bild geliefert" -#: app/file/file-open.c:181 +#: ../app/file/file-open.c:181 msgid "Plug-In could not open image" msgstr "Plugin konnte das Bild nicht öffnen" -#: app/file/file-open.c:417 +#: ../app/file/file-open.c:417 msgid "Image doesn't contain any visible layers" msgstr "Auswahl auf alle sichtbaren Bereiche stützen" -#: app/file/file-save.c:220 +#: ../app/file/file-save.c:220 msgid "Plug-In could not save image" msgstr "Plugin konnte das Bild nicht speichern" -#: app/file/file-utils.c:107 +#: ../app/file/file-utils.c:107 msgid "Invalid character sequence in URI" msgstr "Ungültige Zeichenfolge in URI" -#: app/gui/session.c:247 app/menus/menus.c:351 app/widgets/gimpdevices.c:218 +#: ../app/gui/session.c:247 ../app/menus/menus.c:351 +#: ../app/widgets/gimpdevices.c:218 #, c-format msgid "Deleting \"%s\" failed: %s" msgstr "Öffnen von '%s' schlug fehl: %s" -#: app/gui/splash.c:118 +#: ../app/gui/splash.c:118 msgid "GIMP Startup" msgstr "GIMP Start" -#: app/gui/themes.c:231 app/plug-in/plug-ins.c:254 +#: ../app/gui/themes.c:231 ../app/plug-in/plug-ins.c:254 #, c-format msgid "Writing '%s'\n" msgstr "»%s« wird geschrieben\n" -#: app/gui/themes.c:284 +#: ../app/gui/themes.c:284 #, c-format msgid "Adding theme '%s' (%s)\n" msgstr "Thema »%s« wird hinzugefügt (%s)\n" -#: app/paint/gimpairbrush.c:69 app/tools/gimpairbrushtool.c:55 +#: ../app/paint/gimpairbrush.c:69 ../app/tools/gimpairbrushtool.c:55 msgid "Airbrush" msgstr "Sprühpistole" -#: app/paint/gimpbrushcore.c:369 +#: ../app/paint/gimpbrushcore.c:369 msgid "No brushes available for use with this tool." msgstr "Keine Pinsel für dieses Werkzeug vorhanden." -#: app/paint/gimpclone.c:89 app/tools/gimpclonetool.c:89 +#: ../app/paint/gimpclone.c:89 ../app/tools/gimpclonetool.c:89 msgid "Clone" msgstr "Klonen" -#: app/paint/gimpconvolve.c:121 app/tools/gimpconvolvetool.c:70 +#: ../app/paint/gimpconvolve.c:121 ../app/tools/gimpconvolvetool.c:70 msgid "Convolve" msgstr "Verknüpfen" -#: app/paint/gimpdodgeburn.c:87 app/tools/gimpdodgeburntool.c:70 +#: ../app/paint/gimpdodgeburn.c:87 ../app/tools/gimpdodgeburntool.c:70 msgid "Dodge/Burn" msgstr "Abwedeln/Nachbelichten" -#: app/paint/gimperaser.c:64 app/tools/gimperasertool.c:70 +#: ../app/paint/gimperaser.c:64 ../app/tools/gimperasertool.c:70 msgid "Eraser" msgstr "Radierer" -#: app/paint/gimppaintbrush.c:65 app/tools/gimppaintbrushtool.c:51 +#: ../app/paint/gimppaintbrush.c:65 ../app/tools/gimppaintbrushtool.c:51 msgid "Paintbrush" msgstr "Pinsel" -#: app/paint/gimppencil.c:38 app/tools/gimppenciltool.c:51 +#: ../app/paint/gimppencil.c:38 ../app/tools/gimppenciltool.c:51 msgid "Pencil" msgstr "Stift" -#: app/paint/gimpsmudge.c:78 app/tools/gimpsmudgetool.c:54 +#: ../app/paint/gimpsmudge.c:78 ../app/tools/gimpsmudgetool.c:54 msgid "Smudge" msgstr "Verschmieren" -#: app/paint/paint-enums.c:23 +#: ../app/paint/paint-enums.c:23 msgid "Image source" msgstr "Bildquelle" -#: app/paint/paint-enums.c:24 +#: ../app/paint/paint-enums.c:24 msgid "Pattern source" msgstr "Musterquelle" -#: app/paint/paint-enums.c:52 +#: ../app/paint/paint-enums.c:52 msgid "Non-aligned" msgstr "Nicht ausgerichtet" -#: app/paint/paint-enums.c:53 +#: ../app/paint/paint-enums.c:53 msgid "Aligned" msgstr "Ausgerichtet" -#: app/paint/paint-enums.c:54 +#: ../app/paint/paint-enums.c:54 msgid "Registered" msgstr "Registriert" -#: app/paint/paint-enums.c:81 app/widgets/gimpwidgets-constructors.c:60 -#: app/widgets/gimpwidgets-constructors.c:93 +#: ../app/paint/paint-enums.c:81 ../app/widgets/gimpwidgets-constructors.c:60 +#: ../app/widgets/gimpwidgets-constructors.c:93 msgid "Dodge" msgstr "Abwedeln" -#: app/paint/paint-enums.c:82 app/widgets/gimpwidgets-constructors.c:61 -#: app/widgets/gimpwidgets-constructors.c:94 +#: ../app/paint/paint-enums.c:82 ../app/widgets/gimpwidgets-constructors.c:61 +#: ../app/widgets/gimpwidgets-constructors.c:94 msgid "Burn" msgstr "Nachbelichten" -#: app/paint/paint-enums.c:109 +#: ../app/paint/paint-enums.c:109 msgid "Blur" msgstr "Weichzeichnen" -#: app/paint/paint-enums.c:110 +#: ../app/paint/paint-enums.c:110 msgid "Sharpen" msgstr "Schärfen" -#: app/paint/paint-enums.c:167 +#: ../app/paint/paint-enums.c:167 msgid "Constant" msgstr "Konstant" -#: app/paint/paint-enums.c:168 app/tools/gimppaintoptions-gui.c:163 +#: ../app/paint/paint-enums.c:168 ../app/tools/gimppaintoptions-gui.c:163 msgid "Incremental" msgstr "Steigernd" -#: app/pdb/color_cmds.c:140 app/tools/gimpbrightnesscontrasttool.c:85 +#: ../app/pdb/color_cmds.c:140 ../app/tools/gimpbrightnesscontrasttool.c:85 msgid "Brightness-Contrast" msgstr "Helligkeit-Kontrast" -#: app/pdb/color_cmds.c:457 app/tools/gimpposterizetool.c:78 +#: ../app/pdb/color_cmds.c:457 ../app/tools/gimpposterizetool.c:78 msgid "Posterize" msgstr "Posterisieren" -#: app/pdb/color_cmds.c:745 app/pdb/color_cmds.c:870 -#: app/tools/gimpcurvestool.c:141 +#: ../app/pdb/color_cmds.c:745 ../app/pdb/color_cmds.c:870 +#: ../app/tools/gimpcurvestool.c:141 msgid "Curves" msgstr "Farbkurven" -#: app/pdb/color_cmds.c:995 app/tools/gimpcolorbalancetool.c:96 +#: ../app/pdb/color_cmds.c:995 ../app/tools/gimpcolorbalancetool.c:96 msgid "Color Balance" msgstr "Farbabgleich" -#: app/pdb/color_cmds.c:1120 app/tools/gimpcolorizetool.c:96 +#: ../app/pdb/color_cmds.c:1120 ../app/tools/gimpcolorizetool.c:96 msgid "Colorize" msgstr "Einfärben" -#: app/pdb/color_cmds.c:1399 app/tools/gimphuesaturationtool.c:110 +#: ../app/pdb/color_cmds.c:1399 ../app/tools/gimphuesaturationtool.c:110 msgid "Hue-Saturation" msgstr "Farbton-Sättigung" -#: app/pdb/color_cmds.c:1506 app/tools/gimpthresholdtool.c:92 +#: ../app/pdb/color_cmds.c:1506 ../app/tools/gimpthresholdtool.c:92 msgid "Threshold" msgstr "Schwellwert" -#: app/pdb/drawable_transform_cmds.c:249 app/pdb/drawable_transform_cmds.c:404 +#: ../app/pdb/drawable_transform_cmds.c:249 +#: ../app/pdb/drawable_transform_cmds.c:404 msgid "Flip..." msgstr "Spiegeln..." -#: app/pdb/drawable_transform_cmds.c:563 app/pdb/drawable_transform_cmds.c:746 -#: app/pdb/transform_tools_cmds.c:197 app/tools/gimpperspectivetool.c:141 +#: ../app/pdb/drawable_transform_cmds.c:563 +#: ../app/pdb/drawable_transform_cmds.c:746 +#: ../app/pdb/transform_tools_cmds.c:197 +#: ../app/tools/gimpperspectivetool.c:141 msgid "Perspective..." msgstr "Perspektive..." -#: app/pdb/drawable_transform_cmds.c:1650 -#: app/pdb/drawable_transform_cmds.c:1791 app/pdb/transform_tools_cmds.c:586 -#: app/tools/gimpsheartool.c:158 +#: ../app/pdb/drawable_transform_cmds.c:1650 +#: ../app/pdb/drawable_transform_cmds.c:1791 +#: ../app/pdb/transform_tools_cmds.c:586 ../app/tools/gimpsheartool.c:158 msgid "Shearing..." msgstr "Scheren..." -#: app/pdb/drawable_transform_cmds.c:1943 -#: app/pdb/drawable_transform_cmds.c:2124 -#: app/pdb/drawable_transform_cmds.c:2311 -#: app/pdb/drawable_transform_cmds.c:2512 app/pdb/transform_tools_cmds.c:719 +#: ../app/pdb/drawable_transform_cmds.c:1943 +#: ../app/pdb/drawable_transform_cmds.c:2124 +#: ../app/pdb/drawable_transform_cmds.c:2311 +#: ../app/pdb/drawable_transform_cmds.c:2512 +#: ../app/pdb/transform_tools_cmds.c:719 msgid "2D Transform..." msgstr "2D Transformation..." -#: app/pdb/edit_cmds.c:673 app/tools/gimpblendtool.c:249 +#: ../app/pdb/edit_cmds.c:673 ../app/tools/gimpblendtool.c:249 msgid "Blending..." msgstr "Farbverlauf..." -#: app/pdb/image_cmds.c:3756 app/text/gimptext-parasite.c:168 +#: ../app/pdb/image_cmds.c:3758 ../app/text/gimptext-parasite.c:168 msgid "(invalid UTF-8 string)" msgstr "(ungültige UTF-8-Zeichenkette)" -#: app/pdb/image_cmds.c:3898 +#: ../app/pdb/image_cmds.c:3900 msgid "" "Image resolution is out of bounds, using the default resolution instead." msgstr "" "Da die Auflösung des Bildes außerhalb des gültigen Bereiches liegt, wird die " "Vorgabeauflösung verwendet." -#: app/pdb/internal_procs.c:86 +#: ../app/pdb/internal_procs.c:86 msgid "Internal Procedures" msgstr "Interne Prozeduren" -#: app/pdb/internal_procs.c:86 +#: ../app/pdb/internal_procs.c:86 msgid "Brush" msgstr "Pinsel" -#: app/pdb/internal_procs.c:89 +#: ../app/pdb/internal_procs.c:89 msgid "Brush UI" msgstr "Pinsel UI" -#: app/pdb/internal_procs.c:98 app/tools/gimppaintoptions-gui.c:283 -#: app/widgets/gimpwidgets-constructors.c:75 -#: app/widgets/gimpwidgets-constructors.c:108 +#: ../app/pdb/internal_procs.c:98 ../app/tools/gimppaintoptions-gui.c:283 +#: ../app/widgets/gimpwidgets-constructors.c:75 +#: ../app/widgets/gimpwidgets-constructors.c:108 msgid "Color" msgstr "Farbe" -#: app/pdb/internal_procs.c:104 +#: ../app/pdb/internal_procs.c:104 msgid "Convert" msgstr "Umwandeln" -#: app/pdb/internal_procs.c:107 +#: ../app/pdb/internal_procs.c:107 msgid "Display procedures" msgstr "Anzeige-Prozeduren" -#: app/pdb/internal_procs.c:110 +#: ../app/pdb/internal_procs.c:110 msgid "Drawable procedures" msgstr "Bild-Prozeduren" -#: app/pdb/internal_procs.c:113 +#: ../app/pdb/internal_procs.c:113 msgid "Transformation procedures" msgstr "Transformationswerkzeug Prozeduren" -#: app/pdb/internal_procs.c:116 +#: ../app/pdb/internal_procs.c:116 msgid "Edit procedures" msgstr "Bearbeiten-Prozeduren" -#: app/pdb/internal_procs.c:119 +#: ../app/pdb/internal_procs.c:119 msgid "File Operations" msgstr "Datei-Prozeduren" -#: app/pdb/internal_procs.c:122 +#: ../app/pdb/internal_procs.c:122 msgid "Floating selections" msgstr "Schwebende Auswahlen" -#: app/pdb/internal_procs.c:125 +#: ../app/pdb/internal_procs.c:125 msgid "Font UI" msgstr "Schrift-UI" -#: app/pdb/internal_procs.c:131 +#: ../app/pdb/internal_procs.c:131 msgid "Gimprc procedures" msgstr "Gimprc-Prozeduren" -#: app/pdb/internal_procs.c:134 +#: ../app/pdb/internal_procs.c:134 msgid "Gradient" msgstr "Farbverlauf:" -#: app/pdb/internal_procs.c:137 +#: ../app/pdb/internal_procs.c:137 msgid "Gradient UI" msgstr "Farbverlauf-UI" -#: app/pdb/internal_procs.c:143 +#: ../app/pdb/internal_procs.c:143 msgid "Guide procedures" msgstr "Hilfslinien-Prozeduren" -#: app/pdb/internal_procs.c:146 +#: ../app/pdb/internal_procs.c:146 msgid "Help procedures" msgstr "Hilfe-Prozeduren" -#: app/pdb/internal_procs.c:155 +#: ../app/pdb/internal_procs.c:155 msgid "Message procedures" msgstr "Nachrichten-Prozeduren" -#: app/pdb/internal_procs.c:158 +#: ../app/pdb/internal_procs.c:158 msgid "Miscellaneous" msgstr "Verschiedenes" -#: app/pdb/internal_procs.c:161 +#: ../app/pdb/internal_procs.c:161 msgid "Paint Tool procedures" msgstr "Malwerkzeug Prozeduren" -#: app/pdb/internal_procs.c:164 +#: ../app/pdb/internal_procs.c:164 msgid "Palette" msgstr "Farbpalette" -#: app/pdb/internal_procs.c:167 +#: ../app/pdb/internal_procs.c:167 msgid "Palette UI" msgstr "Paletten-UI" -#: app/pdb/internal_procs.c:173 +#: ../app/pdb/internal_procs.c:173 msgid "Parasite procedures" msgstr "Parasiten-Prozeduren" -#: app/pdb/internal_procs.c:182 +#: ../app/pdb/internal_procs.c:182 msgid "Pattern UI" msgstr "Muster-UI" -#: app/pdb/internal_procs.c:188 +#: ../app/pdb/internal_procs.c:188 msgid "Plug-in" msgstr "Plugin" -#: app/pdb/internal_procs.c:191 +#: ../app/pdb/internal_procs.c:191 msgid "Procedural database" msgstr "Prozedurdatenbank" -#: app/pdb/internal_procs.c:194 app/widgets/gimpprogressdialog.c:239 +#: ../app/pdb/internal_procs.c:194 ../app/widgets/gimpprogressdialog.c:239 msgid "Progress" msgstr "Fortschritt" -#: app/pdb/internal_procs.c:197 +#: ../app/pdb/internal_procs.c:197 msgid "Image mask" msgstr "Bildmaske" -#: app/pdb/internal_procs.c:200 +#: ../app/pdb/internal_procs.c:200 msgid "Selection Tool procedures" msgstr "Auswahlwerkzeug Prozeduren" -#: app/pdb/internal_procs.c:203 +#: ../app/pdb/internal_procs.c:203 msgid "Text procedures" msgstr "Text Prozeduren" -#: app/pdb/internal_procs.c:206 +#: ../app/pdb/internal_procs.c:206 msgid "Transform Tool procedures" msgstr "Transformwerkzeug Prozeduren" -#: app/pdb/procedural_db.c:254 +#: ../app/pdb/procedural_db.c:254 #, c-format msgid "" "PDB calling error:\n" @@ -7996,7 +8042,7 @@ "PDB-Aufruffehler:\n" "Prozedur '%s' nicht gefunden" -#: app/pdb/procedural_db.c:275 app/pdb/procedural_db.c:387 +#: ../app/pdb/procedural_db.c:275 ../app/pdb/procedural_db.c:387 #, c-format msgid "" "PDB calling error for procedure '%s':\n" @@ -8005,32 +8051,32 @@ "PDB-Aufruffehler für Prozedur »%s«:\n" "Falscher Typ bei Argument #%d (%s erwartet, %s erhalten)" -#: app/pdb/procedural_db_cmds.c:80 +#: ../app/pdb/procedural_db_cmds.c:80 msgid "Internal GIMP procedure" msgstr "Interne GIMP Prozedur" -#: app/pdb/procedural_db_cmds.c:81 +#: ../app/pdb/procedural_db_cmds.c:81 msgid "GIMP Plug-In" msgstr "GIMP Plugin" -#: app/pdb/procedural_db_cmds.c:82 +#: ../app/pdb/procedural_db_cmds.c:82 msgid "GIMP Extension" msgstr "GIMP Erweiterung" -#: app/pdb/procedural_db_cmds.c:83 +#: ../app/pdb/procedural_db_cmds.c:83 msgid "Temporary Procedure" msgstr "Vorläufige Prozedur" -#: app/pdb/selection_tools_cmds.c:332 app/tools/gimpfreeselecttool.c:96 +#: ../app/pdb/selection_tools_cmds.c:332 ../app/tools/gimpfreeselecttool.c:96 msgid "Free Select" msgstr "Freie Auswahl" -#: app/plug-in/plug-in.c:544 app/plug-in/plug-in.c:574 +#: ../app/plug-in/plug-in.c:544 ../app/plug-in/plug-in.c:574 #, c-format msgid "Terminating plug-in: '%s'\n" msgstr "Plugin wird abgebrochen: »%s«\n" -#: app/plug-in/plug-in.c:730 +#: ../app/plug-in/plug-in.c:730 #, c-format msgid "" "Plug-In crashed: \"%s\"\n" @@ -8045,75 +8091,75 @@ "Das abgestürzte Plugin hat GIMP eventuell durcheinander gebracht. Am besten " "speichern Sie Ihre Bilder jetzt ab und starten GIMP neu." -#: app/plug-in/plug-in-rc.c:176 +#: ../app/plug-in/plug-in-rc.c:176 #, c-format msgid "Skipping '%s': wrong GIMP protocol version." msgstr "»%s« wird übersprungen: falsche GIMP-Protokollversion." -#: app/plug-in/plug-in-rc.c:432 +#: ../app/plug-in/plug-in-rc.c:432 #, c-format msgid "invalid value '%s' for icon type" msgstr "ungültiger Wert »%s« für Symboltyp" -#: app/plug-in/plug-in-rc.c:447 +#: ../app/plug-in/plug-in-rc.c:447 #, c-format msgid "invalid value '%ld' for icon type" msgstr "ungültiger Wert »%ld« für Symboltyp" -#: app/plug-in/plug-ins.c:139 +#: ../app/plug-in/plug-ins.c:139 msgid "Resource configuration" msgstr "Ressourcenkonfiguration" #. Query any plug-ins that have changed since we last wrote out #. * the pluginrc file. #. -#: app/plug-in/plug-ins.c:153 +#: ../app/plug-in/plug-ins.c:153 msgid "Querying new Plug-ins" msgstr "Neue Plugins werden abgefragt" -#: app/plug-in/plug-ins.c:170 +#: ../app/plug-in/plug-ins.c:170 #, c-format msgid "Querying plug-in: '%s'\n" msgstr "Plugin »%s« wird abgefragt\n" #. initialize the plug-ins -#: app/plug-in/plug-ins.c:180 +#: ../app/plug-in/plug-ins.c:180 msgid "Initializing Plug-ins" msgstr "Plugins werden initialisiert" -#: app/plug-in/plug-ins.c:194 +#: ../app/plug-in/plug-ins.c:194 #, c-format msgid "Initializing plug-in: '%s'\n" msgstr "Plugin »%s« wird initialisiert\n" -#: app/plug-in/plug-ins.c:351 +#: ../app/plug-in/plug-ins.c:351 msgid "Starting Extensions" msgstr "Erweiterungen werden gestartet" -#: app/plug-in/plug-ins.c:358 +#: ../app/plug-in/plug-ins.c:358 #, c-format msgid "Starting extension: '%s'\n" msgstr "Erweiterung »%s« wird gestartet\n" -#: app/text/text-enums.c:81 +#: ../app/text/text-enums.c:81 msgid "Left justified" msgstr "Linksbündig" -#: app/text/text-enums.c:82 +#: ../app/text/text-enums.c:82 msgid "Right justified" msgstr "Rechtsbündig" -#: app/text/text-enums.c:83 +#: ../app/text/text-enums.c:83 msgid "Centered" msgstr "Zentriert" -#: app/text/text-enums.c:84 +#: ../app/text/text-enums.c:84 msgid "Filled" msgstr "Blocksatz" #. This is a so-called pangram; it's supposed to #. contain all characters found in the alphabet. -#: app/text/gimpfont.c:39 +#: ../app/text/gimpfont.c:39 msgid "" "Pack my box with\n" "five dozen liquor jugs." @@ -8121,56 +8167,56 @@ "Zwei Boxkämpfer jagen\n" "Eva quer durch Sylt." -#: app/text/gimptext-compat.c:106 app/tools/gimptexttool.c:697 +#: ../app/text/gimptext-compat.c:108 ../app/tools/gimptexttool.c:699 msgid "Add Text Layer" msgstr "Textebene hinzufügen" -#: app/text/gimptextlayer.c:170 +#: ../app/text/gimptextlayer.c:170 msgid "Text Layer" msgstr "Textebene" -#: app/text/gimptextlayer.c:171 +#: ../app/text/gimptextlayer.c:171 msgid "Rename Text Layer" msgstr "Textebene umbenennen" -#: app/text/gimptextlayer.c:172 +#: ../app/text/gimptextlayer.c:172 msgid "Move Text Layer" msgstr "Textebene verschieben" -#: app/text/gimptextlayer.c:173 +#: ../app/text/gimptextlayer.c:173 msgid "Scale Text Layer" msgstr "Textebene skalieren" -#: app/text/gimptextlayer.c:174 +#: ../app/text/gimptextlayer.c:174 msgid "Resize Text Layer" msgstr "Textebenengröße ändern" -#: app/text/gimptextlayer.c:175 +#: ../app/text/gimptextlayer.c:175 msgid "Flip Text Layer" msgstr "Textebene spiegeln" -#: app/text/gimptextlayer.c:176 +#: ../app/text/gimptextlayer.c:176 msgid "Rotate Text Layer" msgstr "Textebene drehen" -#: app/text/gimptextlayer.c:177 +#: ../app/text/gimptextlayer.c:177 msgid "Transform Text Layer" msgstr "Textebene transformieren" -#: app/text/gimptextlayer.c:531 +#: ../app/text/gimptextlayer.c:531 msgid "Discard Text Information" msgstr "Textinformationen verwerfen" -#: app/text/gimptextlayer.c:581 +#: ../app/text/gimptextlayer.c:581 msgid "Due to lack of any fonts, text functionality is not available." msgstr "" "Die Text-Funktion ist nicht verfügbar, da keine Schriften vorhanden sind." -#: app/text/gimptextlayer.c:616 +#: ../app/text/gimptextlayer.c:616 msgid "Empty Text Layer" msgstr "Leere Textebene" -#: app/text/gimptextlayer-xcf.c:73 +#: ../app/text/gimptextlayer-xcf.c:73 #, c-format msgid "" "Problems parsing the text parasite for layer '%s':\n" @@ -8185,1128 +8231,1140 @@ "Möglicherweise sind eines oder mehrere Textattribute fehlerhaft. Falls Sie " "die Textebene nicht bearbeiten, können Sie dies getrost ignorieren." -#: app/tools/tools-enums.c:25 +#: ../app/tools/tools-enums.c:25 msgid "Pick only" msgstr "Nur auswählen" -#: app/tools/tools-enums.c:26 +#: ../app/tools/tools-enums.c:26 msgid "Set foreground color" msgstr "Vordergrundfarbe ersetzen" -#: app/tools/tools-enums.c:27 +#: ../app/tools/tools-enums.c:27 msgid "Set background color" msgstr "Hintergrundfarbe ersetzen" -#: app/tools/tools-enums.c:54 +#: ../app/tools/tools-enums.c:54 msgid "Crop" msgstr "Zuschneiden" -#: app/tools/tools-enums.c:55 +#: ../app/tools/tools-enums.c:55 msgid "Resize" msgstr "Größe ändern" -#: app/tools/tools-enums.c:83 +#: ../app/tools/tools-enums.c:83 msgid "Free select" msgstr "Freie Auswahl" -#: app/tools/tools-enums.c:84 +#: ../app/tools/tools-enums.c:84 msgid "Fixed size" msgstr "Feste Größe" -#: app/tools/tools-enums.c:85 +#: ../app/tools/tools-enums.c:85 msgid "Fixed aspect ratio" msgstr "Festes Seitenverhältnis" -#: app/tools/tools-enums.c:113 +#: ../app/tools/tools-enums.c:113 msgid "Transform layer" msgstr "Ebene transformieren" -#: app/tools/tools-enums.c:114 +#: ../app/tools/tools-enums.c:114 msgid "Transform selection" msgstr "Auswahl transformieren" -#: app/tools/tools-enums.c:115 +#: ../app/tools/tools-enums.c:115 msgid "Transform path" msgstr "Pfad transformieren" -#: app/tools/tools-enums.c:143 +#: ../app/tools/tools-enums.c:143 msgid "Design" msgstr "Design" -#: app/tools/tools-enums.c:145 app/tools/gimpmovetool.c:116 +#: ../app/tools/tools-enums.c:145 ../app/tools/gimpmovetool.c:116 msgid "Move" msgstr "Verschieben" -#: app/tools/tools-enums.c:174 +#: ../app/tools/tools-enums.c:174 msgid "Outline" msgstr "Umriss" -#: app/tools/tools-enums.c:177 +#: ../app/tools/tools-enums.c:177 msgid "Image + Grid" msgstr "Bild + Gitter" -#: app/tools/tools-enums.c:204 +#: ../app/tools/tools-enums.c:204 msgid "Number of grid lines" msgstr "Anzahl der Gitterlinien" -#: app/tools/tools-enums.c:205 +#: ../app/tools/tools-enums.c:205 msgid "Grid line spacing" msgstr "Abstand der Gitterlinien" -#: app/tools/gimp-tools.c:283 +#: ../app/tools/gimp-tools.c:284 msgid "This tool has no options." msgstr "Dieses Werkzeug verfügt über keine Einstellungsmöglichkeiten." -#: app/tools/gimpairbrushtool.c:56 +#: ../app/tools/gimpairbrushtool.c:56 msgid "Airbrush with variable pressure" msgstr "Mit variablem Druck sprühen" -#: app/tools/gimpairbrushtool.c:57 +#: ../app/tools/gimpairbrushtool.c:57 msgid "_Airbrush" msgstr "S_prühpistole" -#: app/tools/gimpairbrushtool.c:123 app/tools/gimpconvolvetool.c:211 -#: app/tools/gimpsmudgetool.c:123 +#: ../app/tools/gimpairbrushtool.c:123 ../app/tools/gimpconvolvetool.c:211 +#: ../app/tools/gimpsmudgetool.c:123 msgid "Rate:" msgstr "Rate:" -#: app/tools/gimpairbrushtool.c:129 +#: ../app/tools/gimpairbrushtool.c:129 msgid "Pressure:" msgstr "Druck:" -#: app/tools/gimpblendoptions.c:246 +#: ../app/tools/gimpblendoptions.c:246 msgid "Offset:" msgstr "Versatz:" -#: app/tools/gimpblendoptions.c:255 app/widgets/gimpbrusheditor.c:145 +#: ../app/tools/gimpblendoptions.c:255 ../app/widgets/gimpbrusheditor.c:145 msgid "Shape:" msgstr "Form:" -#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:417 +#: ../app/tools/gimpblendoptions.c:261 ../app/tools/gimppaintoptions-gui.c:419 msgid "Repeat:" msgstr "Wiederholung:" -#: app/tools/gimpblendoptions.c:279 +#: ../app/tools/gimpblendoptions.c:279 msgid "Adaptive supersampling" msgstr "Anpassende Hochrechnung" -#: app/tools/gimpblendoptions.c:297 +#: ../app/tools/gimpblendoptions.c:297 msgid "Max Depth:" msgstr "Maximale Tiefe:" -#: app/tools/gimpblendoptions.c:304 app/tools/gimpbucketfilloptions.c:295 -#: app/tools/gimpmagnifyoptions.c:226 app/tools/gimpselectionoptions.c:466 +#: ../app/tools/gimpblendoptions.c:304 +#: ../app/tools/gimpbucketfilloptions.c:295 +#: ../app/tools/gimpmagnifyoptions.c:226 +#: ../app/tools/gimpselectionoptions.c:466 msgid "Threshold:" msgstr "Schwelle:" -#: app/tools/gimpblendtool.c:102 +#: ../app/tools/gimpblendtool.c:102 msgid "Fill with a color gradient" msgstr "Mit einem Farbverlauf füllen" -#: app/tools/gimpblendtool.c:103 +#: ../app/tools/gimpblendtool.c:103 msgid "Blen_d" msgstr "_Farbverlauf" -#: app/tools/gimpblendtool.c:191 +#: ../app/tools/gimpblendtool.c:191 msgid "Blend: Invalid for indexed images." msgstr "Ãœbergang: Bei indizierten Bildern nicht möglich." #. initialize the statusbar display -#: app/tools/gimpblendtool.c:209 app/tools/gimpblendtool.c:308 +#: ../app/tools/gimpblendtool.c:209 ../app/tools/gimpblendtool.c:308 msgid "Blend: " msgstr "Farbverlauf: " -#: app/tools/gimpbrightnesscontrasttool.c:86 +#: ../app/tools/gimpbrightnesscontrasttool.c:86 msgid "Adjust brightness and contrast" msgstr "Helligkeit und Kontrast anpassen" -#: app/tools/gimpbrightnesscontrasttool.c:87 +#: ../app/tools/gimpbrightnesscontrasttool.c:87 msgid "B_rightness-Contrast..." msgstr "_Helligkeit-Kontrast" -#: app/tools/gimpbrightnesscontrasttool.c:138 +#: ../app/tools/gimpbrightnesscontrasttool.c:138 msgid "Adjust Brightness and Contrast" msgstr "Helligkeit und Kontrast anpassen" -#: app/tools/gimpbrightnesscontrasttool.c:181 +#: ../app/tools/gimpbrightnesscontrasttool.c:181 msgid "Brightness-Contrast does not operate on indexed layers." msgstr "Helligkeit-Kontrast funktioniert nicht bei indizierten Ebenen." -#: app/tools/gimpbrightnesscontrasttool.c:236 +#: ../app/tools/gimpbrightnesscontrasttool.c:236 msgid "_Brightness:" msgstr "_Helligkeit:" -#: app/tools/gimpbrightnesscontrasttool.c:251 +#: ../app/tools/gimpbrightnesscontrasttool.c:251 msgid "Con_trast:" msgstr "Kon_trast:" -#: app/tools/gimpbucketfilloptions.c:129 +#: ../app/tools/gimpbucketfilloptions.c:129 msgid "Allow completely transparent regions to be filled" msgstr "Füllen von vollständig transparenten Bereichen zulassen" -#: app/tools/gimpbucketfilloptions.c:135 +#: ../app/tools/gimpbucketfilloptions.c:135 msgid "Base filled area on all visible layers" msgstr "Gefüllten Bereich auf alle sichtbaren Bereiche stützen" -#: app/tools/gimpbucketfilloptions.c:141 app/tools/gimpselectionoptions.c:161 +#: ../app/tools/gimpbucketfilloptions.c:141 +#: ../app/tools/gimpselectionoptions.c:161 msgid "Maximum color difference" msgstr "Maximale Farbdifferenz" #. fill type -#: app/tools/gimpbucketfilloptions.c:238 +#: ../app/tools/gimpbucketfilloptions.c:238 #, c-format msgid "Fill Type %s" msgstr "Füllart %s" #. fill selection -#: app/tools/gimpbucketfilloptions.c:250 +#: ../app/tools/gimpbucketfilloptions.c:250 #, c-format msgid "Affected Area %s" msgstr "Beeinflusster Bereich %s" -#: app/tools/gimpbucketfilloptions.c:254 +#: ../app/tools/gimpbucketfilloptions.c:254 msgid "Fill whole selection" msgstr "Ganze Auswahl füllen" -#: app/tools/gimpbucketfilloptions.c:255 +#: ../app/tools/gimpbucketfilloptions.c:255 msgid "Fill similar colors" msgstr "Ähnliche Farben füllen" -#: app/tools/gimpbucketfilloptions.c:261 app/tools/gimpselectionoptions.c:438 +#: ../app/tools/gimpbucketfilloptions.c:261 +#: ../app/tools/gimpselectionoptions.c:438 msgid "Finding Similar Colors" msgstr "Ähnliche Farben finden" -#: app/tools/gimpbucketfilloptions.c:277 +#: ../app/tools/gimpbucketfilloptions.c:277 msgid "Fill transparent areas" msgstr "Transparente Bereiche füllen" -#: app/tools/gimpbucketfilloptions.c:283 -#: app/tools/gimpcolorpickeroptions.c:179 app/tools/gimpselectionoptions.c:454 -#: app/tools/gimpselectionoptions.c:502 +#: ../app/tools/gimpbucketfilloptions.c:283 +#: ../app/tools/gimpcolorpickeroptions.c:179 +#: ../app/tools/gimpselectionoptions.c:454 +#: ../app/tools/gimpselectionoptions.c:502 msgid "Sample merged" msgstr "Vereinigung überprüfen" -#: app/tools/gimpbucketfilltool.c:92 +#: ../app/tools/gimpbucketfilltool.c:92 msgid "Fill with a color or pattern" msgstr "Mit einer Farbe oder einem Muster füllen" -#: app/tools/gimpbucketfilltool.c:93 +#: ../app/tools/gimpbucketfilltool.c:93 msgid "_Bucket Fill" msgstr "_Füllen" -#: app/tools/gimpbycolorselecttool.c:82 +#: ../app/tools/gimpbycolorselecttool.c:82 msgid "Select By Color" msgstr "Nach Farbe auswählen" -#: app/tools/gimpbycolorselecttool.c:83 +#: ../app/tools/gimpbycolorselecttool.c:83 msgid "Select regions by color" msgstr "Bereiche nach Farbe wählen" -#: app/tools/gimpbycolorselecttool.c:84 +#: ../app/tools/gimpbycolorselecttool.c:84 msgid "_By Color Select" msgstr "_Nach Farbe auswählen" -#: app/tools/gimpclonetool.c:90 +#: ../app/tools/gimpclonetool.c:90 msgid "Paint using Patterns or Image Regions" msgstr "Mit Mustern oder Bildteilen zeichnen" -#: app/tools/gimpclonetool.c:91 +#: ../app/tools/gimpclonetool.c:91 msgid "_Clone" msgstr "_Klonen" -#: app/tools/gimpclonetool.c:266 +#: ../app/tools/gimpclonetool.c:288 msgid "Source" msgstr "Quelle" -#: app/tools/gimpclonetool.c:275 +#: ../app/tools/gimpclonetool.c:297 msgid "Alignment" msgstr "Ausrichtung" -#: app/tools/gimpcolorbalancetool.c:97 +#: ../app/tools/gimpcolorbalancetool.c:97 msgid "Adjust color balance" msgstr "Farbabgleich anpassen" -#: app/tools/gimpcolorbalancetool.c:98 +#: ../app/tools/gimpcolorbalancetool.c:98 msgid "Color _Balance..." msgstr "Farb_abgleich" -#: app/tools/gimpcolorbalancetool.c:149 +#: ../app/tools/gimpcolorbalancetool.c:149 msgid "Adjust Color Balance" msgstr "Farbabgleich anpassen" -#: app/tools/gimpcolorbalancetool.c:193 +#: ../app/tools/gimpcolorbalancetool.c:193 msgid "Color balance operates only on RGB color layers." msgstr "Der Farbabgleich funktioniert nur bei RGB Ebenen." -#: app/tools/gimpcolorbalancetool.c:276 +#: ../app/tools/gimpcolorbalancetool.c:276 msgid "Select Range to Modify" msgstr "Den zu bearbeitenden Bereich wählen" -#: app/tools/gimpcolorbalancetool.c:284 +#: ../app/tools/gimpcolorbalancetool.c:284 msgid "Modify Selected Range's Color Levels" msgstr "Die Farbwerte des gewählten Bereichs bearbeiten" -#: app/tools/gimpcolorbalancetool.c:301 +#: ../app/tools/gimpcolorbalancetool.c:301 msgid "Cyan" msgstr "Cyan" -#: app/tools/gimpcolorbalancetool.c:308 +#: ../app/tools/gimpcolorbalancetool.c:308 msgid "Magenta" msgstr "Magenta" -#: app/tools/gimpcolorbalancetool.c:315 +#: ../app/tools/gimpcolorbalancetool.c:315 msgid "Yellow" msgstr "Gelb" -#: app/tools/gimpcolorbalancetool.c:325 +#: ../app/tools/gimpcolorbalancetool.c:325 msgid "R_eset range" msgstr "Bereich _zurücksetzen" -#: app/tools/gimpcolorbalancetool.c:334 +#: ../app/tools/gimpcolorbalancetool.c:334 msgid "Preserve _luminosity" msgstr "_Helligkeit erhalten" -#: app/tools/gimpcolorizetool.c:97 +#: ../app/tools/gimpcolorizetool.c:97 msgid "Colorize the image" msgstr "Das Bild einfärben" -#: app/tools/gimpcolorizetool.c:98 +#: ../app/tools/gimpcolorizetool.c:98 msgid "Colori_ze..." msgstr "_Einfärben" -#: app/tools/gimpcolorizetool.c:152 +#: ../app/tools/gimpcolorizetool.c:152 msgid "Colorize the Image" msgstr "Das Bild einfärben" -#: app/tools/gimpcolorizetool.c:195 +#: ../app/tools/gimpcolorizetool.c:195 msgid "Colorize operates only on RGB color layers." msgstr "Nur RGB Ebenen können eingefärbt werden." -#: app/tools/gimpcolorizetool.c:235 +#: ../app/tools/gimpcolorizetool.c:235 msgid "Select Color" msgstr "Farbe auswählen" -#: app/tools/gimpcolorizetool.c:253 app/tools/gimphuesaturationtool.c:361 +#: ../app/tools/gimpcolorizetool.c:253 +#: ../app/tools/gimphuesaturationtool.c:361 msgid "_Hue:" msgstr "_Farbton:" -#: app/tools/gimpcolorizetool.c:267 app/tools/gimphuesaturationtool.c:389 +#: ../app/tools/gimpcolorizetool.c:267 +#: ../app/tools/gimphuesaturationtool.c:389 msgid "_Saturation:" msgstr "_Sättigung:" -#: app/tools/gimpcolorizetool.c:281 app/tools/gimphuesaturationtool.c:375 +#: ../app/tools/gimpcolorizetool.c:281 +#: ../app/tools/gimphuesaturationtool.c:375 msgid "_Lightness:" msgstr "_Helligkeit:" -#: app/tools/gimpcoloroptions.c:184 +#: ../app/tools/gimpcoloroptions.c:184 msgid "Sample average" msgstr "Abtastgröße" -#: app/tools/gimpcoloroptions.c:194 app/tools/gimpselectionoptions.c:416 -#: app/widgets/gimpbrusheditor.c:153 +#: ../app/tools/gimpcoloroptions.c:194 ../app/tools/gimpselectionoptions.c:416 +#: ../app/widgets/gimpbrusheditor.c:153 msgid "Radius:" msgstr "Radius:" #. the pick FG/BG frame -#: app/tools/gimpcolorpickeroptions.c:184 +#: ../app/tools/gimpcolorpickeroptions.c:184 #, c-format msgid "Pick Mode %s" msgstr "Auswahlmodus %s" #. the add to palette toggle -#: app/tools/gimpcolorpickeroptions.c:193 +#: ../app/tools/gimpcolorpickeroptions.c:193 #, c-format msgid "Add to palette %s" msgstr "Zur Farbpalette hinzufügen %s" -#: app/tools/gimpcolorpickertool.c:99 +#: ../app/tools/gimpcolorpickertool.c:99 msgid "Color Picker" msgstr "Farbpipette" -#: app/tools/gimpcolorpickertool.c:100 +#: ../app/tools/gimpcolorpickertool.c:100 msgid "Pick colors from the image" msgstr "Farben aus dem Bild wählen" -#: app/tools/gimpcolorpickertool.c:101 +#: ../app/tools/gimpcolorpickertool.c:101 msgid "C_olor Picker" msgstr "Fa_rbpipette" #. tool->gdisp->shell -#: app/tools/gimpcolorpickertool.c:343 +#: ../app/tools/gimpcolorpickertool.c:343 msgid "Color Picker Information" msgstr "Informationen zur Farbpipette" -#: app/tools/gimpconvolvetool.c:71 +#: ../app/tools/gimpconvolvetool.c:71 msgid "Blur or Sharpen" msgstr "Weichzeichnen / Schärfen" -#: app/tools/gimpconvolvetool.c:72 +#: ../app/tools/gimpconvolvetool.c:72 msgid "Con_volve" msgstr "_Verknüpfen" #. the type radio box -#: app/tools/gimpconvolvetool.c:193 +#: ../app/tools/gimpconvolvetool.c:193 #, c-format msgid "Convolve Type %s" msgstr "Verknüpfungsart %s" #. tool toggle -#: app/tools/gimpcropoptions.c:188 app/tools/gimpmagnifyoptions.c:208 -#: app/tools/gimpmoveoptions.c:217 +#: ../app/tools/gimpcropoptions.c:188 ../app/tools/gimpmagnifyoptions.c:208 +#: ../app/tools/gimpmoveoptions.c:217 #, c-format msgid "Tool Toggle %s" msgstr "Werkzeug-Modus %s" -#: app/tools/gimpcropoptions.c:200 +#: ../app/tools/gimpcropoptions.c:200 msgid "Current layer only" msgstr "Nur die aktive Ebene" #. enlarge toggle -#: app/tools/gimpcropoptions.c:205 +#: ../app/tools/gimpcropoptions.c:205 #, c-format msgid "Allow enlarging %s" msgstr "Vergrößern zulassen %s" #. layer toggle -#: app/tools/gimpcropoptions.c:215 +#: ../app/tools/gimpcropoptions.c:215 #, c-format msgid "Keep aspect ratio %s" msgstr "Seitenverhältnis von %s beibehalten" -#: app/tools/gimpcroptool.c:164 +#: ../app/tools/gimpcroptool.c:164 msgid "Crop & Resize" msgstr "Zuschneiden / Größe ändern" -#: app/tools/gimpcroptool.c:165 +#: ../app/tools/gimpcroptool.c:165 msgid "Crop or Resize an image" msgstr "Bildgröße ändern / Bild zuschneiden" -#: app/tools/gimpcroptool.c:166 +#: ../app/tools/gimpcroptool.c:166 msgid "_Crop & Resize" msgstr "_Zuschneiden / Größe ändern" #. initialize the statusbar display -#: app/tools/gimpcroptool.c:499 app/tools/gimpcroptool.c:983 +#: ../app/tools/gimpcroptool.c:499 ../app/tools/gimpcroptool.c:983 msgid "Crop: " msgstr "Zuschneiden: " -#: app/tools/gimpcroptool.c:1010 +#: ../app/tools/gimpcroptool.c:1010 msgid "Crop & Resize Information" msgstr "Zuschneideinformationen" -#: app/tools/gimpcroptool.c:1029 +#: ../app/tools/gimpcroptool.c:1029 msgid "Origin X:" msgstr "Ursprung X:" -#: app/tools/gimpcroptool.c:1033 +#: ../app/tools/gimpcroptool.c:1033 msgid "Origin Y:" msgstr "Ursprung Y:" -#: app/tools/gimpcroptool.c:1071 app/widgets/gimpbrusheditor.c:194 +#: ../app/tools/gimpcroptool.c:1071 ../app/widgets/gimpbrusheditor.c:194 msgid "Aspect ratio:" msgstr "Seitenverhältnis:" -#: app/tools/gimpcroptool.c:1082 +#: ../app/tools/gimpcroptool.c:1082 msgid "From selection" msgstr "Aus Auswahl" -#: app/tools/gimpcroptool.c:1090 +#: ../app/tools/gimpcroptool.c:1090 msgid "Auto shrink" msgstr "Automatisch schrumpfen" -#: app/tools/gimpcurvestool.c:142 +#: ../app/tools/gimpcurvestool.c:142 msgid "Adjust color curves" msgstr "Farbkurven anpassen" -#: app/tools/gimpcurvestool.c:143 +#: ../app/tools/gimpcurvestool.c:143 msgid "_Curves..." msgstr "_Kurven" -#: app/tools/gimpcurvestool.c:202 +#: ../app/tools/gimpcurvestool.c:202 msgid "Adjust Color Curves" msgstr "Farbkurven anpassen" -#: app/tools/gimpcurvestool.c:204 +#: ../app/tools/gimpcurvestool.c:204 msgid "Load Curves" msgstr "Kurven öffnen" -#: app/tools/gimpcurvestool.c:205 +#: ../app/tools/gimpcurvestool.c:205 msgid "Load curves settings from file" msgstr "Kurveneinstellungen aus Datei laden" -#: app/tools/gimpcurvestool.c:206 +#: ../app/tools/gimpcurvestool.c:206 msgid "Save Curves" msgstr "Kurven speichern" -#: app/tools/gimpcurvestool.c:207 +#: ../app/tools/gimpcurvestool.c:207 msgid "Save curves settings to file" msgstr "Aktuelle Einstellungen in Datei speichern" -#: app/tools/gimpcurvestool.c:283 +#: ../app/tools/gimpcurvestool.c:283 msgid "Curves for indexed layers cannot be adjusted." msgstr "Kurven können bei indizierten Ebenen nicht angepaßt werden." -#: app/tools/gimpcurvestool.c:479 app/tools/gimplevelstool.c:415 -#: app/widgets/gimphistogrameditor.c:161 +#: ../app/tools/gimpcurvestool.c:479 ../app/tools/gimplevelstool.c:415 +#: ../app/widgets/gimphistogrameditor.c:161 msgid "Channel:" msgstr "Kanal:" -#: app/tools/gimpcurvestool.c:494 app/tools/gimplevelstool.c:430 +#: ../app/tools/gimpcurvestool.c:494 ../app/tools/gimplevelstool.c:430 msgid "R_eset channel" msgstr "Kanal _zurücksetzen" #. Horizontal button box for load / save -#: app/tools/gimpcurvestool.c:596 app/tools/gimplevelstool.c:640 +#: ../app/tools/gimpcurvestool.c:596 ../app/tools/gimplevelstool.c:640 msgid "All Channels" msgstr "Alle Kanäle" #. The radio box for selecting the curve type -#: app/tools/gimpcurvestool.c:614 +#: ../app/tools/gimpcurvestool.c:614 msgid "Curve Type" msgstr "Kurventyp" -#: app/tools/gimpdodgeburntool.c:71 +#: ../app/tools/gimpdodgeburntool.c:71 msgid "Dodge or Burn strokes" msgstr "Abwedeln / Nachbelichten" -#: app/tools/gimpdodgeburntool.c:72 +#: ../app/tools/gimpdodgeburntool.c:72 msgid "Dod_geBurn" msgstr "Ab_wedeln bzw. Nachbelichten" #. the type (dodge or burn) -#: app/tools/gimpdodgeburntool.c:192 +#: ../app/tools/gimpdodgeburntool.c:192 #, c-format msgid "Type %s" msgstr "Typ %s" -#: app/tools/gimpdodgeburntool.c:204 +#: ../app/tools/gimpdodgeburntool.c:204 msgid "Mode" msgstr "Modus" -#: app/tools/gimpdodgeburntool.c:216 +#: ../app/tools/gimpdodgeburntool.c:216 msgid "Exposure:" msgstr "Belichtung:" -#: app/tools/gimpeditselectiontool.c:262 -#: app/tools/gimpeditselectiontool.c:1203 +#: ../app/tools/gimpeditselectiontool.c:262 +#: ../app/tools/gimpeditselectiontool.c:1203 msgid "Move Floating Selection" msgstr "Schwebende Auswahl bewegen" -#: app/tools/gimpeditselectiontool.c:464 app/tools/gimpeditselectiontool.c:732 +#: ../app/tools/gimpeditselectiontool.c:464 +#: ../app/tools/gimpeditselectiontool.c:732 msgid "Move: " msgstr "Verschieben: " -#: app/tools/gimpellipseselecttool.c:72 +#: ../app/tools/gimpellipseselecttool.c:72 msgid "Select elliptical regions" msgstr "Einen elliptischen Bereich wählen" -#: app/tools/gimpellipseselecttool.c:73 +#: ../app/tools/gimpellipseselecttool.c:73 msgid "_Ellipse Select" msgstr "_Elliptische Auswahl" -#: app/tools/gimperasertool.c:71 +#: ../app/tools/gimperasertool.c:71 msgid "Erase to background or transparency" msgstr "Bis zum Hintergrund oder zur Transparenz löschen" -#: app/tools/gimperasertool.c:72 +#: ../app/tools/gimperasertool.c:72 msgid "_Eraser" msgstr "_Radierer" #. the anti_erase toggle -#: app/tools/gimperasertool.c:185 +#: ../app/tools/gimperasertool.c:185 #, c-format msgid "Anti erase %s" msgstr "Un-Radieren %s" -#: app/tools/gimpflipoptions.c:161 app/tools/gimpmoveoptions.c:211 -#: app/tools/gimptransformoptions.c:323 +#: ../app/tools/gimpflipoptions.c:161 ../app/tools/gimpmoveoptions.c:211 +#: ../app/tools/gimptransformoptions.c:323 msgid "Affect:" msgstr "Wirkt auf:" #. tool toggle -#: app/tools/gimpflipoptions.c:167 +#: ../app/tools/gimpflipoptions.c:167 #, c-format msgid "Flip Type %s" msgstr "Spiegeltyp %s" -#: app/tools/gimpfliptool.c:83 +#: ../app/tools/gimpfliptool.c:83 msgid "Flip the layer or selection" msgstr "Die Ebene oder Auswahl spiegeln" -#: app/tools/gimpfliptool.c:84 +#: ../app/tools/gimpfliptool.c:84 msgid "_Flip" msgstr "Sp_iegeln" -#: app/tools/gimpfreeselecttool.c:97 +#: ../app/tools/gimpfreeselecttool.c:97 msgid "Select hand-drawn regions" msgstr "Einen Bereich frei Hand wählen" -#: app/tools/gimpfreeselecttool.c:98 +#: ../app/tools/gimpfreeselecttool.c:98 msgid "_Free Select" msgstr "_Freie Auswahl" -#: app/tools/gimpfuzzyselecttool.c:98 +#: ../app/tools/gimpfuzzyselecttool.c:98 msgid "Select contiguous regions" msgstr "Zusammenhängenden Bereich wählen" -#: app/tools/gimpfuzzyselecttool.c:99 +#: ../app/tools/gimpfuzzyselecttool.c:99 msgid "Fu_zzy Select" msgstr "_Zauberstab" -#: app/tools/gimphistogramoptions.c:151 +#: ../app/tools/gimphistogramoptions.c:151 msgid "Histogram Scale" msgstr "Histogrammskala" -#: app/tools/gimphuesaturationtool.c:111 +#: ../app/tools/gimphuesaturationtool.c:111 msgid "Adjust hue and saturation" msgstr "Farbton und Sättigung anpassen" -#: app/tools/gimphuesaturationtool.c:112 +#: ../app/tools/gimphuesaturationtool.c:112 msgid "Hue-_Saturation..." msgstr "Farb_ton-Sättigung" -#: app/tools/gimphuesaturationtool.c:166 +#: ../app/tools/gimphuesaturationtool.c:166 msgid "Adjust hue / lightness / saturation" msgstr "Farbton / Helligkeit / Sättigung anpassen" -#: app/tools/gimphuesaturationtool.c:210 +#: ../app/tools/gimphuesaturationtool.c:210 msgid "Hue-Saturation operates only on RGB color layers." msgstr "Farbton-Sättigung funktioniert nur bei RGB Ebenen." -#: app/tools/gimphuesaturationtool.c:263 +#: ../app/tools/gimphuesaturationtool.c:263 msgid "M_aster" msgstr "A_lle" -#: app/tools/gimphuesaturationtool.c:264 +#: ../app/tools/gimphuesaturationtool.c:264 msgid "_R" msgstr "_R" -#: app/tools/gimphuesaturationtool.c:265 +#: ../app/tools/gimphuesaturationtool.c:265 msgid "_Y" msgstr "_Y" -#: app/tools/gimphuesaturationtool.c:266 +#: ../app/tools/gimphuesaturationtool.c:266 msgid "_G" msgstr "_G" -#: app/tools/gimphuesaturationtool.c:267 +#: ../app/tools/gimphuesaturationtool.c:267 msgid "_C" msgstr "_C" -#: app/tools/gimphuesaturationtool.c:268 +#: ../app/tools/gimphuesaturationtool.c:268 msgid "_B" msgstr "_B" -#: app/tools/gimphuesaturationtool.c:269 +#: ../app/tools/gimphuesaturationtool.c:269 msgid "_M" msgstr "_M" -#: app/tools/gimphuesaturationtool.c:272 +#: ../app/tools/gimphuesaturationtool.c:272 msgid "Select Primary Color to Modify" msgstr "Zu bearbeitende Primärfarbe auswählen" -#: app/tools/gimphuesaturationtool.c:300 +#: ../app/tools/gimphuesaturationtool.c:300 msgid "Modify all colors" msgstr "Alle Farben bearbeiten" -#: app/tools/gimphuesaturationtool.c:343 +#: ../app/tools/gimphuesaturationtool.c:343 msgid "Modify Selected Color" msgstr "Gewählte Farbe bearbeiten" -#: app/tools/gimphuesaturationtool.c:405 +#: ../app/tools/gimphuesaturationtool.c:405 msgid "R_eset color" msgstr "Farbe _zurücksetzen" -#: app/tools/gimpimagemaptool.c:259 app/widgets/gimpthumbbox.c:354 +#: ../app/tools/gimpimagemaptool.c:259 ../app/widgets/gimpthumbbox.c:354 msgid "_Preview" msgstr "_Vorschau" -#: app/tools/gimpimagemaptool.c:292 +#: ../app/tools/gimpimagemaptool.c:292 msgid "Quick Load" msgstr "Schnelles Laden" -#: app/tools/gimpimagemaptool.c:322 +#: ../app/tools/gimpimagemaptool.c:322 msgid "Quick Save" msgstr "Schnelles Speichern" #. adjust sliders -#: app/tools/gimpinkoptions-gui.c:59 +#: ../app/tools/gimpinkoptions-gui.c:59 msgid "Adjustment" msgstr "Justierung" -#: app/tools/gimpinkoptions-gui.c:71 app/tools/gimpinkoptions-gui.c:96 -#: app/tools/gimptextoptions.c:426 +#: ../app/tools/gimpinkoptions-gui.c:71 ../app/tools/gimpinkoptions-gui.c:96 +#: ../app/tools/gimptextoptions.c:426 msgid "Size:" msgstr "Größe:" -#: app/tools/gimpinkoptions-gui.c:79 app/tools/gimpmeasuretool.c:891 -#: app/tools/gimprotatetool.c:169 app/widgets/gimpbrusheditor.c:207 +#: ../app/tools/gimpinkoptions-gui.c:79 ../app/tools/gimpmeasuretool.c:891 +#: ../app/tools/gimprotatetool.c:169 ../app/widgets/gimpbrusheditor.c:207 msgid "Angle:" msgstr "Winkel:" #. sens sliders -#: app/tools/gimpinkoptions-gui.c:84 +#: ../app/tools/gimpinkoptions-gui.c:84 msgid "Sensitivity" msgstr "Empfindlichkeit" -#: app/tools/gimpinkoptions-gui.c:103 +#: ../app/tools/gimpinkoptions-gui.c:103 msgid "Tilt:" msgstr "Neigung:" -#: app/tools/gimpinkoptions-gui.c:110 +#: ../app/tools/gimpinkoptions-gui.c:110 msgid "Speed:" msgstr "Geschwindigkeit:" -#: app/tools/gimpinkoptions-gui.c:121 +#: ../app/tools/gimpinkoptions-gui.c:121 msgid "Type" msgstr "Typ" #. Blob shape widget -#: app/tools/gimpinkoptions-gui.c:151 +#: ../app/tools/gimpinkoptions-gui.c:151 msgid "Shape" msgstr "Form" -#: app/tools/gimpinktool.c:63 +#: ../app/tools/gimpinktool.c:63 msgid "Draw in ink" msgstr "Mit Tinte zeichnen" -#: app/tools/gimpinktool.c:64 +#: ../app/tools/gimpinktool.c:64 msgid "In_k" msgstr "_Tinte" -#: app/tools/gimpiscissorstool.c:277 +#: ../app/tools/gimpiscissorstool.c:277 msgid "Scissors" msgstr "Schere" -#: app/tools/gimpiscissorstool.c:278 +#: ../app/tools/gimpiscissorstool.c:278 msgid "Select shapes from image" msgstr "Umrisse des Bildes wählen" -#: app/tools/gimpiscissorstool.c:279 +#: ../app/tools/gimpiscissorstool.c:279 msgid "Intelligent _Scissors" msgstr "Intelligente _Scheren" -#: app/tools/gimplevelstool.c:161 +#: ../app/tools/gimplevelstool.c:161 msgid "Adjust color levels" msgstr "Farbwerte anpassen" -#: app/tools/gimplevelstool.c:162 +#: ../app/tools/gimplevelstool.c:162 msgid "_Levels..." msgstr "_Werte" -#: app/tools/gimplevelstool.c:220 +#: ../app/tools/gimplevelstool.c:220 msgid "Adjust Color Levels" msgstr "Farbwerte anpassen" -#: app/tools/gimplevelstool.c:222 +#: ../app/tools/gimplevelstool.c:222 msgid "Load Levels" msgstr "Werte öffnen" -#: app/tools/gimplevelstool.c:223 +#: ../app/tools/gimplevelstool.c:223 msgid "Load levels settings from file" msgstr "Werte aus Datei laden" -#: app/tools/gimplevelstool.c:224 +#: ../app/tools/gimplevelstool.c:224 msgid "Save Levels" msgstr "Werte speichern" -#: app/tools/gimplevelstool.c:225 +#: ../app/tools/gimplevelstool.c:225 msgid "Save levels settings to file" msgstr "Aktuelle Werte in Datei speichern" -#: app/tools/gimplevelstool.c:285 +#: ../app/tools/gimplevelstool.c:285 msgid "Levels for indexed layers cannot be adjusted." msgstr "Werte für indizierte Ebenen können nicht geändert werden. " -#: app/tools/gimplevelstool.c:355 +#: ../app/tools/gimplevelstool.c:355 msgid "Pick black point" msgstr "Schwarz-Punkt wählen" -#: app/tools/gimplevelstool.c:359 +#: ../app/tools/gimplevelstool.c:359 msgid "Pick gray point" msgstr "Grau-Punkt wählen" -#: app/tools/gimplevelstool.c:363 +#: ../app/tools/gimplevelstool.c:363 msgid "Pick white point" msgstr "Weiß-Punkt wählen" #. Input levels frame -#: app/tools/gimplevelstool.c:445 +#: ../app/tools/gimplevelstool.c:445 msgid "Input Levels" msgstr "Quellwerte" -#: app/tools/gimplevelstool.c:539 +#: ../app/tools/gimplevelstool.c:539 msgid "Gamma" msgstr "Gamma" #. Output levels frame -#: app/tools/gimplevelstool.c:569 +#: ../app/tools/gimplevelstool.c:569 msgid "Output Levels" msgstr "Zielwerte" -#: app/tools/gimplevelstool.c:667 +#: ../app/tools/gimplevelstool.c:667 msgid "Adjust levels automatically" msgstr "Werte automatisch anpassen" -#: app/tools/gimpmagnifyoptions.c:203 +#: ../app/tools/gimpmagnifyoptions.c:203 msgid "Auto-resize window" msgstr "Fenstergröße beim _Vergrößern und Verkleinern anpassen" -#: app/tools/gimpmagnifytool.c:95 +#: ../app/tools/gimpmagnifytool.c:95 msgid "Magnify" msgstr "Vergrößern / Verkleinern" -#: app/tools/gimpmagnifytool.c:96 +#: ../app/tools/gimpmagnifytool.c:96 msgid "Zoom in & out" msgstr "Vergrößern / Verkleinern" -#: app/tools/gimpmagnifytool.c:97 +#: ../app/tools/gimpmagnifytool.c:97 msgid "M_agnify" msgstr "Ver_größern bzw. Verkleinern" -#: app/tools/gimpmeasureoptions.c:157 +#: ../app/tools/gimpmeasureoptions.c:157 msgid "Use info window" msgstr "Info-Fenster verwenden" -#: app/tools/gimpmeasuretool.c:118 +#: ../app/tools/gimpmeasuretool.c:118 msgid "Measure" msgstr "Me_ssen" -#: app/tools/gimpmeasuretool.c:119 +#: ../app/tools/gimpmeasuretool.c:119 msgid "Measure distances and angles" msgstr "Abstände und Winkel messen" -#: app/tools/gimpmeasuretool.c:120 +#: ../app/tools/gimpmeasuretool.c:120 msgid "_Measure" msgstr "_Maßband" -#: app/tools/gimpmeasuretool.c:264 +#: ../app/tools/gimpmeasuretool.c:264 msgid "Add Guides" msgstr "Hilfslinie hinzufügen" #. tool->gdisp->shell -#: app/tools/gimpmeasuretool.c:847 +#: ../app/tools/gimpmeasuretool.c:847 msgid "Measure Distances and Angles" msgstr "Abstände und Winkel messen" -#: app/tools/gimpmeasuretool.c:865 +#: ../app/tools/gimpmeasuretool.c:865 msgid "Distance:" msgstr "Abstand:" -#: app/tools/gimpmoveoptions.c:171 +#: ../app/tools/gimpmoveoptions.c:171 msgid "Pick a layer or guide" msgstr "Ebene oder Hilfslinie auswählen" -#: app/tools/gimpmoveoptions.c:172 +#: ../app/tools/gimpmoveoptions.c:172 msgid "Move the current layer" msgstr "Aktive Ebene verschieben" -#: app/tools/gimpmoveoptions.c:176 +#: ../app/tools/gimpmoveoptions.c:176 msgid "Move selection" msgstr "Auswahl verschieben" -#: app/tools/gimpmoveoptions.c:180 +#: ../app/tools/gimpmoveoptions.c:180 msgid "Pick a path" msgstr "Pfad auswählen" -#: app/tools/gimpmoveoptions.c:181 +#: ../app/tools/gimpmoveoptions.c:181 msgid "Move the current path" msgstr "Aktiven Pfad verschieben" -#: app/tools/gimpmovetool.c:117 +#: ../app/tools/gimpmovetool.c:117 msgid "Move layers & selections" msgstr "Ebenen und Auswahlen verschieben" -#: app/tools/gimpmovetool.c:118 +#: ../app/tools/gimpmovetool.c:118 msgid "_Move" msgstr "_Verschieben" -#: app/tools/gimpmovetool.c:298 app/tools/gimpmovetool.c:576 +#: ../app/tools/gimpmovetool.c:298 ../app/tools/gimpmovetool.c:576 msgid "Move Guide: " msgstr "Hilfslinie verschieben: " -#: app/tools/gimpmovetool.c:570 +#: ../app/tools/gimpmovetool.c:570 msgid "Cancel Guide" msgstr "Hilfslinie abbrechen" -#: app/tools/gimpmovetool.c:576 +#: ../app/tools/gimpmovetool.c:576 msgid "Add Guide: " msgstr "Hilfslinie hinzufügen: " -#: app/tools/gimppaintbrushtool.c:52 +#: ../app/tools/gimppaintbrushtool.c:52 msgid "Paint fuzzy brush strokes" msgstr "Weiche Pinselstriche zeichnen" -#: app/tools/gimppaintbrushtool.c:53 +#: ../app/tools/gimppaintbrushtool.c:53 msgid "_Paintbrush" msgstr "_Pinsel" -#: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:332 +#: ../app/tools/gimppaintoptions-gui.c:103 +#: ../app/widgets/gimpbrushselect.c:201 ../app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "Deckkraft:" -#: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 +#: ../app/tools/gimppaintoptions-gui.c:108 +#: ../app/tools/gimpselectionoptions.c:374 +#: ../app/widgets/gimpbrushselect.c:218 ../app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "Modus:" -#: app/tools/gimppaintoptions-gui.c:126 +#: ../app/tools/gimppaintoptions-gui.c:126 msgid "Brush:" msgstr "Pinsel:" -#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:394 +#: ../app/tools/gimppaintoptions-gui.c:135 +#: ../app/tools/gimppaintoptions-gui.c:395 msgid "Gradient:" msgstr "Farbverlauf:" -#: app/tools/gimppaintoptions-gui.c:177 +#: ../app/tools/gimppaintoptions-gui.c:177 msgid "Hard edge" msgstr "Harte Kanten" -#: app/tools/gimppaintoptions-gui.c:216 +#: ../app/tools/gimppaintoptions-gui.c:216 msgid "Pressure sensitivity" msgstr "Druckempfindlichkeit" -#: app/tools/gimppaintoptions-gui.c:236 +#: ../app/tools/gimppaintoptions-gui.c:236 msgid "Opacity" msgstr "Deckkraft" -#: app/tools/gimppaintoptions-gui.c:250 +#: ../app/tools/gimppaintoptions-gui.c:250 msgid "Hardness" msgstr "Härte" -#: app/tools/gimppaintoptions-gui.c:261 +#: ../app/tools/gimppaintoptions-gui.c:261 msgid "Rate" msgstr "Rate" -#: app/tools/gimppaintoptions-gui.c:274 +#: ../app/tools/gimppaintoptions-gui.c:274 msgid "Size" msgstr "Größe" -#: app/tools/gimppaintoptions-gui.c:313 +#: ../app/tools/gimppaintoptions-gui.c:313 msgid "Fade out" msgstr "Verblassen" -#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:403 +#: ../app/tools/gimppaintoptions-gui.c:333 +#: ../app/tools/gimppaintoptions-gui.c:404 msgid "Length:" msgstr "Länge:" -#: app/tools/gimppaintoptions-gui.c:367 +#: ../app/tools/gimppaintoptions-gui.c:368 msgid "Use color from gradient" msgstr "Farbe aus Farbverlauf" -#: app/tools/gimppenciltool.c:52 +#: ../app/tools/gimppenciltool.c:52 msgid "Paint hard edged pixels" msgstr "Pixel mit harten Kanten zeichnen" -#: app/tools/gimppenciltool.c:53 +#: ../app/tools/gimppenciltool.c:53 msgid "Pe_ncil" msgstr "_Stift" -#: app/tools/gimpperspectivetool.c:81 +#: ../app/tools/gimpperspectivetool.c:81 msgid "Perspective" msgstr "Perspektive" -#: app/tools/gimpperspectivetool.c:82 +#: ../app/tools/gimpperspectivetool.c:82 msgid "Change perspective of the layer or selection" msgstr "Die Perspektive der Ebene oder Auswahl verändern" -#: app/tools/gimpperspectivetool.c:83 +#: ../app/tools/gimpperspectivetool.c:83 msgid "_Perspective" msgstr "P_erspektive" -#: app/tools/gimpperspectivetool.c:140 +#: ../app/tools/gimpperspectivetool.c:140 msgid "Perspective Transform Information" msgstr "Informationen zur Perspektiventransformation" -#: app/tools/gimpperspectivetool.c:149 +#: ../app/tools/gimpperspectivetool.c:149 msgid "Matrix:" msgstr "Matrix:" -#: app/tools/gimpposterizetool.c:79 +#: ../app/tools/gimpposterizetool.c:79 msgid "Reduce image to a fixed number of colors" msgstr "Das Bild auf eine bestimmte Anzahl von Farben reduzieren" -#: app/tools/gimpposterizetool.c:80 +#: ../app/tools/gimpposterizetool.c:80 msgid "_Posterize..." msgstr "_Posterisieren" -#: app/tools/gimpposterizetool.c:131 +#: ../app/tools/gimpposterizetool.c:131 msgid "Posterize (Reduce Number of Colors)" msgstr "Posterisieren (Farbanzahl vemindern):" -#: app/tools/gimpposterizetool.c:173 +#: ../app/tools/gimpposterizetool.c:173 msgid "Posterize does not operate on indexed layers." msgstr "Posterisieren funktioniert nicht mit indizierten Ebenen." -#: app/tools/gimpposterizetool.c:223 +#: ../app/tools/gimpposterizetool.c:223 msgid "Posterize _levels:" msgstr "_Farbanzahl:" -#: app/tools/gimprectselecttool.c:97 +#: ../app/tools/gimprectselecttool.c:97 msgid "Select rectangular regions" msgstr "Einen rechteckigen Bereich wählen" -#: app/tools/gimprectselecttool.c:98 +#: ../app/tools/gimprectselecttool.c:98 msgid "_Rect Select" msgstr "_Rechteckige Auswahl" -#: app/tools/gimprectselecttool.c:224 +#: ../app/tools/gimprectselecttool.c:226 msgid "Selection: ADD" msgstr "Auswahl: Hinzufügen" -#: app/tools/gimprectselecttool.c:227 +#: ../app/tools/gimprectselecttool.c:229 msgid "Selection: SUBTRACT" msgstr "Auswahl: Abziehen" -#: app/tools/gimprectselecttool.c:230 +#: ../app/tools/gimprectselecttool.c:232 msgid "Selection: INTERSECT" msgstr "Auswahl: Schneiden" -#: app/tools/gimprectselecttool.c:233 +#: ../app/tools/gimprectselecttool.c:235 msgid "Selection: REPLACE" msgstr "Auswahl: Ersetzen" -#: app/tools/gimprectselecttool.c:468 +#: ../app/tools/gimprectselecttool.c:414 msgid "Selection: " msgstr "Auswahl: " -#: app/tools/gimprotatetool.c:98 +#: ../app/tools/gimprotatetool.c:98 msgid "Rotate the layer or selection" msgstr "Ebene oder Auswahl drehen" -#: app/tools/gimprotatetool.c:99 +#: ../app/tools/gimprotatetool.c:99 msgid "_Rotate" msgstr "_Drehen" -#: app/tools/gimprotatetool.c:158 +#: ../app/tools/gimprotatetool.c:158 msgid "Rotation Information" msgstr "Drehinformationen" -#: app/tools/gimprotatetool.c:185 +#: ../app/tools/gimprotatetool.c:185 msgid "Center X:" msgstr "Zentrum X:" -#: app/tools/gimprotatetool.c:190 +#: ../app/tools/gimprotatetool.c:190 msgid "Center Y:" msgstr "Zentrum Y:" -#: app/tools/gimpscaletool.c:91 +#: ../app/tools/gimpscaletool.c:91 msgid "Scale" msgstr "Skalieren" -#: app/tools/gimpscaletool.c:92 +#: ../app/tools/gimpscaletool.c:92 msgid "Scale the layer or selection" msgstr "Ebene oder Auswahl skalieren" -#: app/tools/gimpscaletool.c:93 +#: ../app/tools/gimpscaletool.c:93 msgid "_Scale" msgstr "_Skalieren" -#: app/tools/gimpscaletool.c:152 +#: ../app/tools/gimpscaletool.c:152 msgid "Scaling information" msgstr "Skalierinformationen" -#: app/tools/gimpscaletool.c:163 +#: ../app/tools/gimpscaletool.c:163 msgid "Original Width:" msgstr "Ursprüngliche Breite:" -#: app/tools/gimpscaletool.c:170 +#: ../app/tools/gimpscaletool.c:170 msgid "Current width:" msgstr "Aktuelle Breite:" -#: app/tools/gimpscaletool.c:174 +#: ../app/tools/gimpscaletool.c:174 msgid "Current height:" msgstr "Aktuelle Höhe:" -#: app/tools/gimpscaletool.c:189 +#: ../app/tools/gimpscaletool.c:189 msgid "Scale ratio X:" msgstr "Skalierungsfaktor X:" -#: app/tools/gimpscaletool.c:192 +#: ../app/tools/gimpscaletool.c:192 msgid "Scale ratio Y:" msgstr "Skalierungsfaktor Y:" -#: app/tools/gimpscaletool.c:196 +#: ../app/tools/gimpscaletool.c:196 msgid "Aspect Ratio:" msgstr "Seitenverhältnis:" -#: app/tools/gimpselectionoptions.c:136 +#: ../app/tools/gimpselectionoptions.c:136 msgid "Smooth edges" msgstr "Kanten glätten" -#: app/tools/gimpselectionoptions.c:150 +#: ../app/tools/gimpselectionoptions.c:150 msgid "Allow completely transparent regions to be selected" msgstr "Auswahl vollständig transparenter Bereiche erlauben" -#: app/tools/gimpselectionoptions.c:156 +#: ../app/tools/gimpselectionoptions.c:156 msgid "Base selection on all visible layers" msgstr "Auswahl auf alle sichtbaren Bereiche stützen" -#: app/tools/gimpselectionoptions.c:171 +#: ../app/tools/gimpselectionoptions.c:171 msgid "Use all visible layers when shrinking the selection" msgstr "Beim Verkleinern der Auswahl alle sichtbaren Ebenen verwenden" -#: app/tools/gimpselectionoptions.c:382 app/tools/gimptextoptions.c:447 +#: ../app/tools/gimpselectionoptions.c:382 ../app/tools/gimptextoptions.c:447 msgid "Antialiasing" msgstr "Kantenglättung" -#: app/tools/gimpselectionoptions.c:399 +#: ../app/tools/gimpselectionoptions.c:399 msgid "Feather edges" msgstr "Kanten ausblenden" -#: app/tools/gimpselectionoptions.c:425 +#: ../app/tools/gimpselectionoptions.c:425 msgid "Show interactive boundary" msgstr "Interaktive Begrenzung anzeigen" -#: app/tools/gimpselectionoptions.c:448 +#: ../app/tools/gimpselectionoptions.c:448 msgid "Select transparent areas" msgstr "Transparente Bereiche auswählen" -#: app/tools/gimpselectionoptions.c:488 +#: ../app/tools/gimpselectionoptions.c:488 msgid "Auto shrink selection" msgstr "Automatisch verkleinern" -#: app/tools/gimpsheartool.c:98 +#: ../app/tools/gimpsheartool.c:98 msgid "Shear" msgstr "Schere" -#: app/tools/gimpsheartool.c:99 +#: ../app/tools/gimpsheartool.c:99 msgid "Shear the layer or selection" msgstr "Ebene oder Auswahl scheren" -#: app/tools/gimpsheartool.c:100 +#: ../app/tools/gimpsheartool.c:100 msgid "S_hear" msgstr "S_cheren" -#: app/tools/gimpsheartool.c:157 +#: ../app/tools/gimpsheartool.c:157 msgid "Shearing Information" msgstr "Scherinformationen" -#: app/tools/gimpsheartool.c:167 +#: ../app/tools/gimpsheartool.c:167 msgid "Shear magnitude X:" msgstr "Scherneigung X:" -#: app/tools/gimpsheartool.c:174 +#: ../app/tools/gimpsheartool.c:174 msgid "Shear magnitude Y:" msgstr "Scherneigung Y:" -#: app/tools/gimpsmudgetool.c:55 +#: ../app/tools/gimpsmudgetool.c:55 msgid "Smudge image" msgstr "Bild verschmieren" -#: app/tools/gimpsmudgetool.c:56 +#: ../app/tools/gimpsmudgetool.c:56 msgid "_Smudge" msgstr "Versch_mieren" -#: app/tools/gimptextoptions.c:146 +#: ../app/tools/gimptextoptions.c:146 msgid "" "Hinting alters the font outline to produce a crisp bitmap at small sizes" msgstr "" "Hinting ändert die Schriftränder, um bei kleinen Größen ein schickes " "Schriftbild zu erzeugen." -#: app/tools/gimptextoptions.c:153 +#: ../app/tools/gimptextoptions.c:153 msgid "" "If available, hints from the font are used but you may prefer to always use " "the automatic hinter" @@ -9314,43 +9372,43 @@ "Falls verfügbar, werden Hints von den Schriften verwenden, möglicherweise " "bevorzugen Sie aber stets automatisches Hinting." -#: app/tools/gimptextoptions.c:178 +#: ../app/tools/gimptextoptions.c:178 msgid "Indentation of the first line" msgstr "Einzug der ersten Zeile" -#: app/tools/gimptextoptions.c:183 +#: ../app/tools/gimptextoptions.c:183 msgid "Modify line spacing" msgstr "Zeilenabstand verändern" -#: app/tools/gimptextoptions.c:419 +#: ../app/tools/gimptextoptions.c:419 msgid "Font:" msgstr "Schrift:" -#: app/tools/gimptextoptions.c:431 +#: ../app/tools/gimptextoptions.c:431 msgid "Hinting" msgstr "Hinting" -#: app/tools/gimptextoptions.c:438 +#: ../app/tools/gimptextoptions.c:438 msgid "Force auto-hinter" msgstr "Auto-Hinting erzwingen" -#: app/tools/gimptextoptions.c:453 +#: ../app/tools/gimptextoptions.c:453 msgid "Text Color" msgstr "Text-Farbe" -#: app/tools/gimptextoptions.c:458 +#: ../app/tools/gimptextoptions.c:458 msgid "Color:" msgstr "Farbe:" -#: app/tools/gimptextoptions.c:463 +#: ../app/tools/gimptextoptions.c:463 msgid "Justify:" msgstr "Ausrichtung:" -#: app/tools/gimptextoptions.c:469 +#: ../app/tools/gimptextoptions.c:469 msgid "Indent:" msgstr "Einzug:" -#: app/tools/gimptextoptions.c:475 +#: ../app/tools/gimptextoptions.c:475 msgid "" "Line\n" "spacing:" @@ -9358,27 +9416,27 @@ "Zeilen-\n" "abstand:" -#: app/tools/gimptextoptions.c:478 +#: ../app/tools/gimptextoptions.c:478 msgid "Create path from text" msgstr "Pfad aus Text erzeugen" -#: app/tools/gimptexttool.c:143 +#: ../app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "Text zum Bild hinzufügen" -#: app/tools/gimptexttool.c:144 +#: ../app/tools/gimptexttool.c:146 msgid "Te_xt" msgstr "Te_xt" -#: app/tools/gimptexttool.c:732 +#: ../app/tools/gimptexttool.c:744 msgid "GIMP Text Editor" msgstr "GIMP Text Editor" -#: app/tools/gimptexttool.c:842 app/tools/gimptexttool.c:845 +#: ../app/tools/gimptexttool.c:854 ../app/tools/gimptexttool.c:857 msgid "Confirm Text Editing" msgstr "Bestätigung für Bearbeiten des Textes" -#: app/tools/gimptexttool.c:866 +#: ../app/tools/gimptexttool.c:878 msgid "" "The layer you selected is a text layer but it has been modified using other " "tools. Editing the layer with the text tool will discard these " @@ -9393,85 +9451,85 @@ "Sie können die Ebene bearbeiten oder eine neue Text-Ebene mit denselben Text-" "Attributen erstellen." -#: app/tools/gimpthresholdtool.c:93 +#: ../app/tools/gimpthresholdtool.c:93 msgid "Reduce image to two colors using a threshold" msgstr "Das Bild mittels eines Schwellwerts auf zwei Farben reduzieren" -#: app/tools/gimpthresholdtool.c:94 +#: ../app/tools/gimpthresholdtool.c:94 msgid "_Threshold..." msgstr "_Schwellwert" -#: app/tools/gimpthresholdtool.c:148 +#: ../app/tools/gimpthresholdtool.c:148 msgid "Apply Threshold" msgstr "Schwellwert anwenden" -#: app/tools/gimpthresholdtool.c:199 +#: ../app/tools/gimpthresholdtool.c:199 msgid "Threshold does not operate on indexed layers." msgstr "Schwellwert funktioniert nicht mit indizierten Ebenen." -#: app/tools/gimptransformoptions.c:329 +#: ../app/tools/gimptransformoptions.c:329 msgid "Transform Direction" msgstr "Transformationsrichtung" -#: app/tools/gimptransformoptions.c:338 +#: ../app/tools/gimptransformoptions.c:338 msgid "Interpolation:" msgstr "Interpolation:" -#: app/tools/gimptransformoptions.c:348 +#: ../app/tools/gimptransformoptions.c:348 msgid "Supersampling" msgstr "Hochrechnung" #. the clip resulting image toggle button -#: app/tools/gimptransformoptions.c:353 +#: ../app/tools/gimptransformoptions.c:353 msgid "Clip result" msgstr "Ergebnis beschneiden" -#: app/tools/gimptransformoptions.c:367 +#: ../app/tools/gimptransformoptions.c:367 msgid "Preview:" msgstr "Vorschau:" #. the constraints frame -#: app/tools/gimptransformoptions.c:413 +#: ../app/tools/gimptransformoptions.c:413 msgid "Constraints" msgstr "Einschränkungen" -#: app/tools/gimptransformoptions.c:425 +#: ../app/tools/gimptransformoptions.c:425 #, c-format msgid "15 degrees %s" msgstr "15 Grad %s" -#: app/tools/gimptransformoptions.c:445 +#: ../app/tools/gimptransformoptions.c:445 #, c-format msgid "Keep height %s" msgstr "Höhe beibehalten %s" -#: app/tools/gimptransformoptions.c:447 +#: ../app/tools/gimptransformoptions.c:447 #, c-format msgid "Keep width %s" msgstr "Breite beibehalten %s" -#: app/tools/gimptransformoptions.c:449 +#: ../app/tools/gimptransformoptions.c:449 #, c-format msgid "Keep aspect %s" msgstr "Verhältnis von %s beibehalten" -#: app/tools/gimptransformtool.c:253 +#: ../app/tools/gimptransformtool.c:253 msgid "Transforming..." msgstr "Transformiere..." -#: app/tools/gimpvectoroptions.c:113 +#: ../app/tools/gimpvectoroptions.c:113 msgid "Restrict editing to polygons" msgstr "Bearbeiten auf Polygone beschränken" -#: app/tools/gimpvectoroptions.c:177 +#: ../app/tools/gimpvectoroptions.c:177 msgid "Edit Mode" msgstr "Bearbeitungsmodus" -#: app/tools/gimpvectoroptions.c:182 +#: ../app/tools/gimpvectoroptions.c:182 msgid "Polygonal" msgstr "Polygonal" -#: app/tools/gimpvectoroptions.c:186 +#: ../app/tools/gimpvectoroptions.c:186 #, c-format msgid "" "Path to Selection\n" @@ -9484,735 +9542,739 @@ "%s Abziehen\n" "%s Schneiden" -#: app/tools/gimpvectoroptions.c:196 +#: ../app/tools/gimpvectoroptions.c:196 msgid "Create selection from path" msgstr "Pfad aus Auswahl" -#: app/tools/gimpvectoroptions.c:207 +#: ../app/tools/gimpvectoroptions.c:207 msgid "Stroke path" msgstr "Pfad nachziehen" -#: app/tools/gimpvectortool.c:161 +#: ../app/tools/gimpvectortool.c:161 msgid "Create and edit paths" msgstr "Pfade erstellen und bearbeiten" -#: app/tools/gimpvectortool.c:363 +#: ../app/tools/gimpvectortool.c:363 msgid "Add Stroke" msgstr "Nachziehen" -#: app/tools/gimpvectortool.c:381 +#: ../app/tools/gimpvectortool.c:381 msgid "Add Anchor" msgstr "Anker hinzufügen" -#: app/tools/gimpvectortool.c:404 +#: ../app/tools/gimpvectortool.c:404 msgid "Insert Anchor" msgstr "Anker einfügen" -#: app/tools/gimpvectortool.c:433 +#: ../app/tools/gimpvectortool.c:433 msgid "Drag Handle" msgstr "Marker ziehen" -#: app/tools/gimpvectortool.c:462 +#: ../app/tools/gimpvectortool.c:462 msgid "Drag Anchor" msgstr "Anker ziehen" -#: app/tools/gimpvectortool.c:479 +#: ../app/tools/gimpvectortool.c:479 msgid "Drag Anchors" msgstr "Anker ziehen" -#: app/tools/gimpvectortool.c:499 +#: ../app/tools/gimpvectortool.c:499 msgid "Drag Curve" msgstr "Kurve ziehen" # CHECK -#: app/tools/gimpvectortool.c:527 +#: ../app/tools/gimpvectortool.c:527 msgid "Connect Strokes" msgstr "Nachziehungen verbinden" -#: app/tools/gimpvectortool.c:557 +#: ../app/tools/gimpvectortool.c:557 msgid "Drag Path" msgstr "Pfad ziehen" -#: app/tools/gimpvectortool.c:567 +#: ../app/tools/gimpvectortool.c:567 msgid "Convert Edge" msgstr "Kante umwandeln" -#: app/tools/gimpvectortool.c:597 +#: ../app/tools/gimpvectortool.c:597 msgid "Delete Anchor" msgstr "Anker löschen" -#: app/tools/gimpvectortool.c:619 +#: ../app/tools/gimpvectortool.c:619 msgid "Delete Segment" msgstr "Segment löschen" -#: app/tools/gimpvectortool.c:831 +#: ../app/tools/gimpvectortool.c:831 msgid "Move Anchors" msgstr "Anker verschieben" -#: app/tools/gimpvectortool.c:1196 +#: ../app/tools/gimpvectortool.c:1196 msgid "Click to pick path to edit." msgstr "Klick wählt zu bearbeitenden Pfad." -#: app/tools/gimpvectortool.c:1199 +#: ../app/tools/gimpvectortool.c:1199 msgid "Click to create a new path." msgstr "Klick erstellt einen neuen Pfad." -#: app/tools/gimpvectortool.c:1202 +#: ../app/tools/gimpvectortool.c:1202 msgid "Click to create a new component of the path." msgstr "Klick erstellt eine neue Pfadkomponente." -#: app/tools/gimpvectortool.c:1205 +#: ../app/tools/gimpvectortool.c:1205 msgid "Click to create a new anchor. (try SHIFT)" msgstr "Klick erstellt einen neuen Anker (versuchen Sie die Umschalttaste)." -#: app/tools/gimpvectortool.c:1208 +#: ../app/tools/gimpvectortool.c:1208 msgid "Click-Drag to move the anchor around." msgstr "Klick-Ziehen verschiebt den Anker." -#: app/tools/gimpvectortool.c:1211 +#: ../app/tools/gimpvectortool.c:1211 ../app/tools/gimpvectortool.c:1218 msgid "Click-Drag to move the anchors around." msgstr "Klick-Ziehen verschiebt die Anker." -#: app/tools/gimpvectortool.c:1214 +#: ../app/tools/gimpvectortool.c:1214 msgid "Click-Drag to move the handle around. (try SHIFT)" msgstr "Klick-Ziehen verschiebt den Marker (versuchen Sie die Umschalttaste)." -#: app/tools/gimpvectortool.c:1217 +#: ../app/tools/gimpvectortool.c:1220 msgid "Click-Drag to change the shape of the curve. (SHIFT: symmetrical)" msgstr "Klick-Ziehen ändert die Kurvenform (Umschalttaste: symmetrisch)." -#: app/tools/gimpvectortool.c:1221 +#: ../app/tools/gimpvectortool.c:1224 msgid "Click-Drag to move the component around. (try SHIFT)" msgstr "" "Klick-Ziehen verschiebt die Komponente (versuchen Sie die Umschalttaste)." -#: app/tools/gimpvectortool.c:1225 +#: ../app/tools/gimpvectortool.c:1228 msgid "Click-Drag to move the path around." msgstr "Klick-Ziehen verschiebt den Pfad." -#: app/tools/gimpvectortool.c:1228 +#: ../app/tools/gimpvectortool.c:1231 msgid "Click to insert an anchor on the path. (try SHIFT)" msgstr "" "Klick fügt einen Anker auf dem Pfad ein (versuchen Sie die Umschalttaste)." -#: app/tools/gimpvectortool.c:1231 +#: ../app/tools/gimpvectortool.c:1234 msgid "Click to delete this anchor." msgstr "Klick löscht diesen Anker." -#: app/tools/gimpvectortool.c:1234 +#: ../app/tools/gimpvectortool.c:1237 msgid "Click to connect this anchor with the selected endpoint." msgstr "Klick verbindet diesen Anker mit dem gewählten Endpunkt." -#: app/tools/gimpvectortool.c:1238 +#: ../app/tools/gimpvectortool.c:1241 msgid "Click to open up the path." msgstr "Klick trennt den Pfad auf." -#: app/tools/gimpvectortool.c:1241 +#: ../app/tools/gimpvectortool.c:1244 msgid "Click to make this node angular." msgstr "Klick macht diesen Knoten winklig." -#: app/tools/gimpvectortool.c:1751 +#: ../app/tools/gimpvectortool.c:1761 msgid "Delete Anchors" msgstr "Anker löschen" -#: app/tools/gimpvectortool.c:1918 +#: ../app/tools/gimpvectortool.c:1928 msgid "There is no active layer or channel to stroke to" msgstr "" "Es gibt weder eine aktive Ebene noch einen aktiven Kanal, die bzw. der " "nachgezogen werden kann" -#: app/vectors/gimpvectors.c:229 +#: ../app/vectors/gimpvectors.c:229 msgid "Path" msgstr "Pfad" -#: app/vectors/gimpvectors.c:230 +#: ../app/vectors/gimpvectors.c:230 msgid "Rename Path" msgstr "Pfad umbenennen" -#: app/vectors/gimpvectors.c:231 app/vectors/gimpvectors.c:356 +#: ../app/vectors/gimpvectors.c:231 ../app/vectors/gimpvectors.c:356 msgid "Move Path" msgstr "Pfad verschieben" -#: app/vectors/gimpvectors.c:232 +#: ../app/vectors/gimpvectors.c:232 msgid "Scale Path" msgstr "Pfad skalieren" -#: app/vectors/gimpvectors.c:233 +#: ../app/vectors/gimpvectors.c:233 msgid "Resize Path" msgstr "Pfadgröße ändern" -#: app/vectors/gimpvectors.c:234 app/vectors/gimpvectors.c:447 +#: ../app/vectors/gimpvectors.c:234 ../app/vectors/gimpvectors.c:447 msgid "Flip Path" msgstr "Pfad spiegeln" -#: app/vectors/gimpvectors.c:235 app/vectors/gimpvectors.c:491 +#: ../app/vectors/gimpvectors.c:235 ../app/vectors/gimpvectors.c:491 msgid "Rotate Path" msgstr "Pfad drehen" -#: app/vectors/gimpvectors.c:236 app/vectors/gimpvectors.c:522 +#: ../app/vectors/gimpvectors.c:236 ../app/vectors/gimpvectors.c:522 msgid "Transform Path" msgstr "Pfad transformieren" -#: app/vectors/gimpvectors.c:551 +#: ../app/vectors/gimpvectors.c:551 msgid "Cannot stroke empty path." msgstr "Leere Pfade können nicht nachgezogen werden." -#: app/vectors/gimpvectors-import.c:287 +#: ../app/vectors/gimpvectors-import.c:287 msgid "Import Paths" msgstr "Pfade importieren" -#: app/vectors/gimpvectors-import.c:298 +#: ../app/vectors/gimpvectors-import.c:298 msgid "Imported Path" msgstr "Importierter Pfad" -#: app/vectors/gimpvectors-import.c:324 +#: ../app/vectors/gimpvectors-import.c:324 #, c-format msgid "No paths found in '%s'" msgstr "Keine Pfade in »%s« gefunden" -#: app/vectors/gimpvectors-import.c:327 +#: ../app/vectors/gimpvectors-import.c:327 msgid "No paths found in the buffer" msgstr "Keine Pfade in der Ablage gefunden" -#: app/vectors/gimpvectors-import.c:337 +#: ../app/vectors/gimpvectors-import.c:337 #, c-format msgid "Failed to import paths from '%s': %s" msgstr "Fehler beim Pfad-Import aus »%s«: %s" -#: app/widgets/gimpactiongroup.c:803 +#: ../app/widgets/gimpactiongroup.c:803 #, c-format msgid "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" msgstr "RGBA (%0.3f, %0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpactionview.c:354 app/widgets/gimpcontrollereditor.c:374 +#: ../app/widgets/gimpactionview.c:354 +#: ../app/widgets/gimpcontrollereditor.c:374 msgid "Action" msgstr "Aktion" -#: app/widgets/gimpactionview.c:383 +#: ../app/widgets/gimpactionview.c:383 msgid "Shortcut" msgstr "Tastenkürzel" -#: app/widgets/gimpactionview.c:405 +#: ../app/widgets/gimpactionview.c:405 msgid "Name" msgstr "Name" -#: app/widgets/gimpactionview.c:545 app/widgets/gimpactionview.c:738 +#: ../app/widgets/gimpactionview.c:545 ../app/widgets/gimpactionview.c:738 msgid "Changing shortcut failed." msgstr "Wechseln des Tastenkürzels fehlgeschlagen." -#: app/widgets/gimpactionview.c:585 +#: ../app/widgets/gimpactionview.c:585 msgid "Conflicting Shortcuts" msgstr "Kollidierende Tastenkürzel" -#: app/widgets/gimpactionview.c:591 +#: ../app/widgets/gimpactionview.c:591 msgid "_Reassign shortcut" msgstr "_Tastenkürzel neu zuweisen" -#: app/widgets/gimpactionview.c:602 +#: ../app/widgets/gimpactionview.c:602 #, c-format msgid "Shortcut \"%s\" is already taken by \"%s\" from the \"%s\" group." msgstr "" "Das Tastenkürzel »%s« wird bereits von »%s« aus der Gruppe »%s« verwendet." -#: app/widgets/gimpactionview.c:606 +#: ../app/widgets/gimpactionview.c:606 #, c-format msgid "Reassigning the shortcut will cause it to be removed from \"%s\"." msgstr "Die Neuzuweisung dieses Tastenkürzels wird es von »%s« entfernen." -#: app/widgets/gimpactionview.c:673 +#: ../app/widgets/gimpactionview.c:673 msgid "Removing shortcut failed." msgstr "Entfernen des Tastenkürzels fehlgeschlagen." -#: app/widgets/gimpactionview.c:678 +#: ../app/widgets/gimpactionview.c:678 msgid "Invalid shortcut." msgstr "Falscher Tastenkürzel." -#: app/widgets/gimpbrusheditor.c:168 +#: ../app/widgets/gimpbrusheditor.c:168 msgid "Spikes:" msgstr "Spitzen:" -#: app/widgets/gimpbrusheditor.c:181 +#: ../app/widgets/gimpbrusheditor.c:181 msgid "Hardness:" msgstr "Härte:" -#: app/widgets/gimpbrusheditor.c:220 app/widgets/gimpbrushfactoryview.c:114 +#: ../app/widgets/gimpbrusheditor.c:220 +#: ../app/widgets/gimpbrushfactoryview.c:114 msgid "Spacing:" msgstr "Abstand:" -#: app/widgets/gimpbrusheditor.c:223 app/widgets/gimpbrushfactoryview.c:117 +#: ../app/widgets/gimpbrusheditor.c:223 +#: ../app/widgets/gimpbrushfactoryview.c:117 msgid "Percentage of width of brush" msgstr "Prozentsatz der Pinselbreite" -#: app/widgets/gimpbufferview.c:165 app/widgets/gimpbufferview.c:246 -#: app/widgets/gimpcontainergridview.c:206 -#: app/widgets/gimpcontainergridview.c:657 -#: app/widgets/gimphistogrameditor.c:147 app/widgets/gimphistogrameditor.c:359 +#: ../app/widgets/gimpbufferview.c:165 ../app/widgets/gimpbufferview.c:246 +#: ../app/widgets/gimpcontainergridview.c:206 +#: ../app/widgets/gimpcontainergridview.c:657 +#: ../app/widgets/gimphistogrameditor.c:147 +#: ../app/widgets/gimphistogrameditor.c:359 msgid "(None)" msgstr "(Keine)" -#: app/widgets/gimpcellrendereraccel.c:234 -#: app/widgets/gimpcellrendereraccel.c:459 +#: ../app/widgets/gimpcellrendereraccel.c:234 +#: ../app/widgets/gimpcellrendereraccel.c:459 msgid "Type a new accelerator, or press Backspace to clear" msgstr "" "Neues Tastenkürzel eingeben oder die Rücktaste drücken, um es zu löschen" -#: app/widgets/gimpcellrendereraccel.c:462 +#: ../app/widgets/gimpcellrendereraccel.c:462 msgid "Type a new accelerator" msgstr "Bitte geben Sie ein neues Tastenkürzel ein" -#: app/widgets/gimpchanneltreeview.c:151 +#: ../app/widgets/gimpchanneltreeview.c:151 msgid "Reorder Channel" msgstr "Kanalreihenfolge ändern" -#: app/widgets/gimpchanneltreeview.c:261 +#: ../app/widgets/gimpchanneltreeview.c:261 msgid "Empty Channel" msgstr "Leerer Kanal" -#: app/widgets/gimpclipboard.c:283 +#: ../app/widgets/gimpclipboard.c:283 msgid "Clipboard" msgstr "Zwischenablage" -#: app/widgets/gimpcolordialog.c:169 +#: ../app/widgets/gimpcolordialog.c:169 msgid "Add the current color to the color history" msgstr "Die aktuelle Farbe der Farbliste hinzufügen" -#: app/widgets/gimpcolordisplayeditor.c:177 +#: ../app/widgets/gimpcolordisplayeditor.c:177 msgid "Available Filters" msgstr "Verfügbare Filter" -#: app/widgets/gimpcolordisplayeditor.c:204 +#: ../app/widgets/gimpcolordisplayeditor.c:204 msgid "Add the selected filter to the list of active filters." msgstr "Den gewählten Filter zur Liste aktiver Filter hinzufügen." -#: app/widgets/gimpcolordisplayeditor.c:221 +#: ../app/widgets/gimpcolordisplayeditor.c:221 msgid "Remove the selected filter from the list of active filters." msgstr "Den gewählten Filter aus der Liste aktiver Filter entfernen." -#: app/widgets/gimpcolordisplayeditor.c:235 +#: ../app/widgets/gimpcolordisplayeditor.c:235 msgid "Move the selected filter up" msgstr "Den gewählten Filter nach oben verschieben" -#: app/widgets/gimpcolordisplayeditor.c:244 +#: ../app/widgets/gimpcolordisplayeditor.c:244 msgid "Move the selected filter down" msgstr "Den gewählten Filter nach unten verschieben" -#: app/widgets/gimpcolordisplayeditor.c:289 +#: ../app/widgets/gimpcolordisplayeditor.c:289 msgid "Active Filters" msgstr "Aktive Filter" -#: app/widgets/gimpcolordisplayeditor.c:322 +#: ../app/widgets/gimpcolordisplayeditor.c:322 msgid "Reset the selected filter to default values" msgstr "Den gewählten Filter auf Vorgabewerte zurücksetzen." -#: app/widgets/gimpcolordisplayeditor.c:543 +#: ../app/widgets/gimpcolordisplayeditor.c:543 #, c-format msgid "Configure selected filter: %s" msgstr "Den gewählten Filter konfigurieren: %s" -#: app/widgets/gimpcolordisplayeditor.c:550 +#: ../app/widgets/gimpcolordisplayeditor.c:550 msgid "No filter selected" msgstr "Kein Filter ausgewählt" -#: app/widgets/gimpcolordisplayeditor.c:554 +#: ../app/widgets/gimpcolordisplayeditor.c:554 msgid "Configure selected filter" msgstr "Den gewählten Filter konfigurieren" -#: app/widgets/gimpcolorframe.c:240 +#: ../app/widgets/gimpcolorframe.c:240 msgid "Index:" msgstr "Index:" -#: app/widgets/gimpcolorframe.c:244 app/widgets/gimpcolorframe.c:265 +#: ../app/widgets/gimpcolorframe.c:244 ../app/widgets/gimpcolorframe.c:265 msgid "Red:" msgstr "Rot:" -#: app/widgets/gimpcolorframe.c:245 app/widgets/gimpcolorframe.c:266 +#: ../app/widgets/gimpcolorframe.c:245 ../app/widgets/gimpcolorframe.c:266 msgid "Green:" msgstr "Grün:" -#: app/widgets/gimpcolorframe.c:246 app/widgets/gimpcolorframe.c:267 +#: ../app/widgets/gimpcolorframe.c:246 ../app/widgets/gimpcolorframe.c:267 msgid "Blue:" msgstr "Blau:" -#: app/widgets/gimpcolorframe.c:256 app/widgets/gimpcolorframe.c:287 +#: ../app/widgets/gimpcolorframe.c:256 ../app/widgets/gimpcolorframe.c:287 msgid "Value:" msgstr "Wert:" -#: app/widgets/gimpcolorframe.c:275 +#: ../app/widgets/gimpcolorframe.c:275 msgid "Hex:" msgstr "Hex:" -#: app/widgets/gimpcolorframe.c:285 +#: ../app/widgets/gimpcolorframe.c:285 msgid "Hue:" msgstr "Ton:" -#: app/widgets/gimpcolorframe.c:286 +#: ../app/widgets/gimpcolorframe.c:286 msgid "Sat.:" msgstr "Sättg.:" -#: app/widgets/gimpcolorframe.c:303 +#: ../app/widgets/gimpcolorframe.c:303 msgid "Cyan:" msgstr "Cyan:" -#: app/widgets/gimpcolorframe.c:304 +#: ../app/widgets/gimpcolorframe.c:304 msgid "Magenta:" msgstr "Magenta:" -#: app/widgets/gimpcolorframe.c:305 +#: ../app/widgets/gimpcolorframe.c:305 msgid "Yellow:" msgstr "Gelb:" -#: app/widgets/gimpcolorframe.c:306 +#: ../app/widgets/gimpcolorframe.c:306 msgid "Black:" msgstr "Schwarz:" -#: app/widgets/gimpcolorframe.c:320 +#: ../app/widgets/gimpcolorframe.c:320 msgid "Alpha:" msgstr "Alpha:" -#: app/widgets/gimpcolormapeditor.c:247 +#: ../app/widgets/gimpcolormapeditor.c:247 msgid "Color index:" msgstr "Farbindex:" -#: app/widgets/gimpcolormapeditor.c:258 +#: ../app/widgets/gimpcolormapeditor.c:258 msgid "HTML notation:" msgstr "HTML_Notation:" -#: app/widgets/gimpcontainerpopup.c:502 +#: ../app/widgets/gimpcontainerpopup.c:502 msgid "Smaller Previews" msgstr "Kleinere Vorschaubilder" -#: app/widgets/gimpcontainerpopup.c:507 +#: ../app/widgets/gimpcontainerpopup.c:507 msgid "Larger Previews" msgstr "Größere Vorschaubilder" -#: app/widgets/gimpcontrollereditor.c:210 +#: ../app/widgets/gimpcontrollereditor.c:210 msgid "Dump events from this controller" msgstr "Ereignisse des Gerätes ausgeben" -#: app/widgets/gimpcontrollereditor.c:215 +#: ../app/widgets/gimpcontrollereditor.c:215 msgid "Enable this controller" msgstr "Gerät einschalten" -#: app/widgets/gimpcontrollereditor.c:236 +#: ../app/widgets/gimpcontrollereditor.c:236 msgid "Name:" msgstr "_Name:" -#: app/widgets/gimpcontrollereditor.c:369 +#: ../app/widgets/gimpcontrollereditor.c:369 msgid "Event" msgstr "Ereignis" -#: app/widgets/gimpcontrollereditor.c:550 +#: ../app/widgets/gimpcontrollereditor.c:550 msgid "Select Controller Event Action" msgstr "Ereigniskontrolleuraktion auswählen" -#: app/widgets/gimpcontrollerkeyboard.c:69 +#: ../app/widgets/gimpcontrollerkeyboard.c:69 msgid "Key Up (Shift + Control + Alt)" msgstr "Pfeiltaste »Hoch« (Shift + Strg + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:72 +#: ../app/widgets/gimpcontrollerkeyboard.c:72 msgid "Key Up (Control + Alt)" msgstr "Pfeiltaste Hoch (Strg + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:75 +#: ../app/widgets/gimpcontrollerkeyboard.c:75 msgid "Key Up (Shift + Alt)" msgstr "Pfeiltaste Hoch (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:78 +#: ../app/widgets/gimpcontrollerkeyboard.c:78 msgid "Key Up (Shift + Control)" msgstr "Pfeiltaste Hoch (Shift + Strg)" -#: app/widgets/gimpcontrollerkeyboard.c:81 +#: ../app/widgets/gimpcontrollerkeyboard.c:81 msgid "Key Up (Alt)" msgstr "Pfeiltaste Hoch (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:84 +#: ../app/widgets/gimpcontrollerkeyboard.c:84 msgid "Key Up (Control)" msgstr "Pfeiltaste Hoch (Strg)" -#: app/widgets/gimpcontrollerkeyboard.c:87 +#: ../app/widgets/gimpcontrollerkeyboard.c:87 msgid "Key Up (Shift)" msgstr "Pfeiltaste Hoch (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:90 +#: ../app/widgets/gimpcontrollerkeyboard.c:90 msgid "Key Up" msgstr "Pfeiltaste Hoch" -#: app/widgets/gimpcontrollerkeyboard.c:94 +#: ../app/widgets/gimpcontrollerkeyboard.c:94 msgid "Key Down (Shift + Control + Alt)" msgstr "Pfeiltaste Runter (Shift + Strg + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:97 +#: ../app/widgets/gimpcontrollerkeyboard.c:97 msgid "Key Down (Control + Alt)" msgstr "Pfeiltaste Runter (Strg + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:100 +#: ../app/widgets/gimpcontrollerkeyboard.c:100 msgid "Key Down (Shift + Alt)" msgstr "Pfeiltaste Runter (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:103 +#: ../app/widgets/gimpcontrollerkeyboard.c:103 msgid "Key Down (Shift + Control)" msgstr "Pfeiltaste Runter (Shift + Strg)" -#: app/widgets/gimpcontrollerkeyboard.c:106 +#: ../app/widgets/gimpcontrollerkeyboard.c:106 msgid "Key Down (Alt)" msgstr "Pfeiltaste Runter (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:109 +#: ../app/widgets/gimpcontrollerkeyboard.c:109 msgid "Key Down (Control)" msgstr "Pfeiltaste Runter (Strg)" -#: app/widgets/gimpcontrollerkeyboard.c:112 +#: ../app/widgets/gimpcontrollerkeyboard.c:112 msgid "Key Down (Shift)" msgstr "Pfeiltaste Runter (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:115 +#: ../app/widgets/gimpcontrollerkeyboard.c:115 msgid "Key Down" msgstr "Pfeiltaste Runter" -#: app/widgets/gimpcontrollerkeyboard.c:119 +#: ../app/widgets/gimpcontrollerkeyboard.c:119 msgid "Key Left (Shift + Control + Alt)" msgstr "Pfeiltaste Links (Shift + Strg + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:122 +#: ../app/widgets/gimpcontrollerkeyboard.c:122 msgid "Key Left (Control + Alt)" msgstr "Pfeiltaste Links (Strg + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:125 +#: ../app/widgets/gimpcontrollerkeyboard.c:125 msgid "Key Left (Shift + Alt)" msgstr "Pfeiltaste (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:128 +#: ../app/widgets/gimpcontrollerkeyboard.c:128 msgid "Key Left (Shift + Control)" msgstr "Pfeiltaste Links (Shift + Strg)" -#: app/widgets/gimpcontrollerkeyboard.c:131 +#: ../app/widgets/gimpcontrollerkeyboard.c:131 msgid "Key Left (Alt)" msgstr "Pfeiltaste Links (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:134 +#: ../app/widgets/gimpcontrollerkeyboard.c:134 msgid "Key Left (Control)" msgstr "Pfeiltaste Links (Strg)" -#: app/widgets/gimpcontrollerkeyboard.c:137 +#: ../app/widgets/gimpcontrollerkeyboard.c:137 msgid "Key Left (Shift)" msgstr "Pfeiltaste Links (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:140 +#: ../app/widgets/gimpcontrollerkeyboard.c:140 msgid "Key Left" msgstr "Pfeiltaste Links" -#: app/widgets/gimpcontrollerkeyboard.c:144 +#: ../app/widgets/gimpcontrollerkeyboard.c:144 msgid "Key Right (Shift + Control + Alt)" msgstr "Pfeiltaste Rechts (Shift + Strg + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:147 +#: ../app/widgets/gimpcontrollerkeyboard.c:147 msgid "Key Right (Control + Alt)" msgstr "Pfeiltaste Rechts (Strg + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:150 +#: ../app/widgets/gimpcontrollerkeyboard.c:150 msgid "Key Right (Shift + Alt)" msgstr "Pfeiltaste Rechts (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:153 +#: ../app/widgets/gimpcontrollerkeyboard.c:153 msgid "Key Right (Shift + Control)" msgstr "Pfeiltaste Rechts (Shift + Strg)" -#: app/widgets/gimpcontrollerkeyboard.c:156 +#: ../app/widgets/gimpcontrollerkeyboard.c:156 msgid "Key Right (Alt)" msgstr "Pfeiltaste Rechts (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:159 +#: ../app/widgets/gimpcontrollerkeyboard.c:159 msgid "Key Right (Control)" msgstr "Pfeiltaste Rechts (Strg)" -#: app/widgets/gimpcontrollerkeyboard.c:162 +#: ../app/widgets/gimpcontrollerkeyboard.c:162 msgid "Key Right (Shift)" msgstr "Pfeiltaste Rechts (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:165 +#: ../app/widgets/gimpcontrollerkeyboard.c:165 msgid "Key Right" msgstr "Pfeiltaste Rechts" -#: app/widgets/gimpcontrollerkeyboard.c:207 +#: ../app/widgets/gimpcontrollerkeyboard.c:207 msgid "Keyboard" msgstr "Tastatur" -#: app/widgets/gimpcontrollerkeyboard.c:230 +#: ../app/widgets/gimpcontrollerkeyboard.c:230 msgid "Keyboard Events" msgstr "Tastaturereignisse" -#: app/widgets/gimpcontrollerkeyboard.c:231 -#: app/widgets/gimpcontrollerwheel.c:230 +#: ../app/widgets/gimpcontrollerkeyboard.c:231 +#: ../app/widgets/gimpcontrollerwheel.c:230 msgid "Ready" msgstr "Bereit" -#: app/widgets/gimpcontrollerwheel.c:68 +#: ../app/widgets/gimpcontrollerwheel.c:68 msgid "Scroll Up (Shift + Control + Alt)" msgstr "Hochscrollen (Shift + Strg + Alt)" -#: app/widgets/gimpcontrollerwheel.c:71 +#: ../app/widgets/gimpcontrollerwheel.c:71 msgid "Scroll Up (Control + Alt)" msgstr "Hochscrollen (Strg + Alt)" -#: app/widgets/gimpcontrollerwheel.c:74 +#: ../app/widgets/gimpcontrollerwheel.c:74 msgid "Scroll Up (Shift + Alt)" msgstr "Hochsrollen (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:77 +#: ../app/widgets/gimpcontrollerwheel.c:77 msgid "Scroll Up (Shift + Control)" msgstr "Hochscrollen (Shift + Strg)" -#: app/widgets/gimpcontrollerwheel.c:80 +#: ../app/widgets/gimpcontrollerwheel.c:80 msgid "Scroll Up (Alt)" msgstr "Hochscrollen (Alt)" -#: app/widgets/gimpcontrollerwheel.c:83 +#: ../app/widgets/gimpcontrollerwheel.c:83 msgid "Scroll Up (Control)" msgstr "Hochscrollen (Strg)" -#: app/widgets/gimpcontrollerwheel.c:86 +#: ../app/widgets/gimpcontrollerwheel.c:86 msgid "Scroll Up (Shift)" msgstr "Hochscrollen (Shift)" -#: app/widgets/gimpcontrollerwheel.c:89 +#: ../app/widgets/gimpcontrollerwheel.c:89 msgid "Scroll Up" msgstr "Hochscrollen" -#: app/widgets/gimpcontrollerwheel.c:93 +#: ../app/widgets/gimpcontrollerwheel.c:93 msgid "Scroll Down (Shift + Control + Alt)" msgstr "Runterscrollen (Shift + Strg + Alt)" -#: app/widgets/gimpcontrollerwheel.c:96 +#: ../app/widgets/gimpcontrollerwheel.c:96 msgid "Scroll Down (Control + Alt)" msgstr "Runterscrollen (Strg + Alt)" -#: app/widgets/gimpcontrollerwheel.c:99 +#: ../app/widgets/gimpcontrollerwheel.c:99 msgid "Scroll Down (Shift + Alt)" msgstr "Runterscrollen (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:102 +#: ../app/widgets/gimpcontrollerwheel.c:102 msgid "Scroll Down (Shift + Control)" msgstr "Runterscrollen (Shift + Strg)" -#: app/widgets/gimpcontrollerwheel.c:105 +#: ../app/widgets/gimpcontrollerwheel.c:105 msgid "Scroll Down (Alt)" msgstr "Runterscrollen (Alt)" -#: app/widgets/gimpcontrollerwheel.c:108 +#: ../app/widgets/gimpcontrollerwheel.c:108 msgid "Scroll Down (Control)" msgstr "Runterscrollen (Strg)" -#: app/widgets/gimpcontrollerwheel.c:111 +#: ../app/widgets/gimpcontrollerwheel.c:111 msgid "Scroll Down (Shift)" msgstr "Runterscrollen (Shift)" -#: app/widgets/gimpcontrollerwheel.c:114 +#: ../app/widgets/gimpcontrollerwheel.c:114 msgid "Scroll Down" msgstr "Runterscrollen" -#: app/widgets/gimpcontrollerwheel.c:118 +#: ../app/widgets/gimpcontrollerwheel.c:118 msgid "Scroll Left (Shift + Control + Alt)" msgstr "Links Scrollen (Shift + Strg + Alt)" -#: app/widgets/gimpcontrollerwheel.c:121 +#: ../app/widgets/gimpcontrollerwheel.c:121 msgid "Scroll Left (Control + Alt)" msgstr "Links Scrollen (Strg + Alt)" -#: app/widgets/gimpcontrollerwheel.c:124 +#: ../app/widgets/gimpcontrollerwheel.c:124 msgid "Scroll Left (Shift + Alt)" msgstr "Links Scrollen (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:127 +#: ../app/widgets/gimpcontrollerwheel.c:127 msgid "Scroll Left (Shift + Control)" msgstr "Links Scrollen (Shift + Strg)" -#: app/widgets/gimpcontrollerwheel.c:130 +#: ../app/widgets/gimpcontrollerwheel.c:130 msgid "Scroll Left (Alt)" msgstr "Links Scrollen (Alt)" -#: app/widgets/gimpcontrollerwheel.c:133 +#: ../app/widgets/gimpcontrollerwheel.c:133 msgid "Scroll Left (Control)" msgstr "Links Scrollen (Strg)" -#: app/widgets/gimpcontrollerwheel.c:136 +#: ../app/widgets/gimpcontrollerwheel.c:136 msgid "Scroll Left (Shift)" msgstr "Links Scrollen (Shift)" -#: app/widgets/gimpcontrollerwheel.c:139 +#: ../app/widgets/gimpcontrollerwheel.c:139 msgid "Scroll Left" msgstr "Links Scrollen" -#: app/widgets/gimpcontrollerwheel.c:143 +#: ../app/widgets/gimpcontrollerwheel.c:143 msgid "Scroll Right (Shift + Control + Alt)" msgstr "Rechts Scrollen (Shift + Strg + Alt)" -#: app/widgets/gimpcontrollerwheel.c:146 +#: ../app/widgets/gimpcontrollerwheel.c:146 msgid "Scroll Right (Control + Alt)" msgstr "Rechts Scrollen (Strg + Alt)" -#: app/widgets/gimpcontrollerwheel.c:149 +#: ../app/widgets/gimpcontrollerwheel.c:149 msgid "Scroll Right (Shift + Alt)" msgstr "Rechts Scrollen (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:152 +#: ../app/widgets/gimpcontrollerwheel.c:152 msgid "Scroll Right (Shift + Control)" msgstr "Rechts Scrollen (Shift + Strg)" -#: app/widgets/gimpcontrollerwheel.c:155 +#: ../app/widgets/gimpcontrollerwheel.c:155 msgid "Scroll Right (Alt)" msgstr "Rechts Scrollen (Alt)" -#: app/widgets/gimpcontrollerwheel.c:158 +#: ../app/widgets/gimpcontrollerwheel.c:158 msgid "Scroll Right (Control)" msgstr "Rechts Scrollen (Strg)" -#: app/widgets/gimpcontrollerwheel.c:161 +#: ../app/widgets/gimpcontrollerwheel.c:161 msgid "Scroll Right (Shift)" msgstr "Rechts Scrollen (Shift)" -#: app/widgets/gimpcontrollerwheel.c:164 +#: ../app/widgets/gimpcontrollerwheel.c:164 msgid "Scroll Right" msgstr "Rechts Scrollen" -#: app/widgets/gimpcontrollerwheel.c:206 +#: ../app/widgets/gimpcontrollerwheel.c:206 msgid "Mouse Wheel" msgstr "Mausrad" -#: app/widgets/gimpcontrollerwheel.c:229 +#: ../app/widgets/gimpcontrollerwheel.c:229 msgid "Mouse Wheel Events" msgstr "Mausradereignisse" -#: app/widgets/gimpdataeditor.c:205 +#: ../app/widgets/gimpdataeditor.c:205 msgid "Save" msgstr "Speichern" -#: app/widgets/gimpdataeditor.c:213 +#: ../app/widgets/gimpdataeditor.c:213 msgid "Revert" msgstr "Zurücksetzen" -#: app/widgets/gimpdevicestatus.c:281 +#: ../app/widgets/gimpdevicestatus.c:281 msgid "Save device status" msgstr "Gerätestatus speichern" -#: app/widgets/gimpdevicestatus.c:385 +#: ../app/widgets/gimpdevicestatus.c:385 #, c-format msgid "Foreground: %d, %d, %d" msgstr "Vordergrund: %d, %d, %d" -#: app/widgets/gimpdevicestatus.c:390 +#: ../app/widgets/gimpdevicestatus.c:390 #, c-format msgid "Background: %d, %d, %d" msgstr "Hintergrund: %d, %d, %d" -#: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 +#: ../app/widgets/gimpdock.c:348 ../app/widgets/gimpdock.c:359 msgid "Close all tabs?" msgstr "Alle Reiter schließen?" -#: app/widgets/gimpdock.c:354 +#: ../app/widgets/gimpdock.c:354 msgid "Close all Tabs" msgstr "Alle Reiter schließen" -#: app/widgets/gimpdock.c:361 +#: ../app/widgets/gimpdock.c:361 #, c-format msgid "" "This window has %d tabs open. Closing the window will also close all its " @@ -10221,274 +10283,282 @@ "Dieses Fenster hat %d offene Reiter. Das Schließen dieses Fensters wird auch " "diese schließen." -#: app/widgets/gimpdock.c:474 +#: ../app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." msgstr "Hier können Dialoge angedockt werden." -#: app/widgets/gimpdockable.c:210 +#: ../app/widgets/gimpdockable.c:210 msgid "Close this Tab" msgstr "Diesen Reiter schließen" -#: app/widgets/gimperrorconsole.c:235 app/widgets/gimperrordialog.c:252 +#: ../app/widgets/gimperrorconsole.c:235 ../app/widgets/gimperrordialog.c:252 #, c-format msgid "%s Message" msgstr "%s Meldung" -#: app/widgets/gimperrordialog.c:229 +#: ../app/widgets/gimperrordialog.c:229 msgid "Too many error messages!" msgstr "Zu viele Fehlermeldungen!" -#: app/widgets/gimperrordialog.c:230 +#: ../app/widgets/gimperrordialog.c:230 msgid "Messages are redirected to stderr." msgstr "Ausgabe erfolgt jetzt auf der Standard-Fehlerausgabe." -#: app/widgets/gimpfiledialog.c:304 +#: ../app/widgets/gimpfiledialog.c:304 msgid "Automatically Detected" msgstr "Automatisch bestimmt" -#: app/widgets/gimpfiledialog.c:310 +#: ../app/widgets/gimpfiledialog.c:310 msgid "By Extension" msgstr "Nach Endung" -#: app/widgets/gimpfiledialog.c:469 +#: ../app/widgets/gimpfiledialog.c:469 msgid "All Files" msgstr "Alle Dateien" -#: app/widgets/gimpfiledialog.c:608 +#: ../app/widgets/gimpfiledialog.c:608 #, c-format msgid "Select File _Type (%s)" msgstr "Datei_typ: %s" -#: app/widgets/gimpfileprocview.c:234 +#: ../app/widgets/gimpfileprocview.c:234 msgid "File Type" msgstr "Füllart" -#: app/widgets/gimpfileprocview.c:253 +#: ../app/widgets/gimpfileprocview.c:253 msgid "Extensions" msgstr "Nach Endung" -#: app/widgets/gimpgradienteditor.c:362 +#: ../app/widgets/gimpgradienteditor.c:362 msgid "Instant update" msgstr "Dauernd auffrischen" -#: app/widgets/gimpgradienteditor.c:619 +#: ../app/widgets/gimpgradienteditor.c:619 #, c-format msgid "Zoom factor: %d:1" msgstr "Maßstab: %d:1" -#: app/widgets/gimpgradienteditor.c:622 +#: ../app/widgets/gimpgradienteditor.c:622 #, c-format msgid "Displaying [%0.6f, %0.6f]" msgstr "[%0.6f, %0.6f] wird angezeigt" -#: app/widgets/gimpgradienteditor.c:814 +#: ../app/widgets/gimpgradienteditor.c:814 #, c-format msgid "Position: %0.6f" msgstr "Position: %0.6f" -#: app/widgets/gimpgradienteditor.c:816 +#: ../app/widgets/gimpgradienteditor.c:816 #, c-format msgid "RGB (%0.3f, %0.3f, %0.3f)" msgstr "RGB (%0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpgradienteditor.c:819 +#: ../app/widgets/gimpgradienteditor.c:819 #, c-format msgid "HSV (%0.3f, %0.3f, %0.3f)" msgstr "HSV (%0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpgradienteditor.c:821 +#: ../app/widgets/gimpgradienteditor.c:821 #, c-format msgid "Intensity: %0.3f Opacity: %0.3f" msgstr "Intensität %0.3f Deckkraft: %0.3f" -#: app/widgets/gimpgradienteditor.c:854 app/widgets/gimpgradienteditor.c:889 +#: ../app/widgets/gimpgradienteditor.c:854 +#: ../app/widgets/gimpgradienteditor.c:889 #, c-format msgid "RGB (%d, %d, %d)" msgstr "RGB (%d, %d, %d)" -#: app/widgets/gimpgradienteditor.c:862 +#: ../app/widgets/gimpgradienteditor.c:862 msgid "Foreground color set to:" msgstr "Vordergrundfarbe ist:" -#: app/widgets/gimpgradienteditor.c:894 +#: ../app/widgets/gimpgradienteditor.c:894 #, c-format msgid "(%0.3f, %0.3f, %0.3f)" msgstr "(%0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpgradienteditor.c:898 +#: ../app/widgets/gimpgradienteditor.c:898 msgid "Background color set to:" msgstr "Hintergrundfarbe ist:" -#: app/widgets/gimpgradienteditor.c:1101 app/widgets/gimpgradienteditor.c:1167 +#: ../app/widgets/gimpgradienteditor.c:1101 +#: ../app/widgets/gimpgradienteditor.c:1167 #, c-format msgid "%s%sDrag: move & compress" msgstr "%s%sZiehen: Verschieben & Stauchen" -#: app/widgets/gimpgradienteditor.c:1107 +#: ../app/widgets/gimpgradienteditor.c:1107 msgid "Drag: move" msgstr "Ziehen: Verschieben" -#: app/widgets/gimpgradienteditor.c:1114 app/widgets/gimpgradienteditor.c:1128 -#: app/widgets/gimpgradienteditor.c:1142 app/widgets/gimpgradienteditor.c:1164 +#: ../app/widgets/gimpgradienteditor.c:1114 +#: ../app/widgets/gimpgradienteditor.c:1128 +#: ../app/widgets/gimpgradienteditor.c:1142 +#: ../app/widgets/gimpgradienteditor.c:1164 #, c-format msgid "%s%sClick: extend selection" msgstr "%s%sKlick: Auswahl erweitern" -#: app/widgets/gimpgradienteditor.c:1120 app/widgets/gimpgradienteditor.c:1134 +#: ../app/widgets/gimpgradienteditor.c:1120 +#: ../app/widgets/gimpgradienteditor.c:1134 msgid "Click: select" msgstr "Klick: Auswahl" -#: app/widgets/gimpgradienteditor.c:1148 app/widgets/gimpgradienteditor.c:1172 +#: ../app/widgets/gimpgradienteditor.c:1148 +#: ../app/widgets/gimpgradienteditor.c:1172 msgid "Click: select Drag: move" msgstr "Klick: Auswahl Ziehen: Verschieben" -#: app/widgets/gimpgradienteditor.c:1394 app/widgets/gimpgradienteditor.c:1402 +#: ../app/widgets/gimpgradienteditor.c:1394 +#: ../app/widgets/gimpgradienteditor.c:1402 #, c-format msgid "Handle position: %0.6f" msgstr "Markerposition: %0.6f" -#: app/widgets/gimpgradienteditor.c:1419 +#: ../app/widgets/gimpgradienteditor.c:1419 #, c-format msgid "Distance: %0.6f" msgstr "Abstand: %0.6f" -#: app/widgets/gimpgrideditor.c:219 +#: ../app/widgets/gimpgrideditor.c:219 msgid "Line _Style:" msgstr "Linien_stil:" -#: app/widgets/gimpgrideditor.c:223 +#: ../app/widgets/gimpgrideditor.c:223 msgid "Change grid foreground color" msgstr "Vordergrundfarbe des Gitters ändern" -#: app/widgets/gimpgrideditor.c:228 +#: ../app/widgets/gimpgrideditor.c:228 msgid "_Foreground color:" msgstr "_Vordergrundfarbe:" -#: app/widgets/gimpgrideditor.c:232 +#: ../app/widgets/gimpgrideditor.c:232 msgid "Change grid background color" msgstr "Hintergrundfarbe des Gitters ändern" -#: app/widgets/gimpgrideditor.c:237 +#: ../app/widgets/gimpgrideditor.c:237 msgid "_Background color:" msgstr "_Hintergrundfarbe:" -#: app/widgets/gimpgrideditor.c:242 +#: ../app/widgets/gimpgrideditor.c:242 msgid "Spacing" msgstr "Abstand" -#: app/widgets/gimpgrideditor.c:263 app/widgets/gimpgrideditor.c:295 +#: ../app/widgets/gimpgrideditor.c:263 ../app/widgets/gimpgrideditor.c:295 msgid "Width" msgstr "Breite" -#: app/widgets/gimpgrideditor.c:265 app/widgets/gimpgrideditor.c:297 +#: ../app/widgets/gimpgrideditor.c:265 ../app/widgets/gimpgrideditor.c:297 msgid "Height" msgstr "Höhe" -#: app/widgets/gimphelp.c:187 +#: ../app/widgets/gimphelp.c:187 msgid "Help browser not found" msgstr "Der Hilfe-Browser wurde nicht gefunden" -#: app/widgets/gimphelp.c:188 +#: ../app/widgets/gimphelp.c:188 msgid "Could not find GIMP help browser." msgstr "Der Hilfe-Browser von The Gimp konnte nicht gefunden werden" -#: app/widgets/gimphelp.c:189 +#: ../app/widgets/gimphelp.c:189 msgid "" "The GIMP help browser plug-in appears to be missing from your installation." msgstr "" "Der Plugin »Hilfe-Browser von The-Gimp« scheint in Ihrer Installation nicht " "vorhanden zu sein." -#: app/widgets/gimphelp.c:213 +#: ../app/widgets/gimphelp.c:213 msgid "Help browser doesn't start" msgstr "Der Hilfe-Browser startet nicht" -#: app/widgets/gimphelp.c:214 +#: ../app/widgets/gimphelp.c:214 msgid "Could not start the GIMP help browser plug-in." msgstr "Der Hilfe-Browser von The Gimp konnte nicht gestartet werden." -#: app/widgets/gimphelp.c:240 +#: ../app/widgets/gimphelp.c:240 msgid "Use _web browser instead" msgstr "Stattdessen Internet-Browser verwenden" -#: app/widgets/gimphistogrameditor.c:134 +#: ../app/widgets/gimphistogrameditor.c:134 msgid "Mean:" msgstr "Durchschnitt:" -#: app/widgets/gimphistogrameditor.c:135 +#: ../app/widgets/gimphistogrameditor.c:135 msgid "Std Dev:" msgstr "Std.-Abweichung:" -#: app/widgets/gimphistogrameditor.c:136 +#: ../app/widgets/gimphistogrameditor.c:136 msgid "Median:" msgstr "Median:" -#: app/widgets/gimphistogrameditor.c:137 +#: ../app/widgets/gimphistogrameditor.c:137 msgid "Pixels:" msgstr "Pixel:" -#: app/widgets/gimphistogrameditor.c:138 +#: ../app/widgets/gimphistogrameditor.c:138 msgid "Count:" msgstr "Anzahl:" -#: app/widgets/gimphistogrameditor.c:139 +#: ../app/widgets/gimphistogrameditor.c:139 msgid "Percentile:" msgstr "Prozentsatz:" -#: app/widgets/gimpimagedock.c:203 +#: ../app/widgets/gimpimagedock.c:203 msgid "Auto" msgstr "Auto" -#: app/widgets/gimpimagedock.c:214 +#: ../app/widgets/gimpimagedock.c:214 msgid "" "When enabled the dialog automatically follows the image you are working on." msgstr "" "Legt fest, ob der Dialog automatisch dem Bild folgt, an dem Sie im Moment " "arbeiten." -#: app/widgets/gimpitemtreeview.c:996 +#: ../app/widgets/gimpitemtreeview.c:996 msgid "Set Item Exclusive Visible" msgstr "Objekt exklusiv sichtbar machen" -#: app/widgets/gimpitemtreeview.c:1004 +#: ../app/widgets/gimpitemtreeview.c:1004 msgid "Set Item Exclusive Linked" msgstr "Objekt exklusiv verknüpfen" -#: app/widgets/gimplayertreeview.c:252 +#: ../app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "Ebenenreihenfolge ändern" -#: app/widgets/gimplayertreeview.c:313 +#: ../app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "Transparenz erhalten" -#: app/widgets/gimplayertreeview.c:848 +#: ../app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "Leere Ebene" -#: app/widgets/gimpmessagebox.c:460 +#: ../app/widgets/gimpmessagebox.c:462 #, c-format msgid "Message repeated %d times." msgstr "Meldung %d mal wiederholt." -#: app/widgets/gimpmessagebox.c:462 +#: ../app/widgets/gimpmessagebox.c:464 msgid "Message repeated once." msgstr "Meldung einmal wiederholt." -#: app/widgets/gimppaletteeditor.c:258 app/widgets/gimppaletteeditor.c:999 +#: ../app/widgets/gimppaletteeditor.c:258 +#: ../app/widgets/gimppaletteeditor.c:999 msgid "Undefined" msgstr "Nicht definiert" -#: app/widgets/gimppaletteeditor.c:266 +#: ../app/widgets/gimppaletteeditor.c:266 msgid "Columns:" msgstr "Spalten:" -#: app/widgets/gimppropwidgets.c:1537 +#: ../app/widgets/gimppropwidgets.c:1537 #, c-format msgid "This text input field is limited to %d characters." msgstr "Dieses Eingabefeld ist auf %d Zeichen beschränkt." -#: app/widgets/gimpselectiondata.c:317 +#: ../app/widgets/gimpselectiondata.c:319 #, c-format msgid "" "The filename '%s' couldn't be converted to a valid URI:\n" @@ -10499,93 +10569,93 @@ "\n" "%s" -#: app/widgets/gimpselectiondata.c:321 +#: ../app/widgets/gimpselectiondata.c:323 msgid "Invalid UTF-8" msgstr "Ungültiges UTF-8" -#: app/widgets/gimpsizebox.c:456 +#: ../app/widgets/gimpsizebox.c:456 #, c-format msgid "%d x %d dpi" msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:458 +#: ../app/widgets/gimpsizebox.c:458 #, c-format msgid "%d dpi" msgstr "%d dpi" -#: app/widgets/gimpstrokeeditor.c:198 +#: ../app/widgets/gimpstrokeeditor.c:198 msgid "Line Width:" msgstr "Linienbreite:" -#: app/widgets/gimpstrokeeditor.c:209 +#: ../app/widgets/gimpstrokeeditor.c:209 msgid "_Line Style" msgstr "Linien_stil" -#: app/widgets/gimpstrokeeditor.c:228 +#: ../app/widgets/gimpstrokeeditor.c:228 msgid "_Cap style:" msgstr "_Aufsatzstil:" -#: app/widgets/gimpstrokeeditor.c:234 +#: ../app/widgets/gimpstrokeeditor.c:234 msgid "_Join style:" msgstr "_Verbindungsstil:" -#: app/widgets/gimpstrokeeditor.c:239 +#: ../app/widgets/gimpstrokeeditor.c:239 msgid "_Miter limit:" msgstr "_Gehrung-Limit:" -#: app/widgets/gimpstrokeeditor.c:246 +#: ../app/widgets/gimpstrokeeditor.c:246 msgid "Dash pattern:" msgstr "Strichmuster:" # CHECK -#: app/widgets/gimpstrokeeditor.c:288 +#: ../app/widgets/gimpstrokeeditor.c:288 msgid "Dash preset:" msgstr "Strich Vordefiniert:" -#: app/widgets/gimpstrokeeditor.c:300 +#: ../app/widgets/gimpstrokeeditor.c:300 msgid "_Antialiasing" msgstr "_Kantenglättung" -#: app/widgets/gimptemplateeditor.c:255 +#: ../app/widgets/gimptemplateeditor.c:255 #, c-format msgid "%p" msgstr "%p" -#: app/widgets/gimptemplateeditor.c:330 +#: ../app/widgets/gimptemplateeditor.c:330 msgid "_Advanced Options" msgstr "_Erweiterte Einstellungen" -#: app/widgets/gimptemplateeditor.c:437 +#: ../app/widgets/gimptemplateeditor.c:437 msgid "Color_space:" msgstr "Farb_raum:" -#: app/widgets/gimptemplateeditor.c:445 +#: ../app/widgets/gimptemplateeditor.c:445 msgid "_Fill with:" msgstr "_Füllung:" -#: app/widgets/gimptemplateeditor.c:455 +#: ../app/widgets/gimptemplateeditor.c:455 msgid "Comme_nt:" msgstr "Ko_mmentar:" -#: app/widgets/gimptemplateeditor.c:565 +#: ../app/widgets/gimptemplateeditor.c:565 msgid "_Name:" msgstr "_Name:" -#: app/widgets/gimptemplateeditor.c:576 +#: ../app/widgets/gimptemplateeditor.c:576 msgid "_Icon:" msgstr "_Symbol:" -#: app/widgets/gimptemplateeditor.c:699 +#: ../app/widgets/gimptemplateeditor.c:699 #, c-format msgid "%d x %d dpi, %s" msgstr "%d x %d dpi, %s" -#: app/widgets/gimptemplateeditor.c:701 +#: ../app/widgets/gimptemplateeditor.c:701 #, c-format msgid "%d dpi, %s" msgstr "%d dpi, %s" -#: app/widgets/gimpthumbbox.c:337 +#: ../app/widgets/gimpthumbbox.c:337 #, c-format msgid "" "Click to update preview\n" @@ -10594,28 +10664,28 @@ "Klick erneuert die Vorschau\n" "%s Klick erzwingt eine neue Vorschau" -#: app/widgets/gimpthumbbox.c:407 app/widgets/gimpthumbbox.c:477 +#: ../app/widgets/gimpthumbbox.c:407 ../app/widgets/gimpthumbbox.c:477 msgid "No selection" msgstr "Keine Auswahl" -#: app/widgets/gimpthumbbox.c:602 app/widgets/gimpthumbbox.c:626 +#: ../app/widgets/gimpthumbbox.c:602 ../app/widgets/gimpthumbbox.c:626 #, c-format msgid "Thumbnail %d of %d" msgstr "Vorschau %d von %d" -#: app/widgets/gimpthumbbox.c:730 app/widgets/gimpthumbbox.c:740 +#: ../app/widgets/gimpthumbbox.c:733 ../app/widgets/gimpthumbbox.c:743 msgid "Creating Preview ..." msgstr "Vorschau wird erzeugt..." -#: app/widgets/gimptoolbox-color-area.c:135 +#: ../app/widgets/gimptoolbox-color-area.c:135 msgid "Change Foreground Color" msgstr "Vordergrundfarbe ändern" -#: app/widgets/gimptoolbox-color-area.c:140 +#: ../app/widgets/gimptoolbox-color-area.c:140 msgid "Change Background Color" msgstr "Hintergrundfarbe ändern" -#: app/widgets/gimptoolbox-image-area.c:90 +#: ../app/widgets/gimptoolbox-image-area.c:90 msgid "" "The active image.\n" "Click to open the Image Dialog." @@ -10623,7 +10693,7 @@ "Das aktive Bild.\n" "Klick öffnet den Bilddialog." -#: app/widgets/gimptoolbox-indicator-area.c:143 +#: ../app/widgets/gimptoolbox-indicator-area.c:143 msgid "" "The active brush.\n" "Click to open the Brush Dialog." @@ -10631,7 +10701,7 @@ "Der aktive Pinsel.\n" "Klick öffnet die Pinselauswahl." -#: app/widgets/gimptoolbox-indicator-area.c:174 +#: ../app/widgets/gimptoolbox-indicator-area.c:174 msgid "" "The active pattern.\n" "Click to open the Pattern Dialog." @@ -10639,7 +10709,7 @@ "Das aktive Muster.\n" "Klick öffnet die Musterauswahl." -#: app/widgets/gimptoolbox-indicator-area.c:205 +#: ../app/widgets/gimptoolbox-indicator-area.c:205 msgid "" "The active gradient.\n" "Click to open the Gradient Dialog." @@ -10647,7 +10717,7 @@ "Der aktive Farbverlauf.\n" "Klick öffnet die Farbverlaufsauswahl." -#: app/widgets/gimptoolbox.c:854 +#: ../app/widgets/gimptoolbox.c:854 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to open the color selection dialog." @@ -10656,258 +10726,258 @@ "Farben zurück. Die Pfeile vertauschen die Farbe. Doppelklick öffnet den " "Farbauswahldialog" -#: app/widgets/gimptooloptionseditor.c:185 +#: ../app/widgets/gimptooloptionseditor.c:185 msgid "Save options to..." msgstr "Einstellungen speichern als..." -#: app/widgets/gimptooloptionseditor.c:193 +#: ../app/widgets/gimptooloptionseditor.c:193 msgid "Restore options from..." msgstr "Einstellungen laden von..." -#: app/widgets/gimptooloptionseditor.c:201 +#: ../app/widgets/gimptooloptionseditor.c:201 msgid "Delete saved options..." msgstr "Einstellungen löschen..." -#: app/widgets/gimpuimanager.c:495 +#: ../app/widgets/gimpuimanager.c:495 msgid "Your GIMP installation is incomplete:" msgstr "Ihre Installation von The Gimp ist unvollständig:" -#: app/widgets/gimpuimanager.c:497 +#: ../app/widgets/gimpuimanager.c:497 msgid "Plase make sure the menu XML files are correctly installed." msgstr "" "Bitte stellen Sie sicher, dass die XML-Menüdateien korrekt installiert sind." -#: app/widgets/gimpundoeditor.c:255 +#: ../app/widgets/gimpundoeditor.c:255 msgid "[ Base Image ]" msgstr "[ Basisbild ]" -#: app/widgets/gimpvectorstreeview.c:151 +#: ../app/widgets/gimpvectorstreeview.c:151 msgid "Reorder path" msgstr "Pfadreihenfolge ändern" -#: app/widgets/gimpvectorstreeview.c:289 +#: ../app/widgets/gimpvectorstreeview.c:289 msgid "Empty Path" msgstr "Leerer Pfad" -#: app/widgets/gimpviewablebox.c:75 +#: ../app/widgets/gimpviewablebox.c:75 msgid "Open the brush selection dialog" msgstr "Den Dialog zur Pinselauswahl öffnen" -#: app/widgets/gimpviewablebox.c:115 +#: ../app/widgets/gimpviewablebox.c:115 msgid "Open the pattern selection dialog" msgstr "Den Dialog zur Musterauswahl öffnen" -#: app/widgets/gimpviewablebox.c:155 +#: ../app/widgets/gimpviewablebox.c:155 msgid "Open the gradient selection dialog" msgstr "Den Dialog zur Farbverlaufswahl öffnen" # CHECK -#: app/widgets/gimpviewablebox.c:167 +#: ../app/widgets/gimpviewablebox.c:167 msgid "Reverse" msgstr "Umkehren" -#: app/widgets/gimpviewablebox.c:210 +#: ../app/widgets/gimpviewablebox.c:210 msgid "Open the palette selection dialog" msgstr "Den Dialog zur Palettenauswahl öffnen" -#: app/widgets/gimpviewablebox.c:250 +#: ../app/widgets/gimpviewablebox.c:250 msgid "Open the font selection dialog" msgstr "Den Dialog zur Schriftauswahl öffnen" -#: app/widgets/gimpwidgets-constructors.c:50 -#: app/widgets/gimpwidgets-constructors.c:85 +#: ../app/widgets/gimpwidgets-constructors.c:50 +#: ../app/widgets/gimpwidgets-constructors.c:85 msgid "Normal" msgstr "Normal" -#: app/widgets/gimpwidgets-constructors.c:51 -#: app/widgets/gimpwidgets-constructors.c:86 +#: ../app/widgets/gimpwidgets-constructors.c:51 +#: ../app/widgets/gimpwidgets-constructors.c:86 msgid "Dissolve" msgstr "Vernichtend" -#: app/widgets/gimpwidgets-constructors.c:52 +#: ../app/widgets/gimpwidgets-constructors.c:52 msgid "Behind" msgstr "Hinter" -#: app/widgets/gimpwidgets-constructors.c:53 +#: ../app/widgets/gimpwidgets-constructors.c:53 msgid "Color erase" msgstr "Farbe entfernen" -#: app/widgets/gimpwidgets-constructors.c:55 -#: app/widgets/gimpwidgets-constructors.c:88 +#: ../app/widgets/gimpwidgets-constructors.c:55 +#: ../app/widgets/gimpwidgets-constructors.c:88 msgid "Multiply" msgstr "Multiplikation" -#: app/widgets/gimpwidgets-constructors.c:56 -#: app/widgets/gimpwidgets-constructors.c:89 +#: ../app/widgets/gimpwidgets-constructors.c:56 +#: ../app/widgets/gimpwidgets-constructors.c:89 msgid "Divide" msgstr "Division" -#: app/widgets/gimpwidgets-constructors.c:57 -#: app/widgets/gimpwidgets-constructors.c:90 +#: ../app/widgets/gimpwidgets-constructors.c:57 +#: ../app/widgets/gimpwidgets-constructors.c:90 msgid "Screen" msgstr "Bildschirm" -#: app/widgets/gimpwidgets-constructors.c:58 -#: app/widgets/gimpwidgets-constructors.c:91 +#: ../app/widgets/gimpwidgets-constructors.c:58 +#: ../app/widgets/gimpwidgets-constructors.c:91 msgid "Overlay" msgstr "Ãœberlagern" -#: app/widgets/gimpwidgets-constructors.c:62 -#: app/widgets/gimpwidgets-constructors.c:95 +#: ../app/widgets/gimpwidgets-constructors.c:62 +#: ../app/widgets/gimpwidgets-constructors.c:95 msgid "Hard light" msgstr "Harte Kanten" -#: app/widgets/gimpwidgets-constructors.c:63 -#: app/widgets/gimpwidgets-constructors.c:96 +#: ../app/widgets/gimpwidgets-constructors.c:63 +#: ../app/widgets/gimpwidgets-constructors.c:96 msgid "Soft light" msgstr "Weiche Kanten" -#: app/widgets/gimpwidgets-constructors.c:64 -#: app/widgets/gimpwidgets-constructors.c:97 +#: ../app/widgets/gimpwidgets-constructors.c:64 +#: ../app/widgets/gimpwidgets-constructors.c:97 msgid "Grain extract" msgstr "Faser extrahieren" -#: app/widgets/gimpwidgets-constructors.c:65 -#: app/widgets/gimpwidgets-constructors.c:98 +#: ../app/widgets/gimpwidgets-constructors.c:65 +#: ../app/widgets/gimpwidgets-constructors.c:98 msgid "Grain merge" msgstr "Faser mischen" -#: app/widgets/gimpwidgets-constructors.c:67 -#: app/widgets/gimpwidgets-constructors.c:100 +#: ../app/widgets/gimpwidgets-constructors.c:67 +#: ../app/widgets/gimpwidgets-constructors.c:100 msgid "Difference" msgstr "Unterschied" -#: app/widgets/gimpwidgets-constructors.c:68 -#: app/widgets/gimpwidgets-constructors.c:101 +#: ../app/widgets/gimpwidgets-constructors.c:68 +#: ../app/widgets/gimpwidgets-constructors.c:101 msgid "Addition" msgstr "Addition" -#: app/widgets/gimpwidgets-constructors.c:70 -#: app/widgets/gimpwidgets-constructors.c:103 +#: ../app/widgets/gimpwidgets-constructors.c:70 +#: ../app/widgets/gimpwidgets-constructors.c:103 msgid "Darken only" msgstr "Nur Abdunkeln" -#: app/widgets/gimpwidgets-constructors.c:71 -#: app/widgets/gimpwidgets-constructors.c:104 +#: ../app/widgets/gimpwidgets-constructors.c:71 +#: ../app/widgets/gimpwidgets-constructors.c:104 msgid "Lighten only" msgstr "Nur Aufhellen" -#: app/widgets/gimpwidgets-constructors.c:73 -#: app/widgets/gimpwidgets-constructors.c:106 +#: ../app/widgets/gimpwidgets-constructors.c:73 +#: ../app/widgets/gimpwidgets-constructors.c:106 msgid "Hue" msgstr "Farbton" -#: app/widgets/gimpwidgets-constructors.c:74 -#: app/widgets/gimpwidgets-constructors.c:107 +#: ../app/widgets/gimpwidgets-constructors.c:74 +#: ../app/widgets/gimpwidgets-constructors.c:107 msgid "Saturation" msgstr "Sättigung" #. The format string which is used to display modifier names #. * , and #. -#: app/widgets/gimpwidgets-utils.c:391 +#: ../app/widgets/gimpwidgets-utils.c:391 #, c-format msgid "<%s>" msgstr "<%s>" -#: app/widgets/gimpwidgets-utils.c:795 +#: ../app/widgets/gimpwidgets-utils.c:796 #, c-format msgid "Invalid UTF-8 data in file '%s'." msgstr "Ungültige UTF-8-Daten in Datei »%s«." -#: app/widgets/widgets-enums.c:23 +#: ../app/widgets/widgets-enums.c:23 msgid "Foreground" msgstr "Vordergrund" -#: app/widgets/widgets-enums.c:53 +#: ../app/widgets/widgets-enums.c:53 msgid "Portrait" msgstr "Hochformat" -#: app/widgets/widgets-enums.c:54 +#: ../app/widgets/widgets-enums.c:54 msgid "Landscape" msgstr "Querformat" -#: app/widgets/widgets-enums.c:113 +#: ../app/widgets/widgets-enums.c:113 msgid "Pixel values" msgstr "Pixel Werte" -#: app/widgets/widgets-enums.c:115 +#: ../app/widgets/widgets-enums.c:115 msgid "HSV" msgstr "HSV" -#: app/widgets/widgets-enums.c:116 +#: ../app/widgets/widgets-enums.c:116 msgid "CMYK" msgstr "CMYK" -#: app/widgets/widgets-enums.c:171 +#: ../app/widgets/widgets-enums.c:171 msgid "Black & white" msgstr "Schwarz & Weiß" -#: app/widgets/widgets-enums.c:172 +#: ../app/widgets/widgets-enums.c:172 msgid "Fancy" msgstr "Ausgefallen" -#: app/widgets/widgets-enums.c:199 +#: ../app/widgets/widgets-enums.c:199 msgid "GIMP help browser" msgstr "Hilfe-Browser von The Gimp" -#: app/widgets/widgets-enums.c:200 +#: ../app/widgets/widgets-enums.c:200 msgid "Web browser" msgstr "Webbrowser" -#: app/widgets/widgets-enums.c:228 +#: ../app/widgets/widgets-enums.c:228 msgid "Logarithmic" msgstr "Logarithmisch" -#: app/widgets/widgets-enums.c:261 +#: ../app/widgets/widgets-enums.c:261 msgid "Icon" msgstr "Symbol" -#: app/widgets/widgets-enums.c:262 +#: ../app/widgets/widgets-enums.c:262 msgid "Current status" msgstr "Derzeitiger Status" -#: app/widgets/widgets-enums.c:264 +#: ../app/widgets/widgets-enums.c:264 msgid "Description" msgstr "Beschreibung" -#: app/widgets/widgets-enums.c:265 +#: ../app/widgets/widgets-enums.c:265 msgid "Icon & text" msgstr "Symbol und Text" -#: app/widgets/widgets-enums.c:266 +#: ../app/widgets/widgets-enums.c:266 msgid "Icon & desc" msgstr "Symbol und Beschr." -#: app/widgets/widgets-enums.c:267 +#: ../app/widgets/widgets-enums.c:267 msgid "Status & text" msgstr "Status & Text" -#: app/widgets/widgets-enums.c:268 +#: ../app/widgets/widgets-enums.c:268 msgid "Status & desc" msgstr "Status & Beschr." -#: app/widgets/widgets-enums.c:295 +#: ../app/widgets/widgets-enums.c:295 msgid "View as list" msgstr "Als Liste anzeigen" -#: app/widgets/widgets-enums.c:296 +#: ../app/widgets/widgets-enums.c:296 msgid "View as grid" msgstr "Als Raster anzeigen" -#: app/widgets/widgets-enums.c:324 +#: ../app/widgets/widgets-enums.c:324 msgid "Normal window" msgstr "Normales Fenster" -#: app/widgets/widgets-enums.c:325 +#: ../app/widgets/widgets-enums.c:325 msgid "Utility window" msgstr "Werkzeug Fenster" -#: app/widgets/widgets-enums.c:326 +#: ../app/widgets/widgets-enums.c:326 msgid "Keep above" msgstr "Oben behalten" -#: app/xcf/xcf-load.c:297 +#: ../app/xcf/xcf-load.c:297 msgid "" "XCF warning: version 0 of XCF file format\n" "did not save indexed colormaps correctly.\n" @@ -10917,39 +10987,40 @@ "hat indizierte Farbpaletten falsch gespeichert.\n" "Farben wurden durch Graustufen ersetzt." -#: app/xcf/xcf-read.c:107 +#: ../app/xcf/xcf-read.c:107 msgid "Invalid UTF-8 string in XCF file" msgstr "Ungültiger UTF-8 Text in XCF Datei" -#: app/xcf/xcf-save.c:157 app/xcf/xcf-save.c:167 app/xcf/xcf-save.c:177 -#: app/xcf/xcf-save.c:187 app/xcf/xcf-save.c:211 app/xcf/xcf.c:342 +#: ../app/xcf/xcf-save.c:157 ../app/xcf/xcf-save.c:167 +#: ../app/xcf/xcf-save.c:177 ../app/xcf/xcf-save.c:187 +#: ../app/xcf/xcf-save.c:211 ../app/xcf/xcf.c:342 #, c-format msgid "Error saving XCF file: %s" msgstr "Fehler beim Schreiben der XCF-Datei: %s" -#: app/xcf/xcf-write.c:86 +#: ../app/xcf/xcf-write.c:86 #, c-format msgid "Error writing XCF: %s" msgstr "Fehler beim Schreiben der XCF-Datei: %s" -#: app/xcf/xcf-seek.c:44 app/xcf/xcf-seek.c:61 app/xcf/xcf-seek.c:72 +#: ../app/xcf/xcf-seek.c:44 ../app/xcf/xcf-seek.c:61 ../app/xcf/xcf-seek.c:72 #, c-format msgid "Could not seek in XCF file: %s" msgstr "Fehler beim Spulen in XCF-Datei: %s" -#: app/xcf/xcf.c:86 app/xcf/xcf.c:143 +#: ../app/xcf/xcf.c:86 ../app/xcf/xcf.c:143 msgid "GIMP XCF image" msgstr "GIMP XCF Bild" -#: app/xcf/xcf.c:282 +#: ../app/xcf/xcf.c:282 #, c-format msgid "XCF error: unsupported XCF file version %d encountered" msgstr "XCF Fehler: nicht unterstützte XCF-Dateiversion %d aufgetreten" -#: data/misc/gimp.desktop.in.in.h:1 +#: ../data/misc/gimp.desktop.in.in.h:1 msgid "Create and edit images or photographs" msgstr "Bilder und Photos erstellen und bearbeiten" -#: data/misc/gimp.desktop.in.in.h:2 +#: ../data/misc/gimp.desktop.in.in.h:2 msgid "Image Editor" msgstr "Bildeditor" diff -uraN gimp-2.2.7/po-libgimp/gimp20-libgimp.pot gimp-2.2.8/po-libgimp/gimp20-libgimp.pot --- gimp-2.2.7/po-libgimp/gimp20-libgimp.pot 2005-05-08 12:28:47.000000000 +0200 +++ gimp-2.2.8/po-libgimp/gimp20-libgimp.pot 1970-01-01 01:00:00.000000000 +0100 @@ -1,789 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-05-08 12:28+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../libgimp/gimpbrushmenu.c:129 -msgid "Brush Selection" -msgstr "" - -#: ../libgimp/gimpbrushmenu.c:158 ../libgimp/gimppatternmenu.c:142 -msgid "_Browse..." -msgstr "" - -#: ../libgimp/gimpexport.c:215 ../libgimp/gimpexport.c:251 -#, c-format -msgid "%s can't handle layers" -msgstr "" - -#: ../libgimp/gimpexport.c:216 ../libgimp/gimpexport.c:225 -#: ../libgimp/gimpexport.c:234 -msgid "Merge Visible Layers" -msgstr "" - -#: ../libgimp/gimpexport.c:224 -#, c-format -msgid "%s can't handle layer offsets, size or opacity" -msgstr "" - -#: ../libgimp/gimpexport.c:233 ../libgimp/gimpexport.c:242 -#, c-format -msgid "%s can only handle layers as animation frames" -msgstr "" - -#: ../libgimp/gimpexport.c:234 ../libgimp/gimpexport.c:243 -msgid "Save as Animation" -msgstr "" - -#: ../libgimp/gimpexport.c:243 ../libgimp/gimpexport.c:252 -#: ../libgimp/gimpexport.c:261 -msgid "Flatten Image" -msgstr "" - -#: ../libgimp/gimpexport.c:260 -#, c-format -msgid "%s can't handle transparency" -msgstr "" - -#: ../libgimp/gimpexport.c:269 -#, c-format -msgid "%s can't handle layer masks" -msgstr "" - -#: ../libgimp/gimpexport.c:270 -msgid "Apply Layer Masks" -msgstr "" - -#: ../libgimp/gimpexport.c:278 -#, c-format -msgid "%s can only handle RGB images" -msgstr "" - -#: ../libgimp/gimpexport.c:279 ../libgimp/gimpexport.c:317 -#: ../libgimp/gimpexport.c:326 -msgid "Convert to RGB" -msgstr "" - -#: ../libgimp/gimpexport.c:287 -#, c-format -msgid "%s can only handle grayscale images" -msgstr "" - -#: ../libgimp/gimpexport.c:288 ../libgimp/gimpexport.c:317 -#: ../libgimp/gimpexport.c:338 -msgid "Convert to Grayscale" -msgstr "" - -#: ../libgimp/gimpexport.c:296 -#, c-format -msgid "%s can only handle indexed images" -msgstr "" - -#: ../libgimp/gimpexport.c:297 ../libgimp/gimpexport.c:326 -#: ../libgimp/gimpexport.c:336 -msgid "" -"Convert to Indexed using default settings\n" -"(Do it manually to tune the result)" -msgstr "" - -#: ../libgimp/gimpexport.c:306 -#, c-format -msgid "%s can only handle bitmap (two color) indexed images" -msgstr "" - -#: ../libgimp/gimpexport.c:307 -msgid "" -"Convert to Indexed using bitmap default settings\n" -"(Do it manually to tune the result)" -msgstr "" - -#: ../libgimp/gimpexport.c:316 -#, c-format -msgid "%s can only handle RGB or grayscale images" -msgstr "" - -#: ../libgimp/gimpexport.c:325 -#, c-format -msgid "%s can only handle RGB or indexed images" -msgstr "" - -#: ../libgimp/gimpexport.c:335 -#, c-format -msgid "%s can only handle grayscale or indexed images" -msgstr "" - -#: ../libgimp/gimpexport.c:346 -#, c-format -msgid "%s needs an alpha channel" -msgstr "" - -#: ../libgimp/gimpexport.c:347 -msgid "Add Alpha Channel" -msgstr "" - -#: ../libgimp/gimpexport.c:381 -msgid "Confirm Save" -msgstr "" - -#: ../libgimp/gimpexport.c:387 -msgid "Confirm" -msgstr "" - -#: ../libgimp/gimpexport.c:454 -msgid "Export File" -msgstr "" - -#: ../libgimp/gimpexport.c:458 -msgid "_Ignore" -msgstr "" - -#: ../libgimp/gimpexport.c:460 -msgid "_Export" -msgstr "" - -#. the headline -#: ../libgimp/gimpexport.c:482 -#, c-format -msgid "" -"Your image should be exported before it can be saved as %s for the following " -"reasons:" -msgstr "" - -#. the footline -#: ../libgimp/gimpexport.c:553 -msgid "The export conversion won't modify your original image." -msgstr "" - -#: ../libgimp/gimpexport.c:653 -#, c-format -msgid "" -"You are about to save a layer mask as %s.\n" -"This will not save the visible layers." -msgstr "" - -#: ../libgimp/gimpexport.c:659 -#, c-format -msgid "" -"You are about to save a channel (saved selection) as %s.\n" -"This will not save the visible layers." -msgstr "" - -#: ../libgimp/gimpfontmenu.c:89 -msgid "Font Selection" -msgstr "" - -#: ../libgimp/gimpgradientmenu.c:104 -msgid "Gradient Selection" -msgstr "" - -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 -msgid "(Empty)" -msgstr "" - -#: ../libgimp/gimppalettemenu.c:91 -msgid "Palette Selection" -msgstr "" - -#: ../libgimp/gimppatternmenu.c:113 -msgid "Pattern Selection" -msgstr "" - -#: ../libgimp/gimpunitcache.c:57 -msgid "percent" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:23 -msgid "Small" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:24 -msgid "Medium" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:25 -msgid "Large" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:57 -msgid "Light Checks" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:58 -msgid "Mid-Tone Checks" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:59 -msgid "Dark Checks" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:60 -msgid "White Only" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:61 -msgid "Gray Only" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:62 -msgid "Black Only" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:91 -msgid "RGB color" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:92 ../libgimpbase/gimpbaseenums.c:127 -msgid "Grayscale" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:93 -msgid "Indexed color" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:125 -msgid "RGB" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:126 -msgid "RGB-alpha" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:128 -msgid "Grayscale-alpha" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:129 -msgid "Indexed" -msgstr "" - -#: ../libgimpbase/gimpbaseenums.c:130 -msgid "Indexed-alpha" -msgstr "" - -#: ../libgimpbase/gimpmemsize.c:177 -#, c-format -msgid "%d Bytes" -msgstr "" - -#: ../libgimpbase/gimpmemsize.c:182 -#, c-format -msgid "%.2f KB" -msgstr "" - -#: ../libgimpbase/gimpmemsize.c:186 -#, c-format -msgid "%.1f KB" -msgstr "" - -#: ../libgimpbase/gimpmemsize.c:190 -#, c-format -msgid "%d KB" -msgstr "" - -#: ../libgimpbase/gimpmemsize.c:197 -#, c-format -msgid "%.2f MB" -msgstr "" - -#: ../libgimpbase/gimpmemsize.c:201 -#, c-format -msgid "%.1f MB" -msgstr "" - -#: ../libgimpbase/gimpmemsize.c:205 -#, c-format -msgid "%d MB" -msgstr "" - -#: ../libgimpbase/gimpmemsize.c:212 -#, c-format -msgid "%.2f GB" -msgstr "" - -#: ../libgimpbase/gimpmemsize.c:216 -#, c-format -msgid "%.1f GB" -msgstr "" - -#: ../libgimpbase/gimpmemsize.c:220 -#, c-format -msgid "%d GB" -msgstr "" - -#: ../libgimpbase/gimputils.c:169 ../libgimpbase/gimputils.c:174 -msgid "(invalid UTF-8 string)" -msgstr "" - -#: ../libgimpmodule/gimpmodule.c:177 -#, c-format -msgid "Loading module: '%s'\n" -msgstr "" - -#: ../libgimpmodule/gimpmodule.c:193 ../libgimpmodule/gimpmodule.c:212 -#: ../libgimpmodule/gimpmodule.c:326 ../libgimpmodule/gimpmodule.c:354 -#: ../libgimpmodule/gimpmodule.c:478 -#, c-format -msgid "Module '%s' load error: %s" -msgstr "" - -#: ../libgimpmodule/gimpmodule.c:282 -#, c-format -msgid "Skipping module: '%s'\n" -msgstr "" - -#: ../libgimpmodule/gimpmodule.c:422 -msgid "Module error" -msgstr "" - -#: ../libgimpmodule/gimpmodule.c:423 -msgid "Loaded" -msgstr "" - -#: ../libgimpmodule/gimpmodule.c:424 -msgid "Load failed" -msgstr "" - -#: ../libgimpmodule/gimpmodule.c:425 -msgid "Not loaded" -msgstr "" - -#: ../libgimpthumb/gimpthumb-utils.c:125 -#, c-format -msgid "" -"Cannot determine a valid home directory.\n" -"Thumbnails will be stored in the folder for temporary files (%s) instead." -msgstr "" - -#: ../libgimpthumb/gimpthumb-utils.c:249 ../libgimpthumb/gimpthumb-utils.c:317 -#, c-format -msgid "Failed to create thumbnail folder '%s'." -msgstr "" - -#: ../libgimpthumb/gimpthumbnail.c:919 -#, c-format -msgid "Could not create thumbnail for %s: %s" -msgstr "" - -#: ../libgimpwidgets/gimpcolorbutton.c:99 -msgid "_Foreground Color" -msgstr "" - -#: ../libgimpwidgets/gimpcolorbutton.c:103 -msgid "_Background Color" -msgstr "" - -#: ../libgimpwidgets/gimpcolorbutton.c:107 -msgid "Blac_k" -msgstr "" - -#: ../libgimpwidgets/gimpcolorbutton.c:111 -msgid "_White" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:133 -msgid "Scales" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:155 -#: ../libgimpwidgets/gimpcolorselect.c:343 -msgid "_H" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:156 -#: ../libgimpwidgets/gimpcolorselect.c:343 -msgid "_S" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:157 -#: ../libgimpwidgets/gimpcolorselect.c:343 -msgid "_V" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:158 -#: ../libgimpwidgets/gimpcolorselect.c:343 -msgid "_R" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:159 -#: ../libgimpwidgets/gimpcolorselect.c:343 -msgid "_G" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:160 -#: ../libgimpwidgets/gimpcolorselect.c:343 -msgid "_B" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:161 -msgid "_A" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:165 -#: ../libgimpwidgets/gimpcolorselect.c:347 -msgid "Hue" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:166 -#: ../libgimpwidgets/gimpcolorselect.c:348 ../modules/cdisplay_proof.c:49 -#: ../modules/cdisplay_proof.c:444 -msgid "Saturation" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:167 -#: ../libgimpwidgets/gimpcolorselect.c:349 -msgid "Value" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:168 -#: ../libgimpwidgets/gimpcolorselect.c:350 -msgid "Red" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:169 -#: ../libgimpwidgets/gimpcolorselect.c:351 -msgid "Green" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:170 -#: ../libgimpwidgets/gimpcolorselect.c:352 -msgid "Blue" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:171 -#: ../libgimpwidgets/gimpcolorselect.c:353 -msgid "Alpha" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:243 -msgid "Hexadecimal color notation as used in HTML and CSS" -msgstr "" - -#: ../libgimpwidgets/gimpcolorscales.c:248 -msgid "HTML _Notation:" -msgstr "" - -#: ../libgimpwidgets/gimpcolorselection.c:203 -msgid "Current:" -msgstr "" - -#: ../libgimpwidgets/gimpcolorselection.c:225 -msgid "Old:" -msgstr "" - -#: ../libgimpwidgets/gimpfileentry.c:351 -msgid "Select Folder" -msgstr "" - -#: ../libgimpwidgets/gimpfileentry.c:353 -msgid "Select File" -msgstr "" - -#: ../libgimpwidgets/gimpmemsizeentry.c:232 -msgid "Kilobytes" -msgstr "" - -#: ../libgimpwidgets/gimpmemsizeentry.c:233 -msgid "Megabytes" -msgstr "" - -#: ../libgimpwidgets/gimpmemsizeentry.c:234 -msgid "Gigabytes" -msgstr "" - -#: ../libgimpwidgets/gimppatheditor.c:243 -msgid "Writable" -msgstr "" - -#: ../libgimpwidgets/gimppatheditor.c:252 -msgid "Folder" -msgstr "" - -#: ../libgimpwidgets/gimppickbutton.c:138 -msgid "" -"Click the eyedropper, then click a color anywhere on your screen to select " -"that color." -msgstr "" - -#: ../libgimpwidgets/gimppreviewarea.c:126 -msgid "Check Size" -msgstr "" - -#: ../libgimpwidgets/gimppreviewarea.c:133 -msgid "Check Style" -msgstr "" - -#. toggle button to (des)activate the instant preview -#: ../libgimpwidgets/gimppreview.c:240 -msgid "_Preview" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:113 -msgid "Anchor" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:114 -msgid "C_enter" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:115 -msgid "_Duplicate" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:116 -msgid "_Edit" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:117 -msgid "Linked" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:118 -msgid "Paste as New" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:119 -msgid "Paste Into" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:120 -msgid "_Reset" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:121 -msgid "Visible" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:154 ../libgimpwidgets/gimpstock.c:158 -msgid "_Stroke" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:170 -msgid "L_etter Spacing" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:171 -msgid "L_ine Spacing" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:187 -msgid "_Resize" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:188 ../libgimpwidgets/gimpstock.c:292 -msgid "_Scale" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:271 -msgid "Crop" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:288 -msgid "_Transform" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:291 -msgid "_Rotate" -msgstr "" - -#: ../libgimpwidgets/gimpstock.c:293 -msgid "_Shear" -msgstr "" - -#: ../libgimpwidgets/gimpunitmenu.c:302 -msgid "More..." -msgstr "" - -#: ../libgimpwidgets/gimpunitmenu.c:612 -msgid "Unit Selection" -msgstr "" - -#: ../libgimpwidgets/gimpunitmenu.c:655 -msgid "Unit" -msgstr "" - -#: ../libgimpwidgets/gimpunitmenu.c:659 -msgid "Factor" -msgstr "" - -#: ../libgimpwidgets/gimpwidgets.c:1001 -msgid "" -"Use this value for random number generator seed - this allows you to repeat " -"a given \"random\" operation" -msgstr "" - -#: ../libgimpwidgets/gimpwidgets.c:1005 -msgid "_New Seed" -msgstr "" - -#: ../libgimpwidgets/gimpwidgets.c:1018 -msgid "Seed random number generator with a generated random number" -msgstr "" - -#: ../libgimpwidgets/gimpwidgets.c:1022 -msgid "_Randomize" -msgstr "" - -#: ../modules/cdisplay_colorblind.c:57 ../modules/cdisplay_colorblind.c:545 -msgid "Protanopia (insensitivity to red)" -msgstr "" - -#: ../modules/cdisplay_colorblind.c:59 ../modules/cdisplay_colorblind.c:547 -msgid "Deuteranopia (insensitivity to green)" -msgstr "" - -#: ../modules/cdisplay_colorblind.c:61 ../modules/cdisplay_colorblind.c:549 -msgid "Tritanopia (insensitivity to blue)" -msgstr "" - -#: ../modules/cdisplay_colorblind.c:153 -msgid "Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)" -msgstr "" - -#: ../modules/cdisplay_colorblind.c:242 -msgid "Color Deficient Vision" -msgstr "" - -#: ../modules/cdisplay_colorblind.c:540 -msgid "Color _Deficiency Type:" -msgstr "" - -#: ../modules/cdisplay_gamma.c:105 -msgid "Gamma color display filter" -msgstr "" - -#: ../modules/cdisplay_gamma.c:178 -msgid "Gamma" -msgstr "" - -#: ../modules/cdisplay_gamma.c:352 -msgid "_Gamma:" -msgstr "" - -#: ../modules/cdisplay_highcontrast.c:105 -msgid "High Contrast color display filter" -msgstr "" - -#: ../modules/cdisplay_highcontrast.c:178 -msgid "Contrast" -msgstr "" - -#: ../modules/cdisplay_highcontrast.c:352 -msgid "Contrast C_ycles:" -msgstr "" - -#: ../modules/cdisplay_proof.c:45 ../modules/cdisplay_proof.c:440 -msgid "Perceptual" -msgstr "" - -#: ../modules/cdisplay_proof.c:47 ../modules/cdisplay_proof.c:442 -msgid "Relative Colorimetric" -msgstr "" - -#: ../modules/cdisplay_proof.c:51 ../modules/cdisplay_proof.c:446 -msgid "Absolute Colorimetric" -msgstr "" - -#: ../modules/cdisplay_proof.c:138 -msgid "Color proof filter using ICC color profile" -msgstr "" - -#: ../modules/cdisplay_proof.c:238 -msgid "Color Proof" -msgstr "" - -#: ../modules/cdisplay_proof.c:457 -msgid "_Intent:" -msgstr "" - -#: ../modules/cdisplay_proof.c:460 -msgid "Choose an ICC Color Profile" -msgstr "" - -#: ../modules/cdisplay_proof.c:463 -msgid "_Profile:" -msgstr "" - -#: ../modules/cdisplay_proof.c:471 -msgid "_Black Point Compensation" -msgstr "" - -#: ../modules/colorsel_cmyk.c:73 -msgid "CMYK color selector" -msgstr "" - -#: ../modules/colorsel_cmyk.c:130 -msgid "CMYK" -msgstr "" - -#: ../modules/colorsel_cmyk.c:147 -msgid "_C" -msgstr "" - -#: ../modules/colorsel_cmyk.c:148 -msgid "_M" -msgstr "" - -#: ../modules/colorsel_cmyk.c:149 -msgid "_Y" -msgstr "" - -#: ../modules/colorsel_cmyk.c:150 -msgid "_K" -msgstr "" - -#: ../modules/colorsel_cmyk.c:154 -msgid "Cyan" -msgstr "" - -#: ../modules/colorsel_cmyk.c:155 -msgid "Magenta" -msgstr "" - -#: ../modules/colorsel_cmyk.c:156 -msgid "Yellow" -msgstr "" - -#: ../modules/colorsel_cmyk.c:157 -msgid "Black" -msgstr "" - -#: ../modules/colorsel_cmyk.c:191 -msgid "Black _Pullout:" -msgstr "" - -#: ../modules/colorsel_cmyk.c:208 -msgid "The percentage of black to pull out of the colored inks." -msgstr "" - -#: ../modules/colorsel_triangle.c:104 -msgid "Painter-style triangle color selector" -msgstr "" - -#: ../modules/colorsel_triangle.c:170 -msgid "Triangle" -msgstr "" - -#: ../modules/colorsel_water.c:88 -msgid "Watercolor style color selector" -msgstr "" - -#: ../modules/colorsel_water.c:154 -msgid "Watercolor" -msgstr "" - -#: ../modules/colorsel_water.c:220 -msgid "Pressure" -msgstr "" diff -uraN gimp-2.2.7/po-libgimp/sk.po gimp-2.2.8/po-libgimp/sk.po --- gimp-2.2.7/po-libgimp/sk.po 2005-05-08 23:42:01.000000000 +0200 +++ gimp-2.2.8/po-libgimp/sk.po 2005-05-08 23:45:21.000000000 +0200 @@ -3,7 +3,7 @@ # Zdenko Podobný , 2002,2003, 2004. # Marcel Telka , 2005. # -# $Id: sk.po,v 1.76.2.5 2005/04/09 21:38:41 neo Exp $ +# $Id: sk.po,v 1.76.2.6 2005/05/08 21:45:21 neo Exp $ # msgid "" msgstr "" diff -uraN gimp-2.2.7/po-libgimp/sv.po gimp-2.2.8/po-libgimp/sv.po --- gimp-2.2.7/po-libgimp/sv.po 2005-05-08 23:42:01.000000000 +0200 +++ gimp-2.2.8/po-libgimp/sv.po 2005-05-08 23:45:21.000000000 +0200 @@ -4,7 +4,7 @@ # Christian Rose , 2000, 2001, 2002, 2003. # Jan Morén (jan.moren@lucs.lu.se> 2003. # -# $Id: sv.po,v 1.85.2.4 2005/04/09 21:38:41 neo Exp $ +# $Id: sv.po,v 1.85.2.5 2005/05/08 21:45:21 neo Exp $ # msgid "" msgstr "" diff -uraN gimp-2.2.7/po-plug-ins/ca.po gimp-2.2.8/po-plug-ins/ca.po --- gimp-2.2.7/po-plug-ins/ca.po 2005-05-08 23:42:03.000000000 +0200 +++ gimp-2.2.8/po-plug-ins/ca.po 2005-05-08 23:45:22.000000000 +0200 @@ -10997,7 +10997,7 @@ msgid "Drawing Maze..." msgstr "S'està dibuixant el laberint..." -# $Id: ca.po,v 1.59.2.6 2005/04/10 00:15:58 neo Exp $ +# $Id: ca.po,v 1.59.2.7 2005/05/08 21:45:22 neo Exp $ #: ../plug-ins/maze/maze.h:2 msgid "Maze" msgstr "Laberint" diff -uraN gimp-2.2.7/po-plug-ins/gimp20-std-plug-ins.pot gimp-2.2.8/po-plug-ins/gimp20-std-plug-ins.pot --- gimp-2.2.7/po-plug-ins/gimp20-std-plug-ins.pot 2005-05-08 12:28:57.000000000 +0200 +++ gimp-2.2.8/po-plug-ins/gimp20-std-plug-ins.pot 1970-01-01 01:00:00.000000000 +0100 @@ -1,11481 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-05-08 12:28+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../plug-ins/FractalExplorer/Dialogs.c:523 -#: ../plug-ins/gfig/gfig-dialog.c:283 ../plug-ins/gflare/gflare.c:891 -#, c-format -msgid "" -"No %s in gimprc:\n" -"You need to add an entry like\n" -"(%s \"%s\")\n" -"to your %s file." -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:543 -#: ../plug-ins/FractalExplorer/Dialogs.c:1647 -#: ../plug-ins/imagemap/imap_about.c:39 -#: ../plug-ins/print/gimp_main_window.c:367 -msgid "About" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:608 -msgid "Realtime Preview" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:615 -msgid "If you enable this option the preview will be redrawn automatically" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:618 -msgid "Redraw" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:624 -msgid "Redraw preview" -msgstr "" - -#. Zoom Options -#: ../plug-ins/FractalExplorer/Dialogs.c:627 -#: ../plug-ins/imagemap/imap_popup.c:146 -msgid "Zoom" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:655 -msgid "Undo last zoom" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:665 -msgid "Redo last zoom" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:680 -msgid "_Parameters" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:683 -msgid "Fractal Parameters" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:696 -msgid "XMIN:" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:699 -msgid "Change the first (minimal) x-coordinate delimitation" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:707 -msgid "XMAX:" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:710 -msgid "Change the second (maximal) x-coordinate delimitation" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:718 -msgid "YMIN:" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:721 -msgid "Change the first (minimal) y-coordinate delimitation" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:729 -msgid "YMAX:" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:732 -msgid "Change the second (maximal) y-coordinate delimitation" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:740 -msgid "ITER:" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:743 -msgid "" -"Change the iteration value. The higher it is, the more details will be " -"calculated, which will take more time" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:752 -msgid "CX:" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:755 -msgid "" -"Change the CX value (changes aspect of fractal, active with every fractal " -"but Mandelbrot and Sierpinski)" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:764 -msgid "CY:" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:767 -msgid "" -"Change the CY value (changes aspect of fractal, active with every fractal " -"but Mandelbrot and Sierpinski)" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:784 -msgid "Load a fractal from file" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:792 -msgid "Reset parameters to default values" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:801 -msgid "Save active fractal to file" -msgstr "" - -#. Fractal type toggle box -#: ../plug-ins/FractalExplorer/Dialogs.c:804 -msgid "Fractal Type" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:817 -msgid "Mandelbrot" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:819 -msgid "Julia" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:821 -msgid "Barnsley 1" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:823 -msgid "Barnsley 2" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:825 -msgid "Barnsley 3" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:827 -msgid "Spider" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:829 -msgid "Man'o'war" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:831 -msgid "Lambda" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:833 -msgid "Sierpinski" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:879 ../plug-ins/common/sinus.c:879 -msgid "Co_lors" -msgstr "" - -#. Number of Colors frame -#: ../plug-ins/FractalExplorer/Dialogs.c:883 -#: ../plug-ins/common/borderaverage.c:405 -msgid "Number of Colors" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:895 -msgid "Number of colors:" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:898 -msgid "Change the number of colors in the mapping" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:905 -msgid "Use loglog smoothing" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:912 -msgid "Use log log smoothing to eliminate \"banding\" in the result" -msgstr "" - -#. Color Density frame -#: ../plug-ins/FractalExplorer/Dialogs.c:916 -msgid "Color Density" -msgstr "" - -#. These values are translated for the GUI but also used internally -#. to figure out which button the user pushed, etc. -#. Not my design, please don't blame me -- njl -#: ../plug-ins/FractalExplorer/Dialogs.c:928 ../plug-ins/common/compose.c:128 -#: ../plug-ins/common/compose.c:138 ../plug-ins/common/fp.c:217 -msgid "Red:" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:931 -msgid "Change the intensity of the red channel" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:938 ../plug-ins/common/compose.c:129 -#: ../plug-ins/common/compose.c:139 ../plug-ins/common/fp.c:218 -msgid "Green:" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:941 -msgid "Change the intensity of the green channel" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:948 ../plug-ins/common/compose.c:130 -#: ../plug-ins/common/compose.c:140 ../plug-ins/common/fp.c:219 -msgid "Blue:" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:951 -msgid "Change the intensity of the blue channel" -msgstr "" - -#. Color Function frame -#: ../plug-ins/FractalExplorer/Dialogs.c:957 -msgid "Color Function" -msgstr "" - -#. Redmode radio frame -#: ../plug-ins/FractalExplorer/Dialogs.c:966 -#: ../plug-ins/common/channel_mixer.c:523 ../plug-ins/common/decompose.c:133 -msgid "Red" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:970 -#: ../plug-ins/FractalExplorer/Dialogs.c:1011 -#: ../plug-ins/FractalExplorer/Dialogs.c:1052 -msgid "Sine" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:972 -#: ../plug-ins/FractalExplorer/Dialogs.c:1013 -#: ../plug-ins/FractalExplorer/Dialogs.c:1054 -msgid "Cosine" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:974 -#: ../plug-ins/FractalExplorer/Dialogs.c:1015 -#: ../plug-ins/FractalExplorer/Dialogs.c:1056 -#: ../plug-ins/Lighting/lighting_ui.c:369 -#: ../plug-ins/common/CML_explorer.c:168 ../plug-ins/common/align_layers.c:416 -#: ../plug-ins/common/align_layers.c:447 ../plug-ins/common/postscript.c:3028 -#: ../plug-ins/common/postscript.c:3040 ../plug-ins/common/psp.c:416 -#: ../plug-ins/fits/fits.c:1012 -msgid "None" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:979 -#: ../plug-ins/FractalExplorer/Dialogs.c:1020 -#: ../plug-ins/FractalExplorer/Dialogs.c:1061 -msgid "Use sine-function for this color component" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:982 -#: ../plug-ins/FractalExplorer/Dialogs.c:1023 -#: ../plug-ins/FractalExplorer/Dialogs.c:1064 -msgid "Use cosine-function for this color component" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:985 -#: ../plug-ins/FractalExplorer/Dialogs.c:1026 -#: ../plug-ins/FractalExplorer/Dialogs.c:1067 -msgid "" -"Use linear mapping instead of any trigonometrical function for this color " -"channel" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:994 -#: ../plug-ins/FractalExplorer/Dialogs.c:1035 -#: ../plug-ins/FractalExplorer/Dialogs.c:1076 -msgid "Inversion" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:1002 -#: ../plug-ins/FractalExplorer/Dialogs.c:1043 -#: ../plug-ins/FractalExplorer/Dialogs.c:1084 -msgid "" -"If you enable this option higher color values will be swapped with lower " -"ones and vice versa" -msgstr "" - -#. Greenmode radio frame -#: ../plug-ins/FractalExplorer/Dialogs.c:1007 -#: ../plug-ins/common/channel_mixer.c:528 ../plug-ins/common/decompose.c:134 -msgid "Green" -msgstr "" - -#. Bluemode radio frame -#: ../plug-ins/FractalExplorer/Dialogs.c:1048 -#: ../plug-ins/common/channel_mixer.c:533 ../plug-ins/common/decompose.c:139 -msgid "Blue" -msgstr "" - -#. Colormode toggle box -#: ../plug-ins/FractalExplorer/Dialogs.c:1089 -msgid "Color Mode" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:1098 -msgid "As specified above" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:1110 -msgid "" -"Create a color-map with the options you specified above (color density/" -"function). The result is visible in the preview image" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:1120 -msgid "Apply active gradient to final image" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:1132 -msgid "Create a color-map using a gradient from the gradient editor" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:1143 -msgid "FractalExplorer Gradient" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:1173 -msgid "_Fractals" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:1796 -#: ../plug-ins/Lighting/lighting_ui.c:1109 ../plug-ins/bmp/bmpwrite.c:198 -#: ../plug-ins/common/CEL.c:577 ../plug-ins/common/CML_explorer.c:2001 -#: ../plug-ins/common/channel_mixer.c:1044 ../plug-ins/common/compressor.c:404 -#: ../plug-ins/common/compressor.c:535 ../plug-ins/common/curve_bend.c:861 -#: ../plug-ins/common/dicom.c:647 ../plug-ins/common/gbr.c:586 -#: ../plug-ins/common/gif.c:994 ../plug-ins/common/gih.c:1254 -#: ../plug-ins/common/gtm.c:225 ../plug-ins/common/jpeg.c:1498 -#: ../plug-ins/common/mng.c:558 ../plug-ins/common/mng.c:946 -#: ../plug-ins/common/pat.c:433 ../plug-ins/common/pcx.c:585 -#: ../plug-ins/common/pix.c:515 ../plug-ins/common/png.c:1178 -#: ../plug-ins/common/pnm.c:809 ../plug-ins/common/postscript.c:1123 -#: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 -#: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 -#: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1825 ../plug-ins/common/xbm.c:996 -#: ../plug-ins/common/xwd.c:577 ../plug-ins/fits/fits.c:450 -#: ../plug-ins/flame/flame.c:443 ../plug-ins/gfig/gfig.c:783 -#: ../plug-ins/gfli/gfli.c:715 ../plug-ins/ifscompose/ifscompose.c:2395 -#: ../plug-ins/winicon/icosave.c:243 ../plug-ins/xjt/xjt.c:1263 -#: ../plug-ins/xjt/xjt.c:1702 -#, c-format -msgid "Could not open '%s' for writing: %s" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:1810 -#, c-format -msgid "Could not write '%s': %s" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:1863 -msgid "Load Fractal Parameters" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:1894 -msgid "Save Fractal Parameters" -msgstr "" - -#. Do not rely on librsvg setting GError on failure! -#. stat error (file does not exist) -#: ../plug-ins/FractalExplorer/Dialogs.c:2094 -#: ../plug-ins/Lighting/lighting_ui.c:1247 ../plug-ins/bmp/bmpread.c:153 -#: ../plug-ins/common/CEL.c:305 ../plug-ins/common/CML_explorer.c:2216 -#: ../plug-ins/common/channel_mixer.c:966 ../plug-ins/common/curve_bend.c:913 -#: ../plug-ins/common/dicom.c:290 ../plug-ins/common/gbr.c:327 -#: ../plug-ins/common/gifload.c:296 ../plug-ins/common/gih.c:648 -#: ../plug-ins/common/jpeg.c:946 ../plug-ins/common/jpeg.c:2607 -#: ../plug-ins/common/mng.c:1117 ../plug-ins/common/pat.c:300 -#: ../plug-ins/common/pcx.c:302 ../plug-ins/common/pix.c:332 -#: ../plug-ins/common/png.c:674 ../plug-ins/common/pnm.c:432 -#: ../plug-ins/common/postscript.c:990 ../plug-ins/common/psd.c:1759 -#: ../plug-ins/common/psp.c:1457 ../plug-ins/common/raw.c:230 -#: ../plug-ins/common/raw.c:635 ../plug-ins/common/spheredesigner.c:1990 -#: ../plug-ins/common/sunras.c:382 ../plug-ins/common/svg.c:311 -#: ../plug-ins/common/svg.c:694 ../plug-ins/common/tga.c:415 -#: ../plug-ins/common/tiff.c:510 ../plug-ins/common/xbm.c:719 -#: ../plug-ins/common/xwd.c:422 ../plug-ins/faxg3/faxg3.c:220 -#: ../plug-ins/fits/fits.c:337 ../plug-ins/flame/flame.c:412 -#: ../plug-ins/gfig/gfig.c:431 ../plug-ins/gfli/gfli.c:424 -#: ../plug-ins/gfli/gfli.c:460 ../plug-ins/help/domain.c:423 -#: ../plug-ins/winicon/icoload.c:126 ../plug-ins/xjt/xjt.c:2526 -#: ../plug-ins/xjt/xjt.c:2534 -#, c-format -msgid "Could not open '%s' for reading: %s" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:2102 -#, c-format -msgid "'%s' is not a FractalExplorer file" -msgstr "" - -#: ../plug-ins/FractalExplorer/Dialogs.c:2108 -#, c-format -msgid "'%s' is corrupt. Line %d Option section incorrect" -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:269 -msgid "_Fractal Explorer..." -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:400 -msgid "Rendering Fractal..." -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:772 -#: ../plug-ins/gflare/gflare.c:3128 -#, c-format -msgid "Are you sure you want to delete \"%s\" from the list and from disk?" -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:776 -msgid "Delete Fractal" -msgstr "" - -#. the dialog -#: ../plug-ins/FractalExplorer/FractalExplorer.c:853 -msgid "Edit fractal name" -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:879 -msgid "Fractal name:" -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:901 -msgid "New Fractal" -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:1181 -#, c-format -msgid "File '%s' is not a FractalExplorer file" -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:1190 -#, c-format -msgid "" -"File '%s' is corrupt.\n" -"Line %d Option section incorrect" -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:1240 -msgid "My first fractal" -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:1256 -msgid "Choose Fractal by double-clicking on it" -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:1293 -msgid "Select folder and rescan collection" -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:1305 -msgid "Delete currently selected fractal" -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:1356 -msgid "Rescan for Fractals" -msgstr "" - -#: ../plug-ins/FractalExplorer/FractalExplorer.c:1373 -msgid "Add FractalExplorer Path" -msgstr "" - -#: ../plug-ins/Lighting/lighting_apply.c:103 -msgid "Lighting Effects..." -msgstr "" - -#: ../plug-ins/Lighting/lighting_main.c:197 -msgid "_Lighting Effects..." -msgstr "" - -#. General options -#: ../plug-ins/Lighting/lighting_ui.c:261 -msgid "General Options" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:269 -msgid "T_ransparent background" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:279 -msgid "Make destination image transparent where bump height is zero" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:282 -msgid "Cre_ate new image" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:292 -#: ../plug-ins/MapObject/mapobject_ui.c:570 -msgid "Create a new image when applying filter" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:294 -msgid "High _Quality preview" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:304 -msgid "Enable/disable high quality preview" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:331 -#: ../plug-ins/MapObject/mapobject_ui.c:649 -msgid "Light Settings" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:344 -msgid "Light 1" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:345 -msgid "Light 2" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:346 -msgid "Light 3" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:347 -msgid "Light 4" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:348 -msgid "Light 5" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:349 -msgid "Light 6" -msgstr "" - -#. row labels -#: ../plug-ins/Lighting/lighting_ui.c:358 -#: ../plug-ins/common/spheredesigner.c:2624 -msgid "Type:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:363 -msgid "Color:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:370 -msgid "Directional" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:371 -msgid "Point" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:386 -#: ../plug-ins/MapObject/mapobject_ui.c:677 -msgid "Type of light source to apply" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:388 -#: ../plug-ins/MapObject/mapobject_ui.c:679 -msgid "Select lightsource color" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:400 -#: ../plug-ins/MapObject/mapobject_ui.c:692 -msgid "Set light source color" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:408 -msgid "_Intensity:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:414 -msgid "Light intensity" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:417 -#: ../plug-ins/MapObject/mapobject_ui.c:694 -#: ../plug-ins/MapObject/mapobject_ui.c:1021 -#: ../plug-ins/print/gimp_main_window.c:464 -msgid "Position" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:426 ../plug-ins/common/flarefx.c:756 -#: ../plug-ins/common/mblur.c:1001 ../plug-ins/common/nova.c:451 -#: ../plug-ins/common/papertile.c:267 ../plug-ins/flame/flame.c:1207 -#: ../plug-ins/gflare/gflare.c:2653 -msgid "_X:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:432 -#: ../plug-ins/MapObject/mapobject_ui.c:718 -msgid "Light source X position in XYZ space" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:439 ../plug-ins/common/flarefx.c:761 -#: ../plug-ins/common/mblur.c:1007 ../plug-ins/common/nova.c:456 -#: ../plug-ins/common/papertile.c:276 ../plug-ins/flame/flame.c:1221 -#: ../plug-ins/gflare/gflare.c:2657 -msgid "_Y:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:445 -#: ../plug-ins/MapObject/mapobject_ui.c:732 -msgid "Light source Y position in XYZ space" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:452 -msgid "_Z:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:458 -#: ../plug-ins/MapObject/mapobject_ui.c:746 -msgid "Light source Z position in XYZ space" -msgstr "" - -#. ***************************************************** -#. radio buttons for choosing LEFT or RIGHT -#. ************************************************* -#: ../plug-ins/Lighting/lighting_ui.c:461 ../plug-ins/common/struc.c:1286 -#: ../plug-ins/common/wind.c:930 -msgid "Direction" -msgstr "" - -#. X -#: ../plug-ins/Lighting/lighting_ui.c:469 -#: ../plug-ins/MapObject/mapobject_ui.c:710 -#: ../plug-ins/MapObject/mapobject_ui.c:764 -#: ../plug-ins/MapObject/mapobject_ui.c:1032 -#: ../plug-ins/MapObject/mapobject_ui.c:1081 -#: ../plug-ins/ifscompose/ifscompose.c:544 -msgid "X:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:475 -#: ../plug-ins/MapObject/mapobject_ui.c:772 -msgid "Light source X direction in XYZ space" -msgstr "" - -#. Y -#: ../plug-ins/Lighting/lighting_ui.c:481 -#: ../plug-ins/MapObject/mapobject_ui.c:724 -#: ../plug-ins/MapObject/mapobject_ui.c:777 -#: ../plug-ins/MapObject/mapobject_ui.c:1045 -#: ../plug-ins/MapObject/mapobject_ui.c:1092 -#: ../plug-ins/MapObject/mapobject_ui.c:1190 -#: ../plug-ins/ifscompose/ifscompose.c:558 -msgid "Y:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:487 -#: ../plug-ins/MapObject/mapobject_ui.c:785 -msgid "Light source Y direction in XYZ space" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:493 -#: ../plug-ins/MapObject/mapobject_ui.c:738 -#: ../plug-ins/MapObject/mapobject_ui.c:790 -#: ../plug-ins/MapObject/mapobject_ui.c:1058 -#: ../plug-ins/MapObject/mapobject_ui.c:1103 -#: ../plug-ins/MapObject/mapobject_ui.c:1202 -msgid "Z:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:499 -#: ../plug-ins/MapObject/mapobject_ui.c:798 -msgid "Light source Z direction in XYZ space" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:502 -msgid "I_solate" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:512 -msgid "Lighting preset:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:558 -msgid "Material properties" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:576 -msgid "_Glowing:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:592 -#: ../plug-ins/MapObject/mapobject_ui.c:859 -msgid "Amount of original color to show where no direct light falls" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:605 -msgid "_Bright:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:621 -#: ../plug-ins/MapObject/mapobject_ui.c:888 -msgid "Intensity of original color when lit by a light source" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:634 -msgid "_Shiny:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:650 -#: ../plug-ins/MapObject/mapobject_ui.c:960 -msgid "Controls how intense the highlights will be" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:662 -msgid "_Polished:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:678 -#: ../plug-ins/MapObject/mapobject_ui.c:989 -msgid "Higher values makes the highlights more focused" -msgstr "" - -#. Metallic -#: ../plug-ins/Lighting/lighting_ui.c:687 -msgid "_Metallic" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:723 -msgid "E_nable bump mapping" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:737 -msgid "Enable/disable bump-mapping (image depth)" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:755 -msgid "Bumpm_ap image:" -msgstr "" - -#. Map type menu -#: ../plug-ins/Lighting/lighting_ui.c:758 ../plug-ins/common/bumpmap.c:898 -#: ../plug-ins/flame/flame.c:733 -msgid "Linear" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:759 -msgid "Logarithmic" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:760 ../plug-ins/common/bumpmap.c:900 -#: ../plug-ins/flame/flame.c:734 -msgid "Sinusoidal" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:761 ../plug-ins/common/bumpmap.c:899 -#: ../plug-ins/flame/flame.c:735 -msgid "Spherical" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:771 -msgid "Cu_rve:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:776 -msgid "Ma_ximum height:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:786 -msgid "Maximum height for bumps" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:811 -msgid "E_nable environment mapping" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:825 -msgid "Enable/disable environment-mapping (reflection)" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:847 -msgid "En_vironment image:" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:849 -msgid "Environment image to use" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:871 -msgid "Op_tions" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:875 -#: ../plug-ins/MapObject/mapobject_ui.c:1326 -msgid "_Light" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:879 -#: ../plug-ins/MapObject/mapobject_ui.c:1330 -msgid "_Material" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:883 -msgid "_Bump Map" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:887 -msgid "_Environment Map" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:933 -msgid "Lighting Effects" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:982 -#: ../plug-ins/gimpressionist/preview.c:181 -#: ../plug-ins/imagemap/imap_polygon.c:514 -msgid "_Update" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:989 -#: ../plug-ins/MapObject/mapobject_ui.c:1425 -msgid "Recompute preview image" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:991 -msgid "I_nteractive" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:1005 -msgid "Enable/disable real time preview of changes" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:1044 -msgid "Save Lighting Preset" -msgstr "" - -#: ../plug-ins/Lighting/lighting_ui.c:1177 -msgid "Load Lighting Preset" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_apply.c:273 -msgid "Map to Plane..." -msgstr "" - -#: ../plug-ins/MapObject/mapobject_apply.c:276 -msgid "Map to Sphere..." -msgstr "" - -#: ../plug-ins/MapObject/mapobject_apply.c:279 -msgid "Map to Box..." -msgstr "" - -#: ../plug-ins/MapObject/mapobject_apply.c:282 -msgid "Map to Cylinder..." -msgstr "" - -#: ../plug-ins/MapObject/mapobject_main.c:199 -msgid "Map _Object..." -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:248 -#: ../plug-ins/MapObject/mapobject_ui.c:1340 -msgid "_Box" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:266 -#: ../plug-ins/MapObject/mapobject_ui.c:1346 -msgid "C_ylinder" -msgstr "" - -#. General options -#: ../plug-ins/MapObject/mapobject_ui.c:496 -msgid "General options" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:508 -msgid "Map to:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:512 -msgid "Plane" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:513 -msgid "Sphere" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:514 -msgid "Box" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:515 -msgid "Cylinder" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:530 -msgid "Type of object to map to" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:532 -msgid "Transparent background" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:543 -msgid "Make image transparent outside object" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:545 -msgid "Tile source image" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:556 -msgid "Tile source image: useful for infinite planes" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:559 -msgid "Create new image" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:578 -msgid "Enable _antialiasing" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:585 -msgid "Enable/disable jagged edges removal (antialiasing)" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:602 ../plug-ins/common/bumpmap.c:979 -#: ../plug-ins/common/emboss.c:509 ../plug-ins/common/fractaltrace.c:791 -#: ../plug-ins/common/struc.c:1318 -msgid "_Depth:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:605 -msgid "Antialiasing quality. Higher is better, but slower" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:614 ../plug-ins/common/unsharp.c:691 -#: ../plug-ins/common/wind.c:993 ../plug-ins/imagemap/imap_preferences.c:539 -msgid "_Threshold:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:622 -msgid "Stop when pixel differences are smaller than this value" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:658 -msgid "Point light" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:659 -msgid "Directional light" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:660 -msgid "No light" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:674 -msgid "Lightsource type:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:684 -msgid "Lightsource color:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:749 -msgid "Direction Vector" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:825 -msgid "Intensity Levels" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:844 -msgid "Ambient:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:873 -#: ../plug-ins/MapObject/mapobject_ui.c:916 -msgid "Diffuse:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:897 -msgid "Reflectivity" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:931 -msgid "Higher values makes the object reflect more light (appear lighter)" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:945 -msgid "Specular:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:974 -msgid "Highlight:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1035 -msgid "Object X position in XYZ space" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1048 -msgid "Object Y position in XYZ space" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1061 -msgid "Object Z position in XYZ space" -msgstr "" - -#. Rotation -#: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3192 -msgid "Rotation" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1084 -msgid "Rotation angle about X axis" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1095 -msgid "Rotation angle about Y axis" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1106 -msgid "Rotation angle about Z axis" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1132 -msgid "Front:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1132 -msgid "Back:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1133 -#: ../plug-ins/print/gimp_main_window.c:523 -msgid "Top:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1133 -#: ../plug-ins/print/gimp_main_window.c:564 -msgid "Bottom:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1134 -#: ../plug-ins/print/gimp_main_window.c:510 -msgid "Left:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1134 -#: ../plug-ins/print/gimp_main_window.c:536 -msgid "Right:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1140 -msgid "Map Images to Box Faces" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1178 -#: ../plug-ins/common/spheredesigner.c:2719 -msgid "Scale X:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1181 -msgid "X scale (size)" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1193 -msgid "Y scale (size)" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1205 -msgid "Z scale (size)" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1228 -msgid "_Top:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1228 -msgid "_Bottom:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1233 -msgid "Images for the Cap Faces" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1262 -#: ../plug-ins/print/gimp_main_window.c:1102 -msgid "Size" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1273 -msgid "R_adius:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1277 -msgid "Cylinder radius" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1287 ../plug-ins/common/mblur.c:941 -msgid "L_ength:" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1291 -msgid "Cylinder length" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1322 -msgid "O_ptions" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1334 -msgid "O_rientation" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1370 -msgid "Map to Object" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1416 -#: ../plug-ins/common/diffraction.c:474 -msgid "_Preview!" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1439 -msgid "Zoom out (make image smaller)" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1453 -msgid "Zoom in (make image bigger)" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1455 -msgid "Show preview _wireframe" -msgstr "" - -#: ../plug-ins/MapObject/mapobject_ui.c:1464 -msgid "Show/hide preview wireframe" -msgstr "" - -#: ../plug-ins/bmp/bmp.c:120 ../plug-ins/bmp/bmp.c:139 -msgid "Windows BMP image" -msgstr "" - -#: ../plug-ins/bmp/bmpread.c:86 -msgid "Bad colormap" -msgstr "" - -#. Set up progress display -#. put up a progress bar -#. max. rows allocated -#. column, highest column ever used -#. -1 assume fsel is not available (and not attached to any drawable) -#. -1 assume there is no floating selection -#: ../plug-ins/bmp/bmpread.c:158 ../plug-ins/common/CEL.c:310 -#: ../plug-ins/common/dicom.c:295 ../plug-ins/common/gbr.c:332 -#: ../plug-ins/common/gifload.c:301 ../plug-ins/common/gih.c:653 -#: ../plug-ins/common/jpeg.c:953 ../plug-ins/common/pat.c:305 -#: ../plug-ins/common/pcx.c:307 ../plug-ins/common/pix.c:338 -#: ../plug-ins/common/png.c:681 ../plug-ins/common/pnm.c:437 -#: ../plug-ins/common/postscript.c:996 ../plug-ins/common/psd.c:1764 -#: ../plug-ins/common/raw.c:640 ../plug-ins/common/sunras.c:436 -#: ../plug-ins/common/tga.c:420 ../plug-ins/common/tiff.c:515 -#: ../plug-ins/common/wmf.c:952 ../plug-ins/common/xbm.c:724 -#: ../plug-ins/common/xpm.c:342 ../plug-ins/common/xwd.c:475 -#: ../plug-ins/faxg3/faxg3.c:203 ../plug-ins/gfli/gfli.c:465 -#: ../plug-ins/sgi/sgi.c:323 ../plug-ins/winicon/icoload.c:505 -#: ../plug-ins/xjt/xjt.c:3312 -#, c-format -msgid "Opening '%s'..." -msgstr "" - -#: ../plug-ins/bmp/bmpread.c:170 ../plug-ins/bmp/bmpread.c:179 -#: ../plug-ins/bmp/bmpread.c:185 ../plug-ins/bmp/bmpread.c:193 -#: ../plug-ins/bmp/bmpread.c:207 ../plug-ins/bmp/bmpread.c:307 -#: ../plug-ins/bmp/bmpread.c:348 -#, c-format -msgid "'%s' is not a valid BMP file" -msgstr "" - -#: ../plug-ins/bmp/bmpread.c:220 ../plug-ins/bmp/bmpread.c:239 -#: ../plug-ins/bmp/bmpread.c:260 ../plug-ins/bmp/bmpread.c:279 -#: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 -#: ../plug-ins/bmp/bmpread.c:319 -#, c-format -msgid "Error reading BMP file header from '%s'" -msgstr "" - -#: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 -msgid "Unrecognized or invalid BMP compression format." -msgstr "" - -#. -#. * Create the "background" layer to hold the image... -#. -#: ../plug-ins/bmp/bmpread.c:490 ../plug-ins/common/CEL.c:357 -#: ../plug-ins/common/CEL.c:360 ../plug-ins/common/blinds.c:273 -#: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 -#: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 -#: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 -#: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 -#: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 -#: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 -#: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 -#: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:848 -#: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 -#: ../plug-ins/common/xbm.c:867 ../plug-ins/faxg3/faxg3.c:465 -#: ../plug-ins/fits/fits.c:506 ../plug-ins/gfig/gfig-dialog.c:1286 -#: ../plug-ins/gimpressionist/general.c:121 ../plug-ins/sgi/sgi.c:376 -#: ../plug-ins/twain/twain.c:571 ../plug-ins/winsnap/winsnap.c:1152 -msgid "Background" -msgstr "" - -#: ../plug-ins/bmp/bmpwrite.c:136 ../plug-ins/common/dicom.c:617 -#: ../plug-ins/common/pcx.c:579 -msgid "Cannot save images with alpha channel." -msgstr "" - -#: ../plug-ins/bmp/bmpwrite.c:182 ../plug-ins/common/dicom.c:632 -#: ../plug-ins/common/postscript.c:1114 ../plug-ins/common/xwd.c:568 -#: ../plug-ins/fits/fits.c:441 ../plug-ins/xjt/xjt.c:1677 -msgid "Cannot operate on unknown image types." -msgstr "" - -#. And let's begin the progress -#. init the progress meter -#. Set up progress display -#: ../plug-ins/bmp/bmpwrite.c:209 ../plug-ins/common/CEL.c:582 -#: ../plug-ins/common/gbr.c:591 ../plug-ins/common/gif.c:1001 -#: ../plug-ins/common/gih.c:1259 ../plug-ins/common/gtm.c:245 -#: ../plug-ins/common/jpeg.c:1453 ../plug-ins/common/pat.c:438 -#: ../plug-ins/common/pcx.c:545 ../plug-ins/common/pix.c:521 -#: ../plug-ins/common/png.c:1185 ../plug-ins/common/pnm.c:814 -#: ../plug-ins/common/postscript.c:1128 ../plug-ins/common/psd_save.c:1341 -#: ../plug-ins/common/sunras.c:518 ../plug-ins/common/tga.c:1035 -#: ../plug-ins/common/tiff.c:1830 ../plug-ins/common/xbm.c:1001 -#: ../plug-ins/common/xpm.c:628 ../plug-ins/common/xwd.c:582 -#: ../plug-ins/fits/fits.c:455 ../plug-ins/gfli/gfli.c:682 -#: ../plug-ins/sgi/sgi.c:545 ../plug-ins/winicon/icosave.c:977 -#: ../plug-ins/xjt/xjt.c:1682 -#, c-format -msgid "Saving '%s'..." -msgstr "" - -#: ../plug-ins/bmp/bmpwrite.c:554 -msgid "Save as BMP" -msgstr "" - -#: ../plug-ins/bmp/bmpwrite.c:568 -msgid "_RLE encoded" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:145 -msgid "_Modify red channel" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:145 -msgid "_Modify hue channel" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:146 -msgid "Mo_dify green channel" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:146 -msgid "Mo_dify saturation channel" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:147 -msgid "Mod_ify blue channel" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:147 -msgid "Mod_ify luminosity channel" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:152 -msgid "Red _frequency:" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:152 -msgid "Hue _frequency:" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:153 -msgid "Green fr_equency:" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:153 -msgid "Saturation fr_equency:" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:154 -msgid "Blue freq_uency:" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:154 -msgid "Luminosity freq_uency:" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:156 -msgid "Red _phaseshift:" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:156 -msgid "Hue _phaseshift:" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:157 -msgid "Green ph_aseshift:" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:157 -msgid "Saturation ph_aseshift:" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:158 -msgid "Blue pha_seshift:" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:158 -msgid "Luminosity pha_seshift:" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:193 -msgid "Alien Map _2..." -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:325 -msgid "AlienMap2: Transforming..." -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:398 -msgid "AlienMap2" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:438 ../plug-ins/common/AlienMap2.c:462 -#: ../plug-ins/common/AlienMap2.c:486 -msgid "Number of cycles covering full value range" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:450 ../plug-ins/common/AlienMap2.c:474 -#: ../plug-ins/common/AlienMap2.c:498 -msgid "Phase angle, range 0-360" -msgstr "" - -#. Propagate Mode -#: ../plug-ins/common/AlienMap2.c:512 ../plug-ins/common/hot.c:588 -#: ../plug-ins/common/vpropagate.c:1084 ../plug-ins/common/waves.c:270 -msgid "Mode" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:516 -msgid "_RGB color model" -msgstr "" - -#: ../plug-ins/common/AlienMap2.c:517 -msgid "_HSL color model" -msgstr "" - -#: ../plug-ins/common/CEL.c:112 ../plug-ins/common/CEL.c:130 -msgid "KISS CEL" -msgstr "" - -#: ../plug-ins/common/CEL.c:191 -msgid "Load KISS Palette" -msgstr "" - -#: ../plug-ins/common/CEL.c:349 -msgid "Can't create a new image" -msgstr "" - -#: ../plug-ins/common/CEL.c:438 -#, c-format -msgid "Unsupported bit depth (%d)!" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:131 -msgid "Keep image's values" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:132 -msgid "Keep the first value" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:133 -msgid "Fill with parameter k" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:134 -msgid "k{x(1-x)}^p" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:135 -msgid "k{x(1-x)}^p stepped" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:136 -msgid "kx^p" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:137 -msgid "kx^p stepped" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:138 -msgid "k(1-x^p)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:139 -msgid "k(1-x^p) stepped" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:140 -msgid "Delta function" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:141 -msgid "Delta function stepped" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:142 -msgid "sin^p-based function" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:143 -msgid "sin^p, stepped" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:169 -msgid "Max (x, -)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:170 -msgid "Max (x+d, -)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:171 -msgid "Max (x-d, -)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:172 -msgid "Min (x, -)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:173 -msgid "Min (x+d, -)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:174 -msgid "Min (x-d, -)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:175 -msgid "Max (x+d, -), (x < 0.5)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:176 -msgid "Max (x+d, -), (0.5 < x)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:177 -msgid "Max (x-d, -), (x < 0.5)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:178 -msgid "Max (x-d, -), (0.5 < x)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:179 -msgid "Min (x+d, -), (x < 0.5)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:180 -msgid "Min (x+d, -), (0.5 < x)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:181 -msgid "Min (x-d, -), (x < 0.5)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:182 -msgid "Min (x-d, -), (0.5 < x)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:202 ../plug-ins/common/sunras.c:1594 -#: ../plug-ins/print/gimp_main_window.c:1645 -msgid "Standard" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:203 -msgid "Use average value" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:204 -msgid "Use reverse value" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:205 -msgid "With random power (0,10)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:206 -msgid "With random power (0,1)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:207 -msgid "With gradient power (0,1)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:208 -msgid "Multiply rand. value (0,1)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:209 -msgid "Multiply rand. value (0,2)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:210 -msgid "Multiply gradient (0,1)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:211 -msgid "With p and random (0,1)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:225 -msgid "All black" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:226 -msgid "All gray" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:227 -msgid "All white" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:228 -msgid "The first row of the image" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:229 -msgid "Continuous gradient" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:230 -msgid "Continuous grad. w/o gap" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:231 -msgid "Random, ch. independent" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:232 -msgid "Random shared" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:233 -msgid "Randoms from seed" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:234 -msgid "Randoms from seed (shared)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:302 ../plug-ins/common/CML_explorer.c:310 -#: ../plug-ins/common/decompose.c:143 -#: ../plug-ins/gimpressionist/orientation.c:162 -#: ../plug-ins/gimpressionist/size.c:165 -msgid "Hue" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:303 ../plug-ins/common/CML_explorer.c:311 -#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 -msgid "Saturation" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:304 ../plug-ins/common/CML_explorer.c:312 -#: ../plug-ins/common/decompose.c:145 -#: ../plug-ins/gimpressionist/orientation.c:138 -#: ../plug-ins/gimpressionist/size.c:141 -msgid "Value" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:309 -msgid "(None)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:470 -msgid "CML _Explorer..." -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:760 -msgid "CML_explorer: evoluting..." -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1186 -msgid "Coupled-Map-Lattice Explorer" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1225 -msgid "New seed" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1236 -msgid "Fix seed" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1247 -msgid "Random seed" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1289 ../plug-ins/common/fp.c:655 -#: ../plug-ins/common/lic.c:669 -msgid "_Hue" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1293 -msgid "Sat_uration" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1297 ../plug-ins/common/fp.c:663 -msgid "_Value" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1301 -msgid "_Advanced" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1316 -msgid "Channel Independent Parameters" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1338 -msgid "Initial value:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1344 -msgid "Zoom scale:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1353 -msgid "Start offset:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1362 -msgid "Seed of Random (only for \"From Seed\" Modes)" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1373 ../plug-ins/maze/maze_face.c:277 -msgid "Seed:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1386 -msgid "Switch to \"From seed\" with the last seed" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1398 -msgid "" -"\"Fix seed\" button is an alias of me.\n" -"The same seed produces the same image, if (1) the widths of images are same " -"(this is the reason why image on drawable is different from preview), and " -"(2) all mutation rates equal to zero." -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1406 -msgid "O_thers" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1421 -msgid "Copy Settings" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1440 -msgid "Source channel:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1455 -#: ../plug-ins/common/CML_explorer.c:1503 -msgid "Destination channel:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1459 -msgid "Copy parameters" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1468 -msgid "Selective Load Settings" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1488 -msgid "Source channel in file:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1509 -msgid "_Misc Ops." -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1558 -msgid "Function type:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1574 -msgid "Composition:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1588 -msgid "Misc arrange:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1592 -msgid "Use cyclic range" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1602 -msgid "Mod. rate:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1611 -msgid "Env. sensitivity:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1620 -msgid "Diffusion dist.:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1629 -msgid "# of subranges:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1638 -msgid "P(ower factor):" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1647 -msgid "Parameter k:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1656 -msgid "Range low:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1665 -msgid "Range high:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1677 -msgid "Plot a graph of the settings" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1722 -msgid "Ch. sensitivity:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1732 -msgid "Mutation rate:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1742 -msgid "Mutation dist.:" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1819 -msgid "Graph of the current settings" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1889 -msgid "Warning: the source and the destination are the same channel." -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:1948 -msgid "Save Parameters to" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:2056 -#: ../plug-ins/common/channel_mixer.c:1052 -#, c-format -msgid "Parameters were saved to '%s'" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:2077 -msgid "CML Explorer: Overwrite File?" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:2091 -#: ../plug-ins/common/channel_mixer.c:1083 -#, c-format -msgid "" -"File '%s' exists.\n" -"Overwrite it?" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:2140 -msgid "Load Parameters from" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:2142 -msgid "Selective Load from" -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:2238 -msgid "Error: it's not CML parameter file." -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:2245 -#, c-format -msgid "Warning: '%s' is an old format file." -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:2248 -#, c-format -msgid "Warning: '%s' is a parameter file for newer CML_explorer than me." -msgstr "" - -#: ../plug-ins/common/CML_explorer.c:2311 -msgid "Error: failed to load parameters" -msgstr "" - -#: ../plug-ins/common/aa.c:94 -msgid "ASCII art" -msgstr "" - -#. Create the actual window. -#: ../plug-ins/common/aa.c:345 -msgid "Save as Text" -msgstr "" - -#: ../plug-ins/common/aa.c:360 -msgid "_Format:" -msgstr "" - -#: ../plug-ins/common/align_layers.c:135 -msgid "Align _Visible Layers..." -msgstr "" - -#: ../plug-ins/common/align_layers.c:173 -msgid "There are not enough layers to align." -msgstr "" - -#: ../plug-ins/common/align_layers.c:399 -msgid "Align Visible Layers" -msgstr "" - -#: ../plug-ins/common/align_layers.c:417 ../plug-ins/common/align_layers.c:448 -msgid "Collect" -msgstr "" - -#: ../plug-ins/common/align_layers.c:418 -msgid "Fill (left to right)" -msgstr "" - -#: ../plug-ins/common/align_layers.c:419 -msgid "Fill (right to left)" -msgstr "" - -#. "snap to grid" checkbutton at bottom of style frame -#: ../plug-ins/common/align_layers.c:420 ../plug-ins/common/align_layers.c:451 -#: ../plug-ins/gfig/gfig-dialog.c:495 -msgid "Snap to grid" -msgstr "" - -#: ../plug-ins/common/align_layers.c:429 -msgid "_Horizontal style:" -msgstr "" - -#: ../plug-ins/common/align_layers.c:433 -msgid "Left edge" -msgstr "" - -#: ../plug-ins/common/align_layers.c:434 ../plug-ins/common/align_layers.c:464 -#: ../plug-ins/gflare/gflare.c:2641 -msgid "Center" -msgstr "" - -#: ../plug-ins/common/align_layers.c:435 -msgid "Right edge" -msgstr "" - -#: ../plug-ins/common/align_layers.c:444 -msgid "Ho_rizontal base:" -msgstr "" - -#: ../plug-ins/common/align_layers.c:449 -msgid "Fill (top to bottom)" -msgstr "" - -#: ../plug-ins/common/align_layers.c:450 -msgid "Fill (bottom to top)" -msgstr "" - -#: ../plug-ins/common/align_layers.c:460 -msgid "_Vertical style:" -msgstr "" - -#: ../plug-ins/common/align_layers.c:463 -msgid "Top edge" -msgstr "" - -#: ../plug-ins/common/align_layers.c:465 -msgid "Bottom edge" -msgstr "" - -#: ../plug-ins/common/align_layers.c:474 -msgid "Ver_tical base:" -msgstr "" - -#: ../plug-ins/common/align_layers.c:478 -msgid "_Grid size:" -msgstr "" - -#: ../plug-ins/common/align_layers.c:487 -msgid "_Ignore the bottom layer even if visible" -msgstr "" - -#: ../plug-ins/common/align_layers.c:497 -msgid "_Use the (invisible) bottom layer as the base" -msgstr "" - -#: ../plug-ins/common/animationplay.c:181 -msgid "_Playback..." -msgstr "" - -#: ../plug-ins/common/animationplay.c:413 -msgid "Animation Playback:" -msgstr "" - -#: ../plug-ins/common/animationplay.c:431 -msgid "Playback:" -msgstr "" - -#: ../plug-ins/common/animationplay.c:457 -msgid "Play/Stop" -msgstr "" - -#: ../plug-ins/common/animationplay.c:463 -msgid "Rewind" -msgstr "" - -#: ../plug-ins/common/animationplay.c:469 -msgid "Step" -msgstr "" - -#: ../plug-ins/common/animationplay.c:1138 -#, c-format -msgid "Frame %d of %d" -msgstr "" - -#: ../plug-ins/common/animoptimize.c:140 -msgid "Optimize (for _GIF)" -msgstr "" - -#: ../plug-ins/common/animoptimize.c:158 -msgid "_Optimize (Difference)" -msgstr "" - -#: ../plug-ins/common/animoptimize.c:175 -msgid "_UnOptimize" -msgstr "" - -#: ../plug-ins/common/animoptimize.c:198 -msgid "_Remove Backdrop" -msgstr "" - -#: ../plug-ins/common/animoptimize.c:214 -msgid "_Find Backdrop" -msgstr "" - -#: ../plug-ins/common/animoptimize.c:429 -msgid "UnOptimizing Animation..." -msgstr "" - -#: ../plug-ins/common/animoptimize.c:432 -msgid "Removing Animation Background..." -msgstr "" - -#: ../plug-ins/common/animoptimize.c:435 -msgid "Finding Animation Background..." -msgstr "" - -#: ../plug-ins/common/animoptimize.c:439 -msgid "Optimizing Animation..." -msgstr "" - -#: ../plug-ins/common/apply_lens.c:112 -msgid "Apply _Lens..." -msgstr "" - -#: ../plug-ins/common/apply_lens.c:179 -msgid "Applying lens..." -msgstr "" - -#: ../plug-ins/common/apply_lens.c:391 -msgid "Lens Effect" -msgstr "" - -#: ../plug-ins/common/apply_lens.c:417 -msgid "_Keep original surroundings" -msgstr "" - -#: ../plug-ins/common/apply_lens.c:432 -msgid "_Set surroundings to index 0" -msgstr "" - -#: ../plug-ins/common/apply_lens.c:433 -msgid "_Set surroundings to background color" -msgstr "" - -#: ../plug-ins/common/apply_lens.c:448 -msgid "_Make surroundings transparent" -msgstr "" - -#: ../plug-ins/common/apply_lens.c:465 -msgid "_Lens refraction index:" -msgstr "" - -#: ../plug-ins/common/autocrop.c:85 -msgid "_Autocrop Image" -msgstr "" - -#: ../plug-ins/common/autocrop.c:99 -msgid "_Autocrop Layer" -msgstr "" - -#: ../plug-ins/common/autocrop.c:146 -msgid "Cropping..." -msgstr "" - -#: ../plug-ins/common/autostretch_hsv.c:80 -msgid "Stretch _HSV" -msgstr "" - -#: ../plug-ins/common/autostretch_hsv.c:116 -msgid "Auto-Stretching HSV..." -msgstr "" - -#: ../plug-ins/common/autostretch_hsv.c:192 -msgid "autostretch_hsv: cmap was NULL! Quitting...\n" -msgstr "" - -#: ../plug-ins/common/blinds.c:124 -msgid "_Blinds..." -msgstr "" - -#: ../plug-ins/common/blinds.c:191 -msgid "Adding Blinds..." -msgstr "" - -#: ../plug-ins/common/blinds.c:229 -msgid "Blinds" -msgstr "" - -#. Orientation toggle box -#: ../plug-ins/common/blinds.c:255 ../plug-ins/common/ripple.c:535 -msgid "Orientation" -msgstr "" - -#: ../plug-ins/common/blinds.c:259 ../plug-ins/common/ripple.c:539 -#: ../plug-ins/common/tileit.c:418 ../plug-ins/pagecurl/pagecurl.c:530 -msgid "_Horizontal" -msgstr "" - -#: ../plug-ins/common/blinds.c:260 ../plug-ins/common/ripple.c:540 -#: ../plug-ins/common/tileit.c:428 ../plug-ins/pagecurl/pagecurl.c:529 -msgid "_Vertical" -msgstr "" - -#: ../plug-ins/common/blinds.c:277 ../plug-ins/common/fractaltrace.c:733 -#: ../plug-ins/common/papertile.c:358 -msgid "_Transparent" -msgstr "" - -#: ../plug-ins/common/blinds.c:303 -msgid "_Displacement:" -msgstr "" - -#: ../plug-ins/common/blinds.c:315 -msgid "_Number of segments:" -msgstr "" - -#: ../plug-ins/common/blur.c:147 -msgid "_Blur" -msgstr "" - -#: ../plug-ins/common/blur.c:191 ../plug-ins/common/unsharp.c:432 -msgid "Blurring..." -msgstr "" - -#: ../plug-ins/common/borderaverage.c:101 -msgid "_Border Average..." -msgstr "" - -#: ../plug-ins/common/borderaverage.c:168 -msgid "Border Average..." -msgstr "" - -#: ../plug-ins/common/borderaverage.c:348 -msgid "Borderaverage" -msgstr "" - -#: ../plug-ins/common/borderaverage.c:362 -msgid "Border Size" -msgstr "" - -#: ../plug-ins/common/borderaverage.c:370 -msgid "_Thickness:" -msgstr "" - -#: ../plug-ins/common/borderaverage.c:413 -msgid "_Bucket size:" -msgstr "" - -#: ../plug-ins/common/bumpmap.c:343 -msgid "_Bump Map..." -msgstr "" - -#: ../plug-ins/common/bumpmap.c:492 -msgid "Bump-mapping..." -msgstr "" - -#: ../plug-ins/common/bumpmap.c:836 -msgid "Bump Map" -msgstr "" - -#: ../plug-ins/common/bumpmap.c:895 -msgid "_Bump map:" -msgstr "" - -#: ../plug-ins/common/bumpmap.c:907 -msgid "_Map type:" -msgstr "" - -#. Compensate darkening -#: ../plug-ins/common/bumpmap.c:912 -msgid "Co_mpensate for darkening" -msgstr "" - -#. Invert bumpmap -#: ../plug-ins/common/bumpmap.c:926 -msgid "I_nvert bumpmap" -msgstr "" - -#. Tile bumpmap -#: ../plug-ins/common/bumpmap.c:940 -msgid "_Tile bumpmap" -msgstr "" - -#: ../plug-ins/common/bumpmap.c:955 ../plug-ins/common/emboss.c:485 -msgid "_Azimuth:" -msgstr "" - -#: ../plug-ins/common/bumpmap.c:967 -msgid "_Elevation:" -msgstr "" - -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 -msgid "_X offset:" -msgstr "" - -#: ../plug-ins/common/bumpmap.c:996 ../plug-ins/common/bumpmap.c:1010 -msgid "" -"The offset can be adjusted by dragging the preview using the middle mouse " -"button." -msgstr "" - -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 -msgid "_Y offset:" -msgstr "" - -#: ../plug-ins/common/bumpmap.c:1021 -msgid "_Waterlevel:" -msgstr "" - -#: ../plug-ins/common/bumpmap.c:1033 -msgid "A_mbient:" -msgstr "" - -#: ../plug-ins/common/c_astretch.c:78 -msgid "_Stretch Contrast" -msgstr "" - -#: ../plug-ins/common/c_astretch.c:112 -msgid "Auto-Stretching Contrast..." -msgstr "" - -#: ../plug-ins/common/c_astretch.c:152 -msgid "c_astretch: cmap was NULL! Quitting...\n" -msgstr "" - -#: ../plug-ins/common/cartoon.c:147 -msgid "Ca_rtoon..." -msgstr "" - -#: ../plug-ins/common/cartoon.c:229 ../plug-ins/common/dog.c:247 -#: ../plug-ins/common/gauss.c:431 ../plug-ins/common/neon.c:221 -#: ../plug-ins/common/photocopy.c:241 ../plug-ins/common/sel_gauss.c:204 -#: ../plug-ins/common/softglow.c:220 ../plug-ins/gflare/gflare.c:972 -#: ../plug-ins/sgi/sgi.c:528 ../plug-ins/xjt/xjt.c:1673 -msgid "Cannot operate on indexed color images." -msgstr "" - -#: ../plug-ins/common/cartoon.c:808 -msgid "Cartoon" -msgstr "" - -#: ../plug-ins/common/cartoon.c:838 ../plug-ins/common/photocopy.c:867 -msgid "_Mask radius:" -msgstr "" - -#: ../plug-ins/common/cartoon.c:852 -msgid "_Percent black:" -msgstr "" - -#: ../plug-ins/common/ccanalyze.c:110 -msgid "Colorcube A_nalysis..." -msgstr "" - -#: ../plug-ins/common/ccanalyze.c:200 -msgid "Colorcube Analysis..." -msgstr "" - -#: ../plug-ins/common/ccanalyze.c:358 -msgid "Colorcube Analysis" -msgstr "" - -#. output results -#: ../plug-ins/common/ccanalyze.c:384 -#: ../plug-ins/imagemap/imap_cmd_guides.c:233 -#, c-format -msgid "Image dimensions: %d x %d" -msgstr "" - -#: ../plug-ins/common/ccanalyze.c:387 -msgid "No colors" -msgstr "" - -#: ../plug-ins/common/ccanalyze.c:389 -msgid "Only one unique color" -msgstr "" - -#: ../plug-ins/common/ccanalyze.c:391 -#, c-format -msgid "Number of unique colors: %d" -msgstr "" - -#: ../plug-ins/common/ccanalyze.c:394 -#, c-format -msgid "Uncompressed size: %s" -msgstr "" - -#: ../plug-ins/common/ccanalyze.c:401 -#, c-format -msgid "Filename: %s" -msgstr "" - -#: ../plug-ins/common/ccanalyze.c:402 -#, c-format -msgid "Compressed size: %s" -msgstr "" - -#: ../plug-ins/common/ccanalyze.c:403 -#, c-format -msgid "Compression ratio (approx.): %d to 1" -msgstr "" - -#: ../plug-ins/common/channel_mixer.c:197 -msgid "Channel Mi_xer..." -msgstr "" - -#: ../plug-ins/common/channel_mixer.c:485 -msgid "Channel Mixer" -msgstr "" - -#: ../plug-ins/common/channel_mixer.c:514 -msgid "O_utput channel:" -msgstr "" - -#: ../plug-ins/common/channel_mixer.c:568 ../plug-ins/common/diffraction.c:498 -#: ../plug-ins/common/diffraction.c:536 ../plug-ins/common/diffraction.c:574 -#: ../plug-ins/common/exchange.c:397 ../plug-ins/common/noisify.c:526 -#: ../plug-ins/common/noisify.c:533 -msgid "_Red:" -msgstr "" - -#: ../plug-ins/common/channel_mixer.c:586 ../plug-ins/common/diffraction.c:507 -#: ../plug-ins/common/diffraction.c:545 ../plug-ins/common/diffraction.c:583 -#: ../plug-ins/common/exchange.c:457 ../plug-ins/common/noisify.c:527 -#: ../plug-ins/common/noisify.c:534 -msgid "_Green:" -msgstr "" - -#: ../plug-ins/common/channel_mixer.c:605 ../plug-ins/common/diffraction.c:516 -#: ../plug-ins/common/diffraction.c:554 ../plug-ins/common/diffraction.c:592 -#: ../plug-ins/common/exchange.c:519 ../plug-ins/common/noisify.c:528 -#: ../plug-ins/common/noisify.c:535 -msgid "_Blue:" -msgstr "" - -#. The monochrome toggle -#: ../plug-ins/common/channel_mixer.c:616 -msgid "_Monochrome" -msgstr "" - -#: ../plug-ins/common/channel_mixer.c:628 -msgid "Preserve _luminosity" -msgstr "" - -#: ../plug-ins/common/channel_mixer.c:857 -msgid "Load Channel Mixer Settings" -msgstr "" - -#: ../plug-ins/common/channel_mixer.c:989 -msgid "Save Channel Mixer Settings" -msgstr "" - -#: ../plug-ins/common/channel_mixer.c:1068 -msgid "Channel Mixer File Operation Warning" -msgstr "" - -#: ../plug-ins/common/checkerboard.c:93 -msgid "_Checkerboard..." -msgstr "" - -#: ../plug-ins/common/checkerboard.c:161 -msgid "Adding Checkerboard..." -msgstr "" - -#: ../plug-ins/common/checkerboard.c:310 -msgid "Checkerboard" -msgstr "" - -#: ../plug-ins/common/checkerboard.c:332 -msgid "_Psychobilly" -msgstr "" - -#: ../plug-ins/common/checkerboard.c:365 ../plug-ins/common/papertile.c:287 -#: ../plug-ins/gimpressionist/sizemap.c:487 -msgid "_Size:" -msgstr "" - -#: ../plug-ins/common/color_enhance.c:80 -msgid "_Color Enhance" -msgstr "" - -#: ../plug-ins/common/color_enhance.c:115 -msgid "Color Enhance..." -msgstr "" - -#: ../plug-ins/common/colorify.c:110 -msgid "_Colorify..." -msgstr "" - -#: ../plug-ins/common/colorify.c:171 -msgid "Colorifying..." -msgstr "" - -#: ../plug-ins/common/colorify.c:258 -msgid "Colorify" -msgstr "" - -#: ../plug-ins/common/colorify.c:285 -msgid "Custom Color:" -msgstr "" - -#: ../plug-ins/common/colorify.c:290 -msgid "Colorify Custom Color" -msgstr "" - -#: ../plug-ins/common/colortoalpha.c:104 -msgid "Color to _Alpha..." -msgstr "" - -#: ../plug-ins/common/colortoalpha.c:187 -msgid "Removing color..." -msgstr "" - -#: ../plug-ins/common/colortoalpha.c:380 -msgid "Color to Alpha" -msgstr "" - -#: ../plug-ins/common/colortoalpha.c:405 ../plug-ins/common/mapcolor.c:424 -#: ../plug-ins/gfli/gfli.c:835 ../plug-ins/gfli/gfli.c:898 -msgid "From:" -msgstr "" - -#: ../plug-ins/common/colortoalpha.c:409 -msgid "Color to Alpha Color Picker" -msgstr "" - -#: ../plug-ins/common/colortoalpha.c:423 -msgid "to alpha" -msgstr "" - -#: ../plug-ins/common/compose.c:127 ../plug-ins/common/decompose.c:130 -#: ../plug-ins/common/raw.c:953 -msgid "RGB" -msgstr "" - -#: ../plug-ins/common/compose.c:137 ../plug-ins/common/decompose.c:135 -#: ../plug-ins/common/raw.c:954 -msgid "RGBA" -msgstr "" - -#: ../plug-ins/common/compose.c:141 -msgid "Alpha:" -msgstr "" - -#: ../plug-ins/common/compose.c:147 ../plug-ins/common/decompose.c:140 -msgid "HSV" -msgstr "" - -#. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 -msgid "Hue:" -msgstr "" - -#. Gray: Circle: Spinbutton 2 -#: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:486 -msgid "Saturation:" -msgstr "" - -#: ../plug-ins/common/compose.c:150 -msgid "Value:" -msgstr "" - -#: ../plug-ins/common/compose.c:154 ../plug-ins/common/decompose.c:146 -msgid "CMY" -msgstr "" - -#: ../plug-ins/common/compose.c:155 ../plug-ins/common/compose.c:162 -#: ../plug-ins/common/fp.c:220 ../plug-ins/print/gimp_color_window.c:307 -msgid "Cyan:" -msgstr "" - -#: ../plug-ins/common/compose.c:156 ../plug-ins/common/compose.c:163 -#: ../plug-ins/common/fp.c:222 ../plug-ins/print/gimp_color_window.c:326 -msgid "Magenta:" -msgstr "" - -#: ../plug-ins/common/compose.c:157 ../plug-ins/common/compose.c:164 -#: ../plug-ins/common/fp.c:221 ../plug-ins/print/gimp_color_window.c:345 -msgid "Yellow:" -msgstr "" - -#: ../plug-ins/common/compose.c:161 ../plug-ins/common/decompose.c:152 -msgid "CMYK" -msgstr "" - -#: ../plug-ins/common/compose.c:165 -msgid "Black:" -msgstr "" - -#: ../plug-ins/common/compose.c:168 ../plug-ins/common/decompose.c:161 -msgid "LAB" -msgstr "" - -#: ../plug-ins/common/compose.c:176 -msgid "Luma_y470:" -msgstr "" - -#: ../plug-ins/common/compose.c:177 -msgid "Blueness_cb470:" -msgstr "" - -#: ../plug-ins/common/compose.c:178 -msgid "Redness_cr470:" -msgstr "" - -#: ../plug-ins/common/compose.c:183 -msgid "Luma_y709:" -msgstr "" - -#: ../plug-ins/common/compose.c:184 -msgid "Blueness_cb709:" -msgstr "" - -#: ../plug-ins/common/compose.c:185 -msgid "Redness_cr709:" -msgstr "" - -#: ../plug-ins/common/compose.c:190 -msgid "Luma_y470f:" -msgstr "" - -#: ../plug-ins/common/compose.c:191 -msgid "Blueness_cb470f:" -msgstr "" - -#: ../plug-ins/common/compose.c:192 -msgid "Redness_cr470f:" -msgstr "" - -#: ../plug-ins/common/compose.c:197 -msgid "Luma_y709f:" -msgstr "" - -#: ../plug-ins/common/compose.c:198 -msgid "Blueness_cb709f:" -msgstr "" - -#: ../plug-ins/common/compose.c:199 -msgid "Redness_cr709f:" -msgstr "" - -#: ../plug-ins/common/compose.c:294 -msgid "C_ompose..." -msgstr "" - -#: ../plug-ins/common/compose.c:360 -#, c-format -msgid "Could not get layers for image %d" -msgstr "" - -#: ../plug-ins/common/compose.c:411 -msgid "Composing..." -msgstr "" - -#: ../plug-ins/common/compose.c:480 -msgid "Drawables have different size" -msgstr "" - -#: ../plug-ins/common/compose.c:497 -msgid "Images have different size" -msgstr "" - -#: ../plug-ins/common/compose.c:511 -msgid "Error in getting layer IDs" -msgstr "" - -#: ../plug-ins/common/compose.c:528 -#, c-format -msgid "Image is not a gray image (bpp=%d)" -msgstr "" - -#: ../plug-ins/common/compose.c:1103 -msgid "Compose" -msgstr "" - -#. The left frame keeps the compose type toggles -#: ../plug-ins/common/compose.c:1119 -msgid "Compose Channels" -msgstr "" - -#. The right frame keeps the selection menues for images. -#. Because the labels within this frame will change when a toggle -#. in the left frame is changed, fill in the right part first. -#. Otherwise it can occur, that a non-existing label might be changed. -#: ../plug-ins/common/compose.c:1130 -msgid "Channel Representations" -msgstr "" - -#: ../plug-ins/common/compressor.c:153 -msgid "gzip archive" -msgstr "" - -#: ../plug-ins/common/compressor.c:174 -msgid "bzip archive" -msgstr "" - -#: ../plug-ins/common/compressor.c:367 -msgid "No sensible extension, saving as compressed XCF." -msgstr "" - -#: ../plug-ins/common/compressor.c:508 -msgid "No sensible extension, attempting to load with file magic." -msgstr "" - -#: ../plug-ins/common/convmatrix.c:87 -msgid "Gr_ey" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:88 -msgid "Re_d" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 -msgid "_Green" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 -msgid "_Blue" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:91 -msgid "_Alpha" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:96 -msgid "E_xtend" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:97 ../plug-ins/common/displace.c:394 -#: ../plug-ins/common/edge.c:716 ../plug-ins/common/ripple.c:560 -msgid "_Wrap" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:98 -msgid "Cro_p" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:195 -msgid "_Convolution Matrix..." -msgstr "" - -#: ../plug-ins/common/convmatrix.c:229 -msgid "Convolution Matrix does not work on layers smaller than 3 pixels." -msgstr "" - -#: ../plug-ins/common/convmatrix.c:302 -msgid "Applying convolution" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:877 -msgid "Convolution Matrix" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:902 -msgid "Matrix" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:936 -msgid "D_ivisor:" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:957 ../plug-ins/common/depthmerge.c:748 -#: ../plug-ins/common/raw.c:972 -msgid "O_ffset:" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:983 -msgid "A_utomatic" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:992 -msgid "A_lpha-weighting" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:1008 -msgid "Border" -msgstr "" - -#: ../plug-ins/common/convmatrix.c:1032 -msgid "Channels" -msgstr "" - -#: ../plug-ins/common/csource.c:108 -msgid "C source code" -msgstr "" - -#: ../plug-ins/common/csource.c:635 -msgid "Save as C-Source" -msgstr "" - -#: ../plug-ins/common/csource.c:659 -msgid "_Prefixed name:" -msgstr "" - -#: ../plug-ins/common/csource.c:668 -msgid "Co_mment:" -msgstr "" - -#. Use Comment -#. -#: ../plug-ins/common/csource.c:675 -msgid "_Save comment to file" -msgstr "" - -#. GLib types -#. -#: ../plug-ins/common/csource.c:687 -msgid "_Use GLib types (guint8*)" -msgstr "" - -#. Use Macros -#. -#: ../plug-ins/common/csource.c:699 -msgid "Us_e macros instead of struct" -msgstr "" - -#. Use RLE -#. -#: ../plug-ins/common/csource.c:711 -msgid "Use _1 byte Run-Length-Encoding" -msgstr "" - -#. Alpha -#. -#: ../plug-ins/common/csource.c:723 -msgid "Sa_ve alpha channel (RGBA/RGB)" -msgstr "" - -#: ../plug-ins/common/csource.c:741 ../plug-ins/common/sparkle.c:427 -msgid "Op_acity:" -msgstr "" - -#: ../plug-ins/common/cubism.c:156 -msgid "_Cubism..." -msgstr "" - -#: ../plug-ins/common/cubism.c:269 -msgid "Cubism" -msgstr "" - -#: ../plug-ins/common/cubism.c:298 -msgid "_Tile size:" -msgstr "" - -#: ../plug-ins/common/cubism.c:311 -msgid "T_ile saturation:" -msgstr "" - -#: ../plug-ins/common/cubism.c:322 -msgid "_Use background color" -msgstr "" - -#: ../plug-ins/common/cubism.c:412 -msgid "Cubistic Transformation..." -msgstr "" - -#: ../plug-ins/common/curve_bend.c:567 -msgid "_Curve Bend..." -msgstr "" - -#: ../plug-ins/common/curve_bend.c:703 -msgid "Can operate on layers only (but was called on channel or mask)." -msgstr "" - -#: ../plug-ins/common/curve_bend.c:721 -msgid "Cannot operate on layers with masks." -msgstr "" - -#: ../plug-ins/common/curve_bend.c:736 -msgid "Cannot operate on empty selections." -msgstr "" - -#. Possibly retrieve data from a previous run -#. The shell and main vbox -#: ../plug-ins/common/curve_bend.c:1239 -msgid "Curve Bend" -msgstr "" - -#. Preview area, top of column -#: ../plug-ins/common/curve_bend.c:1268 -#: ../plug-ins/gimpressionist/orientmap.c:567 -#: ../plug-ins/gimpressionist/sizemap.c:437 -msgid "Preview" -msgstr "" - -#. The preview button -#: ../plug-ins/common/curve_bend.c:1297 -msgid "_Preview once" -msgstr "" - -#. The preview toggle -#: ../plug-ins/common/curve_bend.c:1306 -msgid "Automatic pre_view" -msgstr "" - -#. Options area, bottom of column -#. the vertical box and its toggle buttons -#. Options section -#: ../plug-ins/common/curve_bend.c:1316 ../plug-ins/common/mosaic.c:529 -#: ../plug-ins/common/ripple.c:501 ../plug-ins/gfig/gfig-dialog.c:1209 -msgid "Options" -msgstr "" - -#. Rotate spinbutton -#: ../plug-ins/common/curve_bend.c:1330 -msgid "Rotat_e:" -msgstr "" - -#. The smoothing toggle -#: ../plug-ins/common/curve_bend.c:1348 -msgid "Smoo_thing" -msgstr "" - -#. The antialiasing toggle -#: ../plug-ins/common/curve_bend.c:1358 ../plug-ins/common/gqbist.c:823 -#: ../plug-ins/common/mosaic.c:535 ../plug-ins/common/ripple.c:510 -msgid "_Antialiasing" -msgstr "" - -#. The work_on_copy toggle -#: ../plug-ins/common/curve_bend.c:1368 -msgid "Work on cop_y" -msgstr "" - -#. The curves graph -#: ../plug-ins/common/curve_bend.c:1378 -msgid "Modify Curves" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:1406 -msgid "Curve for Border" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:1410 -msgid "_Upper" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:1411 -msgid "_Lower" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:1421 -msgid "Curve Type" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:1425 -msgid "Smoot_h" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:1426 -msgid "_Free" -msgstr "" - -#. The Copy button -#: ../plug-ins/common/curve_bend.c:1441 -msgid "_Copy" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:1446 -msgid "Copy the active curve to the other border" -msgstr "" - -#. The CopyInv button -#: ../plug-ins/common/curve_bend.c:1453 -msgid "_Mirror" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:1458 -msgid "Mirror the active curve to the other border" -msgstr "" - -#. The Swap button -#: ../plug-ins/common/curve_bend.c:1466 -msgid "S_wap" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:1471 -msgid "Swap the two curves" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:1483 -msgid "Reset the active curve" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:1500 -msgid "Load the curves from a file" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:1512 -msgid "Save the curves to a file" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:2047 -msgid "Load Curve Points from file" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:2074 -msgid "Save Curve Points to file" -msgstr "" - -#: ../plug-ins/common/curve_bend.c:2941 -msgid "Curve Bend..." -msgstr "" - -#: ../plug-ins/common/decompose.c:130 ../plug-ins/common/decompose.c:133 -#: ../plug-ins/common/decompose.c:135 -msgid "red" -msgstr "" - -#: ../plug-ins/common/decompose.c:131 ../plug-ins/common/decompose.c:134 -#: ../plug-ins/common/decompose.c:136 -msgid "green" -msgstr "" - -#: ../plug-ins/common/decompose.c:132 ../plug-ins/common/decompose.c:137 -#: ../plug-ins/common/decompose.c:139 -msgid "blue" -msgstr "" - -#: ../plug-ins/common/decompose.c:138 ../plug-ins/common/decompose.c:159 -msgid "alpha" -msgstr "" - -#: ../plug-ins/common/decompose.c:140 ../plug-ins/common/decompose.c:143 -msgid "hue" -msgstr "" - -#: ../plug-ins/common/decompose.c:141 ../plug-ins/common/decompose.c:144 -msgid "saturation" -msgstr "" - -#: ../plug-ins/common/decompose.c:142 ../plug-ins/common/decompose.c:145 -msgid "value" -msgstr "" - -#: ../plug-ins/common/decompose.c:146 ../plug-ins/common/decompose.c:149 -msgid "cyan" -msgstr "" - -#: ../plug-ins/common/decompose.c:147 ../plug-ins/common/decompose.c:150 -msgid "magenta" -msgstr "" - -#: ../plug-ins/common/decompose.c:148 ../plug-ins/common/decompose.c:151 -msgid "yellow" -msgstr "" - -#: ../plug-ins/common/decompose.c:149 -msgid "Cyan" -msgstr "" - -#: ../plug-ins/common/decompose.c:150 -msgid "Magenta" -msgstr "" - -#: ../plug-ins/common/decompose.c:151 -msgid "Yellow" -msgstr "" - -#: ../plug-ins/common/decompose.c:152 ../plug-ins/common/decompose.c:156 -msgid "cyan_k" -msgstr "" - -#: ../plug-ins/common/decompose.c:153 ../plug-ins/common/decompose.c:157 -msgid "magenta_k" -msgstr "" - -#: ../plug-ins/common/decompose.c:154 ../plug-ins/common/decompose.c:158 -msgid "yellow_k" -msgstr "" - -#: ../plug-ins/common/decompose.c:155 -msgid "black" -msgstr "" - -#: ../plug-ins/common/decompose.c:156 -msgid "Cyan_K" -msgstr "" - -#: ../plug-ins/common/decompose.c:157 -msgid "Magenta_K" -msgstr "" - -#: ../plug-ins/common/decompose.c:158 -msgid "Yellow_K" -msgstr "" - -#: ../plug-ins/common/decompose.c:159 -msgid "Alpha" -msgstr "" - -#: ../plug-ins/common/decompose.c:166 -msgid "luma_y470" -msgstr "" - -#: ../plug-ins/common/decompose.c:167 -msgid "blueness_cb470" -msgstr "" - -#: ../plug-ins/common/decompose.c:168 -msgid "redness_cr470" -msgstr "" - -#: ../plug-ins/common/decompose.c:170 -msgid "luma_y709" -msgstr "" - -#: ../plug-ins/common/decompose.c:171 -msgid "blueness_cb709" -msgstr "" - -#: ../plug-ins/common/decompose.c:172 -msgid "redness_cr709" -msgstr "" - -#: ../plug-ins/common/decompose.c:174 -msgid "luma_y470f" -msgstr "" - -#: ../plug-ins/common/decompose.c:175 -msgid "blueness_cb470f" -msgstr "" - -#: ../plug-ins/common/decompose.c:176 -msgid "redness_cr470f" -msgstr "" - -#: ../plug-ins/common/decompose.c:178 -msgid "luma_y709f" -msgstr "" - -#: ../plug-ins/common/decompose.c:179 -msgid "blueness_cb709f" -msgstr "" - -#: ../plug-ins/common/decompose.c:180 -msgid "redness_cr709f" -msgstr "" - -#: ../plug-ins/common/decompose.c:245 -msgid "_Decompose..." -msgstr "" - -#: ../plug-ins/common/decompose.c:330 -msgid "Decomposing..." -msgstr "" - -#: ../plug-ins/common/decompose.c:1199 -msgid "Decompose" -msgstr "" - -#. parameter settings -#: ../plug-ins/common/decompose.c:1215 -msgid "Extract Channels" -msgstr "" - -#: ../plug-ins/common/decompose.c:1243 -msgid "Decompose to _layers" -msgstr "" - -#: ../plug-ins/common/deinterlace.c:99 -msgid "_Deinterlace..." -msgstr "" - -#: ../plug-ins/common/deinterlace.c:156 -msgid "Deinterlace..." -msgstr "" - -#: ../plug-ins/common/deinterlace.c:324 -msgid "Deinterlace" -msgstr "" - -#: ../plug-ins/common/deinterlace.c:349 -msgid "Keep o_dd fields" -msgstr "" - -#: ../plug-ins/common/deinterlace.c:350 -msgid "Keep _even fields" -msgstr "" - -#: ../plug-ins/common/depthmerge.c:192 -msgid "_Depth Merge..." -msgstr "" - -#: ../plug-ins/common/depthmerge.c:382 -msgid "Depth-merging..." -msgstr "" - -#: ../plug-ins/common/depthmerge.c:631 -msgid "Depth Merge" -msgstr "" - -#: ../plug-ins/common/depthmerge.c:676 -msgid "Source 1:" -msgstr "" - -#: ../plug-ins/common/depthmerge.c:691 ../plug-ins/common/depthmerge.c:721 -msgid "Depth map:" -msgstr "" - -#: ../plug-ins/common/depthmerge.c:706 -msgid "Source 2:" -msgstr "" - -#: ../plug-ins/common/depthmerge.c:738 -msgid "O_verlap:" -msgstr "" - -#: ../plug-ins/common/depthmerge.c:758 -msgid "Sc_ale 1:" -msgstr "" - -#: ../plug-ins/common/depthmerge.c:768 -msgid "Sca_le 2:" -msgstr "" - -#: ../plug-ins/common/despeckle.c:177 -msgid "Des_peckle..." -msgstr "" - -#: ../plug-ins/common/despeckle.c:418 ../plug-ins/common/despeckle.c:640 -msgid "Despeckle" -msgstr "" - -#. -#. * Filter type controls... -#. -#: ../plug-ins/common/despeckle.c:444 -#: ../plug-ins/gimpressionist/orientmap.c:616 -msgid "Type" -msgstr "" - -#. parameter settings -#: ../plug-ins/common/despeckle.c:454 -msgid "Median" -msgstr "" - -#: ../plug-ins/common/despeckle.c:460 -msgid "_Adaptive" -msgstr "" - -#: ../plug-ins/common/despeckle.c:470 -msgid "R_ecursive" -msgstr "" - -#: ../plug-ins/common/despeckle.c:494 ../plug-ins/common/neon.c:727 -#: ../plug-ins/common/nlfilt.c:1083 ../plug-ins/common/nova.c:359 -#: ../plug-ins/common/unsharp.c:665 ../plug-ins/common/whirlpinch.c:588 -#: ../plug-ins/gflare/gflare.c:2686 ../plug-ins/imagemap/imap_circle.c:278 -msgid "_Radius:" -msgstr "" - -#: ../plug-ins/common/despeckle.c:510 -msgid "_Black level:" -msgstr "" - -#: ../plug-ins/common/despeckle.c:526 -msgid "_White level:" -msgstr "" - -#: ../plug-ins/common/destripe.c:113 -msgid "Des_tripe..." -msgstr "" - -#: ../plug-ins/common/destripe.c:276 -msgid "Destriping..." -msgstr "" - -#: ../plug-ins/common/destripe.c:442 -msgid "Destripe" -msgstr "" - -#: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2967 ../plug-ins/common/postscript.c:3128 -#: ../plug-ins/common/raw.c:985 ../plug-ins/common/smooth_palette.c:429 -#: ../plug-ins/common/tile.c:417 ../plug-ins/imagemap/imap_cmd_guides.c:167 -#: ../plug-ins/imagemap/imap_rectangle.c:403 -msgid "_Width:" -msgstr "" - -#: ../plug-ins/common/destripe.c:480 -msgid "Create _histogram" -msgstr "" - -#: ../plug-ins/common/dicom.c:134 -msgid "DICOM image" -msgstr "" - -#: ../plug-ins/common/dicom.c:159 -msgid "Digital Imaging and Communications in Medicine image" -msgstr "" - -#: ../plug-ins/common/dicom.c:318 -#, c-format -msgid "'%s' is not a DICOM file." -msgstr "" - -#: ../plug-ins/common/diffraction.c:177 -msgid "_Diffraction Patterns..." -msgstr "" - -#: ../plug-ins/common/diffraction.c:334 -msgid "Creating diffraction pattern..." -msgstr "" - -#: ../plug-ins/common/diffraction.c:438 -msgid "Diffraction Patterns" -msgstr "" - -#: ../plug-ins/common/diffraction.c:524 -msgid "Frequencies" -msgstr "" - -#: ../plug-ins/common/diffraction.c:562 -msgid "Contours" -msgstr "" - -#: ../plug-ins/common/diffraction.c:600 -msgid "Sharp edges" -msgstr "" - -#: ../plug-ins/common/diffraction.c:612 ../plug-ins/common/softglow.c:673 -#: ../plug-ins/flame/flame.c:1037 -msgid "_Brightness:" -msgstr "" - -#: ../plug-ins/common/diffraction.c:621 -msgid "Sc_attering:" -msgstr "" - -#: ../plug-ins/common/diffraction.c:630 -msgid "Po_larization:" -msgstr "" - -#: ../plug-ins/common/diffraction.c:638 -msgid "Other options" -msgstr "" - -#: ../plug-ins/common/displace.c:154 -msgid "_Displace..." -msgstr "" - -#: ../plug-ins/common/displace.c:231 -msgid "Displacing..." -msgstr "" - -#: ../plug-ins/common/displace.c:268 -msgid "Displace" -msgstr "" - -#. X options -#: ../plug-ins/common/displace.c:297 -msgid "_X displacement:" -msgstr "" - -#. Y Options -#: ../plug-ins/common/displace.c:344 -msgid "_Y displacement:" -msgstr "" - -#: ../plug-ins/common/displace.c:390 -msgid "On Edges:" -msgstr "" - -#: ../plug-ins/common/displace.c:396 ../plug-ins/common/edge.c:729 -#: ../plug-ins/common/ripple.c:561 ../plug-ins/common/waves.c:274 -msgid "_Smear" -msgstr "" - -#: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 -#: ../plug-ins/common/ripple.c:562 -msgid "_Black" -msgstr "" - -#: ../plug-ins/common/dog.c:139 -msgid "Difference of Gaussians..." -msgstr "" - -#: ../plug-ins/common/dog.c:227 ../plug-ins/common/dog.c:274 -msgid "DoG Edge Detect" -msgstr "" - -#: ../plug-ins/common/dog.c:295 -msgid "Smoothing parameters" -msgstr "" - -#: ../plug-ins/common/dog.c:309 -msgid "_Radius 1:" -msgstr "" - -#: ../plug-ins/common/dog.c:313 -msgid "R_adius 2:" -msgstr "" - -#: ../plug-ins/common/dog.c:325 ../plug-ins/common/normalize.c:88 -msgid "_Normalize" -msgstr "" - -#: ../plug-ins/common/dog.c:336 ../plug-ins/gimpressionist/paper.c:149 -msgid "_Invert" -msgstr "" - -#: ../plug-ins/common/edge.c:162 -msgid "_Edge..." -msgstr "" - -#: ../plug-ins/common/edge.c:234 -msgid "Edge Detection..." -msgstr "" - -#: ../plug-ins/common/edge.c:648 -msgid "Edge Detection" -msgstr "" - -#: ../plug-ins/common/edge.c:675 -msgid "Sobel" -msgstr "" - -#: ../plug-ins/common/edge.c:676 -msgid "Prewitt" -msgstr "" - -#: ../plug-ins/common/edge.c:677 ../plug-ins/common/sinus.c:897 -msgid "Gradient" -msgstr "" - -#: ../plug-ins/common/edge.c:678 -msgid "Roberts" -msgstr "" - -#: ../plug-ins/common/edge.c:679 -msgid "Differential" -msgstr "" - -#: ../plug-ins/common/edge.c:680 -msgid "Laplace" -msgstr "" - -#: ../plug-ins/common/edge.c:689 -msgid "_Algorithm:" -msgstr "" - -#: ../plug-ins/common/edge.c:697 -msgid "A_mount:" -msgstr "" - -#: ../plug-ins/common/emboss.c:133 -msgid "_Emboss..." -msgstr "" - -#: ../plug-ins/common/emboss.c:376 ../plug-ins/common/emboss.c:439 -msgid "Emboss" -msgstr "" - -#: ../plug-ins/common/emboss.c:460 -msgid "Function" -msgstr "" - -#: ../plug-ins/common/emboss.c:464 -msgid "_Bumpmap" -msgstr "" - -#: ../plug-ins/common/emboss.c:465 -msgid "_Emboss" -msgstr "" - -#: ../plug-ins/common/emboss.c:497 -msgid "E_levation:" -msgstr "" - -#: ../plug-ins/common/engrave.c:108 -msgid "En_grave..." -msgstr "" - -#: ../plug-ins/common/engrave.c:182 -msgid "Engraving..." -msgstr "" - -#: ../plug-ins/common/engrave.c:211 -msgid "Engrave" -msgstr "" - -#: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2976 -#: ../plug-ins/common/postscript.c:3137 ../plug-ins/common/raw.c:998 -#: ../plug-ins/common/smooth_palette.c:434 ../plug-ins/common/tile.c:421 -#: ../plug-ins/imagemap/imap_cmd_guides.c:177 -#: ../plug-ins/imagemap/imap_rectangle.c:410 -msgid "_Height:" -msgstr "" - -#: ../plug-ins/common/engrave.c:249 -msgid "_Limit line width" -msgstr "" - -#: ../plug-ins/common/exchange.c:133 -msgid "_Color Exchange..." -msgstr "" - -#: ../plug-ins/common/exchange.c:218 -msgid "Color Exchange..." -msgstr "" - -#. set up the dialog -#: ../plug-ins/common/exchange.c:293 -msgid "Color Exchange" -msgstr "" - -#: ../plug-ins/common/exchange.c:308 -msgid "Middle-click inside preview to pick \"From Color\"" -msgstr "" - -#: ../plug-ins/common/exchange.c:346 -msgid "To Color" -msgstr "" - -#: ../plug-ins/common/exchange.c:346 -msgid "From Color" -msgstr "" - -#: ../plug-ins/common/exchange.c:364 -msgid "Color Exchange: To Color" -msgstr "" - -#: ../plug-ins/common/exchange.c:365 -msgid "Color Exchange: From Color" -msgstr "" - -#: ../plug-ins/common/exchange.c:423 -msgid "R_ed threshold:" -msgstr "" - -#: ../plug-ins/common/exchange.c:484 -msgid "G_reen threshold:" -msgstr "" - -#: ../plug-ins/common/exchange.c:545 -msgid "B_lue threshold:" -msgstr "" - -#: ../plug-ins/common/exchange.c:573 -msgid "Lock _thresholds" -msgstr "" - -#: ../plug-ins/common/film.c:240 -msgid "_Film..." -msgstr "" - -#: ../plug-ins/common/film.c:325 -msgid "Composing Images..." -msgstr "" - -#: ../plug-ins/common/film.c:438 ../plug-ins/common/guillotine.c:183 -#: ../plug-ins/helpbrowser/dialog.c:525 -msgid "Untitled" -msgstr "" - -#. ** Get a RGB copy of the source region ** -#: ../plug-ins/common/film.c:700 -msgid "Temporary" -msgstr "" - -#: ../plug-ins/common/film.c:1079 -msgid "Available Images:" -msgstr "" - -#: ../plug-ins/common/film.c:1080 -msgid "On Film:" -msgstr "" - -#. Create selection -#: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:165 -msgid "Selection" -msgstr "" - -#. Film height/colour -#: ../plug-ins/common/film.c:1176 ../plug-ins/common/film.c:1449 -msgid "Film" -msgstr "" - -#. Keep maximum image height -#: ../plug-ins/common/film.c:1185 -msgid "_Fit height to images" -msgstr "" - -#. Film color -#: ../plug-ins/common/film.c:1221 -msgid "Select Film Color" -msgstr "" - -#: ../plug-ins/common/film.c:1226 ../plug-ins/common/film.c:1277 -#: ../plug-ins/common/nova.c:346 -msgid "Co_lor:" -msgstr "" - -#. Film numbering: Startindex/Font/colour -#: ../plug-ins/common/film.c:1235 -msgid "Numbering" -msgstr "" - -#: ../plug-ins/common/film.c:1253 -msgid "Start _index:" -msgstr "" - -#: ../plug-ins/common/film.c:1267 -msgid "_Font:" -msgstr "" - -#. Numbering color -#: ../plug-ins/common/film.c:1272 -msgid "Select Number Color" -msgstr "" - -#: ../plug-ins/common/film.c:1287 -msgid "At _bottom" -msgstr "" - -#: ../plug-ins/common/film.c:1288 -msgid "At _top" -msgstr "" - -#. ** The right frame keeps the image selection ** -#: ../plug-ins/common/film.c:1301 -msgid "Image Selection" -msgstr "" - -#: ../plug-ins/common/film.c:1329 -msgid "All Values are Fractions of the Film Height" -msgstr "" - -#: ../plug-ins/common/film.c:1332 -msgid "Ad_vanced" -msgstr "" - -#: ../plug-ins/common/film.c:1351 -msgid "Image _height:" -msgstr "" - -#: ../plug-ins/common/film.c:1362 -msgid "Image spac_ing:" -msgstr "" - -#: ../plug-ins/common/film.c:1373 -msgid "_Hole offset:" -msgstr "" - -#: ../plug-ins/common/film.c:1384 -msgid "Ho_le width:" -msgstr "" - -#: ../plug-ins/common/film.c:1395 -msgid "Hol_e height:" -msgstr "" - -#: ../plug-ins/common/film.c:1406 -msgid "Hole sp_acing:" -msgstr "" - -#: ../plug-ins/common/film.c:1417 -msgid "_Number height:" -msgstr "" - -#: ../plug-ins/common/flarefx.c:196 -msgid "_FlareFX..." -msgstr "" - -#: ../plug-ins/common/flarefx.c:271 -msgid "Render Flare..." -msgstr "" - -#: ../plug-ins/common/flarefx.c:308 -msgid "FlareFX" -msgstr "" - -#: ../plug-ins/common/flarefx.c:741 -msgid "Center of Flare Effect" -msgstr "" - -#: ../plug-ins/common/flarefx.c:777 -msgid "_Show cursor" -msgstr "" - -#: ../plug-ins/common/fp.c:224 -msgid "Darker:" -msgstr "" - -#: ../plug-ins/common/fp.c:225 -msgid "Lighter:" -msgstr "" - -#: ../plug-ins/common/fp.c:227 -msgid "More Sat:" -msgstr "" - -#: ../plug-ins/common/fp.c:228 -msgid "Less Sat:" -msgstr "" - -#: ../plug-ins/common/fp.c:230 ../plug-ins/common/fp.c:488 -msgid "Current:" -msgstr "" - -#: ../plug-ins/common/fp.c:321 -msgid "_Filter Pack..." -msgstr "" - -#: ../plug-ins/common/fp.c:361 -msgid "Convert the image to RGB first!" -msgstr "" - -#: ../plug-ins/common/fp.c:366 -msgid "Applying the Filter Pack..." -msgstr "" - -#: ../plug-ins/common/fp.c:480 -msgid "Original:" -msgstr "" - -#: ../plug-ins/common/fp.c:532 -msgid "Hue Variations" -msgstr "" - -#: ../plug-ins/common/fp.c:586 -msgid "Roughness" -msgstr "" - -#: ../plug-ins/common/fp.c:629 -msgid "Affected Range" -msgstr "" - -#: ../plug-ins/common/fp.c:633 -msgid "Sha_dows" -msgstr "" - -#: ../plug-ins/common/fp.c:634 -msgid "_Midtones" -msgstr "" - -#: ../plug-ins/common/fp.c:635 -msgid "H_ighlights" -msgstr "" - -#: ../plug-ins/common/fp.c:649 -msgid "Windows" -msgstr "" - -#: ../plug-ins/common/fp.c:659 ../plug-ins/common/lic.c:670 -msgid "_Saturation" -msgstr "" - -#: ../plug-ins/common/fp.c:667 -msgid "A_dvanced" -msgstr "" - -#: ../plug-ins/common/fp.c:687 -msgid "Value Variations" -msgstr "" - -#: ../plug-ins/common/fp.c:731 -msgid "Saturation Variations" -msgstr "" - -#: ../plug-ins/common/fp.c:783 -msgid "Select Pixels by" -msgstr "" - -#: ../plug-ins/common/fp.c:788 -msgid "H_ue" -msgstr "" - -#: ../plug-ins/common/fp.c:789 -msgid "Satu_ration" -msgstr "" - -#: ../plug-ins/common/fp.c:790 -msgid "V_alue" -msgstr "" - -#: ../plug-ins/common/fp.c:816 -msgid "Show" -msgstr "" - -#: ../plug-ins/common/fp.c:821 -msgid "_Entire Image" -msgstr "" - -#: ../plug-ins/common/fp.c:822 -msgid "Se_lection Only" -msgstr "" - -#: ../plug-ins/common/fp.c:823 -msgid "Selec_tion In Context" -msgstr "" - -#: ../plug-ins/common/fp.c:1135 -msgid "Filter Pack Simulation" -msgstr "" - -#: ../plug-ins/common/fp.c:1245 -msgid "Shadows:" -msgstr "" - -#: ../plug-ins/common/fp.c:1246 -msgid "Midtones:" -msgstr "" - -#: ../plug-ins/common/fp.c:1247 -msgid "Highlights:" -msgstr "" - -#: ../plug-ins/common/fp.c:1259 -msgid "Advanced Filter Pack Options" -msgstr "" - -#: ../plug-ins/common/fp.c:1270 -msgid "Smoothness of Aliasing" -msgstr "" - -#: ../plug-ins/common/fp.c:1370 -msgid "Preview as You Drag" -msgstr "" - -#: ../plug-ins/common/fp.c:1374 -msgid "Preview Size" -msgstr "" - -#: ../plug-ins/common/fractaltrace.c:126 -msgid "_Fractal Trace..." -msgstr "" - -#: ../plug-ins/common/fractaltrace.c:466 ../plug-ins/common/fractaltrace.c:693 -msgid "Fractal Trace" -msgstr "" - -#. Settings -#: ../plug-ins/common/fractaltrace.c:726 -msgid "Outside Type" -msgstr "" - -#: ../plug-ins/common/fractaltrace.c:731 -msgid "_Warp" -msgstr "" - -#: ../plug-ins/common/fractaltrace.c:737 -msgid "_White" -msgstr "" - -#: ../plug-ins/common/fractaltrace.c:744 -msgid "Mandelbrot Parameters" -msgstr "" - -#: ../plug-ins/common/fractaltrace.c:755 -msgid "X_1:" -msgstr "" - -#: ../plug-ins/common/fractaltrace.c:764 -msgid "X_2:" -msgstr "" - -#: ../plug-ins/common/fractaltrace.c:773 -msgid "Y_1:" -msgstr "" - -#: ../plug-ins/common/fractaltrace.c:782 -msgid "Y_2:" -msgstr "" - -#: ../plug-ins/common/gauss.c:157 -msgid "_Gaussian Blur..." -msgstr "" - -#: ../plug-ins/common/gauss.c:413 -msgid "Gaussian Blur..." -msgstr "" - -#: ../plug-ins/common/gauss.c:461 -msgid "Gaussian Blur" -msgstr "" - -#. parameter settings -#: ../plug-ins/common/gauss.c:484 -msgid "Blur Radius" -msgstr "" - -#: ../plug-ins/common/gauss.c:498 ../plug-ins/common/jigsaw.c:2456 -#: ../plug-ins/common/spread.c:379 -msgid "_Horizontal:" -msgstr "" - -#: ../plug-ins/common/gauss.c:502 ../plug-ins/common/jigsaw.c:2473 -#: ../plug-ins/common/spread.c:383 -msgid "_Vertical:" -msgstr "" - -#: ../plug-ins/common/gauss.c:525 -msgid "Blur Method" -msgstr "" - -#: ../plug-ins/common/gauss.c:529 -msgid "_IIR" -msgstr "" - -#: ../plug-ins/common/gauss.c:530 -msgid "_RLE" -msgstr "" - -#: ../plug-ins/common/gbr.c:130 ../plug-ins/common/gbr.c:151 -msgid "GIMP brush" -msgstr "" - -#: ../plug-ins/common/gbr.c:369 ../plug-ins/common/gbr.c:381 -msgid "Unsupported brush format" -msgstr "" - -#: ../plug-ins/common/gbr.c:392 -#, c-format -msgid "Error in GIMP brush file '%s'" -msgstr "" - -#: ../plug-ins/common/gbr.c:400 -#, c-format -msgid "Invalid UTF-8 string in brush file '%s'." -msgstr "" - -#: ../plug-ins/common/gbr.c:406 ../plug-ins/common/gih.c:497 -#: ../plug-ins/common/gih.c:1154 ../plug-ins/gflare/gflare.c:2991 -msgid "Unnamed" -msgstr "" - -#: ../plug-ins/common/gbr.c:578 -msgid "GIMP brushes are either GRAYSCALE or RGBA" -msgstr "" - -#: ../plug-ins/common/gbr.c:663 -msgid "Save as Brush" -msgstr "" - -#. attach labels -#: ../plug-ins/common/gbr.c:683 ../plug-ins/common/grid.c:769 -msgid "Spacing:" -msgstr "" - -#: ../plug-ins/common/gbr.c:694 ../plug-ins/common/gih.c:904 -#: ../plug-ins/common/pat.c:521 ../plug-ins/gimpressionist/presets.c:642 -msgid "Description:" -msgstr "" - -#: ../plug-ins/common/gee.c:94 -msgid "Gee-_Slime" -msgstr "" - -#: ../plug-ins/common/gee.c:152 -msgid "GEE-SLIME" -msgstr "" - -#: ../plug-ins/common/gee.c:158 ../plug-ins/common/gee_zoom.c:191 -msgid "Thank you for choosing GIMP" -msgstr "" - -#: ../plug-ins/common/gee.c:166 -msgid "" -"A less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / " -"1998-2000" -msgstr "" - -#: ../plug-ins/common/gee_zoom.c:124 -msgid "Gee-_Zoom" -msgstr "" - -#: ../plug-ins/common/gee_zoom.c:185 -msgid "GEE-ZOOM" -msgstr "" - -#: ../plug-ins/common/gee_zoom.c:199 -msgid "" -"An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / " -"1998-2000" -msgstr "" - -#: ../plug-ins/common/gif.c:402 ../plug-ins/common/gifload.c:143 -msgid "GIF image" -msgstr "" - -#: ../plug-ins/common/gif.c:687 -msgid "Couldn't simply reduce colors further. Saving as opaque." -msgstr "" - -#: ../plug-ins/common/gif.c:909 -msgid "" -"The GIF format only supports comments in 7bit ASCII encoding. No comment is " -"saved." -msgstr "" - -#: ../plug-ins/common/gif.c:970 -msgid "" -"Cannot save RGB color images. Convert to indexed color or grayscale first." -msgstr "" - -#: ../plug-ins/common/gif.c:1113 -msgid "" -"Warning:\n" -"Transparent color in written file might be incorrect on viewers which don't " -"support transparency." -msgstr "" - -#: ../plug-ins/common/gif.c:1152 -msgid "Delay inserted to prevent evil CPU-sucking anim." -msgstr "" - -#: ../plug-ins/common/gif.c:1194 -msgid "GIF Warning" -msgstr "" - -#: ../plug-ins/common/gif.c:1210 -msgid "" -"The image which you are trying to save as a GIF\n" -"contains layers which extend beyond the actual\n" -"borders of the image. This isn't allowed in GIFs,\n" -"I'm afraid.\n" -"\n" -"You may choose whether to crop all of the layers to\n" -"the image borders, or cancel this save." -msgstr "" - -#: ../plug-ins/common/gif.c:1254 -msgid "Save as GIF" -msgstr "" - -#. regular gif parameter settings -#: ../plug-ins/common/gif.c:1269 -msgid "GIF Options" -msgstr "" - -#: ../plug-ins/common/gif.c:1275 -msgid "_Interlace" -msgstr "" - -#: ../plug-ins/common/gif.c:1291 -msgid "_GIF comment:" -msgstr "" - -#. additional animated gif parameter settings -#: ../plug-ins/common/gif.c:1348 -msgid "Animated GIF Options" -msgstr "" - -#: ../plug-ins/common/gif.c:1354 -msgid "_Loop forever" -msgstr "" - -#: ../plug-ins/common/gif.c:1367 -msgid "_Delay between frames where unspecified:" -msgstr "" - -#: ../plug-ins/common/gif.c:1380 ../plug-ins/common/mng.c:1527 -msgid "milliseconds" -msgstr "" - -#: ../plug-ins/common/gif.c:1390 -msgid "Frame disposal where unspecified: " -msgstr "" - -#: ../plug-ins/common/gif.c:1394 -msgid "I don't care" -msgstr "" - -#: ../plug-ins/common/gif.c:1396 -msgid "Cumulative layers (combine)" -msgstr "" - -#: ../plug-ins/common/gif.c:1398 -msgid "One frame per layer (replace)" -msgstr "" - -#: ../plug-ins/common/gif.c:2611 -msgid "Error writing output file." -msgstr "" - -#: ../plug-ins/common/gif.c:2681 -#, c-format -msgid "The default comment is limited to %d characters." -msgstr "" - -#: ../plug-ins/common/gifload.c:314 -msgid "This is not a GIF file" -msgstr "" - -#: ../plug-ins/common/gifload.c:352 -msgid "Non-square pixels. Image might look squashed." -msgstr "" - -#: ../plug-ins/common/gifload.c:866 -#, c-format -msgid "Background (%d%s)" -msgstr "" - -#: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 -#: ../plug-ins/common/iwarp.c:817 -#, c-format -msgid "Frame %d" -msgstr "" - -#: ../plug-ins/common/gifload.c:916 -#, c-format -msgid "Frame %d (%d%s)" -msgstr "" - -#: ../plug-ins/common/gifload.c:946 -#, c-format -msgid "" -"GIF: Undocumented GIF composite type %d is not handled. Animation might not " -"play or re-save perfectly." -msgstr "" - -#: ../plug-ins/common/gih.c:205 ../plug-ins/common/gih.c:226 -msgid "GIMP brush (animated)" -msgstr "" - -#: ../plug-ins/common/gih.c:319 -#, c-format -msgid "Layer %s doesn't have an alpha channel, skipped" -msgstr "" - -#: ../plug-ins/common/gih.c:490 -msgid "Error in GIMP brush pipe file." -msgstr "" - -#: ../plug-ins/common/gih.c:556 -msgid "GIMP brush file appears to be corrupted." -msgstr "" - -#: ../plug-ins/common/gih.c:704 -msgid "Couldn't load one brush in the pipe, giving up." -msgstr "" - -#: ../plug-ins/common/gih.c:867 -msgid "Save as Brush Pipe" -msgstr "" - -#: ../plug-ins/common/gih.c:890 -msgid "Spacing (percent):" -msgstr "" - -#: ../plug-ins/common/gih.c:957 -msgid "Pixels" -msgstr "" - -#: ../plug-ins/common/gih.c:962 -msgid "Cell size:" -msgstr "" - -#: ../plug-ins/common/gih.c:974 -msgid "Number of cells:" -msgstr "" - -#: ../plug-ins/common/gih.c:999 -msgid " Rows of " -msgstr "" - -#: ../plug-ins/common/gih.c:1011 -msgid " Columns on each layer" -msgstr "" - -#: ../plug-ins/common/gih.c:1015 -msgid " (Width Mismatch!) " -msgstr "" - -#: ../plug-ins/common/gih.c:1019 -msgid " (Height Mismatch!) " -msgstr "" - -#: ../plug-ins/common/gih.c:1024 -msgid "Display as:" -msgstr "" - -#: ../plug-ins/common/gih.c:1033 -msgid "Dimension:" -msgstr "" - -#: ../plug-ins/common/gih.c:1110 -msgid "Ranks:" -msgstr "" - -#: ../plug-ins/common/glasstile.c:129 -msgid "_Glass Tile..." -msgstr "" - -#: ../plug-ins/common/glasstile.c:209 -msgid "Glass Tile..." -msgstr "" - -#: ../plug-ins/common/glasstile.c:250 -msgid "Glass Tile" -msgstr "" - -#: ../plug-ins/common/glasstile.c:281 -msgid "Tile _width:" -msgstr "" - -#: ../plug-ins/common/glasstile.c:295 ../plug-ins/common/mosaic.c:621 -msgid "Tile _height:" -msgstr "" - -#: ../plug-ins/common/gqbist.c:415 -msgid "_Qbist..." -msgstr "" - -#: ../plug-ins/common/gqbist.c:514 -msgid "Qbist ..." -msgstr "" - -#: ../plug-ins/common/gqbist.c:695 -msgid "Load QBE file" -msgstr "" - -#: ../plug-ins/common/gqbist.c:733 -msgid "Save (middle transform) as QBE file" -msgstr "" - -#: ../plug-ins/common/gqbist.c:781 -msgid "G-Qbist" -msgstr "" - -#: ../plug-ins/common/gradmap.c:86 -msgid "_Gradient Map" -msgstr "" - -#: ../plug-ins/common/gradmap.c:124 -msgid "Gradient Map..." -msgstr "" - -#: ../plug-ins/common/grid.c:149 -msgid "_Grid..." -msgstr "" - -#: ../plug-ins/common/grid.c:242 -msgid "Drawing Grid..." -msgstr "" - -#: ../plug-ins/common/grid.c:621 ../plug-ins/gfig/gfig-dialog.c:1355 -#: ../plug-ins/imagemap/imap_menu.c:385 ../plug-ins/imagemap/imap_popup.c:153 -#: ../plug-ins/imagemap/imap_toolbar.c:163 -msgid "Grid" -msgstr "" - -#. attach labels -#: ../plug-ins/common/grid.c:696 -msgid "Horizontal" -msgstr "" - -#: ../plug-ins/common/grid.c:698 -msgid "Vertical" -msgstr "" - -#: ../plug-ins/common/grid.c:700 -msgid "Intersection" -msgstr "" - -#. Width and Height -#: ../plug-ins/common/grid.c:703 ../plug-ins/common/svg.c:761 -#: ../plug-ins/common/wmf.c:548 ../plug-ins/print/gimp_main_window.c:992 -#: ../plug-ins/print/gimp_main_window.c:1199 -msgid "Width:" -msgstr "" - -#. attach labels -#: ../plug-ins/common/grid.c:836 -msgid "Offset:" -msgstr "" - -#. attach color selectors -#: ../plug-ins/common/grid.c:875 -msgid "Horizontal Color" -msgstr "" - -#: ../plug-ins/common/grid.c:893 -msgid "Vertical Color" -msgstr "" - -#: ../plug-ins/common/grid.c:911 -msgid "Intersection Color" -msgstr "" - -#: ../plug-ins/common/gtm.c:154 -msgid "HTML table" -msgstr "" - -#: ../plug-ins/common/gtm.c:399 -msgid "GIMP Table Magic" -msgstr "" - -#: ../plug-ins/common/gtm.c:419 -msgid "Warning" -msgstr "" - -#: ../plug-ins/common/gtm.c:430 -msgid "" -"You are about to create a huge\n" -"HTML file which will most likely\n" -"crash your browser." -msgstr "" - -#. HTML Page Options -#: ../plug-ins/common/gtm.c:439 -msgid "HTML Page Options" -msgstr "" - -#: ../plug-ins/common/gtm.c:446 -msgid "_Generate full HTML document" -msgstr "" - -#: ../plug-ins/common/gtm.c:452 -msgid "" -"If checked GTM will output a full HTML document with , , etc. " -"tags instead of just the table html." -msgstr "" - -#. HTML Table Creation Options -#: ../plug-ins/common/gtm.c:465 -msgid "Table Creation Options" -msgstr "" - -#: ../plug-ins/common/gtm.c:473 -msgid "_Use cellspan" -msgstr "" - -#: ../plug-ins/common/gtm.c:479 -msgid "" -"If checked GTM will replace any rectangular sections of identically colored " -"blocks with one large cell with ROWSPAN and COLSPAN values." -msgstr "" - -#: ../plug-ins/common/gtm.c:488 -msgid "Co_mpress TD tags" -msgstr "" - -#: ../plug-ins/common/gtm.c:494 -msgid "" -"Checking this tag will cause GTM to leave no whitespace between the TD tags " -"and the cellcontent. This is only necessary for pixel level positioning " -"control." -msgstr "" - -#: ../plug-ins/common/gtm.c:504 -msgid "C_aption" -msgstr "" - -#: ../plug-ins/common/gtm.c:510 -msgid "Check if you would like to have the table captioned." -msgstr "" - -#: ../plug-ins/common/gtm.c:525 -msgid "The text for the table caption." -msgstr "" - -#: ../plug-ins/common/gtm.c:538 -msgid "C_ell content:" -msgstr "" - -#: ../plug-ins/common/gtm.c:542 -msgid "The text to go into each cell." -msgstr "" - -#. HTML Table Options -#: ../plug-ins/common/gtm.c:552 -msgid "Table Options" -msgstr "" - -#: ../plug-ins/common/gtm.c:563 -msgid "_Border:" -msgstr "" - -#: ../plug-ins/common/gtm.c:567 -msgid "The number of pixels in the table border." -msgstr "" - -#: ../plug-ins/common/gtm.c:582 -msgid "The width for each table cell. Can be a number or a percent." -msgstr "" - -#: ../plug-ins/common/gtm.c:598 -msgid "The height for each table cell. Can be a number or a percent." -msgstr "" - -#: ../plug-ins/common/gtm.c:609 -msgid "Cell-_padding:" -msgstr "" - -#: ../plug-ins/common/gtm.c:613 -msgid "The amount of cellpadding." -msgstr "" - -#: ../plug-ins/common/gtm.c:622 -msgid "Cell-_spacing:" -msgstr "" - -#: ../plug-ins/common/gtm.c:626 -msgid "The amount of cellspacing." -msgstr "" - -#: ../plug-ins/common/guillotine.c:72 -msgid "_Guillotine" -msgstr "" - -#: ../plug-ins/common/guillotine.c:104 -msgid "Guillotine..." -msgstr "" - -#: ../plug-ins/common/header.c:75 -msgid "C source code header" -msgstr "" - -#: ../plug-ins/common/hot.c:217 -msgid "_Hot..." -msgstr "" - -#: ../plug-ins/common/hot.c:379 -msgid "Hot..." -msgstr "" - -#: ../plug-ins/common/hot.c:570 -msgid "Hot" -msgstr "" - -#: ../plug-ins/common/hot.c:600 -msgid "Create _New layer" -msgstr "" - -#: ../plug-ins/common/hot.c:609 -msgid "Action" -msgstr "" - -#: ../plug-ins/common/hot.c:613 -msgid "Reduce _Luminance" -msgstr "" - -#: ../plug-ins/common/hot.c:614 -msgid "Reduce _Saturation" -msgstr "" - -#: ../plug-ins/common/hot.c:615 ../plug-ins/common/waves.c:275 -msgid "_Blacken" -msgstr "" - -#: ../plug-ins/common/illusion.c:101 -msgid "_Illusion..." -msgstr "" - -#: ../plug-ins/common/illusion.c:173 -msgid "Illusion..." -msgstr "" - -#: ../plug-ins/common/illusion.c:394 -msgid "Illusion" -msgstr "" - -#: ../plug-ins/common/illusion.c:423 -msgid "_Divisions:" -msgstr "" - -#: ../plug-ins/common/illusion.c:433 -msgid "Mode _1" -msgstr "" - -#: ../plug-ins/common/illusion.c:448 -msgid "Mode _2" -msgstr "" - -#: ../plug-ins/common/iwarp.c:254 -msgid "_IWarp..." -msgstr "" - -#: ../plug-ins/common/iwarp.c:688 -msgid "Warping..." -msgstr "" - -#: ../plug-ins/common/iwarp.c:793 ../plug-ins/common/iwarp.c:805 -#, c-format -msgid "Warping Frame No. %d..." -msgstr "" - -#: ../plug-ins/common/iwarp.c:806 -msgid "Ping pong" -msgstr "" - -#: ../plug-ins/common/iwarp.c:941 -msgid "A_nimate" -msgstr "" - -#: ../plug-ins/common/iwarp.c:960 -msgid "Number of _Frames:" -msgstr "" - -#: ../plug-ins/common/iwarp.c:969 -msgid "R_everse" -msgstr "" - -#: ../plug-ins/common/iwarp.c:978 -msgid "_Ping Pong" -msgstr "" - -#: ../plug-ins/common/iwarp.c:991 -msgid "_Animate" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1012 -msgid "Deform Mode" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1025 -msgid "_Move" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1026 -msgid "_Grow" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1027 -msgid "S_wirl CCW" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1028 -msgid "Remo_ve" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1029 -msgid "S_hrink" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1030 -msgid "Sw_irl CW" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1059 -msgid "_Deform radius:" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1069 -msgid "D_eform amount:" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1078 -msgid "_Bilinear" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1092 -msgid "Adaptive s_upersample" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1112 -msgid "Ma_x depth:" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1122 -msgid "Thresho_ld:" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1135 ../plug-ins/common/sinus.c:764 -#: ../plug-ins/gflare/gflare.c:2795 -msgid "_Settings" -msgstr "" - -#: ../plug-ins/common/iwarp.c:1151 -msgid "IWarp" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:364 -msgid "_Jigsaw..." -msgstr "" - -#: ../plug-ins/common/jigsaw.c:418 -msgid "Assembling Jigsaw..." -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2423 -msgid "Jigsaw" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2444 -msgid "Number of Tiles" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2459 -msgid "Number of pieces going across" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2476 -msgid "Number of pieces going down" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2490 -msgid "Bevel Edges" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2500 -msgid "_Bevel width:" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2504 -msgid "Degree of slope of each piece's edge" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2517 -msgid "H_ighlight:" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2521 -msgid "The amount of highlighting on the edges of each piece" -msgstr "" - -#. frame for primitive radio buttons -#: ../plug-ins/common/jigsaw.c:2538 -msgid "Jigsaw Style" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2542 -msgid "_Square" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2543 -msgid "C_urved" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2547 -msgid "Each piece has straight sides" -msgstr "" - -#: ../plug-ins/common/jigsaw.c:2548 -msgid "Each piece has curved sides" -msgstr "" - -#: ../plug-ins/common/jpeg.c:384 ../plug-ins/common/jpeg.c:422 -msgid "JPEG image" -msgstr "" - -#: ../plug-ins/common/jpeg.c:528 -msgid "Export Preview" -msgstr "" - -#: ../plug-ins/common/jpeg.c:892 -msgid "EXIF data will be ignored." -msgstr "" - -#: ../plug-ins/common/jpeg.c:1106 -msgid "JPEG preview" -msgstr "" - -#: ../plug-ins/common/jpeg.c:1368 -#, c-format -msgid "File size: %02.01f kB" -msgstr "" - -#: ../plug-ins/common/jpeg.c:1861 ../plug-ins/common/jpeg.c:1961 -msgid "File size: unknown" -msgstr "" - -#: ../plug-ins/common/jpeg.c:1926 -msgid "Save as JPEG" -msgstr "" - -#: ../plug-ins/common/jpeg.c:1947 -msgid "_Quality:" -msgstr "" - -#: ../plug-ins/common/jpeg.c:1951 -msgid "JPEG quality parameter" -msgstr "" - -#: ../plug-ins/common/jpeg.c:1970 -msgid "Show _Preview in image window" -msgstr "" - -#: ../plug-ins/common/jpeg.c:1983 -msgid "_Advanced Options" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2011 -msgid "_Smoothing:" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2024 -msgid "Frequency (rows):" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2038 -msgid "Use restart markers" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2053 ../plug-ins/xjt/xjt.c:860 -msgid "Optimize" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2067 -msgid "Progressive" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2086 -msgid "Force baseline JPEG" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2102 -msgid "Save EXIF data" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2119 -msgid "Save thumbnail" -msgstr "" - -#. Subsampling -#: ../plug-ins/common/jpeg.c:2136 -msgid "Subsampling:" -msgstr "" - -#. DCT method -#: ../plug-ins/common/jpeg.c:2163 -msgid "DCT method:" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2169 -msgid "Fast Integer" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2170 -msgid "Integer" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2171 -msgid "Floating-Point" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2185 -msgid "Comment" -msgstr "" - -#: ../plug-ins/common/jpeg.c:2338 -#, c-format -msgid "Opening thumbnail for '%s'..." -msgstr "" - -#: ../plug-ins/common/laplace.c:95 -msgid "_Laplace" -msgstr "" - -#: ../plug-ins/common/laplace.c:228 -msgid "Laplace..." -msgstr "" - -#: ../plug-ins/common/laplace.c:305 -msgid "Cleanup..." -msgstr "" - -#: ../plug-ins/common/lic.c:571 -msgid "Van Gogh (LIC)..." -msgstr "" - -#: ../plug-ins/common/lic.c:646 -msgid "Van Gogh (LIC)" -msgstr "" - -#: ../plug-ins/common/lic.c:664 -msgid "Effect Channel" -msgstr "" - -#: ../plug-ins/common/lic.c:671 -msgid "_Brightness" -msgstr "" - -#: ../plug-ins/common/lic.c:677 -msgid "Effect Operator" -msgstr "" - -#: ../plug-ins/common/lic.c:682 -msgid "_Derivative" -msgstr "" - -#: ../plug-ins/common/lic.c:683 -msgid "_Gradient" -msgstr "" - -#: ../plug-ins/common/lic.c:689 -msgid "Convolve" -msgstr "" - -#: ../plug-ins/common/lic.c:694 -msgid "_With white noise" -msgstr "" - -#: ../plug-ins/common/lic.c:695 -msgid "W_ith source image" -msgstr "" - -#: ../plug-ins/common/lic.c:714 -msgid "_Effect Image:" -msgstr "" - -#: ../plug-ins/common/lic.c:725 -msgid "_Filter length:" -msgstr "" - -#: ../plug-ins/common/lic.c:734 -msgid "_Noise magnitude:" -msgstr "" - -#: ../plug-ins/common/lic.c:743 -msgid "In_tegration steps:" -msgstr "" - -#: ../plug-ins/common/lic.c:752 -msgid "_Minimum value:" -msgstr "" - -#: ../plug-ins/common/lic.c:761 -msgid "M_aximum value:" -msgstr "" - -#: ../plug-ins/common/lic.c:812 -msgid "_Van Gogh (LIC)..." -msgstr "" - -#: ../plug-ins/common/mail.c:253 -msgid "_Mail Image..." -msgstr "" - -#: ../plug-ins/common/mail.c:474 -msgid "Send as Mail" -msgstr "" - -#: ../plug-ins/common/mail.c:498 -msgid "_Recipient:" -msgstr "" - -#: ../plug-ins/common/mail.c:510 -msgid "_Sender:" -msgstr "" - -#: ../plug-ins/common/mail.c:522 -msgid "S_ubject:" -msgstr "" - -#: ../plug-ins/common/mail.c:534 -msgid "Comm_ent:" -msgstr "" - -#: ../plug-ins/common/mail.c:546 -msgid "_Filename:" -msgstr "" - -#. Encapsulation label -#: ../plug-ins/common/mail.c:580 -msgid "Encapsulation:" -msgstr "" - -#: ../plug-ins/common/mail.c:592 -msgid "_Uuencode" -msgstr "" - -#: ../plug-ins/common/mail.c:593 -msgid "_MIME" -msgstr "" - -#: ../plug-ins/common/mail.c:693 -msgid "some sort of error with the file extension or lack thereof" -msgstr "" - -#: ../plug-ins/common/mapcolor.c:113 -msgid "First Source Color" -msgstr "" - -#: ../plug-ins/common/mapcolor.c:114 -msgid "Second Source Color" -msgstr "" - -#: ../plug-ins/common/mapcolor.c:115 -msgid "First Destination Color" -msgstr "" - -#: ../plug-ins/common/mapcolor.c:116 -msgid "Second Destination Color" -msgstr "" - -#: ../plug-ins/common/mapcolor.c:154 -msgid "Adjust _FG-BG" -msgstr "" - -#: ../plug-ins/common/mapcolor.c:172 -msgid "Color Range _Mapping..." -msgstr "" - -#: ../plug-ins/common/mapcolor.c:219 ../plug-ins/common/mapcolor.c:507 -msgid "Cannot operate on gray or indexed color images." -msgstr "" - -#: ../plug-ins/common/mapcolor.c:240 -msgid "Adjusting Foreground/Background..." -msgstr "" - -#: ../plug-ins/common/mapcolor.c:282 -msgid "Mapping colors..." -msgstr "" - -#: ../plug-ins/common/mapcolor.c:359 -msgid "Map Color Range" -msgstr "" - -#: ../plug-ins/common/mapcolor.c:383 -msgid "Source color range" -msgstr "" - -#: ../plug-ins/common/mapcolor.c:384 -msgid "Destination color range" -msgstr "" - -#: ../plug-ins/common/mapcolor.c:424 ../plug-ins/gfli/gfli.c:844 -#: ../plug-ins/gfli/gfli.c:907 -msgid "To:" -msgstr "" - -#: ../plug-ins/common/max_rgb.c:106 -msgid "_Max RGB..." -msgstr "" - -#: ../plug-ins/common/max_rgb.c:145 -msgid "Can only operate on RGB drawables." -msgstr "" - -#: ../plug-ins/common/max_rgb.c:245 -msgid "Max RGB..." -msgstr "" - -#: ../plug-ins/common/max_rgb.c:270 -msgid "Max RGB" -msgstr "" - -#: ../plug-ins/common/max_rgb.c:295 -msgid "_Hold the maximal channels" -msgstr "" - -#: ../plug-ins/common/max_rgb.c:298 -msgid "Ho_ld the minimal channels" -msgstr "" - -#: ../plug-ins/common/mblur.c:176 -msgid "_Motion Blur..." -msgstr "" - -#: ../plug-ins/common/mblur.c:796 -msgid "Motion Blurring..." -msgstr "" - -#: ../plug-ins/common/mblur.c:893 -msgid "Motion Blur" -msgstr "" - -#: ../plug-ins/common/mblur.c:915 -msgid "Blur Type" -msgstr "" - -#: ../plug-ins/common/mblur.c:919 -msgid "_Linear" -msgstr "" - -#: ../plug-ins/common/mblur.c:920 -msgid "_Radial" -msgstr "" - -#: ../plug-ins/common/mblur.c:921 -msgid "_Zoom" -msgstr "" - -#: ../plug-ins/common/mblur.c:930 -msgid "Blur Parameters" -msgstr "" - -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 -msgid "_Angle:" -msgstr "" - -#: ../plug-ins/common/mblur.c:969 -msgid "Blur Center" -msgstr "" - -#. Inform the user that we couldn't losslessly save the -#. * transparency & just use the full palette -#: ../plug-ins/common/mng.c:495 ../plug-ins/common/png.c:1562 -msgid "Couldn't losslessly save transparency, saving opacity instead." -msgstr "" - -#: ../plug-ins/common/mng.c:1314 -msgid "Save as MNG" -msgstr "" - -#: ../plug-ins/common/mng.c:1327 -msgid "MNG Options" -msgstr "" - -#: ../plug-ins/common/mng.c:1333 -msgid "Interlace" -msgstr "" - -#: ../plug-ins/common/mng.c:1345 -msgid "Save background color" -msgstr "" - -#: ../plug-ins/common/mng.c:1356 -msgid "Save gamma" -msgstr "" - -#: ../plug-ins/common/mng.c:1366 -msgid "Save resolution" -msgstr "" - -#: ../plug-ins/common/mng.c:1377 -msgid "Save creation time" -msgstr "" - -#: ../plug-ins/common/mng.c:1396 -msgid "PNG" -msgstr "" - -#: ../plug-ins/common/mng.c:1397 -msgid "JNG" -msgstr "" - -#: ../plug-ins/common/mng.c:1400 -msgid "PNG + delta PNG" -msgstr "" - -#: ../plug-ins/common/mng.c:1401 -msgid "JNG + delta PNG" -msgstr "" - -#: ../plug-ins/common/mng.c:1402 -msgid "All PNG" -msgstr "" - -#: ../plug-ins/common/mng.c:1403 -msgid "All JNG" -msgstr "" - -#: ../plug-ins/common/mng.c:1415 -msgid "Default chunks type:" -msgstr "" - -#: ../plug-ins/common/mng.c:1418 -msgid "Combine" -msgstr "" - -#: ../plug-ins/common/mng.c:1419 -msgid "Replace" -msgstr "" - -#: ../plug-ins/common/mng.c:1430 -msgid "Default frame disposal:" -msgstr "" - -#: ../plug-ins/common/mng.c:1442 -msgid "PNG compression level:" -msgstr "" - -#: ../plug-ins/common/mng.c:1450 ../plug-ins/common/png.c:1703 -msgid "Choose a high compression level for small file size" -msgstr "" - -#: ../plug-ins/common/mng.c:1464 -msgid "JPEG compression quality:" -msgstr "" - -#: ../plug-ins/common/mng.c:1481 -msgid "JPEG smoothing factor:" -msgstr "" - -#: ../plug-ins/common/mng.c:1491 -msgid "Animated MNG options" -msgstr "" - -#: ../plug-ins/common/mng.c:1497 -msgid "Loop" -msgstr "" - -#: ../plug-ins/common/mng.c:1511 -msgid "Default frame delay:" -msgstr "" - -#: ../plug-ins/common/mng.c:1589 -msgid "MNG animation" -msgstr "" - -#: ../plug-ins/common/mosaic.c:309 -msgid "_Mosaic..." -msgstr "" - -#. progress bar for gradient finding -#: ../plug-ins/common/mosaic.c:435 -msgid "Finding Edges..." -msgstr "" - -#. Progress bar for rendering tiles -#: ../plug-ins/common/mosaic.c:483 -msgid "Rendering Tiles..." -msgstr "" - -#: ../plug-ins/common/mosaic.c:509 -msgid "Mosaic" -msgstr "" - -#: ../plug-ins/common/mosaic.c:544 -msgid "Co_lor averaging" -msgstr "" - -#: ../plug-ins/common/mosaic.c:554 -msgid "Allo_w tile splitting" -msgstr "" - -#: ../plug-ins/common/mosaic.c:564 -msgid "_Pitted surfaces" -msgstr "" - -#: ../plug-ins/common/mosaic.c:574 -msgid "_FG/BG lighting" -msgstr "" - -#. tiling primitive -#: ../plug-ins/common/mosaic.c:588 -msgid "Tiling Primitives" -msgstr "" - -#: ../plug-ins/common/mosaic.c:592 -msgid "_Squares" -msgstr "" - -#: ../plug-ins/common/mosaic.c:593 -msgid "He_xagons" -msgstr "" - -#: ../plug-ins/common/mosaic.c:594 -msgid "Oc_tagons & squares" -msgstr "" - -#. parameter settings -#: ../plug-ins/common/mosaic.c:603 -msgid "Settings" -msgstr "" - -#: ../plug-ins/common/mosaic.c:612 -msgid "T_ile size:" -msgstr "" - -#: ../plug-ins/common/mosaic.c:630 -msgid "Til_e spacing:" -msgstr "" - -#: ../plug-ins/common/mosaic.c:639 -msgid "Tile _neatness:" -msgstr "" - -#: ../plug-ins/common/mosaic.c:649 -msgid "Light _direction:" -msgstr "" - -#: ../plug-ins/common/mosaic.c:658 -msgid "Color _variation:" -msgstr "" - -#: ../plug-ins/common/mosaic.c:2392 -msgid "Unable to add additional point.\n" -msgstr "" - -#: ../plug-ins/common/neon.c:135 -msgid "_Neon..." -msgstr "" - -#: ../plug-ins/common/neon.c:207 -msgid "Neon..." -msgstr "" - -#: ../plug-ins/common/neon.c:697 -msgid "Neon Detection" -msgstr "" - -#: ../plug-ins/common/neon.c:742 ../plug-ins/common/unsharp.c:678 -msgid "_Amount:" -msgstr "" - -#: ../plug-ins/common/newsprint.c:132 -msgid "Round" -msgstr "" - -#: ../plug-ins/common/newsprint.c:141 -msgid "Line" -msgstr "" - -#: ../plug-ins/common/newsprint.c:150 -msgid "Diamond" -msgstr "" - -#: ../plug-ins/common/newsprint.c:158 -msgid "PS Square (Euclidean Dot)" -msgstr "" - -#: ../plug-ins/common/newsprint.c:167 -msgid "PS Diamond" -msgstr "" - -#: ../plug-ins/common/newsprint.c:339 -msgid "_Grey" -msgstr "" - -#: ../plug-ins/common/newsprint.c:352 -msgid "R_ed" -msgstr "" - -#: ../plug-ins/common/newsprint.c:381 -msgid "C_yan" -msgstr "" - -#: ../plug-ins/common/newsprint.c:389 -msgid "Magen_ta" -msgstr "" - -#: ../plug-ins/common/newsprint.c:397 -msgid "_Yellow" -msgstr "" - -#: ../plug-ins/common/newsprint.c:418 -msgid "Intensity" -msgstr "" - -#: ../plug-ins/common/newsprint.c:534 -msgid "Newsprin_t..." -msgstr "" - -#: ../plug-ins/common/newsprint.c:635 -msgid "Newsprint..." -msgstr "" - -#: ../plug-ins/common/newsprint.c:1039 -msgid "_Spot function:" -msgstr "" - -#: ../plug-ins/common/newsprint.c:1196 -msgid "Newsprint" -msgstr "" - -#. resolution settings -#: ../plug-ins/common/newsprint.c:1240 -msgid "Resolution" -msgstr "" - -#: ../plug-ins/common/newsprint.c:1259 -msgid "_Input SPI:" -msgstr "" - -#: ../plug-ins/common/newsprint.c:1273 -msgid "O_utput LPI:" -msgstr "" - -#: ../plug-ins/common/newsprint.c:1286 -msgid "C_ell size:" -msgstr "" - -#. screen settings -#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 -msgid "Screen" -msgstr "" - -#: ../plug-ins/common/newsprint.c:1318 -msgid "B_lack pullout (%):" -msgstr "" - -#: ../plug-ins/common/newsprint.c:1340 -msgid "Separate to:" -msgstr "" - -#: ../plug-ins/common/newsprint.c:1344 -msgid "_RGB" -msgstr "" - -#: ../plug-ins/common/newsprint.c:1361 -msgid "C_MYK" -msgstr "" - -#: ../plug-ins/common/newsprint.c:1378 -msgid "I_ntensity" -msgstr "" - -#: ../plug-ins/common/newsprint.c:1403 -msgid "_Lock channels" -msgstr "" - -#: ../plug-ins/common/newsprint.c:1416 -msgid "_Factory defaults" -msgstr "" - -#. anti-alias control -#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 -msgid "Antialiasing" -msgstr "" - -#: ../plug-ins/common/newsprint.c:1450 -msgid "O_versample:" -msgstr "" - -#: ../plug-ins/common/nlfilt.c:126 -msgid "_NL Filter..." -msgstr "" - -#: ../plug-ins/common/nlfilt.c:954 -msgid "NL Filter..." -msgstr "" - -#: ../plug-ins/common/nlfilt.c:1017 -msgid "NL Filter" -msgstr "" - -#: ../plug-ins/common/nlfilt.c:1038 -msgid "Filter" -msgstr "" - -#: ../plug-ins/common/nlfilt.c:1042 -msgid "_Alpha trimmed mean" -msgstr "" - -#: ../plug-ins/common/nlfilt.c:1044 -msgid "Op_timal estimation" -msgstr "" - -#: ../plug-ins/common/nlfilt.c:1046 -msgid "_Edge enhancement" -msgstr "" - -#: ../plug-ins/common/nlfilt.c:1071 -msgid "A_lpha:" -msgstr "" - -#: ../plug-ins/common/noisify.c:157 -msgid "_Scatter RGB..." -msgstr "" - -#: ../plug-ins/common/noisify.c:285 -msgid "Adding Noise..." -msgstr "" - -#: ../plug-ins/common/noisify.c:451 -msgid "Scatter RGB" -msgstr "" - -#: ../plug-ins/common/noisify.c:477 -msgid "Co_rrelated noise" -msgstr "" - -#: ../plug-ins/common/noisify.c:492 -msgid "_Independent RGB" -msgstr "" - -#: ../plug-ins/common/noisify.c:516 ../plug-ins/common/noisify.c:520 -msgid "_Gray:" -msgstr "" - -#: ../plug-ins/common/noisify.c:521 ../plug-ins/common/noisify.c:536 -msgid "_Alpha:" -msgstr "" - -#: ../plug-ins/common/noisify.c:546 -#, c-format -msgid "Channel #%d:" -msgstr "" - -#: ../plug-ins/common/normalize.c:122 -msgid "Normalizing..." -msgstr "" - -#: ../plug-ins/common/nova.c:179 -msgid "Su_perNova..." -msgstr "" - -#: ../plug-ins/common/nova.c:262 -msgid "Rendering SuperNova..." -msgstr "" - -#: ../plug-ins/common/nova.c:305 -msgid "SuperNova" -msgstr "" - -#: ../plug-ins/common/nova.c:342 -msgid "SuperNova Color Picker" -msgstr "" - -#: ../plug-ins/common/nova.c:371 -msgid "_Spokes:" -msgstr "" - -#: ../plug-ins/common/nova.c:386 -msgid "R_andom hue:" -msgstr "" - -#: ../plug-ins/common/nova.c:438 -msgid "Center of SuperNova" -msgstr "" - -#: ../plug-ins/common/nova.c:472 -msgid "S_how cursor" -msgstr "" - -#: ../plug-ins/common/oilify.c:111 -msgid "Oili_fy..." -msgstr "" - -#: ../plug-ins/common/oilify.c:189 -msgid "Oil Painting..." -msgstr "" - -#: ../plug-ins/common/oilify.c:477 -msgid "Oilify" -msgstr "" - -#: ../plug-ins/common/oilify.c:504 -msgid "_Mask size:" -msgstr "" - -#: ../plug-ins/common/oilify.c:515 -msgid "_Use intensity algorithm" -msgstr "" - -#: ../plug-ins/common/papertile.c:235 -msgid "Paper Tile" -msgstr "" - -#: ../plug-ins/common/papertile.c:254 -msgid "Division" -msgstr "" - -#: ../plug-ins/common/papertile.c:293 -msgid "Fractional Pixels" -msgstr "" - -#: ../plug-ins/common/papertile.c:298 -msgid "_Background" -msgstr "" - -#: ../plug-ins/common/papertile.c:300 -msgid "_Ignore" -msgstr "" - -#: ../plug-ins/common/papertile.c:302 -msgid "_Force" -msgstr "" - -#: ../plug-ins/common/papertile.c:309 -msgid "C_entering" -msgstr "" - -#: ../plug-ins/common/papertile.c:324 -msgid "Movement" -msgstr "" - -#: ../plug-ins/common/papertile.c:337 -msgid "_Max (%):" -msgstr "" - -#: ../plug-ins/common/papertile.c:343 -msgid "_Wrap around" -msgstr "" - -#: ../plug-ins/common/papertile.c:353 -msgid "Background Type" -msgstr "" - -#: ../plug-ins/common/papertile.c:360 -msgid "I_nverted image" -msgstr "" - -#: ../plug-ins/common/papertile.c:362 -msgid "Im_age" -msgstr "" - -#: ../plug-ins/common/papertile.c:364 -msgid "Fo_reground color" -msgstr "" - -#: ../plug-ins/common/papertile.c:366 -msgid "Bac_kground color" -msgstr "" - -#: ../plug-ins/common/papertile.c:368 -msgid "S_elect here:" -msgstr "" - -#: ../plug-ins/common/papertile.c:375 -msgid "Background Color" -msgstr "" - -#: ../plug-ins/common/papertile.c:527 -msgid "Paper Tile..." -msgstr "" - -#: ../plug-ins/common/papertile.c:815 -msgid "September 31, 1999" -msgstr "" - -#: ../plug-ins/common/papertile.c:816 -msgid "_Paper Tile..." -msgstr "" - -#: ../plug-ins/common/pat.c:104 ../plug-ins/common/pat.c:126 -msgid "GIMP pattern" -msgstr "" - -#: ../plug-ins/common/pat.c:343 -#, c-format -msgid "Invalid UTF-8 string in pattern file '%s'." -msgstr "" - -#: ../plug-ins/common/pat.c:501 -msgid "Save as Pattern" -msgstr "" - -#: ../plug-ins/common/pcx.c:96 ../plug-ins/common/pcx.c:115 -msgid "ZSoft PCX image" -msgstr "" - -#: ../plug-ins/common/pcx.c:314 -#, c-format -msgid "Could not read header from '%s'" -msgstr "" - -#: ../plug-ins/common/pcx.c:321 -#, c-format -msgid "'%s' is not a PCX file" -msgstr "" - -#: ../plug-ins/common/pcx.c:375 -msgid "Unusual PCX flavour, giving up" -msgstr "" - -#: ../plug-ins/common/photocopy.c:158 -msgid "_Photocopy..." -msgstr "" - -#: ../plug-ins/common/photocopy.c:837 -msgid "Photocopy" -msgstr "" - -#: ../plug-ins/common/photocopy.c:881 ../plug-ins/common/sharpen.c:509 -#: ../plug-ins/common/softglow.c:687 -msgid "_Sharpness:" -msgstr "" - -#: ../plug-ins/common/photocopy.c:895 -msgid "Percent _black:" -msgstr "" - -#: ../plug-ins/common/photocopy.c:909 -msgid "Percent _white:" -msgstr "" - -#: ../plug-ins/common/pix.c:141 ../plug-ins/common/pix.c:158 -msgid "Alias|Wavefront PIX image" -msgstr "" - -#: ../plug-ins/common/pixelize.c:173 -msgid "_Pixelize..." -msgstr "" - -#: ../plug-ins/common/pixelize.c:275 -msgid "Pixelizing..." -msgstr "" - -#: ../plug-ins/common/pixelize.c:315 -msgid "Pixelize" -msgstr "" - -#: ../plug-ins/common/pixelize.c:337 -msgid "Pixel _Width:" -msgstr "" - -#: ../plug-ins/common/pixelize.c:342 -msgid "Pixel _Height:" -msgstr "" - -#: ../plug-ins/common/plasma.c:185 -msgid "_Plasma..." -msgstr "" - -#: ../plug-ins/common/plasma.c:268 -msgid "Plasma..." -msgstr "" - -#: ../plug-ins/common/plasma.c:305 -msgid "Plasma" -msgstr "" - -#: ../plug-ins/common/plasma.c:334 -msgid "Random _seed:" -msgstr "" - -#: ../plug-ins/common/plasma.c:345 -msgid "T_urbulence:" -msgstr "" - -#: ../plug-ins/common/png.c:249 ../plug-ins/common/png.c:266 -#: ../plug-ins/common/png.c:281 ../plug-ins/common/png.c:295 -msgid "PNG image" -msgstr "" - -#: ../plug-ins/common/png.c:657 -#, c-format -msgid "Error while reading '%s'. File corrupted?" -msgstr "" - -#. Aie! Unknown type -#: ../plug-ins/common/png.c:791 -#, c-format -msgid "Unknown color model in PNG file '%s'." -msgstr "" - -#: ../plug-ins/common/png.c:846 -msgid "" -"The PNG file specifies an offset that caused the layer to be positioned " -"outside the image." -msgstr "" - -#: ../plug-ins/common/png.c:1163 -#, c-format -msgid "Error while saving '%s'. Could not save image." -msgstr "" - -#: ../plug-ins/common/png.c:1591 -msgid "Save as PNG" -msgstr "" - -#: ../plug-ins/common/png.c:1595 -msgid "_Load defaults" -msgstr "" - -#: ../plug-ins/common/png.c:1596 -msgid "_Save defaults" -msgstr "" - -#: ../plug-ins/common/png.c:1617 -msgid "_Interlacing (Adam7)" -msgstr "" - -#: ../plug-ins/common/png.c:1628 -msgid "Save _background color" -msgstr "" - -#: ../plug-ins/common/png.c:1636 -msgid "Save _gamma" -msgstr "" - -#: ../plug-ins/common/png.c:1645 -msgid "Save layer o_ffset" -msgstr "" - -#: ../plug-ins/common/png.c:1654 -msgid "Save _resolution" -msgstr "" - -#: ../plug-ins/common/png.c:1663 -msgid "Save creation _time" -msgstr "" - -#: ../plug-ins/common/png.c:1671 -msgid "Save comme_nt" -msgstr "" - -#: ../plug-ins/common/png.c:1686 -msgid "Save color _values from transparent pixels" -msgstr "" - -#: ../plug-ins/common/png.c:1699 -msgid "Co_mpression level:" -msgstr "" - -#: ../plug-ins/common/png.c:1819 -msgid "Could not load PNG defaults" -msgstr "" - -#: ../plug-ins/common/pnm.c:228 -msgid "PNM Image" -msgstr "" - -#: ../plug-ins/common/pnm.c:248 -msgid "PNM image" -msgstr "" - -#: ../plug-ins/common/pnm.c:260 -msgid "PGM image" -msgstr "" - -#: ../plug-ins/common/pnm.c:272 -msgid "PPM image" -msgstr "" - -#: ../plug-ins/common/pnm.c:465 ../plug-ins/common/pnm.c:486 -#: ../plug-ins/common/pnm.c:493 ../plug-ins/common/pnm.c:502 -#: ../plug-ins/common/pnm.c:577 ../plug-ins/common/pnm.c:633 -msgid "PNM: Premature end of file." -msgstr "" - -#: ../plug-ins/common/pnm.c:467 -msgid "PNM: Invalid file." -msgstr "" - -#: ../plug-ins/common/pnm.c:480 -msgid "File not in a supported format." -msgstr "" - -#: ../plug-ins/common/pnm.c:489 -msgid "PNM: Invalid X resolution." -msgstr "" - -#: ../plug-ins/common/pnm.c:496 -msgid "PNM: Invalid Y resolution." -msgstr "" - -#: ../plug-ins/common/pnm.c:508 -msgid "PNM: Invalid maximum value." -msgstr "" - -#: ../plug-ins/common/pnm.c:684 -msgid "PNM: Error reading file." -msgstr "" - -#: ../plug-ins/common/pnm.c:800 -msgid "PNM save cannot handle images with alpha channels." -msgstr "" - -#: ../plug-ins/common/pnm.c:949 -msgid "Save as PNM" -msgstr "" - -#. file save type -#: ../plug-ins/common/pnm.c:959 -msgid "Data formatting" -msgstr "" - -#: ../plug-ins/common/pnm.c:963 -msgid "Raw" -msgstr "" - -#: ../plug-ins/common/pnm.c:964 -msgid "Ascii" -msgstr "" - -#: ../plug-ins/common/polar.c:170 -msgid "P_olar Coords..." -msgstr "" - -#: ../plug-ins/common/polar.c:357 -msgid "Polarizing..." -msgstr "" - -#: ../plug-ins/common/polar.c:589 -msgid "Polarize" -msgstr "" - -#: ../plug-ins/common/polar.c:620 -msgid "Circle _depth in percent:" -msgstr "" - -#: ../plug-ins/common/polar.c:632 -msgid "Offset _angle:" -msgstr "" - -#: ../plug-ins/common/polar.c:647 -msgid "_Map backwards" -msgstr "" - -#: ../plug-ins/common/polar.c:653 -msgid "" -"If checked the mapping will begin at the right side, as opposed to beginning " -"at the left." -msgstr "" - -#: ../plug-ins/common/polar.c:664 -msgid "Map from _top" -msgstr "" - -#: ../plug-ins/common/polar.c:670 -msgid "" -"If unchecked the mapping will put the bottom row in the middle and the top " -"row on the outside. If checked it will be the opposite." -msgstr "" - -#: ../plug-ins/common/polar.c:682 -msgid "To _polar" -msgstr "" - -#: ../plug-ins/common/polar.c:688 -msgid "" -"If unchecked the image will be circularly mapped onto a rectangle. If " -"checked the image will be mapped onto a circle." -msgstr "" - -#: ../plug-ins/common/postscript.c:576 ../plug-ins/common/postscript.c:662 -msgid "PostScript document" -msgstr "" - -#: ../plug-ins/common/postscript.c:595 ../plug-ins/common/postscript.c:677 -msgid "Encapsulated PostScript image" -msgstr "" - -#: ../plug-ins/common/postscript.c:614 -msgid "PDF document" -msgstr "" - -#: ../plug-ins/common/postscript.c:1005 -#, c-format -msgid "Could not interpret '%s'" -msgstr "" - -#: ../plug-ins/common/postscript.c:1103 -msgid "PostScript save cannot handle images with alpha channels" -msgstr "" - -#: ../plug-ins/common/postscript.c:1631 -#, c-format -msgid "Error starting ghostscript (%s)" -msgstr "" - -#: ../plug-ins/common/postscript.c:1661 -#, c-format -msgid "Error starting ghostscript: %s" -msgstr "" - -#: ../plug-ins/common/postscript.c:2481 ../plug-ins/common/postscript.c:2614 -#: ../plug-ins/common/postscript.c:2766 ../plug-ins/common/postscript.c:2895 -#: ../plug-ins/common/sunras.c:1454 ../plug-ins/common/sunras.c:1562 -#: ../plug-ins/fits/fits.c:826 ../plug-ins/fits/fits.c:950 -msgid "Write error occurred" -msgstr "" - -#: ../plug-ins/common/postscript.c:2922 -msgid "Load PostScript" -msgstr "" - -#. Rendering -#: ../plug-ins/common/postscript.c:2942 -msgid "Rendering" -msgstr "" - -#. Resolution -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/svg.c:882 -#: ../plug-ins/common/wmf.c:669 ../plug-ins/print/gimp_main_window.c:1087 -msgid "Resolution:" -msgstr "" - -#: ../plug-ins/common/postscript.c:2986 -msgid "Pages:" -msgstr "" - -#: ../plug-ins/common/postscript.c:2992 -msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" -msgstr "" - -#: ../plug-ins/common/postscript.c:2994 -msgid "Try Bounding Box" -msgstr "" - -#. Colouring -#: ../plug-ins/common/postscript.c:3007 -msgid "Coloring" -msgstr "" - -#: ../plug-ins/common/postscript.c:3011 -msgid "B/W" -msgstr "" - -#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 -msgid "Gray" -msgstr "" - -#: ../plug-ins/common/postscript.c:3013 ../plug-ins/common/xpm.c:469 -#: ../plug-ins/gimpressionist/color.c:48 -#: ../plug-ins/gimpressionist/general.c:151 -#: ../plug-ins/imagemap/imap_menu.c:306 -#: ../plug-ins/print/gimp_main_window.c:1399 -msgid "Color" -msgstr "" - -#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 -msgid "Automatic" -msgstr "" - -#: ../plug-ins/common/postscript.c:3024 -msgid "Text antialiasing" -msgstr "" - -#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 -msgid "Weak" -msgstr "" - -#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 -msgid "Strong" -msgstr "" - -#: ../plug-ins/common/postscript.c:3036 -msgid "Graphic antialiasing" -msgstr "" - -#: ../plug-ins/common/postscript.c:3088 -msgid "Save as PostScript" -msgstr "" - -#. Image Size -#: ../plug-ins/common/postscript.c:3112 -msgid "Image Size" -msgstr "" - -#: ../plug-ins/common/postscript.c:3161 -msgid "_Keep aspect ratio" -msgstr "" - -#: ../plug-ins/common/postscript.c:3167 -msgid "" -"When toggled, the resulting image will be scaled to fit into the given size " -"without changing the aspect ratio." -msgstr "" - -#. Unit -#: ../plug-ins/common/postscript.c:3176 -msgid "Unit" -msgstr "" - -#: ../plug-ins/common/postscript.c:3180 -msgid "_Inch" -msgstr "" - -#: ../plug-ins/common/postscript.c:3181 -msgid "_Millimeter" -msgstr "" - -#. Format -#: ../plug-ins/common/postscript.c:3207 -msgid "Output" -msgstr "" - -#: ../plug-ins/common/postscript.c:3213 -msgid "_PostScript level 2" -msgstr "" - -#: ../plug-ins/common/postscript.c:3222 -msgid "_Encapsulated PostScript" -msgstr "" - -#: ../plug-ins/common/postscript.c:3231 -msgid "P_review" -msgstr "" - -#: ../plug-ins/common/postscript.c:3252 -msgid "Preview _size:" -msgstr "" - -#: ../plug-ins/common/psd.c:489 -msgid "Invalid UTF-8 string in PSD file" -msgstr "" - -#: ../plug-ins/common/psd_save.c:192 -msgid "Photoshop image" -msgstr "" - -#: ../plug-ins/common/psd_save.c:1312 -#, c-format -msgid "" -"Unable to save '%s'. The psd file format does not support images that are " -"more than 30000 pixels wide or tall." -msgstr "" - -#: ../plug-ins/common/psd_save.c:1324 -#, c-format -msgid "" -"Unable to save '%s'. The psd file format does not support images with " -"layers that are more than 30000 pixels wide or tall." -msgstr "" - -#: ../plug-ins/common/psp.c:362 -msgid "Paint Shop Pro image" -msgstr "" - -#: ../plug-ins/common/psp.c:402 -msgid "Save as PSP" -msgstr "" - -#. file save type -#: ../plug-ins/common/psp.c:412 -msgid "Data Compression" -msgstr "" - -#: ../plug-ins/common/psp.c:417 -msgid "RLE" -msgstr "" - -#: ../plug-ins/common/psp.c:418 -msgid "LZ77" -msgstr "" - -#: ../plug-ins/common/randomize.c:107 -msgid "Random Hurl 1.7" -msgstr "" - -#: ../plug-ins/common/randomize.c:108 -msgid "Random Pick 1.7" -msgstr "" - -#: ../plug-ins/common/randomize.c:109 -msgid "Random Slur 1.7" -msgstr "" - -#: ../plug-ins/common/randomize.c:244 -msgid "_Hurl..." -msgstr "" - -#: ../plug-ins/common/randomize.c:256 -msgid "_Pick..." -msgstr "" - -#: ../plug-ins/common/randomize.c:268 -msgid "_Slur..." -msgstr "" - -#: ../plug-ins/common/randomize.c:756 ../plug-ins/common/snoise.c:614 -msgid "_Random seed:" -msgstr "" - -#: ../plug-ins/common/randomize.c:765 -msgid "R_andomization (%):" -msgstr "" - -#: ../plug-ins/common/randomize.c:768 -msgid "Percentage of pixels to be filtered" -msgstr "" - -#: ../plug-ins/common/randomize.c:777 -msgid "R_epeat:" -msgstr "" - -#: ../plug-ins/common/randomize.c:780 -msgid "Number of times to apply filter" -msgstr "" - -#: ../plug-ins/common/raw.c:166 ../plug-ins/common/raw.c:181 -msgid "Raw Image Data" -msgstr "" - -#: ../plug-ins/common/raw.c:915 -msgid "Raw Image Loader" -msgstr "" - -#: ../plug-ins/common/raw.c:943 -msgid "Image" -msgstr "" - -#: ../plug-ins/common/raw.c:955 -msgid "Planar RGB" -msgstr "" - -#: ../plug-ins/common/raw.c:956 -msgid "Indexed" -msgstr "" - -#: ../plug-ins/common/raw.c:961 -msgid "Image _Type:" -msgstr "" - -#: ../plug-ins/common/raw.c:1011 -msgid "Palette" -msgstr "" - -#: ../plug-ins/common/raw.c:1021 ../plug-ins/common/raw.c:1109 -msgid "R, G, B (normal)" -msgstr "" - -#: ../plug-ins/common/raw.c:1022 ../plug-ins/common/raw.c:1111 -msgid "B, G, R, X (bmp style)" -msgstr "" - -#: ../plug-ins/common/raw.c:1027 -msgid "_Palette Type:" -msgstr "" - -#: ../plug-ins/common/raw.c:1038 -msgid "Off_set:" -msgstr "" - -#: ../plug-ins/common/raw.c:1050 -msgid "Select Palette File to Load" -msgstr "" - -#: ../plug-ins/common/raw.c:1053 -msgid "Pal_ette File:" -msgstr "" - -#: ../plug-ins/common/raw.c:1081 -msgid "Raw Image Save" -msgstr "" - -#: ../plug-ins/common/raw.c:1095 -msgid "RGB Save Type" -msgstr "" - -#: ../plug-ins/common/raw.c:1099 -msgid "Standard (R,G,B)" -msgstr "" - -#: ../plug-ins/common/raw.c:1100 -msgid "Planar (RRR,GGG,BBB)" -msgstr "" - -#: ../plug-ins/common/raw.c:1105 -msgid "Indexed Palette Type" -msgstr "" - -#: ../plug-ins/common/retinex.c:168 -msgid "_Retinex..." -msgstr "" - -#: ../plug-ins/common/retinex.c:251 -msgid "Retinex..." -msgstr "" - -#: ../plug-ins/common/retinex.c:253 -msgid "Retinex (4/4): updated..." -msgstr "" - -#: ../plug-ins/common/retinex.c:290 -msgid "Retinex Image Enhancement" -msgstr "" - -#: ../plug-ins/common/retinex.c:311 -msgid "Level" -msgstr "" - -#: ../plug-ins/common/retinex.c:315 -msgid "_Uniform" -msgstr "" - -#: ../plug-ins/common/retinex.c:317 -msgid "_Low" -msgstr "" - -#: ../plug-ins/common/retinex.c:319 -msgid "_High" -msgstr "" - -#: ../plug-ins/common/retinex.c:344 -msgid "_Scale:" -msgstr "" - -#: ../plug-ins/common/retinex.c:359 -msgid "_Scale division:" -msgstr "" - -#: ../plug-ins/common/retinex.c:374 -msgid "_Dynamic:" -msgstr "" - -#: ../plug-ins/common/retinex.c:648 -msgid "Retinex: Filtering..." -msgstr "" - -#: ../plug-ins/common/ripple.c:138 -msgid "_Ripple..." -msgstr "" - -#: ../plug-ins/common/ripple.c:222 -msgid "Rippling..." -msgstr "" - -#: ../plug-ins/common/ripple.c:472 -msgid "Ripple" -msgstr "" - -#: ../plug-ins/common/ripple.c:522 -msgid "_Retain tilability" -msgstr "" - -#. Edges toggle box -#: ../plug-ins/common/ripple.c:556 -msgid "Edges" -msgstr "" - -#. Wave toggle box -#: ../plug-ins/common/ripple.c:584 -msgid "Wave Type" -msgstr "" - -#: ../plug-ins/common/ripple.c:588 -msgid "Saw_tooth" -msgstr "" - -#: ../plug-ins/common/ripple.c:589 -msgid "S_ine" -msgstr "" - -#: ../plug-ins/common/ripple.c:612 -msgid "_Period:" -msgstr "" - -#: ../plug-ins/common/ripple.c:625 -msgid "A_mplitude:" -msgstr "" - -#: ../plug-ins/common/rotate.c:421 -msgid "You can not rotate the whole image if there's a selection." -msgstr "" - -#: ../plug-ins/common/rotate.c:428 -msgid "You can not rotate the whole image if there's a floating selection." -msgstr "" - -#: ../plug-ins/common/rotate.c:439 -msgid "Sorry, channels and masks can not be rotated." -msgstr "" - -#: ../plug-ins/common/rotate.c:445 -msgid "Rotating..." -msgstr "" - -#: ../plug-ins/common/sample_colorize.c:296 -msgid "_Sample Colorize..." -msgstr "" - -#: ../plug-ins/common/sample_colorize.c:1310 -msgid "Sample Colorize" -msgstr "" - -#: ../plug-ins/common/sample_colorize.c:1315 -msgid "Get sample colors" -msgstr "" - -#: ../plug-ins/common/sample_colorize.c:1317 -msgid "Apply" -msgstr "" - -#. layer combo_box (Dst) -#: ../plug-ins/common/sample_colorize.c:1335 -msgid "Destination:" -msgstr "" - -#. layer combo_box (Sample) -#: ../plug-ins/common/sample_colorize.c:1351 -msgid "Sample:" -msgstr "" - -#: ../plug-ins/common/sample_colorize.c:1361 -msgid "From reverse gradient" -msgstr "" - -#: ../plug-ins/common/sample_colorize.c:1366 -msgid "From gradient" -msgstr "" - -#. check button -#: ../plug-ins/common/sample_colorize.c:1387 -#: ../plug-ins/common/sample_colorize.c:1414 -msgid "Show selection" -msgstr "" - -#. check button -#: ../plug-ins/common/sample_colorize.c:1398 -#: ../plug-ins/common/sample_colorize.c:1425 -msgid "Show color" -msgstr "" - -#: ../plug-ins/common/sample_colorize.c:1538 -msgid "Input levels:" -msgstr "" - -#: ../plug-ins/common/sample_colorize.c:1588 -msgid "Output Levels:" -msgstr "" - -#. check button -#: ../plug-ins/common/sample_colorize.c:1628 -msgid "Hold intensity" -msgstr "" - -#. check button -#: ../plug-ins/common/sample_colorize.c:1639 -msgid "Original intensity" -msgstr "" - -#. check button -#: ../plug-ins/common/sample_colorize.c:1657 -msgid "Use subcolors" -msgstr "" - -#. check button -#: ../plug-ins/common/sample_colorize.c:1668 -msgid "Smooth samples" -msgstr "" - -#: ../plug-ins/common/sample_colorize.c:2632 -msgid "Sample Analyze..." -msgstr "" - -#: ../plug-ins/common/sample_colorize.c:3002 -msgid "Remap Colorized..." -msgstr "" - -#: ../plug-ins/common/scatter_hsv.c:113 -msgid "S_catter HSV..." -msgstr "" - -#: ../plug-ins/common/scatter_hsv.c:208 -msgid "Scattering HSV..." -msgstr "" - -#: ../plug-ins/common/scatter_hsv.c:344 -msgid "Scatter HSV" -msgstr "" - -#: ../plug-ins/common/scatter_hsv.c:372 -msgid "_Holdness:" -msgstr "" - -#: ../plug-ins/common/scatter_hsv.c:384 -msgid "H_ue:" -msgstr "" - -#: ../plug-ins/common/scatter_hsv.c:396 -msgid "_Saturation:" -msgstr "" - -#: ../plug-ins/common/scatter_hsv.c:408 -msgid "_Value:" -msgstr "" - -#: ../plug-ins/common/screenshot.c:257 ../plug-ins/winsnap/winsnap.c:990 -msgid "_Screen Shot..." -msgstr "" - -#: ../plug-ins/common/screenshot.c:395 -msgid "Error grabbing the pointer" -msgstr "" - -#: ../plug-ins/common/screenshot.c:471 -msgid "Loading Screen Shot..." -msgstr "" - -#: ../plug-ins/common/screenshot.c:478 ../plug-ins/common/screenshot.c:638 -msgid "Screen Shot" -msgstr "" - -#: ../plug-ins/common/screenshot.c:586 -msgid "Specified window not found" -msgstr "" - -#: ../plug-ins/common/screenshot.c:609 -msgid "Error obtaining Screen Shot" -msgstr "" - -#. single window -#: ../plug-ins/common/screenshot.c:643 ../plug-ins/common/screenshot.c:673 -#: ../plug-ins/winsnap/winsnap.c:866 -msgid "Grab" -msgstr "" - -#: ../plug-ins/common/screenshot.c:680 -msgid "a _Single Window" -msgstr "" - -#: ../plug-ins/common/screenshot.c:698 -msgid "S_elect Window After" -msgstr "" - -#: ../plug-ins/common/screenshot.c:713 ../plug-ins/common/screenshot.c:755 -msgid "Seconds Delay" -msgstr "" - -#: ../plug-ins/common/screenshot.c:719 -msgid "the _Whole Screen" -msgstr "" - -#: ../plug-ins/common/screenshot.c:740 -msgid "Grab _After" -msgstr "" - -#: ../plug-ins/common/sel_gauss.c:107 -msgid "_Selective Gaussian Blur..." -msgstr "" - -#: ../plug-ins/common/sel_gauss.c:187 -msgid "Selective Gaussian Blur..." -msgstr "" - -#: ../plug-ins/common/sel_gauss.c:225 -msgid "Selective Gaussian Blur" -msgstr "" - -#: ../plug-ins/common/sel_gauss.c:257 -msgid "_Blur radius:" -msgstr "" - -#: ../plug-ins/common/sel_gauss.c:267 -msgid "_Max. delta:" -msgstr "" - -#: ../plug-ins/common/semiflatten.c:77 -msgid "_Semi-Flatten" -msgstr "" - -#: ../plug-ins/common/semiflatten.c:122 -msgid "Semi-Flattening..." -msgstr "" - -#: ../plug-ins/common/sharpen.c:124 -msgid "_Sharpen..." -msgstr "" - -#. -#. * Let the user know what we're doing... -#. -#: ../plug-ins/common/sharpen.c:311 -msgid "Sharpening..." -msgstr "" - -#: ../plug-ins/common/sharpen.c:480 -msgid "Sharpen" -msgstr "" - -#: ../plug-ins/common/shift.c:113 -msgid "_Shift..." -msgstr "" - -#: ../plug-ins/common/shift.c:194 -msgid "Shifting..." -msgstr "" - -#: ../plug-ins/common/shift.c:349 -msgid "Shift" -msgstr "" - -#: ../plug-ins/common/shift.c:373 -msgid "Shift _horizontally" -msgstr "" - -#: ../plug-ins/common/shift.c:374 -msgid "Shift _vertically" -msgstr "" - -#: ../plug-ins/common/shift.c:404 -msgid "Shift _amount:" -msgstr "" - -#: ../plug-ins/common/sinus.c:191 -msgid "_Sinus..." -msgstr "" - -#: ../plug-ins/common/sinus.c:284 -msgid "Sinus: rendering..." -msgstr "" - -#. Create Main window with a vbox -#. ============================== -#: ../plug-ins/common/sinus.c:648 -msgid "Sinus" -msgstr "" - -#: ../plug-ins/common/sinus.c:683 -msgid "Drawing Settings" -msgstr "" - -#: ../plug-ins/common/sinus.c:693 -msgid "_X Scale:" -msgstr "" - -#: ../plug-ins/common/sinus.c:702 -msgid "_Y Scale:" -msgstr "" - -#: ../plug-ins/common/sinus.c:711 -msgid "Co_mplexity:" -msgstr "" - -#: ../plug-ins/common/sinus.c:721 -msgid "Calculation Settings" -msgstr "" - -#: ../plug-ins/common/sinus.c:734 -msgid "R_andom seed:" -msgstr "" - -#: ../plug-ins/common/sinus.c:743 -msgid "_Force tiling?" -msgstr "" - -#: ../plug-ins/common/sinus.c:756 -msgid "_Ideal" -msgstr "" - -#: ../plug-ins/common/sinus.c:757 -msgid "_Distorted" -msgstr "" - -#: ../plug-ins/common/sinus.c:775 ../plug-ins/common/sinus.c:791 -#: ../plug-ins/imagemap/imap_preferences.c:516 -msgid "Colors" -msgstr "" - -#. if in grey scale, the colors are necessarily black and white -#: ../plug-ins/common/sinus.c:784 -msgid "The colors are white and black." -msgstr "" - -#: ../plug-ins/common/sinus.c:795 -msgid "Bl_ack & white" -msgstr "" - -#: ../plug-ins/common/sinus.c:797 -msgid "_Foreground & background" -msgstr "" - -#: ../plug-ins/common/sinus.c:799 -msgid "C_hoose here:" -msgstr "" - -#: ../plug-ins/common/sinus.c:812 -msgid "First color" -msgstr "" - -#: ../plug-ins/common/sinus.c:822 -msgid "Second color" -msgstr "" - -#: ../plug-ins/common/sinus.c:835 -msgid "Alpha Channels" -msgstr "" - -#: ../plug-ins/common/sinus.c:848 -msgid "F_irst Color:" -msgstr "" - -#: ../plug-ins/common/sinus.c:863 -msgid "S_econd Color:" -msgstr "" - -#: ../plug-ins/common/sinus.c:888 -msgid "Blend Settings" -msgstr "" - -#: ../plug-ins/common/sinus.c:901 -msgid "L_inear" -msgstr "" - -#: ../plug-ins/common/sinus.c:902 -msgid "Bili_near" -msgstr "" - -#: ../plug-ins/common/sinus.c:903 -msgid "Sin_usoidal" -msgstr "" - -#: ../plug-ins/common/sinus.c:915 -msgid "_Exponent:" -msgstr "" - -#: ../plug-ins/common/sinus.c:925 -msgid "_Blend" -msgstr "" - -#: ../plug-ins/common/sinus.c:1042 -msgid "Do _Preview" -msgstr "" - -#: ../plug-ins/common/smooth_palette.c:88 -msgid "Smoo_th Palette..." -msgstr "" - -#: ../plug-ins/common/smooth_palette.c:180 -msgid "Deriving Smooth Palette..." -msgstr "" - -#: ../plug-ins/common/smooth_palette.c:412 -msgid "Smooth Palette" -msgstr "" - -#: ../plug-ins/common/smooth_palette.c:445 -msgid "_Search depth:" -msgstr "" - -#: ../plug-ins/common/snoise.c:186 -msgid "_Solid Noise..." -msgstr "" - -#: ../plug-ins/common/snoise.c:336 -msgid "Solid Noise..." -msgstr "" - -#. Dialog initialization -#: ../plug-ins/common/snoise.c:583 -msgid "Solid Noise" -msgstr "" - -#: ../plug-ins/common/snoise.c:627 -msgid "_Detail:" -msgstr "" - -#. Turbulent -#: ../plug-ins/common/snoise.c:637 -msgid "T_urbulent" -msgstr "" - -#. Tilable -#: ../plug-ins/common/snoise.c:651 -msgid "T_ilable" -msgstr "" - -#: ../plug-ins/common/snoise.c:666 -msgid "_X size:" -msgstr "" - -#: ../plug-ins/common/snoise.c:679 -msgid "_Y size:" -msgstr "" - -#: ../plug-ins/common/sobel.c:119 -msgid "_Sobel..." -msgstr "" - -#: ../plug-ins/common/sobel.c:227 -msgid "Sobel Edge Detection" -msgstr "" - -#: ../plug-ins/common/sobel.c:249 -msgid "Sobel _Horizontally" -msgstr "" - -#: ../plug-ins/common/sobel.c:261 -msgid "Sobel _Vertically" -msgstr "" - -#: ../plug-ins/common/sobel.c:273 -msgid "_Keep sign of result (one direction only)" -msgstr "" - -#: ../plug-ins/common/sobel.c:359 -msgid "Sobel Edge Detecting..." -msgstr "" - -#: ../plug-ins/common/softglow.c:138 -msgid "_Softglow..." -msgstr "" - -#: ../plug-ins/common/softglow.c:629 -msgid "Softglow" -msgstr "" - -#: ../plug-ins/common/softglow.c:659 -msgid "_Glow radius:" -msgstr "" - -#: ../plug-ins/common/sparkle.c:186 -msgid "_Sparkle..." -msgstr "" - -#: ../plug-ins/common/sparkle.c:292 -msgid "Sparkling..." -msgstr "" - -#: ../plug-ins/common/sparkle.c:343 -msgid "Sparkle" -msgstr "" - -#: ../plug-ins/common/sparkle.c:366 -msgid "Luminosity _Threshold:" -msgstr "" - -#: ../plug-ins/common/sparkle.c:369 -msgid "Adjust the Luminosity Threshold" -msgstr "" - -#: ../plug-ins/common/sparkle.c:376 -msgid "F_lare intensity:" -msgstr "" - -#: ../plug-ins/common/sparkle.c:379 -msgid "Adjust the Flare Intensity" -msgstr "" - -#: ../plug-ins/common/sparkle.c:386 -msgid "_Spike length:" -msgstr "" - -#: ../plug-ins/common/sparkle.c:389 -msgid "Adjust the Spike Length" -msgstr "" - -#: ../plug-ins/common/sparkle.c:396 -msgid "Sp_ike points:" -msgstr "" - -#: ../plug-ins/common/sparkle.c:399 -msgid "Adjust the Number of Spikes" -msgstr "" - -#: ../plug-ins/common/sparkle.c:406 -msgid "Spi_ke angle (-1: random):" -msgstr "" - -#: ../plug-ins/common/sparkle.c:409 -msgid "Adjust the Spike Angle (-1 means a Random Angle is chosen)" -msgstr "" - -#: ../plug-ins/common/sparkle.c:417 -msgid "Spik_e density:" -msgstr "" - -#: ../plug-ins/common/sparkle.c:420 -msgid "Adjust the Spike Density" -msgstr "" - -#: ../plug-ins/common/sparkle.c:430 -msgid "Adjust the Opacity of the Spikes" -msgstr "" - -#: ../plug-ins/common/sparkle.c:437 -msgid "_Random hue:" -msgstr "" - -#: ../plug-ins/common/sparkle.c:440 -msgid "Adjust the Value how much the Hue should be changed randomly" -msgstr "" - -#: ../plug-ins/common/sparkle.c:448 -msgid "Rando_m saturation:" -msgstr "" - -#: ../plug-ins/common/sparkle.c:451 -msgid "Adjust the Value how much the Saturation should be changed randomly" -msgstr "" - -#: ../plug-ins/common/sparkle.c:465 -msgid "_Preserve luminosity" -msgstr "" - -#: ../plug-ins/common/sparkle.c:472 -msgid "Should the Luminosity be preserved?" -msgstr "" - -#: ../plug-ins/common/sparkle.c:478 -msgid "In_verse" -msgstr "" - -#: ../plug-ins/common/sparkle.c:484 -msgid "Should an Inverse Effect be done?" -msgstr "" - -#: ../plug-ins/common/sparkle.c:490 -msgid "A_dd border" -msgstr "" - -#: ../plug-ins/common/sparkle.c:496 -msgid "Draw a Border of Spikes around the Image" -msgstr "" - -#: ../plug-ins/common/sparkle.c:507 -msgid "_Natural color" -msgstr "" - -#: ../plug-ins/common/sparkle.c:508 -msgid "_Foreground color" -msgstr "" - -#: ../plug-ins/common/sparkle.c:509 -msgid "_Background color" -msgstr "" - -#: ../plug-ins/common/sparkle.c:516 -msgid "Use the color of the image" -msgstr "" - -#: ../plug-ins/common/sparkle.c:517 -msgid "Use the foreground color" -msgstr "" - -#: ../plug-ins/common/sparkle.c:518 -msgid "Use the background color" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:280 -#: ../plug-ins/gimpressionist/general.c:147 -msgid "Solid" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:281 -msgid "Checker" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:282 -msgid "Marble" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:283 -msgid "Lizard" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:284 -msgid "Phong" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:285 -msgid "Noise" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:286 -msgid "Wood" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:287 -msgid "Spiral" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:288 -msgid "Spots" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:1741 -#: ../plug-ins/common/spheredesigner.c:2615 -msgid "Texture" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:1743 -msgid "Bumpmap" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:1745 -#: ../plug-ins/common/spheredesigner.c:2617 -msgid "Light" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2164 -msgid "Open File" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2164 -msgid "Save File" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2481 -msgid "Sphere Designer" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2518 -msgid "Update _Preview" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2572 -msgid "Textures" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2600 -msgid "Texture Properties" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2616 -msgid "Bump" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2644 -msgid "Texture:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2649 -msgid "Colors:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2652 -#: ../plug-ins/common/spheredesigner.c:2663 -msgid "Color Selection Dialog" -msgstr "" - -#. Scale -#: ../plug-ins/common/spheredesigner.c:2674 -#: ../plug-ins/gimpressionist/paper.c:176 -#: ../plug-ins/ifscompose/ifscompose.c:572 -msgid "Scale:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2682 -msgid "Turbulence:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2689 -msgid "Amount:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2696 -msgid "Exp.:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2703 -msgid "Texture Transformations" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2726 -msgid "Scale Y:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2732 -msgid "Scale Z:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2739 -msgid "Rotate X:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2746 -msgid "Rotate Y:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2753 -msgid "Rotate Z:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2760 -msgid "Position X:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2767 -msgid "Position Y:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2774 -msgid "Position Z:" -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2922 -msgid "Rendering Sphere..." -msgstr "" - -#: ../plug-ins/common/spheredesigner.c:2979 -msgid "Sphere _Designer..." -msgstr "" - -#: ../plug-ins/common/spread.c:99 -msgid "Sp_read..." -msgstr "" - -#: ../plug-ins/common/spread.c:182 -msgid "Spreading..." -msgstr "" - -#: ../plug-ins/common/spread.c:346 -msgid "Spread" -msgstr "" - -#: ../plug-ins/common/spread.c:364 -msgid "Spread Amount" -msgstr "" - -#: ../plug-ins/common/struc.c:1146 -msgid "_Apply Canvas..." -msgstr "" - -#: ../plug-ins/common/struc.c:1227 -msgid "Applying Canvas..." -msgstr "" - -#: ../plug-ins/common/struc.c:1264 -msgid "Apply Canvas" -msgstr "" - -#: ../plug-ins/common/struc.c:1290 -msgid "_Top-right" -msgstr "" - -#: ../plug-ins/common/struc.c:1291 -msgid "Top-_left" -msgstr "" - -#: ../plug-ins/common/struc.c:1292 -msgid "_Bottom-left" -msgstr "" - -#: ../plug-ins/common/struc.c:1293 -msgid "Bottom-_right" -msgstr "" - -#: ../plug-ins/common/sunras.c:217 ../plug-ins/common/sunras.c:237 -msgid "SUN Rasterfile image" -msgstr "" - -#: ../plug-ins/common/sunras.c:392 -#, c-format -msgid "Could not open '%s' as SUN-raster-file" -msgstr "" - -#: ../plug-ins/common/sunras.c:400 -msgid "The type of this SUN-rasterfile is not supported" -msgstr "" - -#: ../plug-ins/common/sunras.c:423 -#, c-format -msgid "Could not read color entries from '%s'" -msgstr "" - -#: ../plug-ins/common/sunras.c:431 -msgid "Type of colormap not supported" -msgstr "" - -#: ../plug-ins/common/sunras.c:470 -msgid "This image depth is not supported" -msgstr "" - -#: ../plug-ins/common/sunras.c:493 -msgid "SUNRAS save cannot handle images with alpha channels" -msgstr "" - -#: ../plug-ins/common/sunras.c:504 -msgid "Can't operate on unknown image types" -msgstr "" - -#: ../plug-ins/common/sunras.c:1032 ../plug-ins/common/sunras.c:1123 -#: ../plug-ins/common/sunras.c:1204 ../plug-ins/common/sunras.c:1299 -#: ../plug-ins/common/xwd.c:1313 ../plug-ins/common/xwd.c:1414 -#: ../plug-ins/common/xwd.c:1572 ../plug-ins/common/xwd.c:1772 -#: ../plug-ins/common/xwd.c:2029 ../plug-ins/fits/fits.c:673 -msgid "EOF encountered on reading" -msgstr "" - -#: ../plug-ins/common/sunras.c:1579 -msgid "Save as SUNRAS" -msgstr "" - -#. file save type -#: ../plug-ins/common/sunras.c:1589 -msgid "Data Formatting" -msgstr "" - -#: ../plug-ins/common/sunras.c:1593 -msgid "RunLength Encoded" -msgstr "" - -#: ../plug-ins/common/svg.c:136 -msgid "Scalable SVG image" -msgstr "" - -#: ../plug-ins/common/svg.c:313 ../plug-ins/common/svg.c:696 -msgid "Unknown reason" -msgstr "" - -#: ../plug-ins/common/svg.c:317 -msgid "Rendering SVG..." -msgstr "" - -#: ../plug-ins/common/svg.c:327 -msgid "Rendered SVG" -msgstr "" - -#: ../plug-ins/common/svg.c:492 -msgid "" -"SVG file does not\n" -"specify a size!" -msgstr "" - -#: ../plug-ins/common/svg.c:498 ../plug-ins/common/wmf.c:342 -#, c-format -msgid "%d x %d" -msgstr "" - -#. Scalable Vector Graphics is SVG, should perhaps not be translated -#: ../plug-ins/common/svg.c:703 -msgid "Render Scalable Vector Graphics" -msgstr "" - -#: ../plug-ins/common/svg.c:767 ../plug-ins/common/wmf.c:554 -#: ../plug-ins/print/gimp_main_window.c:1009 -#: ../plug-ins/print/gimp_main_window.c:1212 -msgid "Height:" -msgstr "" - -#: ../plug-ins/common/svg.c:841 ../plug-ins/common/wmf.c:628 -msgid "_X ratio:" -msgstr "" - -#: ../plug-ins/common/svg.c:863 ../plug-ins/common/wmf.c:650 -msgid "_Y ratio:" -msgstr "" - -#: ../plug-ins/common/svg.c:877 ../plug-ins/common/wmf.c:664 -msgid "Constrain aspect ratio" -msgstr "" - -#: ../plug-ins/common/svg.c:888 ../plug-ins/common/wmf.c:675 -#, c-format -msgid "pixels/%a" -msgstr "" - -#. Path Import -#: ../plug-ins/common/svg.c:908 -msgid "Import _paths" -msgstr "" - -#: ../plug-ins/common/svg.c:914 -msgid "" -"Import path elements of the SVG so they can be used with the GIMP path tool" -msgstr "" - -#: ../plug-ins/common/svg.c:927 -msgid "Merge imported paths" -msgstr "" - -#: ../plug-ins/common/tga.c:233 ../plug-ins/common/tga.c:249 -msgid "TarGA image" -msgstr "" - -#: ../plug-ins/common/tga.c:428 -#, c-format -msgid "Cannot read footer from '%s'" -msgstr "" - -#: ../plug-ins/common/tga.c:444 -#, c-format -msgid "Cannot read extension from '%s'" -msgstr "" - -#: ../plug-ins/common/tga.c:1194 -msgid "Save as TGA" -msgstr "" - -#. rle -#: ../plug-ins/common/tga.c:1209 -msgid "_RLE compression" -msgstr "" - -#. origin -#: ../plug-ins/common/tga.c:1219 -msgid "Or_igin at bottom left" -msgstr "" - -#: ../plug-ins/common/threshold_alpha.c:95 -msgid "_Threshold Alpha..." -msgstr "" - -#: ../plug-ins/common/threshold_alpha.c:134 -msgid "The layer preserves transparency." -msgstr "" - -#: ../plug-ins/common/threshold_alpha.c:140 -msgid "RGBA/GRAYA drawable is not selected." -msgstr "" - -#: ../plug-ins/common/threshold_alpha.c:202 -msgid "Threshold Alpha: Coloring Transparency..." -msgstr "" - -#: ../plug-ins/common/threshold_alpha.c:224 -msgid "Threshold Alpha" -msgstr "" - -#: ../plug-ins/common/threshold_alpha.c:239 -msgid "Threshold:" -msgstr "" - -#: ../plug-ins/common/tiff.c:211 ../plug-ins/common/tiff.c:232 -#: ../plug-ins/common/tiff.c:249 -msgid "TIFF image" -msgstr "" - -#: ../plug-ins/common/tiff.c:850 -#, c-format -msgid "Page %d" -msgstr "" - -#: ../plug-ins/common/tiff.c:865 -msgid "TIFF Channel" -msgstr "" - -#: ../plug-ins/common/tiff.c:874 -msgid "" -"Warning:\n" -"The image you are loading has 16 bits per channel. GIMP can only handle 8 " -"bit, so it will be converted for you. Information will be lost because of " -"this conversion." -msgstr "" - -#: ../plug-ins/common/tiff.c:1970 -msgid "" -"The TIFF format only supports comments in\n" -"7bit ASCII encoding. No comment is saved." -msgstr "" - -#: ../plug-ins/common/tiff.c:2119 -msgid "Save as TIFF" -msgstr "" - -#. compression -#: ../plug-ins/common/tiff.c:2133 -msgid "Compression" -msgstr "" - -#: ../plug-ins/common/tiff.c:2137 -msgid "_None" -msgstr "" - -#: ../plug-ins/common/tiff.c:2138 -msgid "_LZW" -msgstr "" - -#: ../plug-ins/common/tiff.c:2139 -msgid "_Pack Bits" -msgstr "" - -#: ../plug-ins/common/tiff.c:2140 -msgid "_Deflate" -msgstr "" - -#: ../plug-ins/common/tiff.c:2141 -msgid "_JPEG" -msgstr "" - -#: ../plug-ins/common/tiff.c:2150 -msgid "Save _color values from transparent pixels" -msgstr "" - -#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 -msgid "Comment:" -msgstr "" - -#: ../plug-ins/common/tile.c:112 -msgid "_Tile..." -msgstr "" - -#. Set the tile cache size -#: ../plug-ins/common/tile.c:192 ../plug-ins/common/tileit.c:320 -msgid "Tiling..." -msgstr "" - -#: ../plug-ins/common/tile.c:394 -msgid "Tile" -msgstr "" - -#: ../plug-ins/common/tile.c:408 -msgid "Tile to New Size" -msgstr "" - -#: ../plug-ins/common/tile.c:430 -msgid "C_reate New Image" -msgstr "" - -#: ../plug-ins/common/tileit.c:224 -msgid "_Small Tiles..." -msgstr "" - -#. Get the preview image -#: ../plug-ins/common/tileit.c:363 -msgid "TileIt" -msgstr "" - -#. Area for buttons etc -#. Flip -#: ../plug-ins/common/tileit.c:406 ../plug-ins/ifscompose/ifscompose.c:628 -msgid "Flip" -msgstr "" - -#: ../plug-ins/common/tileit.c:454 -msgid "A_ll tiles" -msgstr "" - -#: ../plug-ins/common/tileit.c:468 -msgid "Al_ternate tiles" -msgstr "" - -#: ../plug-ins/common/tileit.c:482 -msgid "_Explicit tile" -msgstr "" - -#: ../plug-ins/common/tileit.c:488 -msgid "Ro_w:" -msgstr "" - -#: ../plug-ins/common/tileit.c:512 -msgid "Col_umn:" -msgstr "" - -#: ../plug-ins/common/tileit.c:564 -msgid "O_pacity:" -msgstr "" - -#. Lower frame saying howmany segments -#: ../plug-ins/common/tileit.c:573 -msgid "Number of Segments" -msgstr "" - -#: ../plug-ins/common/tiler.c:66 -msgid "_Make Seamless" -msgstr "" - -#: ../plug-ins/common/tiler.c:322 -msgid "Tiler..." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:94 -msgid "Saved" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:94 -msgid "" -"A unit definition will only be saved before GIMP exits if this column is " -"checked." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:96 -msgid "ID" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:96 -msgid "" -"This string will be used to identify a unit in GIMP's configuration files." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:98 -msgid "Factor" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:98 -msgid "How many units make up an inch." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:99 -msgid "Digits" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:99 -msgid "" -"This field is a hint for numerical input fields. It specifies how many " -"decimal digits the input field should provide to get approximately the same " -"accuracy as an \"inch\" input field with two decimal digits." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:104 -msgid "Symbol" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:104 -msgid "" -"The unit's symbol if it has one (e.g. \"'\" for inches). The unit's " -"abbreviation is used if doesn't have a symbol." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:107 -msgid "Abbreviation" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:107 -msgid "The unit's abbreviation (e.g. \"cm\" for centimeters)." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:109 -msgid "Singular" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:109 -msgid "The unit's singular form." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:110 -msgid "Plural" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:110 -msgid "The unit's plural form." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:121 -msgid "Create a new unit from scratch." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:127 -msgid "Create a new unit with the currently selected unit as template." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:151 -msgid "_Unit Editor" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:210 -msgid "New Unit" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:234 -msgid "_ID:" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:245 -msgid "_Factor:" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:255 -msgid "_Digits:" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:267 -msgid "_Symbol:" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:279 -msgid "_Abbreviation:" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:291 -msgid "Si_ngular:" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:303 -msgid "_Plural:" -msgstr "" - -#: ../plug-ins/common/uniteditor.c:339 -msgid "Unit factor must not be 0." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:349 -msgid "All text fields must contain a value." -msgstr "" - -#: ../plug-ins/common/uniteditor.c:403 -msgid "Unit Editor" -msgstr "" - -#: ../plug-ins/common/unsharp.c:143 -msgid "_Unsharp Mask..." -msgstr "" - -#: ../plug-ins/common/unsharp.c:468 -msgid "Merging..." -msgstr "" - -#: ../plug-ins/common/unsharp.c:635 -msgid "Unsharp Mask" -msgstr "" - -#: ../plug-ins/common/url.c:85 ../plug-ins/imagemap/imap_selection.c:421 -msgid "URL" -msgstr "" - -#: ../plug-ins/common/video.c:44 -msgid "_Staggered" -msgstr "" - -#: ../plug-ins/common/video.c:45 -msgid "_Large staggered" -msgstr "" - -#: ../plug-ins/common/video.c:46 -msgid "S_triped" -msgstr "" - -#: ../plug-ins/common/video.c:47 -msgid "_Wide-striped" -msgstr "" - -#: ../plug-ins/common/video.c:48 -msgid "Lo_ng-staggered" -msgstr "" - -#: ../plug-ins/common/video.c:49 -msgid "_3x3" -msgstr "" - -#: ../plug-ins/common/video.c:50 -msgid "Larg_e 3x3" -msgstr "" - -#: ../plug-ins/common/video.c:51 -msgid "_Hex" -msgstr "" - -#: ../plug-ins/common/video.c:52 -msgid "_Dots" -msgstr "" - -#: ../plug-ins/common/video.c:1817 -msgid "Vi_deo..." -msgstr "" - -#: ../plug-ins/common/video.c:1889 -msgid "Video/RGB..." -msgstr "" - -#: ../plug-ins/common/video.c:2020 -msgid "Video" -msgstr "" - -#. frame for the radio buttons -#: ../plug-ins/common/video.c:2035 -msgid "Video Pattern" -msgstr "" - -#: ../plug-ins/common/video.c:2079 -msgid "_Additive" -msgstr "" - -#: ../plug-ins/common/video.c:2089 -msgid "_Rotated" -msgstr "" - -#: ../plug-ins/common/vinvert.c:84 -msgid "_Value Invert" -msgstr "" - -#: ../plug-ins/common/vinvert.c:126 -msgid "Value Invert..." -msgstr "" - -#: ../plug-ins/common/vpropagate.c:193 -msgid "More _white (larger value)" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:196 -msgid "More blac_k (smaller value)" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:199 -msgid "_Middle value to peaks" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:202 -msgid "_Foreground to peaks" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:205 -msgid "O_nly foreground" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:208 -msgid "Only b_ackground" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:211 -msgid "Mor_e opaque" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:214 -msgid "More t_ransparent" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:242 -msgid "_Value Propagate..." -msgstr "" - -#: ../plug-ins/common/vpropagate.c:254 -msgid "E_rode" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:266 -msgid "_Dilate" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:476 -msgid "Value Propagating..." -msgstr "" - -#: ../plug-ins/common/vpropagate.c:1058 -msgid "Value Propagate" -msgstr "" - -#. Parameter settings -#: ../plug-ins/common/vpropagate.c:1116 -msgid "Propagate" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:1129 -msgid "Lower t_hreshold:" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:1141 -msgid "_Upper threshold:" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:1153 -msgid "_Propagating rate:" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:1164 -msgid "To l_eft" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:1167 -msgid "To _right" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:1170 -msgid "To _top" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:1173 -msgid "To _bottom" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:1182 -msgid "Propagating _Alpha Channel" -msgstr "" - -#: ../plug-ins/common/vpropagate.c:1193 -msgid "Propagating Value Channel" -msgstr "" - -#: ../plug-ins/common/warp.c:247 -msgid "_Warp..." -msgstr "" - -#: ../plug-ins/common/warp.c:391 -msgid "Warp" -msgstr "" - -#: ../plug-ins/common/warp.c:405 -msgid "Basic Options" -msgstr "" - -#: ../plug-ins/common/warp.c:427 -msgid "Step size:" -msgstr "" - -#: ../plug-ins/common/warp.c:441 ../plug-ins/ifscompose/ifscompose.c:1214 -msgid "Iterations:" -msgstr "" - -#. Displacement map menu -#: ../plug-ins/common/warp.c:450 -msgid "Displacement map:" -msgstr "" - -#. ======================================================================= -#. Displacement Type -#: ../plug-ins/common/warp.c:468 -msgid "On edges:" -msgstr "" - -#: ../plug-ins/common/warp.c:479 -msgid "Wrap" -msgstr "" - -#: ../plug-ins/common/warp.c:494 -msgid "Smear" -msgstr "" - -#: ../plug-ins/common/warp.c:509 ../plug-ins/fits/fits.c:988 -#: ../plug-ins/flame/flame.c:1131 ../plug-ins/gfig/gfig-dialog.c:1421 -msgid "Black" -msgstr "" - -#: ../plug-ins/common/warp.c:524 -msgid "FG color" -msgstr "" - -#. -------------------------------------------------------------------- -#. --------- The secondary table -------------------------- -#: ../plug-ins/common/warp.c:544 -msgid "Advanced Options" -msgstr "" - -#: ../plug-ins/common/warp.c:560 -msgid "Dither size:" -msgstr "" - -#: ../plug-ins/common/warp.c:573 -msgid "Rotation angle:" -msgstr "" - -#: ../plug-ins/common/warp.c:586 -msgid "Substeps:" -msgstr "" - -#. Magnitude map menu -#: ../plug-ins/common/warp.c:595 -msgid "Magnitude map:" -msgstr "" - -#: ../plug-ins/common/warp.c:617 -msgid "Use magnitude map" -msgstr "" - -#. -------------------------------------------------------------------- -#. --------- The "other" table -------------------------- -#: ../plug-ins/common/warp.c:630 -msgid "More Advanced Options" -msgstr "" - -#: ../plug-ins/common/warp.c:647 -msgid "Gradient scale:" -msgstr "" - -#: ../plug-ins/common/warp.c:670 -msgid "Gradient map selection menu" -msgstr "" - -#: ../plug-ins/common/warp.c:680 -msgid "Vector mag:" -msgstr "" - -#. Angle -#: ../plug-ins/common/warp.c:695 ../plug-ins/ifscompose/ifscompose.c:586 -msgid "Angle:" -msgstr "" - -#: ../plug-ins/common/warp.c:718 -msgid "Fixed-direction-vector map selection menu" -msgstr "" - -#. -#. if (display_diff_map) { -#. gimp_display_new(new_image_id); -#. } -#. -#. make sure layer is visible -#: ../plug-ins/common/warp.c:1175 -msgid "Smoothing X gradient..." -msgstr "" - -#: ../plug-ins/common/warp.c:1177 -msgid "Smoothing Y gradient..." -msgstr "" - -#. calculate new X,Y Displacement image maps -#: ../plug-ins/common/warp.c:1232 -msgid "Finding XY gradient..." -msgstr "" - -#: ../plug-ins/common/warp.c:1255 -#, c-format -msgid "Flow Step %d..." -msgstr "" - -#: ../plug-ins/common/waves.c:127 -msgid "_Waves..." -msgstr "" - -#: ../plug-ins/common/waves.c:249 -msgid "Waves" -msgstr "" - -#: ../plug-ins/common/waves.c:287 -msgid "_Reflective" -msgstr "" - -#: ../plug-ins/common/waves.c:306 -msgid "_Amplitude:" -msgstr "" - -#: ../plug-ins/common/waves.c:318 -msgid "_Phase:" -msgstr "" - -#: ../plug-ins/common/waves.c:330 -msgid "_Wavelength:" -msgstr "" - -#: ../plug-ins/common/waves.c:431 -msgid "Waving..." -msgstr "" - -#: ../plug-ins/common/webbrowser.c:141 -msgid "" -"Web browser not specified.\n" -"Please specify a web browser using the Preferences Dialog." -msgstr "" - -#: ../plug-ins/common/webbrowser.c:161 -#, c-format -msgid "" -"Could not parse specified web browser command:\n" -"%s" -msgstr "" - -#: ../plug-ins/common/webbrowser.c:174 -#, c-format -msgid "" -"Could not execute specified web browser:\n" -"%s" -msgstr "" - -#: ../plug-ins/common/whirlpinch.c:161 -msgid "W_hirl and Pinch..." -msgstr "" - -#: ../plug-ins/common/whirlpinch.c:348 -msgid "Whirling and Pinching..." -msgstr "" - -#: ../plug-ins/common/whirlpinch.c:535 -msgid "Whirl and Pinch" -msgstr "" - -#: ../plug-ins/common/whirlpinch.c:564 -msgid "_Whirl angle:" -msgstr "" - -#: ../plug-ins/common/whirlpinch.c:576 -msgid "_Pinch amount:" -msgstr "" - -#: ../plug-ins/common/winclipboard.c:109 -msgid "Copy to Clipboard" -msgstr "" - -#: ../plug-ins/common/winclipboard.c:121 -msgid "Paste from Clipboard" -msgstr "" - -#: ../plug-ins/common/winclipboard.c:133 -msgid "From Clipboard" -msgstr "" - -#: ../plug-ins/common/winclipboard.c:331 -msgid "Copying..." -msgstr "" - -#: ../plug-ins/common/winclipboard.c:494 -msgid "Unsupported format or Clipboard empty!" -msgstr "" - -#: ../plug-ins/common/winclipboard.c:505 -msgid "Can't get Clipboard data." -msgstr "" - -#. ??? gimp_image_convert_rgb (image_ID); -#. -#: ../plug-ins/common/winclipboard.c:587 -msgid "Pasted" -msgstr "" - -#: ../plug-ins/common/winclipboard.c:600 -msgid "Pasting..." -msgstr "" - -#: ../plug-ins/common/wind.c:183 -msgid "Wi_nd..." -msgstr "" - -#: ../plug-ins/common/wind.c:315 -msgid "Rendering Blast..." -msgstr "" - -#: ../plug-ins/common/wind.c:438 -msgid "Rendering Wind..." -msgstr "" - -#: ../plug-ins/common/wind.c:873 -msgid "Wind" -msgstr "" - -#. ******************************************************** -#. radio buttons for choosing wind rendering algorithm -#. ***************************************************** -#: ../plug-ins/common/wind.c:906 -msgid "Style" -msgstr "" - -#: ../plug-ins/common/wind.c:910 -msgid "_Wind" -msgstr "" - -#: ../plug-ins/common/wind.c:911 -msgid "_Blast" -msgstr "" - -#: ../plug-ins/common/wind.c:934 -msgid "_Left" -msgstr "" - -#: ../plug-ins/common/wind.c:935 -msgid "_Right" -msgstr "" - -#. **************************************************** -#. radio buttons for choosing BOTH, LEADING, TRAILING -#. ************************************************** -#: ../plug-ins/common/wind.c:954 -msgid "Edge Affected" -msgstr "" - -#: ../plug-ins/common/wind.c:958 -msgid "L_eading" -msgstr "" - -#: ../plug-ins/common/wind.c:959 -msgid "Tr_ailing" -msgstr "" - -#: ../plug-ins/common/wind.c:960 -msgid "Bot_h" -msgstr "" - -#: ../plug-ins/common/wind.c:997 -msgid "Higher values restrict the effect to fewer areas of the image" -msgstr "" - -#: ../plug-ins/common/wind.c:1012 ../plug-ins/gimpressionist/orientmap.c:669 -msgid "_Strength:" -msgstr "" - -#: ../plug-ins/common/wind.c:1016 -msgid "Higher values increase the magnitude of the effect" -msgstr "" - -#: ../plug-ins/common/winprint.c:224 -msgid "_Print" -msgstr "" - -#: ../plug-ins/common/winprint.c:236 -msgid "Page Setup" -msgstr "" - -#: ../plug-ins/common/winprint.c:341 -#, c-format -msgid "PrintDlg failed: %d" -msgstr "" - -#: ../plug-ins/common/winprint.c:377 -msgid "Printer doesn't support bitmaps" -msgstr "" - -#: ../plug-ins/common/winprint.c:418 -msgid "StartPage failed" -msgstr "" - -#: ../plug-ins/common/winprint.c:427 ../plug-ins/print/print-image-gimp.c:320 -msgid "Printing..." -msgstr "" - -#: ../plug-ins/common/winprint.c:459 -msgid "CreateDIBSection failed" -msgstr "" - -#: ../plug-ins/common/winprint.c:495 -msgid "SetStretchBltMode failed (warning only)" -msgstr "" - -#: ../plug-ins/common/winprint.c:558 -#, c-format -msgid "" -"StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, " -"error = %d, y = %d" -msgstr "" - -#: ../plug-ins/common/winprint.c:587 -msgid "EndPage failed" -msgstr "" - -#: ../plug-ins/common/winprint.c:634 -#, c-format -msgid "PageSetupDlg failed: %d" -msgstr "" - -#: ../plug-ins/common/wmf.c:131 -msgid "Microsoft WMF file" -msgstr "" - -#: ../plug-ins/common/wmf.c:336 -msgid "" -"WMF file does not\n" -"specify a size!" -msgstr "" - -#: ../plug-ins/common/wmf.c:484 -msgid "Render Windows Metafile" -msgstr "" - -#: ../plug-ins/common/wmf.c:947 ../plug-ins/sgi/sgi.c:318 -#, c-format -msgid "Could not open '%s' for reading." -msgstr "" - -#: ../plug-ins/common/wmf.c:963 -msgid "Rendered WMF" -msgstr "" - -#: ../plug-ins/common/xbm.c:169 ../plug-ins/common/xbm.c:187 -msgid "X BitMap image" -msgstr "" - -#: ../plug-ins/common/xbm.c:241 -msgid "Created with The GIMP" -msgstr "" - -#: ../plug-ins/common/xbm.c:804 -#, c-format -msgid "" -"'%s':\n" -"Could not read header (ftell == %ld)" -msgstr "" - -#: ../plug-ins/common/xbm.c:811 -#, c-format -msgid "" -"'%s':\n" -"No image width specified" -msgstr "" - -#: ../plug-ins/common/xbm.c:818 -#, c-format -msgid "" -"'%s':\n" -"No image height specified" -msgstr "" - -#: ../plug-ins/common/xbm.c:825 -#, c-format -msgid "" -"'%s':\n" -"No image data type specified" -msgstr "" - -#. The image is not black-and-white. -#: ../plug-ins/common/xbm.c:960 -msgid "" -"The image which you are trying to save as an XBM contains more than two " -"colors.\n" -"\n" -"Please convert it to a black and white (1-bit) indexed image and try again." -msgstr "" - -#: ../plug-ins/common/xbm.c:971 -msgid "" -"You cannot save a cursor mask for an image\n" -"which has no alpha channel." -msgstr "" - -#: ../plug-ins/common/xbm.c:1148 -msgid "Save as XBM" -msgstr "" - -#. parameter settings -#: ../plug-ins/common/xbm.c:1158 -msgid "XBM Options" -msgstr "" - -#. X10 format -#: ../plug-ins/common/xbm.c:1167 -msgid "_X10 format bitmap" -msgstr "" - -#: ../plug-ins/common/xbm.c:1187 -msgid "_Identifier prefix:" -msgstr "" - -#. hotspot toggle -#: ../plug-ins/common/xbm.c:1209 -msgid "_Write hot spot values" -msgstr "" - -#: ../plug-ins/common/xbm.c:1231 -msgid "Hot spot _X:" -msgstr "" - -#: ../plug-ins/common/xbm.c:1241 -msgid "Hot spot _Y:" -msgstr "" - -#. mask file -#: ../plug-ins/common/xbm.c:1248 -msgid "Mask File" -msgstr "" - -#: ../plug-ins/common/xbm.c:1258 -msgid "W_rite extra mask file" -msgstr "" - -#: ../plug-ins/common/xbm.c:1271 -msgid "_Mask file extension:" -msgstr "" - -#: ../plug-ins/common/xpm.c:170 ../plug-ins/common/xpm.c:195 -msgid "X PixMap image" -msgstr "" - -#: ../plug-ins/common/xpm.c:354 -#, c-format -msgid "Error opening file '%s'" -msgstr "" - -#: ../plug-ins/common/xpm.c:359 -msgid "XPM file invalid" -msgstr "" - -#: ../plug-ins/common/xpm.c:780 -msgid "Save as XPM" -msgstr "" - -#: ../plug-ins/common/xpm.c:796 -msgid "_Alpha threshold:" -msgstr "" - -#: ../plug-ins/common/xwd.c:277 ../plug-ins/common/xwd.c:297 -msgid "X window dump" -msgstr "" - -#: ../plug-ins/common/xwd.c:430 -#, c-format -msgid "Could not read XWD header from '%s'" -msgstr "" - -#: ../plug-ins/common/xwd.c:468 -msgid "Can't read color entries" -msgstr "" - -#: ../plug-ins/common/xwd.c:527 -#, c-format -msgid "" -"XWD-file %s has format %d, depth %d\n" -"and bits per pixel %d.\n" -"Currently this is not supported." -msgstr "" - -#: ../plug-ins/common/xwd.c:557 -msgid "Cannot save images with alpha channels." -msgstr "" - -#: ../plug-ins/common/xwd.c:2160 -msgid "Error during writing indexed/gray image" -msgstr "" - -#: ../plug-ins/common/xwd.c:2258 -msgid "Error during writing rgb image" -msgstr "" - -#: ../plug-ins/common/zealouscrop.c:85 -msgid "_Zealous Crop" -msgstr "" - -#: ../plug-ins/common/zealouscrop.c:133 -msgid "ZealousCropping(tm)..." -msgstr "" - -#: ../plug-ins/common/zealouscrop.c:234 -msgid "Nothing to crop." -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:128 -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:142 -msgid "Procedure Browser" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:132 -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:146 -#: ../plug-ins/dbbrowser/plugin-browser.c:548 -msgid "Search by _Name" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:133 -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:147 -msgid "Search by _Blurb" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:224 -#: ../plug-ins/dbbrowser/plugin-browser.c:718 -msgid "_Search:" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:386 -#: ../plug-ins/dbbrowser/plugin-browser.c:397 -msgid "Searching by name - please wait" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:410 -msgid "Searching by blurb - please wait" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:421 -msgid "Searching - please wait" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:428 -msgid "1 Procedure" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:430 -#, c-format -msgid "%d Procedures" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:476 -#: ../plug-ins/dbbrowser/plugin-browser.c:516 -msgid "No matches" -msgstr "" - -#. -#. * Scales -#. -#. -#. * Scales -#. -#: ../plug-ins/dbbrowser/gimpprocview.c:133 ../plug-ins/gflare/gflare.c:2673 -#: ../plug-ins/gflare/gflare.c:3503 ../plug-ins/gflare/gflare.c:3608 -#: ../plug-ins/gflare/gflare.c:3745 -msgid "Parameters" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:146 -msgid "Return Values" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:159 -msgid "Additional Information" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:198 -msgid "Author:" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:209 -msgid "Date:" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:220 -msgid "Copyright:" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:319 -msgid "Internal GIMP procedure" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:320 -msgid "GIMP Plug-In" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:321 -msgid "GIMP Extension" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:322 -msgid "Temporary Procedure" -msgstr "" - -#: ../plug-ins/dbbrowser/plugin-browser.c:151 -msgid "_Plug-In Browser" -msgstr "" - -#: ../plug-ins/dbbrowser/plugin-browser.c:418 -msgid "1 Plug-In Interface" -msgstr "" - -#: ../plug-ins/dbbrowser/plugin-browser.c:420 -#, c-format -msgid "%d Plug-In Interfaces" -msgstr "" - -#: ../plug-ins/dbbrowser/plugin-browser.c:544 -msgid "Plug-In Browser" -msgstr "" - -#: ../plug-ins/dbbrowser/plugin-browser.c:595 -msgid "Name" -msgstr "" - -#: ../plug-ins/dbbrowser/plugin-browser.c:603 -#: ../plug-ins/dbbrowser/plugin-browser.c:672 -msgid "Insertion Date" -msgstr "" - -#: ../plug-ins/dbbrowser/plugin-browser.c:611 -msgid "Menu Path" -msgstr "" - -#: ../plug-ins/dbbrowser/plugin-browser.c:619 -#: ../plug-ins/dbbrowser/plugin-browser.c:681 -msgid "Image Types" -msgstr "" - -#: ../plug-ins/dbbrowser/plugin-browser.c:643 -msgid "List View" -msgstr "" - -#: ../plug-ins/dbbrowser/plugin-browser.c:663 -msgid "Menu Path/Name" -msgstr "" - -#: ../plug-ins/dbbrowser/plugin-browser.c:704 -msgid "Tree View" -msgstr "" - -#: ../plug-ins/dbbrowser/procedure-browser.c:89 -msgid "Procedure _Browser" -msgstr "" - -#: ../plug-ins/faxg3/faxg3.c:100 -msgid "G3 fax image" -msgstr "" - -#: ../plug-ins/fits/fits.c:159 ../plug-ins/fits/fits.c:178 -msgid "Flexible Image Transport System" -msgstr "" - -#: ../plug-ins/fits/fits.c:346 -msgid "Error during open of FITS file" -msgstr "" - -#: ../plug-ins/fits/fits.c:351 -msgid "FITS file keeps no displayable images" -msgstr "" - -#: ../plug-ins/fits/fits.c:430 -msgid "FITS save cannot handle images with alpha channels" -msgstr "" - -#: ../plug-ins/fits/fits.c:969 -msgid "Load FITS File" -msgstr "" - -#: ../plug-ins/fits/fits.c:984 -msgid "BLANK/NaN Pixel Replacement" -msgstr "" - -#: ../plug-ins/fits/fits.c:989 ../plug-ins/gfig/gfig-dialog.c:1288 -#: ../plug-ins/gfig/gfig-dialog.c:1422 -msgid "White" -msgstr "" - -#: ../plug-ins/fits/fits.c:996 -msgid "Pixel value scaling" -msgstr "" - -#: ../plug-ins/fits/fits.c:1001 -msgid "By DATAMIN/DATAMAX" -msgstr "" - -#: ../plug-ins/fits/fits.c:1008 -msgid "Image Composing" -msgstr "" - -#: ../plug-ins/flame/flame.c:133 -msgid "_Flame..." -msgstr "" - -#: ../plug-ins/flame/flame.c:227 -msgid "Drawing Flame..." -msgstr "" - -#: ../plug-ins/flame/flame.c:319 -msgid "Flame works only on RGB drawables." -msgstr "" - -#: ../plug-ins/flame/flame.c:402 -#, c-format -msgid "'%s' is not a regular file" -msgstr "" - -#: ../plug-ins/flame/flame.c:637 -msgid "Edit Flame" -msgstr "" - -#: ../plug-ins/flame/flame.c:655 -msgid "Directions" -msgstr "" - -#: ../plug-ins/flame/flame.c:691 -msgid "Controls" -msgstr "" - -#: ../plug-ins/flame/flame.c:705 -msgid "_Speed:" -msgstr "" - -#: ../plug-ins/flame/flame.c:722 -msgid "_Randomize" -msgstr "" - -#: ../plug-ins/flame/flame.c:731 -msgid "Same" -msgstr "" - -#: ../plug-ins/flame/flame.c:732 ../plug-ins/gimpressionist/orientation.c:146 -#: ../plug-ins/gimpressionist/size.c:149 -msgid "Random" -msgstr "" - -#: ../plug-ins/flame/flame.c:736 -msgid "Swirl" -msgstr "" - -#: ../plug-ins/flame/flame.c:737 -msgid "Horseshoe" -msgstr "" - -#: ../plug-ins/flame/flame.c:738 ../plug-ins/gfig/gfig-dialog.c:1403 -msgid "Polar" -msgstr "" - -#: ../plug-ins/flame/flame.c:739 -msgid "Bent" -msgstr "" - -#: ../plug-ins/flame/flame.c:752 -msgid "_Variation:" -msgstr "" - -#: ../plug-ins/flame/flame.c:774 -msgid "Load Flame" -msgstr "" - -#: ../plug-ins/flame/flame.c:789 -msgid "Save Flame" -msgstr "" - -#: ../plug-ins/flame/flame.c:931 -msgid "Flame" -msgstr "" - -#: ../plug-ins/flame/flame.c:1025 -msgid "_Rendering" -msgstr "" - -#: ../plug-ins/flame/flame.c:1051 -msgid "Co_ntrast:" -msgstr "" - -#: ../plug-ins/flame/flame.c:1065 -msgid "_Gamma:" -msgstr "" - -#: ../plug-ins/flame/flame.c:1079 -msgid "Sample _density:" -msgstr "" - -#: ../plug-ins/flame/flame.c:1090 -msgid "Spa_tial oversample:" -msgstr "" - -#: ../plug-ins/flame/flame.c:1101 -msgid "Spatial _filter radius:" -msgstr "" - -#: ../plug-ins/flame/flame.c:1120 -msgid "Color_map:" -msgstr "" - -#: ../plug-ins/flame/flame.c:1162 -msgid "Custom gradient" -msgstr "" - -#: ../plug-ins/flame/flame.c:1188 -msgid "C_amera" -msgstr "" - -#: ../plug-ins/flame/flame.c:1193 -msgid "_Zoom:" -msgstr "" - -#: ../plug-ins/gfig/gfig-bezier.c:448 -msgid "Closed" -msgstr "" - -#: ../plug-ins/gfig/gfig-bezier.c:453 -msgid "Close curve on completion" -msgstr "" - -#: ../plug-ins/gfig/gfig-bezier.c:458 -msgid "Show Line Frame" -msgstr "" - -#: ../plug-ins/gfig/gfig-bezier.c:463 -msgid "Draws lines between the control points. Only during curve creation" -msgstr "" - -#. Start building the dialog up -#: ../plug-ins/gfig/gfig-dialog.c:295 -msgid "Gfig" -msgstr "" - -#. Tool options notebook -#: ../plug-ins/gfig/gfig-dialog.c:341 -msgid "Tool options" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:358 -msgid "_Stroke" -msgstr "" - -#. Fill frame on right side -#: ../plug-ins/gfig/gfig-dialog.c:405 -msgid "Fill" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:419 -msgid "No fill" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:420 -msgid "Color fill" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:421 -msgid "Pattern fill" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:422 -msgid "Gradient fill" -msgstr "" - -#. "show image" checkbutton at bottom of style frame -#: ../plug-ins/gfig/gfig-dialog.c:482 -msgid "Show image" -msgstr "" - -#. "show grid" checkbutton at bottom of style frame -#: ../plug-ins/gfig/gfig-dialog.c:504 -msgid "Show grid" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:639 -msgid "Load Gfig object collection" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:683 -msgid "Save Gfig Drawing" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:820 -msgid "First Gfig" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:859 -msgid "_Undo" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:863 -msgid "_Clear" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:867 -msgid "_Grid" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:875 -msgid "Raise selected object" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:879 -msgid "Lower selected object" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:883 -msgid "Raise selected object to top" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:887 -msgid "Lower selected object to bottom" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:891 -msgid "Show previous object" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:895 -msgid "Show next object" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:899 ../plug-ins/gfig/gfig-stock.c:52 -msgid "Show all objects" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:905 ../plug-ins/gfig/gfig-stock.c:47 -msgid "Create line" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:908 ../plug-ins/gfig/gfig-stock.c:42 -msgid "Create circle" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:911 ../plug-ins/gfig/gfig-stock.c:46 -msgid "Create ellipse" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:914 ../plug-ins/gfig/gfig-stock.c:44 -msgid "Create arc" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:917 ../plug-ins/gfig/gfig-stock.c:50 -msgid "Create reg polygon" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:920 ../plug-ins/gfig/gfig-stock.c:54 -msgid "Create star" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:923 ../plug-ins/gfig/gfig-stock.c:53 -msgid "Create spiral" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:926 -msgid "Create bezier curve. Shift + Button ends object creation." -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:930 ../plug-ins/gfig/gfig-stock.c:48 -msgid "Move an object" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:933 ../plug-ins/gfig/gfig-stock.c:49 -msgid "Move a single point" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:936 ../plug-ins/gfig/gfig-stock.c:43 -msgid "Copy an object" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:939 ../plug-ins/gfig/gfig-stock.c:45 -msgid "Delete an object" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:942 ../plug-ins/gfig/gfig-stock.c:51 -msgid "Select an object" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1023 -msgid "This tool has no options" -msgstr "" - -#. Put buttons in -#: ../plug-ins/gfig/gfig-dialog.c:1230 -msgid "Show position" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1242 -msgid "Show control points" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1276 -msgid "Max undo:" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1285 -#: ../plug-ins/gimpressionist/general.c:166 -msgid "Transparent" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1287 -msgid "Foreground" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1289 ../plug-ins/imagemap/imap_cmd_copy.c:54 -#: ../plug-ins/imagemap/imap_cmd_copy_object.c:55 -#: ../plug-ins/imagemap/imap_object_popup.c:113 -#: ../plug-ins/imagemap/imap_toolbar.c:126 -msgid "Copy" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1298 -msgid "" -"Layer background type. Copy causes the previous layer to be copied before " -"the draw is performed." -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1304 -msgid "Background:" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1307 -msgid "Feather" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1331 -msgid "Radius:" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1386 -msgid "Grid spacing:" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1402 ../plug-ins/imagemap/imap_menu.c:369 -#: ../plug-ins/imagemap/imap_popup.c:137 ../plug-ins/imagemap/imap_tools.c:156 -msgid "Rectangle" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1404 -msgid "Isometric" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1413 -msgid "Grid type:" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1420 ../plug-ins/gflare/gflare.c:559 -msgid "Normal" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1423 -msgid "Grey" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1424 -msgid "Darker" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1425 -msgid "Lighter" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1426 -msgid "Very dark" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1435 -msgid "Grid color:" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1638 -msgid "Sides:" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1648 -msgid "Right" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1649 -msgid "Left" -msgstr "" - -#: ../plug-ins/gfig/gfig-dialog.c:1659 -#: ../plug-ins/gimpressionist/orientation.c:130 -#: ../plug-ins/print/gimp_main_window.c:500 -msgid "Orientation:" -msgstr "" - -#: ../plug-ins/gfig/gfig-dobject.c:585 -msgid "Hey where has the object gone ?" -msgstr "" - -#: ../plug-ins/gfig/gfig-dobject.c:941 -msgid "Error reading file" -msgstr "" - -#: ../plug-ins/gfig/gfig-dobject.c:1030 -msgid "Editing read-only object - you will not be able to save it" -msgstr "" - -#: ../plug-ins/gfig/gfig-poly.c:56 -msgid "Regular Polygon Number of Sides" -msgstr "" - -#: ../plug-ins/gfig/gfig-preview.c:333 -msgid "Object Details" -msgstr "" - -#. Position labels -#: ../plug-ins/gfig/gfig-preview.c:383 -msgid "XY position:" -msgstr "" - -#: ../plug-ins/gfig/gfig-spiral.c:59 -msgid "Spiral Number of Turns" -msgstr "" - -#: ../plug-ins/gfig/gfig-star.c:57 -msgid "Star Number of Points" -msgstr "" - -#: ../plug-ins/gfig/gfig-stock.c:41 -msgid "Create bezier curve" -msgstr "" - -#: ../plug-ins/gfig/gfig.c:132 -msgid "_Gfig..." -msgstr "" - -#: ../plug-ins/gfig/gfig.c:726 -msgid "" -"Error trying to save figure as a parasite: can't attach parasite to " -"drawable.\n" -msgstr "" - -#: ../plug-ins/gfig/gfig.c:747 -#, c-format -msgid "Error trying to open temp file '%s'for parasite loading.\n" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:560 -msgid "Addition" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:561 -msgid "Overlay" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:821 -msgid "_GFlare..." -msgstr "" - -#: ../plug-ins/gflare/gflare.c:960 -msgid "Gradient Flare..." -msgstr "" - -#: ../plug-ins/gflare/gflare.c:1262 -#, c-format -msgid "Failed to open GFlare file '%s': %s" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:1270 -#, c-format -msgid "'%s' is not a valid GFlare file." -msgstr "" - -#: ../plug-ins/gflare/gflare.c:1324 -#, c-format -msgid "invalid formatted GFlare file: %s\n" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:1449 -#, c-format -msgid "" -"GFlare '%s' is not saved. If you add a new entry in '%s', like:\n" -"(gflare-path \"%s\")\n" -"and make a folder '%s', then you can save your own GFlares into that folder." -msgstr "" - -#: ../plug-ins/gflare/gflare.c:1482 -#, c-format -msgid "Failed to write GFlare file '%s': %s" -msgstr "" - -#. -#. * Dialog Shell -#. -#: ../plug-ins/gflare/gflare.c:2294 -msgid "GFlare" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2346 -msgid "A_uto update preview" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2397 -msgid "`Default' is created." -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2398 -msgid "Default" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2699 -msgid "Ro_tation:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2711 -msgid "_Hue rotation:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2723 -msgid "Vector _Angle:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2735 -msgid "Vector _Length:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2756 -msgid "A_daptive supersampling" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2775 -msgid "_Max Depth:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2785 -msgid "_Threshold" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2923 -msgid "S_elector" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2987 -msgid "New GFlare" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:2990 -msgid "Enter a name for the new GFlare" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3010 -#, c-format -msgid "The name '%s' is used already!" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3066 -msgid "Copy GFlare" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3069 -msgid "Enter a name for the copied GFlare" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3091 -#, c-format -msgid "The name `%s' is used already!" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3122 -msgid "Cannot delete!! There must be at least one GFlare." -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3132 -msgid "Delete GFlare" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3203 -#, c-format -msgid "not found %s in gflares_list" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3244 -msgid "GFlare Editor" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3248 -msgid "Rescan Gradients" -msgstr "" - -#. Glow -#: ../plug-ins/gflare/gflare.c:3367 -msgid "Glow Paint Options" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3378 ../plug-ins/gflare/gflare.c:3406 -#: ../plug-ins/gflare/gflare.c:3434 -msgid "Opacity:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3391 ../plug-ins/gflare/gflare.c:3419 -#: ../plug-ins/gflare/gflare.c:3447 -msgid "Paint Mode:" -msgstr "" - -#. Rays -#: ../plug-ins/gflare/gflare.c:3395 -msgid "Rays Paint Options" -msgstr "" - -#. Rays -#: ../plug-ins/gflare/gflare.c:3423 -msgid "Second Flares Paint Options" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3450 ../plug-ins/gimpressionist/general.c:115 -msgid "_General" -msgstr "" - -#. -#. * Gradient Menus -#. -#: ../plug-ins/gflare/gflare.c:3476 ../plug-ins/gflare/gflare.c:3579 -#: ../plug-ins/gflare/gflare.c:3718 -msgid "Gradients" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3487 ../plug-ins/gflare/gflare.c:3592 -#: ../plug-ins/gflare/gflare.c:3729 -msgid "Radial Gradient:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3491 ../plug-ins/gflare/gflare.c:3596 -msgid "Angular Gradient:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3495 ../plug-ins/gflare/gflare.c:3600 -msgid "Angular Size Gradient:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3515 ../plug-ins/gflare/gflare.c:3620 -#: ../plug-ins/gflare/gflare.c:3757 -msgid "Size (%):" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3527 ../plug-ins/gflare/gflare.c:3632 -#: ../plug-ins/gflare/gflare.c:3769 -msgid "Rotation:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3539 ../plug-ins/gflare/gflare.c:3645 -#: ../plug-ins/gflare/gflare.c:3782 -msgid "Hue Rotation:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3553 -msgid "G_low" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3657 -msgid "# of Spikes:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3669 -msgid "Spike Thickness:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3683 -msgid "_Rays" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3733 -msgid "Size Factor Gradient:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3737 -msgid "Probability Gradient:" -msgstr "" - -#. -#. * Shape Radio Button Frame -#. -#: ../plug-ins/gflare/gflare.c:3799 -msgid "Shape of Second Flares" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3807 ../plug-ins/imagemap/imap_menu.c:372 -#: ../plug-ins/imagemap/imap_popup.c:140 ../plug-ins/imagemap/imap_tools.c:160 -msgid "Circle" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3824 ../plug-ins/imagemap/imap_menu.c:374 -#: ../plug-ins/imagemap/imap_popup.c:143 ../plug-ins/imagemap/imap_tools.c:164 -msgid "Polygon" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3857 -msgid "Random Seed:" -msgstr "" - -#: ../plug-ins/gflare/gflare.c:3871 -msgid "_Second Flares" -msgstr "" - -#: ../plug-ins/gfli/gfli.c:158 ../plug-ins/gfli/gfli.c:178 -msgid "AutoDesk FLIC animation" -msgstr "" - -#: ../plug-ins/gfli/gfli.c:527 -#, c-format -msgid "Frame (%i)" -msgstr "" - -#: ../plug-ins/gfli/gfli.c:678 -msgid "Sorry, I can save only INDEXED and GRAY images." -msgstr "" - -#: ../plug-ins/gfli/gfli.c:811 -msgid "GFLI 1.3 - Load framestack" -msgstr "" - -#: ../plug-ins/gfli/gfli.c:874 -msgid "GFLI 1.3 - Save framestack" -msgstr "" - -#: ../plug-ins/gimpressionist/brush.c:230 -msgid "Can only save drawables!" -msgstr "" - -#: ../plug-ins/gimpressionist/brush.c:235 -msgid "Save Brush" -msgstr "" - -#: ../plug-ins/gimpressionist/brush.c:481 -msgid "_Brush" -msgstr "" - -#: ../plug-ins/gimpressionist/brush.c:518 -#: ../plug-ins/print/gimp_color_window.c:407 -msgid "Gamma:" -msgstr "" - -#: ../plug-ins/gimpressionist/brush.c:536 -msgid "Changes the gamma (brightness) of the selected brush" -msgstr "" - -#: ../plug-ins/gimpressionist/brush.c:544 -msgid "Select:" -msgstr "" - -#: ../plug-ins/gimpressionist/brush.c:573 -msgid "Aspect ratio:" -msgstr "" - -#: ../plug-ins/gimpressionist/brush.c:577 -msgid "Specifies the aspect ratio of the brush" -msgstr "" - -#: ../plug-ins/gimpressionist/brush.c:586 -#: ../plug-ins/gimpressionist/paper.c:188 -msgid "Relief:" -msgstr "" - -#: ../plug-ins/gimpressionist/brush.c:590 -#: ../plug-ins/gimpressionist/paper.c:192 -msgid "Specifies the amount of embossing to apply to the image (in percent)" -msgstr "" - -#: ../plug-ins/gimpressionist/color.c:42 -msgid "Co_lor" -msgstr "" - -#: ../plug-ins/gimpressionist/color.c:52 -msgid "A_verage under brush" -msgstr "" - -#: ../plug-ins/gimpressionist/color.c:54 -msgid "C_enter of brush" -msgstr "" - -#: ../plug-ins/gimpressionist/color.c:61 -msgid "Color is computed from the average of all pixels under the brush" -msgstr "" - -#: ../plug-ins/gimpressionist/color.c:65 -msgid "Samples the color from the pixel in the center of the brush" -msgstr "" - -#: ../plug-ins/gimpressionist/color.c:76 -msgid "Color _noise:" -msgstr "" - -#: ../plug-ins/gimpressionist/color.c:80 -msgid "Adds random noise to the color" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:131 -msgid "Keep original" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:132 -msgid "Preserve the original image as a background" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:137 -msgid "From paper" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:138 -msgid "Copy the texture of the selected paper as a background" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:148 -msgid "Solid colored background" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:167 -msgid "Use a transparent background; Only the strokes painted will be visible" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:184 -msgid "Paint edges" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:189 -msgid "Selects if to place strokes all the way out to the edges of the image" -msgstr "" - -#. Tileable checkbox -#: ../plug-ins/gimpressionist/general.c:194 ../plug-ins/maze/maze_face.c:264 -msgid "Tileable" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:198 -msgid "Selects if the resulting image should be seamlessly tileable" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:203 -msgid "Drop Shadow" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:208 -msgid "Adds a shadow effect to each brush stroke" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:221 -msgid "Edge darken:" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:225 -msgid "How much to \"darken\" the edges of each brush stroke" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:230 -msgid "Shadow darken:" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:234 -msgid "How much to \"darken\" the drop shadow" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:239 -msgid "Shadow depth:" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:243 -msgid "" -"The depth of the drop shadow, i.e. how far apart from the object it should be" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:248 -msgid "Shadow blur:" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:252 -msgid "How much to blur the drop shadow" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:257 -msgid "Deviation threshold:" -msgstr "" - -#: ../plug-ins/gimpressionist/general.c:261 -msgid "A bailout-value for adaptive selections" -msgstr "" - -#: ../plug-ins/gimpressionist/gimp.c:79 -msgid "_GIMPressionist..." -msgstr "" - -#: ../plug-ins/gimpressionist/gimp.c:350 -msgid "Painting..." -msgstr "" - -#: ../plug-ins/gimpressionist/gimpressionist.c:117 -msgid "The GIMPressionist" -msgstr "" - -#: ../plug-ins/gimpressionist/gimpressionist.c:196 -msgid "Gimpressionist" -msgstr "" - -#: ../plug-ins/gimpressionist/gimpressionist.c:200 -msgid "A_bout" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:74 -msgid "Or_ientation" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:88 -msgid "Directions:" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:92 -msgid "The number of directions (i.e. brushes) to use" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:100 -msgid "Start angle:" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:104 -msgid "The starting angle of the first brush to create" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:112 -msgid "Angle span:" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:116 -msgid "The angle span of the first brush to create" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:139 -msgid "" -"Let the value (brightness) of the region determine the direction of the " -"stroke" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:142 -#: ../plug-ins/gimpressionist/size.c:145 -msgid "Radius" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:143 -msgid "" -"The distance from the center of the image determines the direction of the " -"stroke" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:147 -msgid "Selects a random direction of each stroke" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:150 -#: ../plug-ins/gimpressionist/size.c:153 -msgid "Radial" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:151 -msgid "Let the direction from the center determine the direction of the stroke" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:158 -#: ../plug-ins/gimpressionist/size.c:161 -msgid "Flowing" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:159 -#: ../plug-ins/gimpressionist/size.c:162 -msgid "The strokes follow a \"flowing\" pattern" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:163 -msgid "The hue of the region determines the direction of the stroke" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:166 -#: ../plug-ins/gimpressionist/size.c:169 -msgid "Adaptive" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:167 -msgid "The direction that matches the original image the closest is selected" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:174 -#: ../plug-ins/gimpressionist/size.c:178 -msgid "Manual" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:175 -msgid "Manually specify the stroke orientation" -msgstr "" - -#: ../plug-ins/gimpressionist/orientation.c:186 -msgid "Opens up the Orientation Map Editor" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:508 -msgid "Orientation Map Editor" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:530 -msgid "Vectors" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:542 -msgid "" -"The vector-field. Left-click to move selected vector, Right-click to point " -"it towards mouse, Middle-click to add a new vector." -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:565 -#: ../plug-ins/gimpressionist/sizemap.c:435 -msgid "Adjust the preview's brightness" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:587 -msgid "Select previous vector" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:593 -msgid "Select next vector" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:595 -#: ../plug-ins/gimpressionist/sizemap.c:466 -msgid "A_dd" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:599 -msgid "Add new vector" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:601 -#: ../plug-ins/gimpressionist/sizemap.c:473 -msgid "_Kill" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:605 -msgid "Delete selected vector" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:620 -msgid "_Normal" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:621 -msgid "Vorte_x" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:622 -msgid "Vortex_2" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:623 -msgid "Vortex_3" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:629 -#: ../plug-ins/gimpressionist/sizemap.c:518 -msgid "_Voronoi" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:637 -msgid "" -"Voronoi-mode makes only the vector closest to the given point have any " -"influence" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:647 -msgid "A_ngle:" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:651 -msgid "Change the angle of the selected vector" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:658 -msgid "Ang_le offset:" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:662 -msgid "Offset all vectors with a given angle" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:673 -msgid "Change the strength of the selected vector" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:680 -msgid "S_trength exp.:" -msgstr "" - -#: ../plug-ins/gimpressionist/orientmap.c:684 -#: ../plug-ins/gimpressionist/sizemap.c:513 -msgid "Change the exponent of the strength" -msgstr "" - -#: ../plug-ins/gimpressionist/paper.c:120 -msgid "P_aper" -msgstr "" - -#: ../plug-ins/gimpressionist/paper.c:155 -msgid "Inverts the Papers texture" -msgstr "" - -#: ../plug-ins/gimpressionist/paper.c:159 -msgid "O_verlay" -msgstr "" - -#: ../plug-ins/gimpressionist/paper.c:164 -msgid "Applies the paper as it is (without embossing it)" -msgstr "" - -#: ../plug-ins/gimpressionist/paper.c:180 -msgid "Specifies the scale of the texture (in percent of original file)" -msgstr "" - -#: ../plug-ins/gimpressionist/placement.c:49 -msgid "Pl_acement" -msgstr "" - -#: ../plug-ins/gimpressionist/placement.c:55 -msgid "Placement" -msgstr "" - -#: ../plug-ins/gimpressionist/placement.c:59 -msgid "Randomly" -msgstr "" - -#: ../plug-ins/gimpressionist/placement.c:63 -msgid "Evenly distributed" -msgstr "" - -#: ../plug-ins/gimpressionist/placement.c:71 -msgid "Place strokes randomly around the image" -msgstr "" - -#: ../plug-ins/gimpressionist/placement.c:75 -msgid "The strokes are evenly distributed across the image" -msgstr "" - -#: ../plug-ins/gimpressionist/placement.c:91 -msgid "Stroke _density:" -msgstr "" - -#: ../plug-ins/gimpressionist/placement.c:95 -msgid "The relative density of the brush strokes" -msgstr "" - -#: ../plug-ins/gimpressionist/placement.c:101 -msgid "Centerize" -msgstr "" - -#: ../plug-ins/gimpressionist/placement.c:107 -msgid "Focus the brush strokes around the center of the image" -msgstr "" - -#. -#. * gimp_filename_to_utf8 () and g_strerror () return temporary strings -#. * that need not and should not be freed. So this call is OK. -#. * -#: ../plug-ins/gimpressionist/ppmtool.c:630 -#, c-format -msgid "Failed to save PPM file '%s': %s" -msgstr "" - -#: ../plug-ins/gimpressionist/presets.c:621 -msgid "Save Current" -msgstr "" - -#: ../plug-ins/gimpressionist/presets.c:863 -msgid "The Gimpressionist Defaults" -msgstr "" - -#: ../plug-ins/gimpressionist/presets.c:979 -msgid "_Presets" -msgstr "" - -#: ../plug-ins/gimpressionist/presets.c:994 -msgid "Save current..." -msgstr "" - -#: ../plug-ins/gimpressionist/presets.c:999 -msgid "Save the current settings to the specified file" -msgstr "" - -#: ../plug-ins/gimpressionist/presets.c:1027 -msgid "Reads the selected Preset into memory" -msgstr "" - -#: ../plug-ins/gimpressionist/presets.c:1033 -msgid "Deletes the selected Preset" -msgstr "" - -#: ../plug-ins/gimpressionist/presets.c:1039 -msgid "Reread the folder of Presets" -msgstr "" - -#: ../plug-ins/gimpressionist/preview.c:187 -msgid "Refresh the Preview window" -msgstr "" - -#: ../plug-ins/gimpressionist/preview.c:195 -msgid "Revert to the original image" -msgstr "" - -#: ../plug-ins/gimpressionist/repaint.c:1160 -msgid "Update" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:77 -msgid "_Size" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:91 -msgid "Sizes:" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:95 -msgid "The number of sizes of brushes to use" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:103 -msgid "Minimum size:" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:107 -msgid "The smallest brush to create" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:115 -msgid "Maximum size:" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:119 -msgid "The largest brush to create" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:133 -msgid "Size:" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:142 -msgid "" -"Let the value (brightness) of the region determine the size of the stroke" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:146 -msgid "" -"The distance from the center of the image determines the size of the stroke" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:150 -msgid "Selects a random size for each stroke" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:154 -msgid "Let the direction from the center determine the size of the stroke" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:166 -msgid "The hue of the region determines the size of the stroke" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:170 -msgid "The brush-size that matches the original image the closest is selected" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:179 -msgid "Manually specify the stroke size" -msgstr "" - -#: ../plug-ins/gimpressionist/size.c:190 -msgid "Opens up the Size Map Editor" -msgstr "" - -#: ../plug-ins/gimpressionist/sizemap.c:383 -msgid "Size Map Editor" -msgstr "" - -#: ../plug-ins/gimpressionist/sizemap.c:405 -msgid "Smvectors" -msgstr "" - -#: ../plug-ins/gimpressionist/sizemap.c:415 -msgid "" -"The smvector-field. Left-click to move selected smvector, Right-click to " -"point it towards mouse, Middle-click to add a new smvector." -msgstr "" - -#: ../plug-ins/gimpressionist/sizemap.c:457 -msgid "Select previous smvector" -msgstr "" - -#: ../plug-ins/gimpressionist/sizemap.c:464 -msgid "Select next smvector" -msgstr "" - -#: ../plug-ins/gimpressionist/sizemap.c:471 -msgid "Add new smvector" -msgstr "" - -#: ../plug-ins/gimpressionist/sizemap.c:478 -msgid "Delete selected smvector" -msgstr "" - -#: ../plug-ins/gimpressionist/sizemap.c:491 -msgid "Change the angle of the selected smvector" -msgstr "" - -#: ../plug-ins/gimpressionist/sizemap.c:498 -msgid "S_trength:" -msgstr "" - -#: ../plug-ins/gimpressionist/sizemap.c:502 -msgid "Change the strength of the selected smvector" -msgstr "" - -#: ../plug-ins/gimpressionist/sizemap.c:509 -msgid "St_rength exp.:" -msgstr "" - -#: ../plug-ins/gimpressionist/sizemap.c:525 -msgid "" -"Voronoi-mode makes only the smvector closest to the given point have any " -"influence" -msgstr "" - -#. don't translate the gimprc entry -#: ../plug-ins/gimpressionist/utils.c:135 -#, c-format -msgid "" -"It is highly recommended to add\n" -" (gimpressionist-path \"%s\")\n" -"(or similar) to your gimprc file." -msgstr "" - -#: ../plug-ins/help/domain.c:177 -msgid "The GIMP help files are not installed." -msgstr "" - -#: ../plug-ins/help/domain.c:179 -msgid "There is a problem with the GIMP help files." -msgstr "" - -#: ../plug-ins/help/domain.c:184 -msgid "Please check your installation." -msgstr "" - -#: ../plug-ins/help/domain.c:192 -#, c-format -msgid "Help ID '%s' unknown" -msgstr "" - -#: ../plug-ins/help/domain.c:449 -#, c-format -msgid "" -"Parse error in '%s':\n" -"%s" -msgstr "" - -#: ../plug-ins/helpbrowser/dialog.c:159 -msgid "GIMP Help browser" -msgstr "" - -#: ../plug-ins/helpbrowser/dialog.c:411 -msgid "Document not found" -msgstr "" - -#: ../plug-ins/helpbrowser/dialog.c:413 -msgid "The requested URL could not be loaded:" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:357 -msgid "_IFS Fractal..." -msgstr "" - -#. Asym -#: ../plug-ins/ifscompose/ifscompose.c:600 -msgid "Asymmetry:" -msgstr "" - -#. Shear -#: ../plug-ins/ifscompose/ifscompose.c:614 -msgid "Shear:" -msgstr "" - -#. Simple color control section -#: ../plug-ins/ifscompose/ifscompose.c:659 -msgid "Simple" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:668 -msgid "IFS Fractal: Target" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:674 -msgid "Scale Hue by:" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:689 -msgid "Scale Value by:" -msgstr "" - -#. Full color control section -#: ../plug-ins/ifscompose/ifscompose.c:706 -msgid "Full" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:713 -msgid "IFS Fractal: Red" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:720 -msgid "IFS Fractal: Green" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:727 -msgid "IFS Fractal: Blue" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:734 -msgid "IFS Fractal: Black" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:784 -msgid "IFS Fractal" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:872 -msgid "Spatial Transformation" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:878 -msgid "Color Transformation" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:888 -msgid "Relative probability:" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1063 -msgid "Select _All" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1067 -msgid "Re_center" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1067 -msgid "Recompute Center" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1071 -msgid "Render options" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1077 -#: ../plug-ins/imagemap/imap_cmd_move.c:86 -#: ../plug-ins/imagemap/imap_cmd_object_move.c:57 -msgid "Move" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1080 -msgid "Rotate" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1080 -msgid "Rotate / Scale" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1083 -msgid "Stretch" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1180 -msgid "IFS Fractal Render Options" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1201 -msgid "Max. Memory:" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1228 -msgid "Subdivide:" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1241 -msgid "Spot Radius:" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1313 -#, c-format -msgid "Rendering IFS (%d/%d)..." -msgstr "" - -#. transfer the image to the drawable -#: ../plug-ins/ifscompose/ifscompose.c:1333 -#, c-format -msgid "Copying IFS to image (%d/%d)..." -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:1476 -#, c-format -msgid "Transformation %s" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:2400 -msgid "Save failed" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:2481 -#: ../plug-ins/ifscompose/ifscompose.c:2494 -msgid "Open failed" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:2489 -#, c-format -msgid "File '%s' doesn't seem to be an IFS Fractal file." -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:2529 -msgid "Save as IFS Fraktal file" -msgstr "" - -#: ../plug-ins/ifscompose/ifscompose.c:2559 -msgid "Open IFS Fraktal file" -msgstr "" - -#: ../plug-ins/imagemap/imap_about.c:43 -msgid "Imagemap plug-in 2.2" -msgstr "" - -#: ../plug-ins/imagemap/imap_about.c:44 -msgid "Copyright(c) 1999-2004 by Maurits Rijk" -msgstr "" - -#: ../plug-ins/imagemap/imap_about.c:46 -msgid "Released under the GNU General Public License" -msgstr "" - -#: ../plug-ins/imagemap/imap_circle.c:64 -msgid "C_ircle" -msgstr "" - -#: ../plug-ins/imagemap/imap_circle.c:264 -msgid "Center _x:" -msgstr "" - -#: ../plug-ins/imagemap/imap_circle.c:269 -#: ../plug-ins/imagemap/imap_circle.c:276 -#: ../plug-ins/imagemap/imap_circle.c:282 ../plug-ins/imagemap/imap_grid.c:254 -#: ../plug-ins/imagemap/imap_grid.c:260 -#: ../plug-ins/imagemap/imap_polygon.c:504 -#: ../plug-ins/imagemap/imap_polygon.c:512 -#: ../plug-ins/imagemap/imap_rectangle.c:394 -#: ../plug-ins/imagemap/imap_rectangle.c:401 -#: ../plug-ins/imagemap/imap_rectangle.c:408 -#: ../plug-ins/imagemap/imap_rectangle.c:415 -msgid "pixels" -msgstr "" - -#: ../plug-ins/imagemap/imap_circle.c:271 -msgid "Center _y:" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_clear.c:51 -msgid "Clear" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_create.c:58 -#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:151 -msgid "Create" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_cut.c:55 -#: ../plug-ins/imagemap/imap_cmd_cut_object.c:51 -#: ../plug-ins/imagemap/imap_object_popup.c:111 -#: ../plug-ins/imagemap/imap_toolbar.c:123 -msgid "Cut" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_delete.c:57 -#: ../plug-ins/imagemap/imap_selection.c:172 -#: ../plug-ins/imagemap/imap_tools.c:174 -msgid "Delete" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_delete_point.c:61 -#: ../plug-ins/imagemap/imap_polygon.c:723 -msgid "Delete Point" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_edit_object.c:54 -msgid "Edit Object" -msgstr "" - -#. Create the areas -#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:117 -#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:147 -#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:251 -msgid "Use Gimp Guides" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:160 -msgid "Al_ternate" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:165 -msgid "A_ll" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:169 -msgid "Add Additional Guides" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:177 -msgid "L_eft Border" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:181 -msgid "_Right Border" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:185 -msgid "_Upper Border" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:189 -msgid "Lo_wer Border" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:197 -msgid "_Base URL:" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_guides.c:72 -#: ../plug-ins/imagemap/imap_cmd_guides.c:138 -msgid "Create Guides" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_guides.c:111 -#, c-format -msgid "Resulting Guide Bounds: %d,%d to %d,%d (%d areas)" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_guides.c:142 -msgid "" -"Guides are pre-defined rectangles covering the image. You define them by " -"their width, height, and spacing from each other. This allows you to rapidly " -"create the most common image map type - image collection of \"thumbnails\", " -"suitable for navigation bars." -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_guides.c:172 -msgid "_Left Start at:" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_guides.c:182 -msgid "_Top Start at:" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_guides.c:187 -msgid "_Horz. Spacing:" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_guides.c:193 -msgid "_No. Across:" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_guides.c:199 -msgid "_Vert. Spacing:" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_guides.c:205 -msgid "No. _Down:" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_guides.c:214 -msgid "Base _URL:" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_guides.c:238 -msgid "Resulting Guide Bounds: 0,0 to 0,0 (0 areas)" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_guides.c:273 -msgid "Guides" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_insert_point.c:62 -#: ../plug-ins/imagemap/imap_polygon.c:737 -msgid "Insert Point" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_move_down.c:53 -#: ../plug-ins/imagemap/imap_cmd_object_down.c:55 -#: ../plug-ins/imagemap/imap_object_popup.c:109 -#: ../plug-ins/imagemap/imap_selection.c:163 -msgid "Move Down" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_move_sash.c:68 -msgid "Move Sash" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_move_selected.c:56 -msgid "Move Selected Objects" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_move_to_front.c:51 -#: ../plug-ins/imagemap/imap_toolbar.c:151 -msgid "Move To Front" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_move_up.c:53 -#: ../plug-ins/imagemap/imap_cmd_object_up.c:55 -#: ../plug-ins/imagemap/imap_object_popup.c:107 -#: ../plug-ins/imagemap/imap_selection.c:159 -msgid "Move Up" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_paste.c:51 -#: ../plug-ins/imagemap/imap_toolbar.c:129 -msgid "Paste" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_select.c:53 -#: ../plug-ins/imagemap/imap_tools.c:144 -msgid "Select" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_select_all.c:51 -msgid "Select All" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_select_next.c:51 -msgid "Select Next" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_select_prev.c:51 -msgid "Select Previous" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_select_region.c:64 -msgid "Select Region" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_send_to_back.c:51 -#: ../plug-ins/imagemap/imap_toolbar.c:157 -msgid "Send To Back" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_unselect.c:53 -msgid "Unselect" -msgstr "" - -#: ../plug-ins/imagemap/imap_cmd_unselect_all.c:53 -msgid "Unselect All" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:196 -msgid "Link Type" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:205 -msgid "_Web Site" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:211 -msgid "_Ftp Site" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:217 -msgid "_Gopher" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:223 -msgid "Ot_her" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:229 -msgid "F_ile" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:235 -msgid "WAI_S" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:241 -msgid "Tel_net" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:247 -msgid "e-_mail" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:253 -msgid "_URL to activate when this area is clicked: (required)" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:255 -msgid "Select HTML file" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:264 -msgid "Relati_ve link" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:270 -msgid "_Target frame name/ID: (optional - used for FRAMES only)" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:273 -msgid "ALT te_xt: (optional)" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:276 -msgid "_Link" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:310 -msgid "Dimensions" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:314 -msgid "Pre_view" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:352 -msgid "_JavaScript" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:451 -msgid "Area Settings" -msgstr "" - -#: ../plug-ins/imagemap/imap_edit_area_info.c:493 -#, c-format -msgid "Area #%d Settings" -msgstr "" - -#: ../plug-ins/imagemap/imap_file.c:49 ../plug-ins/imagemap/imap_menu.c:65 -msgid "Error opening file" -msgstr "" - -#: ../plug-ins/imagemap/imap_file.c:69 -msgid "Load Imagemap" -msgstr "" - -#: ../plug-ins/imagemap/imap_file.c:117 -msgid "File already exists" -msgstr "" - -#: ../plug-ins/imagemap/imap_file.c:118 -msgid "Do you really want to overwrite?" -msgstr "" - -#: ../plug-ins/imagemap/imap_file.c:166 -msgid "Save Imagemap" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:201 -msgid "Grid Settings" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:205 -msgid "_Snap-To Grid Enabled" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:211 -msgid "Grid Visibility and Type" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:218 -msgid "_Hidden" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:226 -msgid "_Lines" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:235 -msgid "C_rosses" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:243 -msgid "Grid Granularity" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:250 -msgid "_Width" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:256 -msgid "_Height" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:270 -msgid "Grid Offset" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:277 -msgid "pixels from l_eft" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:282 -msgid "pixels from _top" -msgstr "" - -#: ../plug-ins/imagemap/imap_grid.c:293 -msgid "_Preview" -msgstr "" - -#: ../plug-ins/imagemap/imap_main.c:128 -msgid "_ImageMap..." -msgstr "" - -#: ../plug-ins/imagemap/imap_main.c:594 -#: ../plug-ins/imagemap/imap_settings.c:171 -msgid "" -msgstr "" - -#: ../plug-ins/imagemap/imap_main.c:746 -msgid "Some data has been changed!" -msgstr "" - -#: ../plug-ins/imagemap/imap_main.c:747 -msgid "Do you really want to discard your changes?" -msgstr "" - -#: ../plug-ins/imagemap/imap_main.c:955 -#, c-format -msgid "File \"%s\" saved." -msgstr "" - -#: ../plug-ins/imagemap/imap_main.c:959 -msgid "Couldn't save file:" -msgstr "" - -#: ../plug-ins/imagemap/imap_main.c:985 -msgid "Image size has changed." -msgstr "" - -#: ../plug-ins/imagemap/imap_main.c:986 -msgid "Resize area's?" -msgstr "" - -#: ../plug-ins/imagemap/imap_main.c:1014 -msgid "Couldn't read file:" -msgstr "" - -#: ../plug-ins/imagemap/imap_main.c:1061 -#, c-format -msgid "URL: %s" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:181 -msgid "_File" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:187 -msgid "Open recent" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:209 -#, c-format -msgid "_Undo %s" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:225 -#, c-format -msgid "_Redo %s" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:253 -msgid "_Edit" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:271 -msgid "Select _all" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:274 -msgid "Deselect _all" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:279 -msgid "Edit area info..." -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:294 -msgid "_View" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:298 -msgid "Area list" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:302 -msgid "Source..." -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:310 -#: ../plug-ins/print/gimp_main_window.c:1410 -msgid "Grayscale" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:328 -msgid "Zoom to" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:358 -msgid "_Mapping" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:361 ../plug-ins/imagemap/imap_popup.c:134 -msgid "Arrow" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:365 -msgid "Select contiguous region" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:384 -msgid "_Tools" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:386 -msgid "Grid settings..." -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:389 -msgid "Use GIMP guides..." -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:391 -msgid "Create guides..." -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:399 -msgid "_Help" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:401 -msgid "_Contents" -msgstr "" - -#: ../plug-ins/imagemap/imap_menu.c:405 -msgid "_About ImageMap" -msgstr "" - -#: ../plug-ins/imagemap/imap_object_popup.c:103 -msgid "Edit Area Info..." -msgstr "" - -#: ../plug-ins/imagemap/imap_object_popup.c:105 -msgid "Delete Area" -msgstr "" - -#: ../plug-ins/imagemap/imap_polygon.c:71 -msgid "_Polygon" -msgstr "" - -#: ../plug-ins/imagemap/imap_polygon.c:473 -msgid "x (pixels)" -msgstr "" - -#: ../plug-ins/imagemap/imap_polygon.c:482 -msgid "y (pixels)" -msgstr "" - -#: ../plug-ins/imagemap/imap_polygon.c:520 -msgid "_Insert" -msgstr "" - -#: ../plug-ins/imagemap/imap_polygon.c:526 -msgid "A_ppend" -msgstr "" - -#: ../plug-ins/imagemap/imap_polygon.c:532 -msgid "_Remove" -msgstr "" - -#: ../plug-ins/imagemap/imap_popup.c:133 -msgid "Tools" -msgstr "" - -#: ../plug-ins/imagemap/imap_popup.c:154 -msgid "Grid Settings..." -msgstr "" - -#: ../plug-ins/imagemap/imap_popup.c:156 -msgid "Guides..." -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:213 -msgid "Couldn't save resource file:" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:358 -msgid "Select Color" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:443 -msgid "General" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:447 -msgid "Default Map Type" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:466 -msgid "_Prompt for area info" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:468 -msgid "_Require default URL" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:470 -msgid "Show area _handles" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:472 -msgid "_Keep NCSA circles true" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:474 -msgid "Show area URL _tip" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:477 -msgid "_Use double-sized grab handles" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:484 -msgid "Menu" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:488 -msgid "Number of _Undo levels (1 - 99):" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:493 -msgid "Number of M_RU entries (1 - 16):" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:518 -msgid "Normal:" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:524 -msgid "Selected:" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:535 -msgid "Co_ntiguous Region" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:541 -msgid "_Automatically convert" -msgstr "" - -#: ../plug-ins/imagemap/imap_preferences.c:563 -msgid "General Preferences" -msgstr "" - -#: ../plug-ins/imagemap/imap_rectangle.c:69 -msgid "_Rectangle" -msgstr "" - -#: ../plug-ins/imagemap/imap_rectangle.c:389 -msgid "Upper left _x:" -msgstr "" - -#: ../plug-ins/imagemap/imap_rectangle.c:396 -msgid "Upper left _y:" -msgstr "" - -#: ../plug-ins/imagemap/imap_selection.c:168 -#: ../plug-ins/imagemap/imap_tools.c:169 -msgid "Edit" -msgstr "" - -#: ../plug-ins/imagemap/imap_selection.c:410 -msgid "#" -msgstr "" - -#: ../plug-ins/imagemap/imap_selection.c:439 -msgid "ALT Text" -msgstr "" - -#: ../plug-ins/imagemap/imap_selection.c:449 -msgid "Target" -msgstr "" - -#: ../plug-ins/imagemap/imap_settings.c:90 -msgid "Settings for this Mapfile" -msgstr "" - -#: ../plug-ins/imagemap/imap_settings.c:94 -msgid "Filename:" -msgstr "" - -#: ../plug-ins/imagemap/imap_settings.c:97 -msgid "Image name:" -msgstr "" - -#: ../plug-ins/imagemap/imap_settings.c:98 -msgid "Select Image File" -msgstr "" - -#: ../plug-ins/imagemap/imap_settings.c:102 -msgid "_Title:" -msgstr "" - -#: ../plug-ins/imagemap/imap_settings.c:104 -msgid "Aut_hor:" -msgstr "" - -#: ../plug-ins/imagemap/imap_settings.c:106 -msgid "Default _URL:" -msgstr "" - -#: ../plug-ins/imagemap/imap_settings.c:108 -msgid "_Description:" -msgstr "" - -#: ../plug-ins/imagemap/imap_settings.c:130 -msgid "Map file format" -msgstr "" - -#: ../plug-ins/imagemap/imap_source.c:63 -msgid "View Source" -msgstr "" - -#: ../plug-ins/imagemap/imap_stock.c:45 -msgid "Edit Map Info..." -msgstr "" - -#: ../plug-ins/imagemap/imap_toolbar.c:102 -msgid "Open" -msgstr "" - -#: ../plug-ins/imagemap/imap_toolbar.c:104 -msgid "Save" -msgstr "" - -#: ../plug-ins/imagemap/imap_toolbar.c:107 -msgid "Preferences" -msgstr "" - -#: ../plug-ins/imagemap/imap_toolbar.c:112 -msgid "Undo" -msgstr "" - -#: ../plug-ins/imagemap/imap_toolbar.c:116 -msgid "Redo" -msgstr "" - -#: ../plug-ins/imagemap/imap_toolbar.c:137 -msgid "Zoom in" -msgstr "" - -#: ../plug-ins/imagemap/imap_toolbar.c:142 -msgid "Zoom out" -msgstr "" - -#: ../plug-ins/imagemap/imap_toolbar.c:147 -msgid "Edit map info" -msgstr "" - -#: ../plug-ins/imagemap/imap_tools.c:145 -msgid "Select existing area" -msgstr "" - -#: ../plug-ins/imagemap/imap_tools.c:150 -msgid "Fuzzy Select" -msgstr "" - -#: ../plug-ins/imagemap/imap_tools.c:151 -msgid "Select contiguous regions" -msgstr "" - -#: ../plug-ins/imagemap/imap_tools.c:157 -msgid "Define Rectangle area" -msgstr "" - -#: ../plug-ins/imagemap/imap_tools.c:161 -msgid "Define Circle/Oval area" -msgstr "" - -#: ../plug-ins/imagemap/imap_tools.c:165 -msgid "Define Polygon area" -msgstr "" - -#: ../plug-ins/imagemap/imap_tools.c:170 -msgid "Edit selected area info" -msgstr "" - -#: ../plug-ins/imagemap/imap_tools.c:175 -msgid "Delete selected area" -msgstr "" - -#: ../plug-ins/maze/algorithms.c:287 -msgid "Constructing maze using Prim's Algorithm..." -msgstr "" - -#: ../plug-ins/maze/algorithms.c:463 -msgid "Constructing tileable maze using Prim's Algorithm..." -msgstr "" - -#: ../plug-ins/maze/maze.c:163 -msgid "_Maze..." -msgstr "" - -#: ../plug-ins/maze/maze.c:450 -msgid "Drawing Maze..." -msgstr "" - -#: ../plug-ins/maze/maze.h:2 -msgid "Maze" -msgstr "" - -#. entscale == Entry and Scale pair function found in pixelize.c -#: ../plug-ins/maze/maze_face.c:202 -msgid "Width (pixels):" -msgstr "" - -#: ../plug-ins/maze/maze_face.c:214 ../plug-ins/maze/maze_face.c:230 -msgid "Pieces:" -msgstr "" - -#: ../plug-ins/maze/maze_face.c:219 -msgid "Height (pixels):" -msgstr "" - -#: ../plug-ins/maze/maze_face.c:242 -msgid "Multiple (57):" -msgstr "" - -#: ../plug-ins/maze/maze_face.c:255 -msgid "Offset (1):" -msgstr "" - -#: ../plug-ins/maze/maze_face.c:287 -msgid "Depth first" -msgstr "" - -#: ../plug-ins/maze/maze_face.c:288 -msgid "Prim's algorithm" -msgstr "" - -#: ../plug-ins/maze/maze_face.c:397 -msgid "" -"Selection size is not even.\n" -"Tileable maze won't work perfectly." -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:224 -msgid "_Pagecurl..." -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:443 -msgid "Pagecurl Effect" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:458 -msgid "Curl Location" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:477 -msgid "Lower right" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:478 -msgid "Lower left" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:479 -msgid "Upper left" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:480 -msgid "Upper right" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:520 -msgid "Curl Orientation" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:564 -msgid "_Shade under curl" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:577 -msgid "Current gradient (reversed)" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:582 -msgid "Current gradient" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:587 -msgid "Foreground / background colors" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:607 -msgid "_Opacity:" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:730 -msgid "Curl Layer" -msgstr "" - -#: ../plug-ins/pagecurl/pagecurl.c:1018 -msgid "Page Curl..." -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:208 -msgid "Print Color Adjust" -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:268 -msgid "Brightness:" -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:276 -msgid "" -"Set the brightness of the print.\n" -"0 is solid black, 2 is solid white" -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:288 -msgid "Contrast:" -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:296 -msgid "Set the contrast of the print" -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:315 -msgid "Adjust the cyan balance of the print" -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:334 -msgid "Adjust the magenta balance of the print" -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:353 -msgid "Adjust the yellow balance of the print" -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:372 -msgid "" -"Adjust the saturation (color balance) of the print\n" -"Use zero saturation to produce grayscale output using color and black inks" -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:385 -msgid "Density:" -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:393 -msgid "" -"Adjust the density (amount of ink) of the print. Reduce the density if the " -"ink bleeds through the paper or smears; increase the density if black " -"regions are not solid." -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:415 -msgid "" -"Adjust the gamma of the print. Larger values will produce a generally " -"brighter print, while smaller values will produce a generally darker print. " -"Black and white will remain the same, unlike with the brightness adjustment." -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:432 -msgid "Dither Algorithm:" -msgstr "" - -#: ../plug-ins/print/gimp_color_window.c:440 -msgid "" -"Choose the dither algorithm to be used.\n" -"Adaptive Hybrid usually produces the best all-around quality.\n" -"Ordered is faster and produces almost as good quality on photographs.\n" -"Fast and Very Fast are considerably faster, and work well for text and line " -"art.\n" -"Hybrid Floyd-Steinberg generally produces inferior output." -msgstr "" - -#. -#. * Create the main dialog -#. -#: ../plug-ins/print/gimp_main_window.c:359 -#, c-format -msgid "%s -- Print v%s" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:368 -msgid "" -"Save\n" -"Settings" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:369 -msgid "" -"Print and\n" -"Save Settings" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:438 -msgid "" -"Position the image on the page.\n" -"Click and drag with the primary button to position the image.\n" -"Click and drag with the second button to move the image with finer " -"precision; each unit of motion moves the image one point (1/72\")\n" -"Click and drag with the third (middle) button to move the image in units of " -"the image size.\n" -"Holding down the shift key while clicking and dragging constrains the image " -"to only horizontal or vertical motion.\n" -"If you click another button while dragging the mouse, the image will return " -"to its original position." -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:481 -msgid "Auto" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:482 -msgid "Portrait" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:483 -msgid "Landscape" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:484 -msgid "Upside down" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:485 -msgid "Seascape" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:495 -msgid "" -"Select the orientation: portrait, landscape, upside down, or seascape " -"(upside down landscape)" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:514 -msgid "Distance from the left of the paper to the image" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:527 -msgid "Distance from the top of the paper to the image" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:540 -msgid "Distance from the left of the paper to the right of the image" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:550 -msgid "Right Border:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:554 -msgid "Distance from the right of the paper to the image" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:568 -msgid "Distance from the top of the paper to the bottom of the image" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:578 -msgid "Bottom Border:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:582 -msgid "Distance from the bottom of the paper to the image" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:595 -msgid "Center:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:599 -msgid "Vertically" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:604 -msgid "Center the image vertically on the paper" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:610 -msgid "Both" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:615 -msgid "Center the image on the paper" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:622 -msgid "Horizontally" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:627 -msgid "Center the image horizontally on the paper" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:643 -msgid "Setup Printer" -msgstr "" - -#. -#. * Printer driver option menu. -#. -#: ../plug-ins/print/gimp_main_window.c:672 -msgid "Printer Model:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:684 -msgid "Select your printer model" -msgstr "" - -#. -#. * PPD file. -#. -#: ../plug-ins/print/gimp_main_window.c:723 -msgid "PPD File:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:739 -msgid "Enter the PPD filename for your printer" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:742 -msgid "Browse" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:748 -msgid "Choose the PPD file for your printer" -msgstr "" - -#. -#. * Print command. -#. -#: ../plug-ins/print/gimp_main_window.c:758 -msgid "Command:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:771 -msgid "" -"Enter the command to print to your printer. Note: Please do not remove the `-" -"l' or `-oraw' from the command string, or printing will probably fail!" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:781 -msgid "Choose PPD File" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:802 -msgid "Define New Printer" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:825 -#: ../plug-ins/print/gimp_main_window.c:920 -msgid "Printer name:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:829 -msgid "Enter the name you wish to give this logical printer" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:842 -msgid "About Gimp-Print " -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:855 -msgid "Gimp-Print Version " -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:855 -msgid "" -"\n" -"\n" -"Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz,\n" -"and the rest of the Gimp-Print Development Team.\n" -"\n" -"Please visit our web site at http://gimp-print.sourceforge.net.\n" -"\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" -"\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. See the\n" -"GNU General Public License for more details.\n" -"\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, MA 02111-1307 USA\n" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:903 -msgid "Printer Settings" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:916 -msgid "" -"Select the name of the printer (not the type, or model, of printer) that you " -"wish to print to" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:926 -msgid "Printer model:" -msgstr "" - -#. -#. * Setup printer button -#. -#: ../plug-ins/print/gimp_main_window.c:937 -msgid "Setup printer..." -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:939 -msgid "" -"Choose the printer model, PPD file, and command that is used to print to " -"this printer" -msgstr "" - -#. -#. * New printer button -#. -#: ../plug-ins/print/gimp_main_window.c:954 -msgid "New printer..." -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:956 -msgid "" -"Define a new logical printer. This can be used to name a collection of " -"settings that you wish to remember for future use." -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:977 -msgid "Size of paper that you wish to print to" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:980 -msgid "Media size:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:989 -msgid "Dimensions:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1003 -msgid "Width of the paper that you wish to print to" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1020 -msgid "Height of the paper that you wish to print to" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1036 -msgid "Type of media you're printing to" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1039 -msgid "Media type:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1052 -msgid "Source (input slot) of media you're printing to" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1055 -msgid "Media source:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1068 -msgid "Type of ink in the printer" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1071 -msgid "Ink type:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1084 -msgid "Resolution and quality of the print" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1121 -msgid "Scaling:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1127 -msgid "Set the scale (size) of the image" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1152 -msgid "Scale by:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1157 -msgid "" -"Select whether scaling is measured as percent of available page size or " -"number of output dots per inch" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1162 -msgid "Percent" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1169 -msgid "Scale the print to the size of the page" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1175 -msgid "PPI" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1181 -msgid "Scale the print to the number of dots per inch" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1203 -msgid "Set the width of the print" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1216 -msgid "Set the height of the print" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1237 -msgid "Units:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1242 -msgid "Select the base unit of measurement for printing" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1245 -msgid "Inch" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1252 -msgid "Set the base unit of measurement to inches" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1258 -msgid "cm" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1264 -msgid "Set the base unit of measurement to centimetres" -msgstr "" - -#. -#. * The "image size" button -#. -#: ../plug-ins/print/gimp_main_window.c:1274 -msgid "" -"Use Original\n" -"Image Size" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1280 -msgid "Set the print size to the size of the image" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1303 -msgid "Image / Output Settings" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1317 -msgid "Image type:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1325 -msgid "Optimize the output for the type of image being printed" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1329 -msgid "Line art" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1336 -msgid "Fastest and brightest color for text and line art" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1343 -msgid "Solid colors" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1350 -msgid "Best for images dominated by regions of solid color" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1358 -msgid "Photograph" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1366 -msgid "" -"Slowest, but most accurate and smoothest color for continuous tone images " -"and photographs" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1389 -msgid "Output type:" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1396 -msgid "Select the desired output type" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1405 -msgid "Color output" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1417 -msgid "Print in shades of gray using black ink" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1424 -msgid "Black and white" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1431 -msgid "Print in black and white (no color, and no shades of gray)" -msgstr "" - -#. -#. * Color adjust button -#. -#: ../plug-ins/print/gimp_main_window.c:1442 -msgid "Adjust output..." -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1449 -msgid "" -"Adjust color balance, brightness, contrast, saturation, and dither algorithm" -msgstr "" - -#: ../plug-ins/print/gimp_main_window.c:1483 -msgid "Print to File" -msgstr "" - -#: ../plug-ins/print/print.c:164 -msgid "_Print..." -msgstr "" - -#: ../plug-ins/print/print.c:694 ../plug-ins/print/print.c:695 -#: ../plug-ins/print/print.c:785 ../plug-ins/print/print.c:1124 -msgid "File" -msgstr "" - -#: ../plug-ins/rcm/rcm.c:106 -msgid "Colormap _Rotation..." -msgstr "" - -#: ../plug-ins/rcm/rcm.c:270 -msgid "Rotating the colormap..." -msgstr "" - -#: ../plug-ins/rcm/rcm_dialog.c:119 -msgid "Original" -msgstr "" - -#: ../plug-ins/rcm/rcm_dialog.c:133 -msgid "Rotated" -msgstr "" - -#: ../plug-ins/rcm/rcm_dialog.c:147 -msgid "Continuous update" -msgstr "" - -#: ../plug-ins/rcm/rcm_dialog.c:160 -msgid "Area:" -msgstr "" - -#: ../plug-ins/rcm/rcm_dialog.c:164 -msgid "Entire Layer" -msgstr "" - -#: ../plug-ins/rcm/rcm_dialog.c:166 -msgid "Context" -msgstr "" - -#. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 -msgid "From" -msgstr "" - -#. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 -msgid "To" -msgstr "" - -#. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:506 -msgid "Gray Mode" -msgstr "" - -#. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:515 -msgid "Treat as this" -msgstr "" - -#: ../plug-ins/rcm/rcm_dialog.c:527 -msgid "Change to this" -msgstr "" - -#. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:540 -msgid "Gray Threshold" -msgstr "" - -#. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 -msgid "Units" -msgstr "" - -#. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:588 -msgid "Radians" -msgstr "" - -#: ../plug-ins/rcm/rcm_dialog.c:600 -msgid "Radians/Pi" -msgstr "" - -#: ../plug-ins/rcm/rcm_dialog.c:612 -msgid "Degrees" -msgstr "" - -#. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:645 -msgid "Colormap Rotation" -msgstr "" - -#: ../plug-ins/rcm/rcm_dialog.c:677 -msgid "Main Options" -msgstr "" - -#: ../plug-ins/rcm/rcm_dialog.c:680 -msgid "Gray Options" -msgstr "" - -#: ../plug-ins/rcm/rcm_stock.c:35 -msgid "Switch to clockwise" -msgstr "" - -#: ../plug-ins/rcm/rcm_stock.c:37 -msgid "Switch to c/clockwise" -msgstr "" - -#: ../plug-ins/rcm/rcm_stock.c:39 -msgid "Change order of arrows" -msgstr "" - -#: ../plug-ins/rcm/rcm_stock.c:41 -msgid "Select all" -msgstr "" - -#. printf("width = %d, height = %d\n",BITMAP_WIDTH(marked),BITMAP_HEIGHT(marked)); -#: ../plug-ins/sel2path/pxl-outline.c:83 -msgid "Selection to Path..." -msgstr "" - -#: ../plug-ins/sel2path/sel2path.c:185 -msgid "No selection to convert" -msgstr "" - -#: ../plug-ins/sel2path/sel2path.c:302 -msgid "Selection To Path Advanced Settings" -msgstr "" - -#: ../plug-ins/sgi/sgi.c:122 ../plug-ins/sgi/sgi.c:142 -msgid "Silicon Graphics IRIS image" -msgstr "" - -#: ../plug-ins/sgi/sgi.c:540 -#, c-format -msgid "Could not open '%s' for writing." -msgstr "" - -#: ../plug-ins/sgi/sgi.c:622 -msgid "Save as SGI" -msgstr "" - -#: ../plug-ins/sgi/sgi.c:631 -msgid "Compression type" -msgstr "" - -#: ../plug-ins/sgi/sgi.c:635 -msgid "No compression" -msgstr "" - -#: ../plug-ins/sgi/sgi.c:637 -msgid "RLE compression" -msgstr "" - -#: ../plug-ins/sgi/sgi.c:639 -msgid "" -"Aggressive RLE\n" -"(not supported by SGI)" -msgstr "" - -#: ../plug-ins/twain/twain.c:313 -msgid "TWAIN (Dump)..." -msgstr "" - -#: ../plug-ins/twain/twain.c:332 -msgid "TWAIN (Read)..." -msgstr "" - -#: ../plug-ins/twain/twain.c:352 -msgid "_TWAIN..." -msgstr "" - -#. Initialize our progress dialog -#: ../plug-ins/twain/twain.c:489 -msgid "Transferring TWAIN data..." -msgstr "" - -#: ../plug-ins/winicon/icodialog.c:89 -msgid "1 bpp, 1-bit alpha, 2-slot palette" -msgstr "" - -#: ../plug-ins/winicon/icodialog.c:90 -msgid "4 bpp, 1-bit alpha, 16-slot palette" -msgstr "" - -#: ../plug-ins/winicon/icodialog.c:91 -msgid "8 bpp, 1-bit alpha, 256-slot palette" -msgstr "" - -#: ../plug-ins/winicon/icodialog.c:92 -msgid "32 bpp, 8-bit alpha, no palette" -msgstr "" - -#: ../plug-ins/winicon/icodialog.c:117 -msgid "GIMP Windows Icon Plugin" -msgstr "" - -#: ../plug-ins/winicon/icodialog.c:138 -msgid "Icon details" -msgstr "" - -#: ../plug-ins/winicon/icoload.c:340 -#, c-format -msgid "Icon #%i" -msgstr "" - -#: ../plug-ins/winicon/icosave.c:969 -msgid "Windows icons cannot be higher or wider than 255 pixels." -msgstr "" - -#: ../plug-ins/winicon/main.c:88 ../plug-ins/winicon/main.c:107 -msgid "Microsoft Windows icon" -msgstr "" - -#: ../plug-ins/winsnap/winsnap.c:877 -msgid "Grab a single window" -msgstr "" - -#: ../plug-ins/winsnap/winsnap.c:891 -msgid "Grab the whole screen" -msgstr "" - -#: ../plug-ins/winsnap/winsnap.c:907 -msgid "after" -msgstr "" - -#: ../plug-ins/winsnap/winsnap.c:919 -msgid "Seconds delay" -msgstr "" - -#: ../plug-ins/winsnap/winsnap.c:926 -msgid "Include decorations" -msgstr "" - -#: ../plug-ins/winsnap/winsnap.c:1139 -msgid "No data captured" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:475 ../plug-ins/xjt/xjt.c:493 -msgid "GIMP compressed XJT image" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:714 -#, c-format -msgid "XJT file contains unknown layermode %d" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:751 -#, c-format -msgid "Warning: unsupported layermode %d saved to XJT" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:767 -#, c-format -msgid "XJT file contains unknown pathtype %d" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:783 -#, c-format -msgid "Warning: unsupported pathtype %d saved to XJT" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:802 -#, c-format -msgid "XJT file contains unknown unittype %d" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:823 -#, c-format -msgid "Warning: unsupported unittype %d saved to XJT" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:844 -msgid "Save as XJT" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:870 -msgid "Clear transparent" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:882 -msgid "Quality:" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:891 -msgid "Smoothing:" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:1693 ../plug-ins/xjt/xjt.c:3323 -#, c-format -msgid "Could not create working folder '%s': %s" -msgstr "" - -#: ../plug-ins/xjt/xjt.c:3189 -#, c-format -msgid "Error: Could not read XJT property file '%s'." -msgstr "" - -#: ../plug-ins/xjt/xjt.c:3195 -#, c-format -msgid "Error: XJT property file '%s' is empty." -msgstr "" diff -uraN gimp-2.2.7/po-plug-ins/sk.po gimp-2.2.8/po-plug-ins/sk.po --- gimp-2.2.7/po-plug-ins/sk.po 2005-05-08 23:42:16.000000000 +0200 +++ gimp-2.2.8/po-plug-ins/sk.po 2005-05-08 23:45:43.000000000 +0200 @@ -3,7 +3,7 @@ # Zdenko Podobný , 2004. # Marcel Telka , 2005. # -# $Id: sk.po,v 1.80.2.6 2005/04/10 00:16:14 neo Exp $ +# $Id: sk.po,v 1.80.2.7 2005/05/08 21:45:43 neo Exp $ # msgid "" msgstr "" diff -uraN gimp-2.2.7/po-plug-ins/sv.po gimp-2.2.8/po-plug-ins/sv.po --- gimp-2.2.7/po-plug-ins/sv.po 2005-05-08 23:42:18.000000000 +0200 +++ gimp-2.2.8/po-plug-ins/sv.po 2005-05-08 23:45:47.000000000 +0200 @@ -4,7 +4,7 @@ # Christian Rose , 2000, 2001, 2002. # Jan Morén , 2002, 2003. # -# $Id: sv.po,v 1.139.2.5 2005/04/10 00:16:15 neo Exp $ +# $Id: sv.po,v 1.139.2.6 2005/05/08 21:45:47 neo Exp $ # msgid "" msgstr "" diff -uraN gimp-2.2.7/po-script-fu/gimp20-script-fu.pot gimp-2.2.8/po-script-fu/gimp20-script-fu.pot --- gimp-2.2.7/po-script-fu/gimp20-script-fu.pot 2005-04-09 21:56:40.000000000 +0200 +++ gimp-2.2.8/po-script-fu/gimp20-script-fu.pot 1970-01-01 01:00:00.000000000 +0100 @@ -1,2504 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../plug-ins/script-fu/script-fu-console.c:129 -#: ../plug-ins/script-fu/script-fu-text-console.c:66 -msgid "Script-Fu console mode allows only interactive invocation" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-console.c:156 -msgid "Script-Fu Console" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-console.c:183 -msgid "SIOD Output" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-console.c:249 -msgid "Current Command" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-console.c:267 -msgid "_Browse..." -msgstr "" - -#: ../plug-ins/script-fu/script-fu-console.c:548 -msgid "Script-Fu evaluate mode allows only noninteractive invocation" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:177 -msgid "Script-Fu cannot process two scripts at the same time." -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:179 -#, c-format -msgid "You are already running the \"%s\" script." -msgstr "" - -#. strip the first part of the menupath if it contains _("/Script-Fu/") -#: ../plug-ins/script-fu/script-fu-interface.c:202 -#: ../plug-ins/script-fu/script-fu-interface.c:204 -msgid "/Script-Fu/" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:217 -#, c-format -msgid "Script-Fu: %s" -msgstr "" - -#. the script arguments frame -#: ../plug-ins/script-fu/script-fu-interface.c:254 -msgid "Script Arguments" -msgstr "" - -#. we add a colon after the label; -#. some languages want an extra space here -#: ../plug-ins/script-fu/script-fu-interface.c:285 -#, c-format -msgid "%s:" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:328 -msgid "Script-Fu Color Selection" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:431 -msgid "Script-Fu File Selection" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:435 -msgid "Script-Fu Folder Selection" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:447 -msgid "Script-Fu Font Selection" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:454 -msgid "Script-Fu Palette Selection" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:462 -msgid "Script-fu Pattern Selection" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:469 -msgid "Script-Fu Gradient Selection" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:477 -msgid "Script-Fu Brush Selection" -msgstr "" - -#. the script progress frame -#: ../plug-ins/script-fu/script-fu-interface.c:533 -msgid "Script Progress" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:541 -msgid "(none)" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:1058 -#: ../plug-ins/dbbrowser/gimpprocview.c:198 -msgid "Author:" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:1065 -#: ../plug-ins/dbbrowser/gimpprocview.c:220 -msgid "Copyright:" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:1072 -#: ../plug-ins/dbbrowser/gimpprocview.c:209 -msgid "Date:" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-interface.c:1081 -msgid "Image Types:" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-scripts.c:622 -#, c-format -msgid "" -"Error while executing\n" -"%s\n" -"%s" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-server.c:642 -msgid "Script-Fu Server Options" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-server.c:670 -msgid "Server Port:" -msgstr "" - -#: ../plug-ins/script-fu/script-fu-server.c:676 -msgid "Server Logfile:" -msgstr "" - -#: ../plug-ins/script-fu/script-fu.c:122 -msgid "Script-Fu _Console" -msgstr "" - -#: ../plug-ins/script-fu/script-fu.c:129 ../plug-ins/script-fu/script-fu.c:158 -#: ../plug-ins/script-fu/script-fu.c:290 -msgid "/Xtns/Script-Fu" -msgstr "" - -#: ../plug-ins/script-fu/script-fu.c:151 -msgid "_Start Server..." -msgstr "" - -#: ../plug-ins/script-fu/script-fu.c:282 -msgid "_Refresh Scripts" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:128 -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:142 -msgid "Procedure Browser" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:132 -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:146 -msgid "Search by _Name" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:133 -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:147 -msgid "Search by _Blurb" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:224 -msgid "_Search:" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:386 -msgid "Searching by name - please wait" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:410 -msgid "Searching by blurb - please wait" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:421 -msgid "Searching - please wait" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:428 -msgid "1 Procedure" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:430 -#, c-format -msgid "%d Procedures" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocbrowser.c:476 -msgid "No matches" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:133 -msgid "Parameters" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:146 -msgid "Return Values" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:159 -msgid "Additional Information" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:319 -msgid "Internal GIMP procedure" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:320 -msgid "GIMP Plug-In" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:321 -msgid "GIMP Extension" -msgstr "" - -#: ../plug-ins/dbbrowser/gimpprocview.c:322 -msgid "Temporary Procedure" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:1 -msgid "3D _Outline..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:2 -#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/chalk.scm.h:1 -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:1 -#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/glossy.scm.h:1 -#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:1 -msgid "/Script-Fu/Alpha to Logo" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:3 -#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/chalk.scm.h:2 -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:2 -#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/glossy.scm.h:2 -#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:1 -#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/news-text.scm.h:1 -#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:1 -#: ../plug-ins/script-fu/scripts/speed-text.scm.h:1 -#: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:1 -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/title-header.scm.h:1 -msgid "/Xtns/Script-Fu/Logos" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:4 -msgid "Bumpmap (alpha layer) blur radius" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:5 -#: ../plug-ins/script-fu/scripts/glossy.scm.h:7 -msgid "Default bumpmap settings" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:6 -#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 -#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 -#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:4 -#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:5 -#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:3 -#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:3 -#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:2 -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:11 -#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:5 -#: ../plug-ins/script-fu/scripts/chalk.scm.h:5 -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:8 -#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:5 -#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:5 -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:4 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:3 -#: ../plug-ins/script-fu/scripts/glossy.scm.h:8 -#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:5 -#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:2 -#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/news-text.scm.h:7 -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:3 -#: ../plug-ins/script-fu/scripts/slide.scm.h:2 -#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/speed-text.scm.h:5 -#: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:4 -#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:4 -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/title-header.scm.h:2 -msgid "Font" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:7 -#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 -#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 -#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:5 -#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:4 -#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:4 -#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:3 -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:12 -#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/chalk.scm.h:6 -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:9 -#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:5 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:4 -#: ../plug-ins/script-fu/scripts/glossy.scm.h:9 -#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:9 -#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:3 -#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/news-text.scm.h:8 -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:4 -#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/speed-text.scm.h:6 -#: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:5 -#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:9 -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:5 -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/title-header.scm.h:3 -msgid "Font size (pixels)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:8 -msgid "Outline blur radius" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:9 -#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:5 -#: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:3 -#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:5 -#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:5 -#: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:3 -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:13 -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:11 -msgid "Pattern" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:10 -#: ../plug-ins/script-fu/scripts/glossy.scm.h:17 -#: ../plug-ins/script-fu/scripts/round-corners.scm.h:6 -msgid "Shadow X offset" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:11 -#: ../plug-ins/script-fu/scripts/glossy.scm.h:18 -#: ../plug-ins/script-fu/scripts/round-corners.scm.h:7 -msgid "Shadow Y offset" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:12 -msgid "Shadow blur radius" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3d-outline.scm.h:13 -#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:10 -#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:10 -#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:9 -#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:7 -#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:6 -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:17 -#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:10 -#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/chalk.scm.h:7 -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:14 -#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:9 -#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:11 -#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:10 -#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:12 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:14 -#: ../plug-ins/script-fu/scripts/glossy.scm.h:19 -#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:11 -#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:7 -#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:10 -#: ../plug-ins/script-fu/scripts/news-text.scm.h:10 -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:13 -#: ../plug-ins/script-fu/scripts/slide.scm.h:5 -#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:11 -#: ../plug-ins/script-fu/scripts/speed-text.scm.h:8 -#: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:9 -#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:11 -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:8 -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:14 -#: ../plug-ins/script-fu/scripts/title-header.scm.h:5 -msgid "Text" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:1 -msgid "3_D Truchet..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:2 -#: ../plug-ins/script-fu/scripts/camo.scm.h:1 -#: ../plug-ins/script-fu/scripts/flatland.scm.h:1 -#: ../plug-ins/script-fu/scripts/land.scm.h:1 -#: ../plug-ins/script-fu/scripts/rendermap.scm.h:1 -#: ../plug-ins/script-fu/scripts/swirltile.scm.h:1 -#: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:1 -#: ../plug-ins/script-fu/scripts/truchet.scm.h:1 -msgid "/Xtns/Script-Fu/Patterns" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:3 -#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:2 -#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:2 -#: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 -#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 -#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 -#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:4 -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:4 -#: ../plug-ins/script-fu/scripts/chalk.scm.h:3 -#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:4 -#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:2 -#: ../plug-ins/script-fu/scripts/glossy.scm.h:3 -#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:3 -#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/news-text.scm.h:2 -#: ../plug-ins/script-fu/scripts/speed-text.scm.h:2 -#: ../plug-ins/script-fu/scripts/sphere.scm.h:2 -#: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/swirltile.scm.h:3 -#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/truchet.scm.h:2 -msgid "Background color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:4 -#: ../plug-ins/script-fu/scripts/truchet.scm.h:3 -msgid "Block size" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:5 -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:7 -msgid "End blend" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:6 -#: ../plug-ins/script-fu/scripts/truchet.scm.h:5 -msgid "Number of X tiles" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:7 -#: ../plug-ins/script-fu/scripts/truchet.scm.h:6 -msgid "Number of Y tiles" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:8 -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:16 -msgid "Start blend" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:9 -msgid "Supersample" -msgstr "" - -#: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:10 -#: ../plug-ins/script-fu/scripts/add-bevel.scm.h:4 -#: ../plug-ins/script-fu/scripts/truchet.scm.h:8 -msgid "Thickness" -msgstr "" - -#: ../plug-ins/script-fu/scripts/add-bevel.scm.h:1 -#: ../plug-ins/script-fu/scripts/addborder.scm.h:1 -#: ../plug-ins/script-fu/scripts/coffee.scm.h:1 -#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:1 -#: ../plug-ins/script-fu/scripts/old-photo.scm.h:1 -#: ../plug-ins/script-fu/scripts/round-corners.scm.h:1 -#: ../plug-ins/script-fu/scripts/slide.scm.h:1 -msgid "/Script-Fu/Decor" -msgstr "" - -#: ../plug-ins/script-fu/scripts/add-bevel.scm.h:2 -msgid "Add B_evel..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/add-bevel.scm.h:3 -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:12 -msgid "Keep bump layer" -msgstr "" - -#: ../plug-ins/script-fu/scripts/add-bevel.scm.h:5 -#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:10 -#: ../plug-ins/script-fu/scripts/old-photo.scm.h:6 -#: ../plug-ins/script-fu/scripts/round-corners.scm.h:8 -#: ../plug-ins/script-fu/scripts/slide.scm.h:6 -#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:6 -msgid "Work on copy" -msgstr "" - -#: ../plug-ins/script-fu/scripts/addborder.scm.h:2 -msgid "Add _Border..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/addborder.scm.h:3 -msgid "Border X size" -msgstr "" - -#: ../plug-ins/script-fu/scripts/addborder.scm.h:4 -msgid "Border Y size" -msgstr "" - -#: ../plug-ins/script-fu/scripts/addborder.scm.h:5 -msgid "Border color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/addborder.scm.h:6 -msgid "Delta value on color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:1 -#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:1 -#: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:1 -#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:1 -msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:3 -#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:2 -msgid "Down" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:4 -#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:5 -#: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:3 -#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:4 -#: ../plug-ins/script-fu/scripts/camo.scm.h:5 -#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:6 -msgid "Flatten image" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:5 -#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:6 -#: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:4 -#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:7 -#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:9 -#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:6 -msgid "Glow color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:6 -#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:3 -msgid "Left" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:7 -#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:4 -msgid "Orientation" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:8 -#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:6 -msgid "Right" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:9 -#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:7 -#: ../plug-ins/script-fu/scripts/lava.scm.h:7 -msgid "Size" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:10 -#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:8 -msgid "Up" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:11 -#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:9 -msgid "_Arrow..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:3 -msgid "Bar height" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:4 -msgid "Bar length" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:7 -#: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:5 -msgid "_Hrule..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:5 -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:6 -#: ../plug-ins/script-fu/scripts/tileblur.scm.h:6 -msgid "Radius" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:6 -#: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:5 -msgid "_Bullet..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:2 -#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:2 -msgid "B_utton..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:8 -msgid "Glow radius" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:9 -#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:6 -msgid "Padding" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 -#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:10 -#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:8 -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:18 -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:13 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:15 -#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:8 -#: ../plug-ins/script-fu/scripts/news-text.scm.h:11 -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:14 -#: ../plug-ins/script-fu/scripts/speed-text.scm.h:9 -msgid "Text color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:3 -msgid "Alien _Glow..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:7 -msgid "Glow size (pixels * 4)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:3 -msgid "Alien _Neon..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:5 -msgid "Fade away" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:9 -msgid "Number of bands" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:11 -msgid "Width of bands" -msgstr "" - -#: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:12 -msgid "Width of gaps" -msgstr "" - -#: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:8 -msgid "_Basic I..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:3 -msgid "B_asic II..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:1 -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:1 -msgid "/Xtns/Script-Fu/Buttons" -msgstr "" - -#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:2 -#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:6 -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:2 -msgid "Bevel width" -msgstr "" - -#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:5 -msgid "Lower-right color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:7 -#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:6 -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:11 -msgid "Pressed" -msgstr "" - -#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:8 -msgid "Simple _Beveled Button..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/beveled-button.scm.h:11 -msgid "Upper-left color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:1 -#: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:1 -#: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:1 -#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:1 -#: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:1 -msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern" -msgstr "" - -#: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:2 -msgid "Diameter" -msgstr "" - -#: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 -#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 -#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -msgid "Transparent background" -msgstr "" - -#: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 -msgid "H_eading..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:2 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:5 -#: ../plug-ins/script-fu/scripts/gradient-example.scm.h:4 -#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:4 -#: ../plug-ins/script-fu/scripts/swirltile.scm.h:7 -msgid "Height" -msgstr "" - -#: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:4 -#: ../plug-ins/script-fu/scripts/gradient-example.scm.h:5 -#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:8 -#: ../plug-ins/script-fu/scripts/swirltile.scm.h:11 -msgid "Width" -msgstr "" - -#: ../plug-ins/script-fu/scripts/blend-anim.scm.h:1 -#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:1 -#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:1 -#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:1 -#: ../plug-ins/script-fu/scripts/waves-anim.scm.h:1 -msgid "/Script-Fu/Animators" -msgstr "" - -#: ../plug-ins/script-fu/scripts/blend-anim.scm.h:2 -msgid "Intermediate frames" -msgstr "" - -#: ../plug-ins/script-fu/scripts/blend-anim.scm.h:3 -msgid "Looped" -msgstr "" - -#: ../plug-ins/script-fu/scripts/blend-anim.scm.h:4 -msgid "Max. blur radius" -msgstr "" - -#: ../plug-ins/script-fu/scripts/blend-anim.scm.h:5 -msgid "_Blend..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:4 -msgid "Blen_ded..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:5 -msgid "Blend mode" -msgstr "" - -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:6 -msgid "Custom Gradient" -msgstr "" - -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:8 -msgid "FG-BG-HSV" -msgstr "" - -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:9 -msgid "FG-BG-RGB" -msgstr "" - -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:10 -msgid "FG-Transparent" -msgstr "" - -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:13 -#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/land.scm.h:3 -#: ../plug-ins/script-fu/scripts/lava.scm.h:2 -#: ../plug-ins/script-fu/scripts/rendermap.scm.h:4 -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:10 -msgid "Gradient" -msgstr "" - -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:14 -#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:9 -#: ../plug-ins/script-fu/scripts/gradient-example.scm.h:3 -#: ../plug-ins/script-fu/scripts/rendermap.scm.h:5 -#: ../plug-ins/script-fu/scripts/title-header.scm.h:4 -msgid "Gradient reverse" -msgstr "" - -#: ../plug-ins/script-fu/scripts/blended-logo.scm.h:15 -msgid "Offset (pixels)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:3 -msgid "Background Color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:5 -msgid "Bo_vination..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:8 -msgid "Spots density X" -msgstr "" - -#: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:9 -msgid "Spots density Y" -msgstr "" - -#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:2 -msgid "Add glowing" -msgstr "" - -#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:3 -msgid "After glow" -msgstr "" - -#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:4 -msgid "B_urn-In..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:5 -msgid "Burn-In: Need two layers in total!" -msgstr "" - -#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:6 -msgid "Corona width" -msgstr "" - -#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:7 -msgid "Fadeout" -msgstr "" - -#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:8 -msgid "Fadeout width" -msgstr "" - -#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:10 -msgid "Prepare for GIF" -msgstr "" - -#: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:11 -msgid "Speed (pixels/frame)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/camo.scm.h:2 -msgid "Color 1" -msgstr "" - -#: ../plug-ins/script-fu/scripts/camo.scm.h:3 -msgid "Color 2" -msgstr "" - -#: ../plug-ins/script-fu/scripts/camo.scm.h:4 -msgid "Color 3" -msgstr "" - -#: ../plug-ins/script-fu/scripts/camo.scm.h:6 -#: ../plug-ins/script-fu/scripts/rendermap.scm.h:6 -msgid "Granularity" -msgstr "" - -#: ../plug-ins/script-fu/scripts/camo.scm.h:7 -#: ../plug-ins/script-fu/scripts/rendermap.scm.h:7 -msgid "Image size" -msgstr "" - -#: ../plug-ins/script-fu/scripts/camo.scm.h:8 -#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:3 -msgid "Smooth" -msgstr "" - -#: ../plug-ins/script-fu/scripts/camo.scm.h:9 -msgid "_Camouflage..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/carve-it.scm.h:1 -#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:1 -msgid "/Script-Fu/Stencil Ops" -msgstr "" - -#: ../plug-ins/script-fu/scripts/carve-it.scm.h:2 -msgid "C_arve-It..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/carve-it.scm.h:3 -msgid "Carve white areas" -msgstr "" - -#: ../plug-ins/script-fu/scripts/carve-it.scm.h:4 -msgid "Image to carve" -msgstr "" - -#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:2 -msgid "Background Image" -msgstr "" - -#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:3 -msgid "Carve raised text" -msgstr "" - -#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:4 -msgid "Carved..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/carved-logo.scm.h:7 -msgid "Padding around text" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chalk.scm.h:4 -msgid "Chalk color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chalk.scm.h:8 -msgid "_Chalk..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:3 -msgid "Blur amount" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:4 -msgid "Chip Awa_y..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:5 -msgid "Chip amount" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:6 -msgid "Drop shadow" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:7 -msgid "Fill BG with pattern" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:10 -msgid "Invert" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chip-away.scm.h:11 -msgid "Keep background" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:2 -msgid "C_hrome-It..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:3 -#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:2 -msgid "Chrome balance" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:4 -#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:3 -#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:3 -msgid "Chrome factor" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:5 -#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:4 -msgid "Chrome lightness" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:6 -#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:5 -msgid "Chrome saturation" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:7 -msgid "Chrome white areas" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:8 -#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:5 -#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:6 -msgid "Environment map" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chrome-it.scm.h:9 -#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:9 -msgid "Highlight balance" -msgstr "" - -#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:5 -msgid "C_hrome..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:8 -msgid "Offsets (pixels * 2)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/circuit.scm.h:1 -#: ../plug-ins/script-fu/scripts/grid-system.scm.h:1 -#: ../plug-ins/script-fu/scripts/lava.scm.h:1 -#: ../plug-ins/script-fu/scripts/line-nova.scm.h:1 -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:1 -msgid "/Script-Fu/Render" -msgstr "" - -#: ../plug-ins/script-fu/scripts/circuit.scm.h:2 -msgid "Circuit seed" -msgstr "" - -#: ../plug-ins/script-fu/scripts/circuit.scm.h:3 -#: ../plug-ins/script-fu/scripts/lava.scm.h:3 -#: ../plug-ins/script-fu/scripts/predator.scm.h:3 -#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:11 -msgid "Keep selection" -msgstr "" - -#: ../plug-ins/script-fu/scripts/circuit.scm.h:4 -msgid "No background (only for separate layer)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/circuit.scm.h:5 -msgid "Oilify mask size" -msgstr "" - -#: ../plug-ins/script-fu/scripts/circuit.scm.h:6 -#: ../plug-ins/script-fu/scripts/lava.scm.h:6 -#: ../plug-ins/script-fu/scripts/predator.scm.h:6 -msgid "Separate layer" -msgstr "" - -#: ../plug-ins/script-fu/scripts/circuit.scm.h:7 -msgid "_Circuit..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/clothify.scm.h:1 -#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:1 -#: ../plug-ins/script-fu/scripts/predator.scm.h:1 -#: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:1 -#: ../plug-ins/script-fu/scripts/weave.scm.h:1 -msgid "/Script-Fu/Alchemy" -msgstr "" - -#: ../plug-ins/script-fu/scripts/clothify.scm.h:2 -#: ../plug-ins/script-fu/scripts/swirltile.scm.h:2 -msgid "Azimuth" -msgstr "" - -#: ../plug-ins/script-fu/scripts/clothify.scm.h:3 -msgid "Blur X" -msgstr "" - -#: ../plug-ins/script-fu/scripts/clothify.scm.h:4 -msgid "Blur Y" -msgstr "" - -#: ../plug-ins/script-fu/scripts/clothify.scm.h:5 -#: ../plug-ins/script-fu/scripts/swirltile.scm.h:5 -msgid "Depth" -msgstr "" - -#: ../plug-ins/script-fu/scripts/clothify.scm.h:6 -#: ../plug-ins/script-fu/scripts/swirltile.scm.h:6 -msgid "Elevation" -msgstr "" - -#: ../plug-ins/script-fu/scripts/clothify.scm.h:7 -msgid "_Clothify..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/coffee.scm.h:2 -msgid "" -"Darken only\n" -"(Better, but only for images with alot of white)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/coffee.scm.h:3 -msgid "Stains" -msgstr "" - -#: ../plug-ins/script-fu/scripts/coffee.scm.h:4 -msgid "_Coffee Stain..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:4 -msgid "Comic Boo_k..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:9 -msgid "Outline color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/comic-logo.scm.h:10 -#: ../plug-ins/script-fu/scripts/glossy.scm.h:12 -msgid "Outline size" -msgstr "" - -#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:4 -msgid "Cool _Metal..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:5 -#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:4 -msgid "Effect size (pixels)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:2 -msgid "Background image" -msgstr "" - -#: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:4 -msgid "Crystal..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:1 -#: ../plug-ins/script-fu/scripts/fade-outline.scm.h:1 -#: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:1 -#: ../plug-ins/script-fu/scripts/select-to-image.scm.h:1 -#: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:1 -msgid "/Script-Fu/Selection" -msgstr "" - -#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:2 -msgid "Granularity (1 is low)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:4 -msgid "Smooth horizontally" -msgstr "" - -#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:5 -msgid "Smooth vertically" -msgstr "" - -#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:6 -msgid "Spread" -msgstr "" - -#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:7 -msgid "Threshold (bigger 1<-->255 smaller)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/distress-selection.scm.h:8 -msgid "_Distress Selection..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:1 -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:1 -#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:1 -msgid "/Script-Fu/Shadow" -msgstr "" - -#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:2 -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:2 -msgid "Allow resizing" -msgstr "" - -#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:3 -#: ../plug-ins/script-fu/scripts/news-text.scm.h:3 -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:4 -#: ../plug-ins/script-fu/scripts/round-corners.scm.h:4 -#: ../plug-ins/script-fu/scripts/swirltile.scm.h:4 -msgid "Blur radius" -msgstr "" - -#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:4 -#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:5 -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:5 -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:5 -msgid "Color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:5 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:8 -msgid "Offset X" -msgstr "" - -#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:6 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:9 -msgid "Offset Y" -msgstr "" - -#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:7 -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:10 -msgid "Opacity" -msgstr "" - -#: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:8 -msgid "_Drop-Shadow..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:2 -msgid "Columns" -msgstr "" - -#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:3 -msgid "Erase" -msgstr "" - -#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:4 -msgid "Erase/fill" -msgstr "" - -#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:5 -msgid "Even" -msgstr "" - -#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:6 -msgid "Even/odd" -msgstr "" - -#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:7 -msgid "Fill with BG" -msgstr "" - -#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:8 -msgid "Odd" -msgstr "" - -#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:9 -msgid "Rows" -msgstr "" - -#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:10 -msgid "Rows/cols" -msgstr "" - -#: ../plug-ins/script-fu/scripts/erase-rows.scm.h:11 -msgid "_Erase every other Row..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/fade-outline.scm.h:2 -msgid "Apply generated layermask" -msgstr "" - -#: ../plug-ins/script-fu/scripts/fade-outline.scm.h:3 -#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:4 -#: ../plug-ins/script-fu/scripts/old-photo.scm.h:2 -msgid "Border size" -msgstr "" - -#: ../plug-ins/script-fu/scripts/fade-outline.scm.h:4 -msgid "Clear unselected maskarea" -msgstr "" - -#: ../plug-ins/script-fu/scripts/fade-outline.scm.h:6 -#, no-c-format -msgid "Fade from %" -msgstr "" - -#: ../plug-ins/script-fu/scripts/fade-outline.scm.h:8 -#, no-c-format -msgid "Fade to %" -msgstr "" - -#: ../plug-ins/script-fu/scripts/fade-outline.scm.h:9 -msgid "Use growing selection" -msgstr "" - -#: ../plug-ins/script-fu/scripts/fade-outline.scm.h:10 -msgid "_Fade Outline..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/flatland.scm.h:2 -#: ../plug-ins/script-fu/scripts/land.scm.h:2 -msgid "Detail level" -msgstr "" - -#: ../plug-ins/script-fu/scripts/flatland.scm.h:3 -#: ../plug-ins/script-fu/scripts/land.scm.h:4 -msgid "Image height" -msgstr "" - -#: ../plug-ins/script-fu/scripts/flatland.scm.h:4 -#: ../plug-ins/script-fu/scripts/land.scm.h:5 -msgid "Image width" -msgstr "" - -#: ../plug-ins/script-fu/scripts/flatland.scm.h:5 -#: ../plug-ins/script-fu/scripts/land.scm.h:7 -msgid "Random seed" -msgstr "" - -#: ../plug-ins/script-fu/scripts/flatland.scm.h:6 -#: ../plug-ins/script-fu/scripts/land.scm.h:8 -msgid "Scale X" -msgstr "" - -#: ../plug-ins/script-fu/scripts/flatland.scm.h:7 -#: ../plug-ins/script-fu/scripts/land.scm.h:9 -msgid "Scale Y" -msgstr "" - -#: ../plug-ins/script-fu/scripts/flatland.scm.h:8 -msgid "_Flatland..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/font-map.scm.h:1 -#: ../plug-ins/script-fu/scripts/gradient-example.scm.h:1 -msgid "/Xtns/Script-Fu/Utils" -msgstr "" - -#: ../plug-ins/script-fu/scripts/font-map.scm.h:2 -msgid "Active colors" -msgstr "" - -#: ../plug-ins/script-fu/scripts/font-map.scm.h:3 -msgid "Black on white" -msgstr "" - -#: ../plug-ins/script-fu/scripts/font-map.scm.h:4 -msgid "Font _size (pixels)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/font-map.scm.h:5 -msgid "Use font _name as text" -msgstr "" - -#: ../plug-ins/script-fu/scripts/font-map.scm.h:6 -msgid "_Border (pixels)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/font-map.scm.h:7 -msgid "_Color scheme" -msgstr "" - -#: ../plug-ins/script-fu/scripts/font-map.scm.h:8 -msgid "_Filter (regexp)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/font-map.scm.h:9 -msgid "_Font Map..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/font-map.scm.h:10 -msgid "_Labels" -msgstr "" - -#: ../plug-ins/script-fu/scripts/font-map.scm.h:11 -msgid "_Text" -msgstr "" - -#: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:8 -msgid "_Frosty..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:2 -msgid "Add shadow" -msgstr "" - -#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:3 -msgid "Blur border" -msgstr "" - -#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:7 -msgid "Granularity (1 is Low)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:9 -#, no-c-format -msgid "Shadow weight (%)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:11 -msgid "_Fuzzy Border..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:1 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:1 -msgid "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org" -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:2 -msgid "Autocrop" -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:3 -msgid "Dark color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:6 -#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:9 -msgid "Highlight color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:7 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:6 -msgid "Index image" -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:8 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:7 -msgid "Number of colors" -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:9 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:10 -msgid "Remove background" -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:10 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:11 -msgid "Select-by-color threshold" -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:11 -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:12 -msgid "Shadow color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:14 -msgid "_Big Header..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:15 -msgid "_Small Header..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:13 -msgid "T_ube Sub-Button Label..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:16 -msgid "Tub_e Sub-Sub-Button Label..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:17 -msgid "_General Tube Labels..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:18 -msgid "_Tube Button Label..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:4 -msgid "Blend gradient (Text)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:5 -msgid "Blend gradient (outline)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:6 -msgid "Blend gradient (text)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:10 -msgid "Glo_ssy..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:11 -msgid "Outline gradient reverse" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:13 -msgid "Pattern (outline)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:14 -msgid "Pattern (overlay)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:15 -msgid "Pattern (text)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:16 -#: ../plug-ins/script-fu/scripts/sphere.scm.h:5 -msgid "Shadow" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:20 -msgid "Text gradient reverse" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:21 -msgid "Use pattern for outline instead of gradient" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:22 -msgid "Use pattern for text instead of gradient" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glossy.scm.h:23 -msgid "Use pattern overlay" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:4 -msgid "Effect size (pixels * 3)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:7 -msgid "Glo_wing Hot..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:4 -msgid "Bevel height (Sharpness)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:5 -msgid "Bevel height (sharpness)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:7 -#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:5 -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:4 -msgid "Border size (pixels)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:10 -msgid "Gradient Beve_l..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/gradient-example.scm.h:2 -msgid "Custom _Gradient..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/grid-system.scm.h:2 -msgid "X divisions" -msgstr "" - -#: ../plug-ins/script-fu/scripts/grid-system.scm.h:3 -msgid "Y divisions" -msgstr "" - -#: ../plug-ins/script-fu/scripts/grid-system.scm.h:4 -msgid "_Grid..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/guides-from-selection.scm.h:1 -msgid "Creates four Guides around the bounding box of the current selection." -msgstr "" - -#: ../plug-ins/script-fu/scripts/guides-from-selection.scm.h:2 -msgid "New Guides from _Selection" -msgstr "" - -#: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:1 -#: ../plug-ins/script-fu/scripts/guides-new.scm.h:1 -msgid "Direction" -msgstr "" - -#: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:2 -#: ../plug-ins/script-fu/scripts/guides-new.scm.h:2 -msgid "Horizontal" -msgstr "" - -#: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:3 -msgid "New Guide (by _Percent)..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:5 -#, no-c-format -msgid "Position (in %)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:6 -#: ../plug-ins/script-fu/scripts/guides-new.scm.h:4 -msgid "Vertical" -msgstr "" - -#: ../plug-ins/script-fu/scripts/guides-new.scm.h:3 -msgid "New _Guide..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/guides-remove-all.scm.h:1 -msgid "_Remove all Guides" -msgstr "" - -#: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:1 -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:1 -msgid "/Script-Fu/Utils" -msgstr "" - -#: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:2 -msgid "BG opacity" -msgstr "" - -#: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:3 -msgid "Draw _HSV Graph..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:4 -msgid "End X" -msgstr "" - -#: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:5 -msgid "End Y" -msgstr "" - -#: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:6 -msgid "From top-left to bottom-right" -msgstr "" - -#: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:7 -msgid "Graph scale" -msgstr "" - -#: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:8 -msgid "Start X" -msgstr "" - -#: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:9 -msgid "Start Y" -msgstr "" - -#: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:10 -msgid "Use selection bounds instead of belows" -msgstr "" - -#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:4 -msgid "Frame color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:5 -msgid "Frame size" -msgstr "" - -#: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:6 -msgid "Imigre-26..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:2 -msgid "Apply layer mask (or discard)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:4 -msgid "Create new image" -msgstr "" - -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:5 -msgid "Insert layer names" -msgstr "" - -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:6 -msgid "Make new background" -msgstr "" - -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:7 -msgid "Outer border" -msgstr "" - -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:8 -msgid "Pad color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:9 -msgid "Pad opacity" -msgstr "" - -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:10 -msgid "Padding for transparent regions" -msgstr "" - -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:11 -msgid "Shear length" -msgstr "" - -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:12 -msgid "Show Image _Structure..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/image-structure.scm.h:13 -msgid "Space between layers" -msgstr "" - -#: ../plug-ins/script-fu/scripts/land.scm.h:6 -msgid "Land height" -msgstr "" - -#: ../plug-ins/script-fu/scripts/land.scm.h:10 -msgid "Sea depth" -msgstr "" - -#: ../plug-ins/script-fu/scripts/land.scm.h:11 -msgid "_Land..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/lava.scm.h:4 -#: ../plug-ins/script-fu/scripts/swirltile.scm.h:8 -msgid "Roughness" -msgstr "" - -#: ../plug-ins/script-fu/scripts/lava.scm.h:5 -msgid "Seed" -msgstr "" - -#: ../plug-ins/script-fu/scripts/lava.scm.h:8 -msgid "Use current gradient" -msgstr "" - -#: ../plug-ins/script-fu/scripts/lava.scm.h:9 -msgid "_Lava..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/line-nova.scm.h:2 -msgid "Line _Nova..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/line-nova.scm.h:3 -msgid "Number of lines" -msgstr "" - -#: ../plug-ins/script-fu/scripts/line-nova.scm.h:4 -msgid "Offset radius" -msgstr "" - -#: ../plug-ins/script-fu/scripts/line-nova.scm.h:5 -msgid "Randomness" -msgstr "" - -#: ../plug-ins/script-fu/scripts/line-nova.scm.h:6 -msgid "Sharpness (degrees)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:1 -msgid "/Xtns/Script-Fu/Make Brush" -msgstr "" - -#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:2 -msgid "Elli_ptical, Feathered..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:3 -msgid "Feathering" -msgstr "" - -#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:5 -msgid "Name" -msgstr "" - -#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:6 -msgid "Re_ctangular, Feathered..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:7 -#: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:4 -msgid "Spacing" -msgstr "" - -#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:9 -msgid "_Elliptical..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/mkbrush.scm.h:10 -msgid "_Rectangular..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:4 -msgid "Create shadow" -msgstr "" - -#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:5 -msgid "Effect size (pixels * 5)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/neon-logo.scm.h:9 -msgid "N_eon..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/news-text.scm.h:4 -msgid "Cell size (pixels)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/news-text.scm.h:6 -#: ../plug-ins/script-fu/scripts/speed-text.scm.h:4 -#, no-c-format -msgid "Density (%)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/news-text.scm.h:9 -msgid "Newsprint Text..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/old-photo.scm.h:3 -msgid "Defocus" -msgstr "" - -#: ../plug-ins/script-fu/scripts/old-photo.scm.h:4 -msgid "Mottle" -msgstr "" - -#: ../plug-ins/script-fu/scripts/old-photo.scm.h:5 -msgid "Sepia" -msgstr "" - -#: ../plug-ins/script-fu/scripts/old-photo.scm.h:7 -msgid "_Old Photo..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:3 -msgid "Angle" -msgstr "" - -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:6 -msgid "Cubic" -msgstr "" - -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:7 -msgid "Interpolation" -msgstr "" - -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:8 -msgid "Linear" -msgstr "" - -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:9 -msgid "None" -msgstr "" - -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:11 -msgid "Relative distance of horizon" -msgstr "" - -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:12 -msgid "Relative length of shadow" -msgstr "" - -#: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:13 -msgid "_Perspective..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/predator.scm.h:2 -msgid "Edge amount" -msgstr "" - -#: ../plug-ins/script-fu/scripts/predator.scm.h:4 -msgid "Pixel amount" -msgstr "" - -#: ../plug-ins/script-fu/scripts/predator.scm.h:5 -msgid "Pixelize" -msgstr "" - -#: ../plug-ins/script-fu/scripts/predator.scm.h:7 -msgid "_Predator..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:5 -msgid "Lower color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:6 -msgid "Lower color (active)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:7 -msgid "Not pressed" -msgstr "" - -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:8 -msgid "Not pressed (active)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:9 -msgid "Padding X" -msgstr "" - -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:10 -msgid "Padding Y" -msgstr "" - -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:12 -msgid "Round ratio" -msgstr "" - -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:15 -msgid "Text color (active)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:16 -msgid "Upper color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:17 -msgid "Upper color (active)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/pupi-button.scm.h:18 -msgid "_Round Button..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/rendermap.scm.h:2 -msgid "Behaviour" -msgstr "" - -#: ../plug-ins/script-fu/scripts/rendermap.scm.h:3 -msgid "Detail in Middle" -msgstr "" - -#: ../plug-ins/script-fu/scripts/rendermap.scm.h:8 -msgid "Render _Map..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/rendermap.scm.h:9 -msgid "Tile" -msgstr "" - -#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:2 -msgid "Black" -msgstr "" - -#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:3 -msgid "Edge behaviour" -msgstr "" - -#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:4 -#: ../plug-ins/script-fu/scripts/waves-anim.scm.h:4 -msgid "Number of frames" -msgstr "" - -#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:5 -msgid "Rippling strength" -msgstr "" - -#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:6 -msgid "Smear" -msgstr "" - -#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:7 -msgid "Wrap" -msgstr "" - -#: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:8 -msgid "_Rippling..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/round-corners.scm.h:2 -msgid "Add background" -msgstr "" - -#: ../plug-ins/script-fu/scripts/round-corners.scm.h:3 -msgid "Add drop-shadow" -msgstr "" - -#: ../plug-ins/script-fu/scripts/round-corners.scm.h:5 -msgid "Edge radius" -msgstr "" - -#: ../plug-ins/script-fu/scripts/round-corners.scm.h:9 -msgid "_Round Corners..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:2 -msgid "Brush name" -msgstr "" - -#: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -msgid "File name" -msgstr "" - -#: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:5 -msgid "To _Brush..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/select-to-image.scm.h:2 -msgid "To _Image" -msgstr "" - -#: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 -msgid "Filename" -msgstr "" - -#: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 -msgid "Pattern name" -msgstr "" - -#: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:4 -msgid "To _Pattern..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/selection-round.scm.h:1 -msgid "Concave" -msgstr "" - -#: ../plug-ins/script-fu/scripts/selection-round.scm.h:3 -#, no-c-format -msgid "Radius (%)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/selection-round.scm.h:4 -msgid "Rounded R_ectangle..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/slide.scm.h:3 -msgid "Font color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/slide.scm.h:4 -msgid "Number" -msgstr "" - -#: ../plug-ins/script-fu/scripts/slide.scm.h:7 -msgid "_Slide..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:10 -msgid "SOTA Chrome..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/speed-text.scm.h:7 -msgid "Speed Text..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/sphere.scm.h:1 -msgid "/Xtns/Script-Fu/Misc" -msgstr "" - -#: ../plug-ins/script-fu/scripts/sphere.scm.h:3 -msgid "Lighting (degrees)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/sphere.scm.h:4 -msgid "Radius (pixels)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/sphere.scm.h:6 -msgid "Sphere color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/sphere.scm.h:7 -msgid "_Sphere..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:2 -msgid "Frames" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:3 -msgid "Index to n colors (0 = remain RGB)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:5 -msgid "Turn from left to right" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:7 -msgid "_Spinning Globe..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:2 -msgid "Airbrush" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:3 -msgid "Brush" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:4 -msgid "Circle" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:6 -msgid "Color method" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:7 -msgid "" -"Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://" -"netword.com/*spyrogimp" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:8 -msgid "Epitrochoid" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:9 -msgid "Frame" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:11 -msgid "Gradient: Loop Sawtooth" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:12 -msgid "Gradient: Loop Triangle" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:13 -msgid "Hexagon" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:14 -msgid "Hole ratio" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:15 -msgid "Inner teeth" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:16 -msgid "Lissajous" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:17 -msgid "Margin (pixels)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:18 -msgid "Outer teeth" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:19 -msgid "Pencil" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:20 -msgid "Pentagon" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:21 -msgid "Polygon: 10 sides" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:22 -msgid "Polygon: 7 sides" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:23 -msgid "Polygon: 8 sides" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:24 -msgid "Polygon: 9 sides" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:25 -msgid "Shape" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:26 -msgid "Solid Color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:27 -msgid "Spyrograph" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:28 -msgid "Square" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:29 -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:7 -msgid "Start angle" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:30 -msgid "Tool" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:31 -msgid "Triangle" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:32 -msgid "Type" -msgstr "" - -#: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:33 -msgid "_Spyrogimp..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:4 -msgid "Burst color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:5 -msgid "Effect size (pixels * 30)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:8 -msgid "Starb_urst..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:3 -msgid "Effect size (pixels * 4)" -msgstr "" - -#: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:7 -msgid "Sta_rscape..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/swirltile.scm.h:9 -msgid "Swirl-_Tile..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/swirltile.scm.h:10 -msgid "Whirl amount" -msgstr "" - -#: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:2 -msgid "Number of times to whirl" -msgstr "" - -#: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:3 -msgid "Quarter size" -msgstr "" - -#: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:4 -msgid "Whirl angle" -msgstr "" - -#: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:5 -msgid "_Swirly..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:4 -msgid "Base color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:6 -msgid "Edge only" -msgstr "" - -#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:7 -msgid "Edge width" -msgstr "" - -#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:10 -msgid "Hit rate" -msgstr "" - -#: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:12 -msgid "_Particle Trace..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:2 -msgid "Antialias" -msgstr "" - -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:3 -msgid "Fill angle" -msgstr "" - -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:9 -msgid "Text Circle..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:5 -msgid "Ending blend" -msgstr "" - -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:8 -msgid "Hexagons" -msgstr "" - -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:9 -msgid "Mosaic tile type" -msgstr "" - -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:10 -msgid "Octagons" -msgstr "" - -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:12 -msgid "Squares" -msgstr "" - -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:13 -msgid "Starting blend" -msgstr "" - -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:15 -msgid "Text pattern" -msgstr "" - -#: ../plug-ins/script-fu/scripts/textured-logo.scm.h:16 -msgid "_Textured..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/tileblur.scm.h:1 -msgid "Blur horizontally" -msgstr "" - -#: ../plug-ins/script-fu/scripts/tileblur.scm.h:2 -msgid "Blur type" -msgstr "" - -#: ../plug-ins/script-fu/scripts/tileblur.scm.h:3 -msgid "Blur vertically" -msgstr "" - -#: ../plug-ins/script-fu/scripts/tileblur.scm.h:4 -msgid "IIR" -msgstr "" - -#: ../plug-ins/script-fu/scripts/tileblur.scm.h:5 -msgid "RLE" -msgstr "" - -#: ../plug-ins/script-fu/scripts/tileblur.scm.h:7 -msgid "_Tileable Blur..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/title-header.scm.h:6 -msgid "Web Title Header..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/truchet.scm.h:4 -msgid "Foreground color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/truchet.scm.h:7 -msgid "T_ruchet..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:2 -msgid "Mask opacity" -msgstr "" - -#: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:3 -msgid "Mask size" -msgstr "" - -#: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:4 -msgid "_Unsharp Mask..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/waves-anim.scm.h:2 -msgid "Amplitude" -msgstr "" - -#: ../plug-ins/script-fu/scripts/waves-anim.scm.h:3 -msgid "Invert direction" -msgstr "" - -#: ../plug-ins/script-fu/scripts/waves-anim.scm.h:5 -msgid "Wavelength" -msgstr "" - -#: ../plug-ins/script-fu/scripts/waves-anim.scm.h:6 -msgid "_Waves..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/weave.scm.h:2 -msgid "Ribbon spacing" -msgstr "" - -#: ../plug-ins/script-fu/scripts/weave.scm.h:3 -msgid "Ribbon width" -msgstr "" - -#: ../plug-ins/script-fu/scripts/weave.scm.h:4 -msgid "Shadow darkness" -msgstr "" - -#: ../plug-ins/script-fu/scripts/weave.scm.h:5 -msgid "Shadow depth" -msgstr "" - -#: ../plug-ins/script-fu/scripts/weave.scm.h:6 -msgid "Thread density" -msgstr "" - -#: ../plug-ins/script-fu/scripts/weave.scm.h:7 -msgid "Thread intensity" -msgstr "" - -#: ../plug-ins/script-fu/scripts/weave.scm.h:8 -msgid "Thread length" -msgstr "" - -#: ../plug-ins/script-fu/scripts/weave.scm.h:9 -msgid "_Weave..." -msgstr "" - -#: ../plug-ins/script-fu/scripts/web-browser.scm.h:1 -msgid "/Help/The GIMP Online" -msgstr "" - -#: ../plug-ins/script-fu/scripts/web-browser.scm.h:2 -msgid "Plug-in _Registry" -msgstr "" - -#: ../plug-ins/script-fu/scripts/web-browser.scm.h:3 -msgid "_Developer Web Site" -msgstr "" - -#: ../plug-ins/script-fu/scripts/web-browser.scm.h:4 -msgid "_Main Web Site" -msgstr "" - -#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:2 -msgid "Drop shadow X offset" -msgstr "" - -#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:3 -msgid "Drop shadow Y offset" -msgstr "" - -#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:4 -msgid "Drop shadow blur radius" -msgstr "" - -#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:5 -msgid "Drop shadow color" -msgstr "" - -#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:6 -msgid "Drop shadow opacity" -msgstr "" - -#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:7 -msgid "Highlight X offset" -msgstr "" - -#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:8 -msgid "Highlight Y offset" -msgstr "" - -#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:10 -msgid "Highlight opacity" -msgstr "" - -#: ../plug-ins/script-fu/scripts/xach-effect.scm.h:12 -msgid "_Xach-Effect..." -msgstr "" diff -uraN gimp-2.2.7/tools/pdbgen/pdb/plug_in.pdb gimp-2.2.8/tools/pdbgen/pdb/plug_in.pdb --- gimp-2.2.7/tools/pdbgen/pdb/plug_in.pdb 2005-04-07 12:54:36.000000000 +0200 +++ gimp-2.2.8/tools/pdbgen/pdb/plug_in.pdb 2005-05-13 18:01:42.000000000 +0200 @@ -36,23 +36,23 @@ @outargs = ( { name => 'menu_path', type => 'stringarray', desc => 'The menu path of the plugin', - alias => 'menu_strs' }, + alias => 'menu_strs', init => 1 }, { name => 'plugin_accelerator', type => 'stringarray', desc => 'String representing keyboard accelerator (could be empty string)', - alias => 'accel_strs' }, + alias => 'accel_strs', init => 1 }, { name => 'plugin_location', type => 'stringarray', desc => 'Location of the plugin program', - alias => 'prog_strs' }, + alias => 'prog_strs', init => 1 }, { name => 'plugin_image_type', type => 'stringarray', desc => 'Type of image that this plugin will work on', - alias => 'types_strs' }, + alias => 'types_strs', init => 1 }, { name => 'plugin_install_time', type => 'int32array', desc => 'Time that the plugin was installed', - alias => 'time_ints' }, + alias => 'time_ints', init => 1 }, { name => 'plugin_real_name', type => 'stringarray', desc => 'The internal name of the plugin', - alias => 'realname_strs' } + alias => 'realname_strs', init => 1 } ); foreach (@outargs) { @@ -69,87 +69,88 @@ 'regex_t sregex' ], code => <<'CODE' { - if (search_str && strlen (search_str)) - regcomp (&sregex, search_str, REG_ICASE); - else + if (search_str && ! strlen (search_str)) search_str = NULL; - /* count number of plugin entries, then allocate arrays of correct size - * where we can store the strings. - */ - - for (list = gimp->plug_in_proc_defs; list; list = g_slist_next (list)) + if (! (search_str && regcomp (&sregex, search_str, REG_ICASE))) { - PlugInProcDef *proc_def = list->data; + /* count number of plugin entries, then allocate arrays of correct size + * where we can store the strings. + */ - if (proc_def->prog && proc_def->menu_paths) - { - gchar *name; + for (list = gimp->plug_in_proc_defs; list; list = g_slist_next (list)) + { + PlugInProcDef *proc_def = list->data; - if (proc_def->menu_label) - { - name = proc_def->menu_label; - } - else - { - name = strrchr (proc_def->menu_paths->data, '/'); + if (proc_def->prog && proc_def->menu_paths) + { + gchar *name; - if (name) - name = name + 1; + if (proc_def->menu_label) + { + name = proc_def->menu_label; + } else - name = proc_def->menu_paths->data; - } + { + name = strrchr (proc_def->menu_paths->data, '/'); - name = gimp_strip_uline (name); + if (name) + name = name + 1; + else + name = proc_def->menu_paths->data; + } - if (! search_str || ! match_strings (&sregex, name)) - { - num_plugins++; - matched = g_slist_prepend (matched, proc_def); - } + name = gimp_strip_uline (name); - g_free (name); - } - } + if (! search_str || ! match_strings (&sregex, name)) + { + num_plugins++; + matched = g_slist_prepend (matched, proc_def); + } - menu_strs = g_new (gchar *, num_plugins); - accel_strs = g_new (gchar *, num_plugins); - prog_strs = g_new (gchar *, num_plugins); - types_strs = g_new (gchar *, num_plugins); - realname_strs = g_new (gchar *, num_plugins); - time_ints = g_new (gint , num_plugins); + g_free (name); + } + } - matched = g_slist_reverse (matched); + menu_strs = g_new (gchar *, num_plugins); + accel_strs = g_new (gchar *, num_plugins); + prog_strs = g_new (gchar *, num_plugins); + types_strs = g_new (gchar *, num_plugins); + realname_strs = g_new (gchar *, num_plugins); + time_ints = g_new (gint , num_plugins); - for (list = matched; list; list = g_slist_next (list)) - { - PlugInProcDef *proc_def = list->data; - ProcRecord *proc_rec = &proc_def->db_info; - gchar *name; - - if (proc_def->menu_label) - name = g_strdup_printf ("%s/%s", - (gchar *) proc_def->menu_paths->data, - proc_def->menu_label); - else - name = g_strdup (proc_def->menu_paths->data); + matched = g_slist_reverse (matched); + + for (list = matched; list; list = g_slist_next (list)) + { + PlugInProcDef *proc_def = list->data; + ProcRecord *proc_rec = &proc_def->db_info; + gchar *name; + + if (proc_def->menu_label) + name = g_strdup_printf ("%s/%s", + (gchar *) proc_def->menu_paths->data, + proc_def->menu_label); + else + name = g_strdup (proc_def->menu_paths->data); - menu_strs[i] = gimp_strip_uline (name); - accel_strs[i] = NULL; - prog_strs[i] = g_strdup (proc_def->prog); - types_strs[i] = g_strdup (proc_def->image_types); - realname_strs[i] = g_strdup (proc_rec->name); - time_ints[i] = proc_def->mtime; + menu_strs[i] = gimp_strip_uline (name); + accel_strs[i] = NULL; + prog_strs[i] = g_strdup (proc_def->prog); + types_strs[i] = g_strdup (proc_def->image_types); + realname_strs[i] = g_strdup (proc_rec->name); + time_ints[i] = proc_def->mtime; - g_free (name); + g_free (name); - i++; - } + i++; + } - g_slist_free (matched); + g_slist_free (matched); - if (search_str) - regfree (&sregex); + if (search_str) + regfree (&sregex); + } } CODE ); diff -uraN gimp-2.2.7/tools/pdbgen/pdb/procedural_db.pdb gimp-2.2.8/tools/pdbgen/pdb/procedural_db.pdb --- gimp-2.2.7/tools/pdbgen/pdb/procedural_db.pdb 2004-03-26 17:49:17.000000000 +0100 +++ gimp-2.2.8/tools/pdbgen/pdb/procedural_db.pdb 2005-05-13 18:01:42.000000000 +0200 @@ -187,16 +187,21 @@ &std_pdb_misc; - my $regcomp = ""; my $free = ""; $once = 0; + my $regcomp = ""; $once = 0; foreach (qw(name blurb help author copyright date proc_type)) { push @inargs, { name => $_, type => 'string', no_validate => 1, desc => "The regex for procedure $_" }; - $regcomp .= ' ' x 2 if $once; - $regcomp .= "regcomp (&pdb_query.${_}_regex, $_, 0);\n"; + $regcomp .= ' ' x 2 if $once++; + $regcomp .= "if (regcomp (&pdb_query.${_}_regex, $_, 0))\n"; + $regcomp .= " goto free_${_};\n"; + } + my $free = ""; $once = 0; + foreach (qw(proc_type date copyright author help blurb name)) { $free .= ' ' x 2 if $once++; - $free .= "regfree (&pdb_query.${_}_regex);\n"; + $free .= "free_${_}:\n"; + $free .= " regfree (&pdb_query.${_}_regex);\n"; } chop $free; @@ -220,7 +225,12 @@ vars => [ 'PDBQuery pdb_query' ], code => <