diff -uraN gimp-2.2.6/aclocal.m4 gimp-2.2.7/aclocal.m4 --- gimp-2.2.6/aclocal.m4 2005-04-10 01:56:43.000000000 +0200 +++ gimp-2.2.7/aclocal.m4 2005-04-11 11:42:29.000000000 +0200 @@ -8390,63 +8390,113 @@ rm -f conf.glibtest ]) - -dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not) -dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page -dnl also defines GSTUFF_PKG_ERRORS on error -AC_DEFUN(PKG_CHECK_MODULES, [ - succeeded=no - - if test -z "$PKG_CONFIG"; then - AC_PATH_PROG(PKG_CONFIG, pkg-config, no) - fi - - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - AC_MSG_CHECKING(for $2) - - if $PKG_CONFIG --exists "$2" ; then - AC_MSG_RESULT(yes) - succeeded=yes - - AC_MSG_CHECKING($1_CFLAGS) - $1_CFLAGS=`$PKG_CONFIG --cflags "$2"` - AC_MSG_RESULT($$1_CFLAGS) - - AC_MSG_CHECKING($1_LIBS) - $1_LIBS=`$PKG_CONFIG --libs "$2"` - AC_MSG_RESULT($$1_LIBS) - else - $1_CFLAGS="" - $1_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - $1_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` - ifelse([$4], ,echo $$1_PKG_ERRORS,) - fi - - AC_SUBST($1_CFLAGS) - AC_SUBST($1_LIBS) - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi - - if test $succeeded = yes; then - ifelse([$3], , :, [$3]) - else - ifelse([$4], , AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.]), [$4]) - fi -]) - - +# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- +# +# Copyright © 2004 Scott James Remnant . +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +# ---------------------------------- +AC_DEFUN([PKG_PROG_PKG_CONFIG], +[m4_pattern_forbid([^_?PKG_[A-Z_]+$]) +m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) +AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl +if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then + AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=m4_ifval([$1], [$1], [0.9.0]) + AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + PKG_CONFIG="" + fi + +fi[]dnl +])# PKG_PROG_PKG_CONFIG + +# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +# --------------------------------------------- +m4_define([_PKG_CONFIG], +[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 + pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried +fi[]dnl +])# _PKG_CONFIG + +# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +# [ACTION-IF-NOT-FOUND]) +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_MODULES], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl +AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl + +pkg_failed=no +AC_CACHE_CHECK([for $1][_CFLAGS], [pkg_cv_][$1][_CFLAGS], + [_PKG_CONFIG([$1][_CFLAGS], [cflags], [[$2]])]) +AC_CACHE_CHECK([for $1][_LIBS], [pkg_cv_][$1][_LIBS], + [_PKG_CONFIG([$1][_LIBS], [libs], [[$2]])]) + +if test $pkg_failed = yes; then + $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` + # Put the nasty error message in config.log where it belongs + echo "$$1[]_PKG_ERRORS" 1>&AS_MESSAGE_LOG_FD + + ifelse([$4], , [AC_MSG_ERROR(dnl +[[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.]])], + [$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 +is in your PATH or set the PKG_CONFIG environment variable to the full +path to pkg-config. + +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. + +To get pkg-config, see .]])], + [$4]) +else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + ifelse([$3], , :, [$3]) +fi[]dnl +])# PKG_CHECK_MODULES # Configure paths for GTK+ # Owen Taylor 1997-2001 diff -uraN gimp-2.2.6/app/actions/Makefile.in gimp-2.2.7/app/actions/Makefile.in --- gimp-2.2.6/app/actions/Makefile.in 2005-04-10 02:02:38.000000000 +0200 +++ gimp-2.2.7/app/actions/Makefile.in 2005-04-11 11:53:25.000000000 +0200 @@ -322,6 +322,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.6/app/app_procs.c gimp-2.2.7/app/app_procs.c --- gimp-2.2.6/app/app_procs.c 2004-11-22 22:29:41.000000000 +0100 +++ gimp-2.2.7/app/app_procs.c 2005-04-13 18:00:10.000000000 +0200 @@ -189,6 +189,7 @@ "Gimp-GUI", "Gimp-Menus", "Gimp-PDB", + "Gimp-Paint", "Gimp-Paint-Funcs", "Gimp-Plug-In", "Gimp-Text", diff -uraN gimp-2.2.6/app/base/Makefile.in gimp-2.2.7/app/base/Makefile.in --- gimp-2.2.6/app/base/Makefile.in 2005-04-10 01:58:47.000000000 +0200 +++ gimp-2.2.7/app/base/Makefile.in 2005-04-11 11:48:21.000000000 +0200 @@ -322,6 +322,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.6/app/composite/gimp-composite-sse2.c gimp-2.2.7/app/composite/gimp-composite-sse2.c --- gimp-2.2.6/app/composite/gimp-composite-sse2.c 2004-08-29 23:06:31.000000000 +0200 +++ gimp-2.2.7/app/composite/gimp-composite-sse2.c 2005-05-06 14:27:50.000000000 +0200 @@ -590,7 +590,7 @@ uint128 *B = (uint128 *) _op->B; gulong n_pixels = _op->n_pixels; - asm volatile ("movq %0,%%mm0" : : "m" (*rgba8_alpha_mask_64) : "%mm0"); + asm volatile ("movdqu %0,%%xmm0" : : "m" (*rgba8_alpha_mask_64) : "%xmm0"); for (; n_pixels >= 4; n_pixels -= 4) { diff -uraN gimp-2.2.6/app/composite/Makefile.in gimp-2.2.7/app/composite/Makefile.in --- gimp-2.2.6/app/composite/Makefile.in 2005-04-10 01:58:43.000000000 +0200 +++ gimp-2.2.7/app/composite/Makefile.in 2005-04-11 11:48:15.000000000 +0200 @@ -322,6 +322,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.6/app/config/gimpbaseconfig.c gimp-2.2.7/app/config/gimpbaseconfig.c --- gimp-2.2.6/app/config/gimpbaseconfig.c 2004-11-16 16:09:56.000000000 +0100 +++ gimp-2.2.7/app/config/gimpbaseconfig.c 2005-05-08 13:10:52.000000000 +0200 @@ -121,7 +121,8 @@ 0); GIMP_CONFIG_INSTALL_PROP_MEMSIZE (object_class, PROP_TILE_CACHE_SIZE, "tile-cache-size", TILE_CACHE_SIZE_BLURB, - 0, GIMP_MAX_MEMSIZE, 1 << 27, /* 128MB */ + 0, MIN (G_MAXULONG, GIMP_MAX_MEMSIZE), + 1 << 27, /* 128MB */ GIMP_PARAM_CONFIRM); } diff -uraN gimp-2.2.6/app/config/Makefile.in gimp-2.2.7/app/config/Makefile.in --- gimp-2.2.6/app/config/Makefile.in 2005-04-10 01:58:52.000000000 +0200 +++ gimp-2.2.7/app/config/Makefile.in 2005-04-11 11:48:33.000000000 +0200 @@ -322,6 +322,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.6/app/core/gimpimage.c gimp-2.2.7/app/core/gimpimage.c --- gimp-2.2.6/app/core/gimpimage.c 2005-04-05 10:54:40.000000000 +0200 +++ gimp-2.2.7/app/core/gimpimage.c 2005-04-18 18:09:52.000000000 +0200 @@ -1023,11 +1023,13 @@ { if (gimp_image_base_type (gimage) == GIMP_INDEXED) { + gimp_image_color_hash_invalidate (gimage, color_index); + /* A colormap alteration affects the whole image */ gimp_image_update (gimage, 0, 0, gimage->width, gimage->height); - gimp_viewable_invalidate_preview (GIMP_VIEWABLE (gimage)); - gimp_image_color_hash_invalidate (gimage, color_index); + gimp_image_invalidate_layer_previews (gimage); + gimp_viewable_invalidate_preview (GIMP_VIEWABLE (gimage)); } } diff -uraN gimp-2.2.6/app/core/Makefile.in gimp-2.2.7/app/core/Makefile.in --- gimp-2.2.6/app/core/Makefile.in 2005-04-10 01:58:58.000000000 +0200 +++ gimp-2.2.7/app/core/Makefile.in 2005-04-11 11:48:43.000000000 +0200 @@ -322,6 +322,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.6/app/dialogs/Makefile.in gimp-2.2.7/app/dialogs/Makefile.in --- gimp-2.2.6/app/dialogs/Makefile.in 2005-04-10 02:02:17.000000000 +0200 +++ gimp-2.2.7/app/dialogs/Makefile.in 2005-04-11 11:53:01.000000000 +0200 @@ -322,6 +322,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.6/app/display/gimpdisplayshell-scale.c gimp-2.2.7/app/display/gimpdisplayshell-scale.c --- gimp-2.2.6/app/display/gimpdisplayshell-scale.c 2004-10-07 12:12:26.000000000 +0200 +++ gimp-2.2.7/app/display/gimpdisplayshell-scale.c 2005-05-06 15:12:11.000000000 +0200 @@ -456,11 +456,15 @@ gint offset_y, gboolean resize_window) { - Gimp *gimp; - g_return_if_fail (GIMP_IS_DISPLAY_SHELL (shell)); - gimp = shell->gdisp->gimage->gimp; + /* Abort early if the values are all setup already. We don't + * want to inadvertently resize the window (bug #164281). + */ + if (shell->scale == scale && + shell->offset_x == offset_x && + shell->offset_y == offset_y) + return; /* freeze the active tool */ gimp_display_shell_pause (shell); diff -uraN gimp-2.2.6/app/display/Makefile.in gimp-2.2.7/app/display/Makefile.in --- gimp-2.2.6/app/display/Makefile.in 2005-04-10 02:02:00.000000000 +0200 +++ gimp-2.2.7/app/display/Makefile.in 2005-04-11 11:52:32.000000000 +0200 @@ -322,6 +322,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.6/app/file/gimprecentlist.c gimp-2.2.7/app/file/gimprecentlist.c --- gimp-2.2.6/app/file/gimprecentlist.c 2004-11-14 03:48:19.000000000 +0100 +++ gimp-2.2.7/app/file/gimprecentlist.c 2005-04-25 18:23:19.000000000 +0200 @@ -578,6 +578,7 @@ else { g_warning ("Failed to lock: %s", g_strerror (errno)); + close (fd); return FALSE; } diff -uraN gimp-2.2.6/app/file/Makefile.in gimp-2.2.7/app/file/Makefile.in --- gimp-2.2.6/app/file/Makefile.in 2005-04-10 01:59:53.000000000 +0200 +++ gimp-2.2.7/app/file/Makefile.in 2005-04-11 11:49:52.000000000 +0200 @@ -322,6 +322,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.6/app/gui/Makefile.in gimp-2.2.7/app/gui/Makefile.in --- gimp-2.2.6/app/gui/Makefile.in 2005-04-10 02:03:16.000000000 +0200 +++ gimp-2.2.7/app/gui/Makefile.in 2005-04-11 11:54:08.000000000 +0200 @@ -322,6 +322,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.6/app/Makefile.in gimp-2.2.7/app/Makefile.in --- gimp-2.2.6/app/Makefile.in 2005-04-10 01:58:39.000000000 +0200 +++ gimp-2.2.7/app/Makefile.in 2005-04-11 11:48:04.000000000 +0200 @@ -322,6 +322,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.6/app/menus/Makefile.in gimp-2.2.7/app/menus/Makefile.in --- gimp-2.2.6/app/menus/Makefile.in 2005-04-10 02:03:12.000000000 +0200 +++ gimp-2.2.7/app/menus/Makefile.in 2005-04-11 11:54:02.000000000 +0200 @@ -322,6 +322,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.6/app/paint/Makefile.in gimp-2.2.7/app/paint/Makefile.in --- gimp-2.2.6/app/paint/Makefile.in 2005-04-10 01:59:33.000000000 +0200 +++ gimp-2.2.7/app/paint/Makefile.in 2005-04-11 11:49:26.000000000 +0200 @@ -322,6 +322,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.6/app/paint-funcs/Makefile.in gimp-2.2.7/app/paint-funcs/Makefile.in --- gimp-2.2.6/app/paint-funcs/Makefile.in 2005-04-10 01:58:40.000000000 +0200 +++ gimp-2.2.7/app/paint-funcs/Makefile.in 2005-04-11 11:48:07.000000000 +0200 @@ -322,6 +322,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.6/app/pdb/image_cmds.c gimp-2.2.7/app/pdb/image_cmds.c --- gimp-2.2.6/app/pdb/image_cmds.c 2004-11-16 15:34:34.000000000 +0100 +++ gimp-2.2.7/app/pdb/image_cmds.c 2005-05-08 12:01:56.000000000 +0200 @@ -854,7 +854,7 @@ { "gimp_image_scale", "Scale the image to the specified extents.", - "This procedure scales the image so that it's new width and height are equal to the supplied parameters. Offsets are also provided which describe the position of the previous image's content. No bounds checking is currently provided, so don't supply parameters that are out of bounds. All channels within the image are scaled according to the specified parameters; this includes the image selection mask. All layers within the image are repositioned according to the specified offsets.", + "This procedure scales the image so that its new width and height are equal to the supplied parameters. Offsets are also provided which describe the position of the previous image's content. No bounds checking is currently provided, so don't supply parameters that are out of bounds. All channels within the image are scaled according to the specified parameters; this includes the image selection mask. All layers within the image are repositioned according to the specified offsets.", "Spencer Kimball & Peter Mattis", "Spencer Kimball & Peter Mattis", "1995-1996", @@ -3684,6 +3684,8 @@ g_free (tmp); else success = FALSE; + + g_free (utf8); } else success = FALSE; diff -uraN gimp-2.2.6/app/pdb/Makefile.in gimp-2.2.7/app/pdb/Makefile.in --- gimp-2.2.6/app/pdb/Makefile.in 2005-04-10 02:03:21.000000000 +0200 +++ gimp-2.2.7/app/pdb/Makefile.in 2005-04-11 11:54:15.000000000 +0200 @@ -322,6 +322,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.6/app/plug-in/Makefile.in gimp-2.2.7/app/plug-in/Makefile.in --- gimp-2.2.6/app/plug-in/Makefile.in 2005-04-10 01:59:56.000000000 +0200 +++ gimp-2.2.7/app/plug-in/Makefile.in 2005-04-11 11:49:55.000000000 +0200 @@ -322,6 +322,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.6/app/text/Makefile.in gimp-2.2.7/app/text/Makefile.in --- gimp-2.2.6/app/text/Makefile.in 2005-04-10 01:59:41.000000000 +0200 +++ gimp-2.2.7/app/text/Makefile.in 2005-04-11 11:49:36.000000000 +0200 @@ -322,6 +322,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.6/app/tools/Makefile.in gimp-2.2.7/app/tools/Makefile.in --- gimp-2.2.6/app/tools/Makefile.in 2005-04-10 02:00:01.000000000 +0200 +++ gimp-2.2.7/app/tools/Makefile.in 2005-04-11 11:50:02.000000000 +0200 @@ -322,6 +322,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.6/app/vectors/Makefile.in gimp-2.2.7/app/vectors/Makefile.in --- gimp-2.2.6/app/vectors/Makefile.in 2005-04-10 01:59:46.000000000 +0200 +++ gimp-2.2.7/app/vectors/Makefile.in 2005-04-11 11:49:42.000000000 +0200 @@ -322,6 +322,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.6/app/widgets/gimpmessagebox.c gimp-2.2.7/app/widgets/gimpmessagebox.c --- gimp-2.2.6/app/widgets/gimpmessagebox.c 2005-04-07 12:54:31.000000000 +0200 +++ gimp-2.2.7/app/widgets/gimpmessagebox.c 2005-04-29 16:00:31.000000000 +0200 @@ -144,6 +144,7 @@ GtkWidget *label = g_object_new (GTK_TYPE_LABEL, "wrap", TRUE, "selectable", TRUE, + "can-focus", FALSE, "xalign", 0.0, "yalign", 0.5, NULL); diff -uraN gimp-2.2.6/app/widgets/Makefile.in gimp-2.2.7/app/widgets/Makefile.in --- gimp-2.2.6/app/widgets/Makefile.in 2005-04-10 02:00:43.000000000 +0200 +++ gimp-2.2.7/app/widgets/Makefile.in 2005-04-11 11:50:50.000000000 +0200 @@ -322,6 +322,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.6/app/xcf/Makefile.in gimp-2.2.7/app/xcf/Makefile.in --- gimp-2.2.6/app/xcf/Makefile.in 2005-04-10 01:59:50.000000000 +0200 +++ gimp-2.2.7/app/xcf/Makefile.in 2005-04-11 11:49:48.000000000 +0200 @@ -322,6 +322,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.6/app/xcf/xcf-load.c gimp-2.2.7/app/xcf/xcf-load.c --- gimp-2.2.6/app/xcf/xcf-load.c 2004-11-03 12:50:37.000000000 +0100 +++ gimp-2.2.7/app/xcf/xcf-load.c 2005-04-21 13:51:10.000000000 +0200 @@ -847,12 +847,12 @@ GimpLayerMask *layer_mask; guint32 hierarchy_offset; guint32 layer_mask_offset; - gboolean apply_mask; - gboolean edit_mask; - gboolean show_mask; + gboolean apply_mask = TRUE; + gboolean edit_mask = FALSE; + gboolean show_mask = FALSE; gboolean active; gboolean floating; - guint32 text_layer_flags; + guint32 text_layer_flags = 0; gint width; gint height; gint type; diff -uraN gimp-2.2.6/ChangeLog gimp-2.2.7/ChangeLog --- gimp-2.2.6/ChangeLog 2005-04-10 02:10:47.000000000 +0200 +++ gimp-2.2.7/ChangeLog 2005-05-08 23:41:49.000000000 +0200 @@ -1,3 +1,147 @@ +2005-05-08 Sven Neumann + + * Made 2.2.7 release. + +2005-05-08 Sven Neumann + + Merged from HEAD branch: + + * app/config/gimpbaseconfig.c: limit the tile-cache-size to + G_MAXULONG or GIMP_MAX_MEMSIZE, whatever is smaller. Fixes + bug #303371. + +2005-05-07 Manish Singh + + * tools/pdbgen/pdb/image.pdb: Fix a typo reported in bug #303379. + + * app/pdb/image_cmds.c + * libgimp/gimpimage_pdb.c: regenerated. + +2005-05-06 Sven Neumann + + Merged from HEAD branch: + + * app/display/gimpdisplayshell-scale.c + (gimp_display_shell_scale_by_values): abort early if the values are + all setup already. Fixes bug #164281. + +2005-05-06 Sven Neumann + + Merged from HEAD branch: + + * app/composite/gimp-composite-sse2.c + (gimp_composite_lighten_rgba8_rgba8_rgba8_sse2): applied a patch + from Joao S. O. Bueno Calligaris that changes the SSE2 code to + load the proper register. Fixes bug #164061. + +2005-04-29 Sven Neumann + + Merged from HEAD branch: + + * app/widgets/gimpmessagebox.c (gimp_message_box_init): unset + "can-focus" on the message labels. Fixes bug #302400. + +2005-04-28 Manish Singh + + * plug-ins/pygimp/plug-ins/clothify.py: don't reset the passed + parameters to default values. Spotted by Joao S. O. Bueno Calligaris. + +2005-04-27 Sven Neumann + + Merged from HEAD branch: + + * tools/pdbgen/pdb/image.pdb: plugged a small memleak. + + * app/pdb/image_cmds.c: regenerated. + +2005-04-26 Bill Skaggs + + * plug-ins/Lighting/lighting_shade.c: fix typo messing + up transparent backgrounds, backported from HEAD where + it fixed bug #300122, this change should fix bug #302075. + +2005-04-25 Sven Neumann + + Merged from HEAD branch: + + * app/file/gimprecentlist.c (gimp_recent_list_add_item): close the + file descriptor if we fail to obtain the lock (bug #151767). + +2005-04-25 Manish Singh + + * plug-in/common/tiff.c: Only store compression types we can actually + handle in the save options parasite. Fixes bug #301557. + +2005-04-23 Sven Neumann + + Merged from HEAD branch: + + * libgimp/gimpdrawablepreview.c (gimp_drawable_preview_draw_thumb): + respect the selection (fixes bug #301523). + +2005-04-22 Sven Neumann + + Merged from HEAD branch: + + * libgimpwidgets/gimpintstore.c: removed the "row_deleted" handler + which used to take care of reinserting the "Empty" item when the + last row gets deleted. This doesn't work any longer with GTK+ 2.6 + and I see no way to make it work again. Fixes bug #301524. + +2005-04-21 Manish Singh + + * plug-ins/common/postscript.c: pass -dUseCropBox when loading PDF + files, to match Acrobat Reader's behavior in honoring CropBox over + MediaBox. Fixes bug #301432. + +2005-04-20 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/common/mail.c (create_headers): set charset to UTF-8. + +2005-04-20 Michael Natterer + + Merged from HEAD branch: + + * app/xcf/xcf-load.c (xcf_load_layer): initialize text_layer_flags + with 0 so it doesn't contain random garbage if the text layer + flags in the XCF have default values (are not saved at all). Fixes + bug #301028. Initialize other stuff too for the sake of sanity. + +2005-04-18 Manish Singh + + * plug-ins/common/newsprint.c: Redo comment for spot_PSsquare + and spot_PSdiamonds, since the code was not a derived work in + the copyright sense. It is a C implementation of the same + algorithm. + +2005-04-18 Sven Neumann + + Merged from HEAD branch: + + * app/core/gimpimage.c (gimp_image_real_colormap_changed): + invalidate layer previews when the colormap changes. Fixes + bug #301033. + +2005-04-14 Sven Neumann + + Merged from HEAD branch: + + * libgimp/gimpdrawable.[ch] (gimp_drawable_get_tile) + (gimp_drawable_get_tile2): cleanup gint/gboolean confusion (spotted + by Maurits Rijk). + +2005-04-13 Sven Neumann + + Merged from HEAD branch: + + * app/app_procs.c: register handler for the "GimpPaint" log domain. + +2005-04-10 Sven Neumann + + * configure.in: bumped version to 2.2.7, interface_age 7. + 2005-04-10 Sven Neumann * Made 2.2.6 release. diff -uraN gimp-2.2.6/config.guess gimp-2.2.7/config.guess --- gimp-2.2.6/config.guess 2005-04-02 13:15:18.000000000 +0200 +++ gimp-2.2.7/config.guess 2005-04-24 22:01:25.000000000 +0200 @@ -3,7 +3,7 @@ # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -timestamp='2005-03-24' +timestamp='2005-04-22' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -1140,6 +1140,10 @@ # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit 0 ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit 0 ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos diff -uraN gimp-2.2.6/config.sub gimp-2.2.7/config.sub --- gimp-2.2.6/config.sub 2005-04-02 13:15:18.000000000 +0200 +++ gimp-2.2.7/config.sub 2005-04-24 22:01:25.000000000 +0200 @@ -3,7 +3,7 @@ # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -timestamp='2005-02-10' +timestamp='2005-04-22' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -231,6 +231,7 @@ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ + | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fr30 | frv \ @@ -262,7 +263,8 @@ | pyramid \ | sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ - | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv8 | sparcv9 | sparcv9b \ + | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b \ | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ @@ -298,7 +300,7 @@ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* \ - | bs2000-* \ + | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ @@ -336,7 +338,8 @@ | romp-* | rs6000-* \ | sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ - | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ + | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ diff -uraN gimp-2.2.6/configure gimp-2.2.7/configure --- gimp-2.2.6/configure 2005-04-10 01:56:50.000000000 +0200 +++ gimp-2.2.7/configure 2005-04-11 11:42:42.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.6. +# Generated by GNU Autoconf 2.59 for GIMP 2.2.7. # # Report bugs to . # @@ -423,8 +423,8 @@ # Identity of this package. PACKAGE_NAME='GIMP' PACKAGE_TARNAME='gimp' -PACKAGE_VERSION='2.2.6' -PACKAGE_STRING='GIMP 2.2.6' +PACKAGE_VERSION='2.2.7' +PACKAGE_STRING='GIMP 2.2.7' PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=GIMP' ac_unique_file="app/core/gimp.c" @@ -465,7 +465,7 @@ # include #endif" -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM AWK SET_MAKE am__leading_dot GIMP_MAJOR_VERSION GIMP_MINOR_VERSION GIMP_MICRO_VERSION GIMP_INTERFACE_AGE GIMP_BINARY_AGE GIMP_API_VERSION GIMP_VERSION GIMP_REAL_VERSION GIMP_APP_VERSION GIMP_PLUGIN_VERSION GIMP_TOOL_VERSION GIMP_PKGCONFIG_VERSION GIMP_DATA_VERSION GIMP_SYSCONF_VERSION GIMP_USER_VERSION GIMP_UNSTABLE GIMP_FULL_NAME GIMP_DESKTOP_ICON LT_VERSION_INFO LT_CURRENT_MINUS_AGE GLIB_REQUIRED_VERSION GTK_REQUIRED_VERSION GDK_PIXBUF_REQUIRED_VERSION PANGOFT2_REQUIRED_VERSION FONTCONFIG_REQUIRED_VERSION GTKDOC_REQUIRED_VERSION GTKHTML2_REQUIRED_VERSION GIMPPRINT_REQUIRED_VERSION GIMPPRINT_TOONEW_VERSION RSVG_REQUIRED_VERSION WMF_REQUIRED_VERSION GETTEXT_PACKAGE CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE build build_cpu build_vendor build_os host host_cpu host_vendor host_os EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB DLLTOOL ac_ct_DLLTOOL AS ac_ct_AS OBJDUMP ac_ct_OBJDUMP CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL CCAS CCASFLAGS MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT PLATFORM_WIN32_TRUE PLATFORM_WIN32_FALSE PATHSEP OS_WIN32_TRUE OS_WIN32_FALSE OS_UNIX_TRUE OS_UNIX_FALSE ms_librarian WINDRES ac_ct_WINDRES MS_LIB_AVAILABLE_TRUE MS_LIB_AVAILABLE_FALSE HAVE_WINDRES_TRUE HAVE_WINDRES_FALSE ALLOCA INTLTOOL_DESKTOP_RULE INTLTOOL_DIRECTORY_RULE INTLTOOL_KEYS_RULE INTLTOOL_PROP_RULE INTLTOOL_OAF_RULE INTLTOOL_PONG_RULE INTLTOOL_SERVER_RULE INTLTOOL_SHEET_RULE INTLTOOL_SOUNDLIST_RULE INTLTOOL_UI_RULE INTLTOOL_XAM_RULE INTLTOOL_KBD_RULE INTLTOOL_XML_RULE INTLTOOL_XML_NOMERGE_RULE INTLTOOL_CAVES_RULE INTLTOOL_SCHEMAS_RULE INTLTOOL_THEME_RULE INTLTOOL_EXTRACT INTLTOOL_MERGE INTLTOOL_UPDATE INTLTOOL_PERL INTLTOOL_ICONV INTLTOOL_MSGFMT INTLTOOL_MSGMERGE INTLTOOL_XGETTEXT mkdir_p USE_NLS MSGFMT GMSGFMT XGETTEXT CATALOGS CATOBJEXT DATADIRNAME GMOFILES INSTOBJEXT INTLLIBS PO_IN_DATADIR_TRUE PO_IN_DATADIR_FALSE POFILES POSUB MKINSTALLDIRS PKG_CONFIG GLIB_CFLAGS GLIB_LIBS GLIB_GENMARSHAL GOBJECT_QUERY GLIB_MKENUMS GMODULE_CFLAGS GMODULE_LIBS X_CFLAGS X_PRE_LIBS X_LIBS X_EXTRA_LIBS GTK_CFLAGS GTK_LIBS GDK_PIXBUF_CFLAGS GDK_PIXBUF_LIBS GDK_PIXBUF_CSOURCE LIBART_CFLAGS LIBART_LIBS FONTCONFIG_CFLAGS FONTCONFIG_LIBS PANGOFT2_CFLAGS PANGOFT2_LIBS FREETYPE_CONFIG FREETYPE_LIBS HAVE_FINITE HAVE_ISFINITE SOCKET_LIBS RT_LIBS SYMPREFIX HAVE_GLIBC_REGEX_TRUE HAVE_GLIBC_REGEX_FALSE HAVE_GLIBC_REGEX GIMP_THREAD_FLAGS GIMP_THREAD_LIBS GIMP_MP_FLAGS GIMP_MP_LIBS LIBXMU LIBSCREENSHOT GIMP_REMOTE TIFF LIBTIFF JPEG LIBJPEG BUILD_XJT_TRUE BUILD_XJT_FALSE LIBZ PSP PNG LIBPNG MNG LIBMNG EXIF_CFLAGS EXIF_LIBS AA LIBAA XPM LIBXPM GTKHTML2_CFLAGS GTKHTML2_LIBS BUILD_HELPBROWSER_TRUE BUILD_HELPBROWSER_FALSE SVG_CFLAGS SVG_LIBS SVG LIBSVG GIMPPRINT_CONFIG GIMPPRINT_CFLAGS GIMPPRINT_LIBS PRINT_LIBS PRINT_CFLAGS BUILD_PRINT_TRUE BUILD_PRINT_FALSE WMF_CONFIG LIBWMF WMF_CFLAGS LCMS_LIBS HAVE_LCMS_TRUE HAVE_LCMS_FALSE ALSA_CFLAGS ALSA_LIBS HAVE_LINUX_INPUT_TRUE HAVE_LINUX_INPUT_FALSE SENDMAIL PERL WITH_PDBGEN_TRUE WITH_PDBGEN_FALSE PYTHON PYTHON_VERSION PYTHON_PREFIX PYTHON_EXEC_PREFIX PYTHON_PLATFORM pythondir pkgpythondir pyexecdir pkgpyexecdir PYTHON_INCLUDES PYGTK_CFLAGS PYGTK_LIBS PYGIMP_EXTRA_CFLAGS BUILD_PYTHON_TRUE BUILD_PYTHON_FALSE MAIL SCREENSHOT URL WINCLIPBOARD WINPRINT WMF HAVE_MAC_TWAIN_TRUE HAVE_MAC_TWAIN_FALSE DESKTOP_DATADIR_TRUE DESKTOP_DATADIR_FALSE DESKTOP_DATADIR XMLLINT HAVE_XMLLINT_TRUE HAVE_XMLLINT_FALSE XSLTPROC HAVE_XSLTPROC_TRUE HAVE_XSLTPROC_FALSE HTML_DIR ENABLE_GTK_DOC_TRUE ENABLE_GTK_DOC_FALSE GTK_DOC_USE_LIBTOOL_TRUE GTK_DOC_USE_LIBTOOL_FALSE DEFAULT_BINARY_TRUE DEFAULT_BINARY_FALSE ENABLE_GIMP_CONSOLE_TRUE ENABLE_GIMP_CONSOLE_FALSE gimpdir gimpdatadir gimpplugindir gimpsysconfdir localedir GIMPINSTALL STATICLIBS_TRUE STATICLIBS_FALSE GIMP_MKENUMS GIMP_PLUGINS GIMP_MODULES LIBOBJS LTLIBOBJS' +ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM AWK SET_MAKE am__leading_dot GIMP_MAJOR_VERSION GIMP_MINOR_VERSION GIMP_MICRO_VERSION GIMP_INTERFACE_AGE GIMP_BINARY_AGE GIMP_API_VERSION GIMP_VERSION GIMP_REAL_VERSION GIMP_APP_VERSION GIMP_PLUGIN_VERSION GIMP_TOOL_VERSION GIMP_PKGCONFIG_VERSION GIMP_DATA_VERSION GIMP_SYSCONF_VERSION GIMP_USER_VERSION GIMP_UNSTABLE GIMP_FULL_NAME GIMP_DESKTOP_ICON LT_VERSION_INFO LT_CURRENT_MINUS_AGE GLIB_REQUIRED_VERSION GTK_REQUIRED_VERSION GDK_PIXBUF_REQUIRED_VERSION PANGOFT2_REQUIRED_VERSION FONTCONFIG_REQUIRED_VERSION GTKDOC_REQUIRED_VERSION GTKHTML2_REQUIRED_VERSION GIMPPRINT_REQUIRED_VERSION GIMPPRINT_TOONEW_VERSION RSVG_REQUIRED_VERSION WMF_REQUIRED_VERSION GETTEXT_PACKAGE CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE build build_cpu build_vendor build_os host host_cpu host_vendor host_os EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB DLLTOOL ac_ct_DLLTOOL AS ac_ct_AS OBJDUMP ac_ct_OBJDUMP CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL CCAS CCASFLAGS MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT PLATFORM_WIN32_TRUE PLATFORM_WIN32_FALSE PATHSEP OS_WIN32_TRUE OS_WIN32_FALSE OS_UNIX_TRUE OS_UNIX_FALSE ms_librarian WINDRES ac_ct_WINDRES MS_LIB_AVAILABLE_TRUE MS_LIB_AVAILABLE_FALSE HAVE_WINDRES_TRUE HAVE_WINDRES_FALSE ALLOCA INTLTOOL_DESKTOP_RULE INTLTOOL_DIRECTORY_RULE INTLTOOL_KEYS_RULE INTLTOOL_PROP_RULE INTLTOOL_OAF_RULE INTLTOOL_PONG_RULE INTLTOOL_SERVER_RULE INTLTOOL_SHEET_RULE INTLTOOL_SOUNDLIST_RULE INTLTOOL_UI_RULE INTLTOOL_XAM_RULE INTLTOOL_KBD_RULE INTLTOOL_XML_RULE INTLTOOL_XML_NOMERGE_RULE INTLTOOL_CAVES_RULE INTLTOOL_SCHEMAS_RULE INTLTOOL_THEME_RULE INTLTOOL_EXTRACT INTLTOOL_MERGE INTLTOOL_UPDATE INTLTOOL_PERL INTLTOOL_ICONV INTLTOOL_MSGFMT INTLTOOL_MSGMERGE INTLTOOL_XGETTEXT mkdir_p USE_NLS MSGFMT GMSGFMT XGETTEXT CATALOGS CATOBJEXT DATADIRNAME GMOFILES INSTOBJEXT INTLLIBS PO_IN_DATADIR_TRUE PO_IN_DATADIR_FALSE POFILES POSUB MKINSTALLDIRS PKG_CONFIG GLIB_CFLAGS GLIB_LIBS GLIB_GENMARSHAL GOBJECT_QUERY GLIB_MKENUMS ac_pt_PKG_CONFIG GMODULE_CFLAGS GMODULE_LIBS X_CFLAGS X_PRE_LIBS X_LIBS X_EXTRA_LIBS GTK_CFLAGS GTK_LIBS GDK_PIXBUF_CFLAGS GDK_PIXBUF_LIBS GDK_PIXBUF_CSOURCE LIBART_CFLAGS LIBART_LIBS FONTCONFIG_CFLAGS FONTCONFIG_LIBS PANGOFT2_CFLAGS PANGOFT2_LIBS FREETYPE_CONFIG FREETYPE_LIBS HAVE_FINITE HAVE_ISFINITE SOCKET_LIBS RT_LIBS SYMPREFIX HAVE_GLIBC_REGEX_TRUE HAVE_GLIBC_REGEX_FALSE HAVE_GLIBC_REGEX GIMP_THREAD_FLAGS GIMP_THREAD_LIBS GIMP_MP_FLAGS GIMP_MP_LIBS LIBXMU LIBSCREENSHOT GIMP_REMOTE TIFF LIBTIFF JPEG LIBJPEG BUILD_XJT_TRUE BUILD_XJT_FALSE LIBZ PSP PNG LIBPNG MNG LIBMNG EXIF_CFLAGS EXIF_LIBS AA LIBAA XPM LIBXPM GTKHTML2_CFLAGS GTKHTML2_LIBS BUILD_HELPBROWSER_TRUE BUILD_HELPBROWSER_FALSE SVG_CFLAGS SVG_LIBS SVG LIBSVG GIMPPRINT_CONFIG GIMPPRINT_CFLAGS GIMPPRINT_LIBS PRINT_LIBS PRINT_CFLAGS BUILD_PRINT_TRUE BUILD_PRINT_FALSE WMF_CONFIG LIBWMF WMF_CFLAGS LCMS_LIBS HAVE_LCMS_TRUE HAVE_LCMS_FALSE ALSA_CFLAGS ALSA_LIBS HAVE_LINUX_INPUT_TRUE HAVE_LINUX_INPUT_FALSE SENDMAIL PERL WITH_PDBGEN_TRUE WITH_PDBGEN_FALSE PYTHON PYTHON_VERSION PYTHON_PREFIX PYTHON_EXEC_PREFIX PYTHON_PLATFORM pythondir pkgpythondir pyexecdir pkgpyexecdir PYTHON_INCLUDES PYGTK_CFLAGS PYGTK_LIBS PYGIMP_EXTRA_CFLAGS BUILD_PYTHON_TRUE BUILD_PYTHON_FALSE MAIL SCREENSHOT URL WINCLIPBOARD WINPRINT WMF HAVE_MAC_TWAIN_TRUE HAVE_MAC_TWAIN_FALSE DESKTOP_DATADIR_TRUE DESKTOP_DATADIR_FALSE DESKTOP_DATADIR XMLLINT HAVE_XMLLINT_TRUE HAVE_XMLLINT_FALSE XSLTPROC HAVE_XSLTPROC_TRUE HAVE_XSLTPROC_FALSE HTML_DIR ENABLE_GTK_DOC_TRUE ENABLE_GTK_DOC_FALSE GTK_DOC_USE_LIBTOOL_TRUE GTK_DOC_USE_LIBTOOL_FALSE DEFAULT_BINARY_TRUE DEFAULT_BINARY_FALSE ENABLE_GIMP_CONSOLE_TRUE ENABLE_GIMP_CONSOLE_FALSE gimpdir gimpdatadir gimpplugindir gimpsysconfdir localedir GIMPINSTALL STATICLIBS_TRUE STATICLIBS_FALSE GIMP_MKENUMS GIMP_PLUGINS GIMP_MODULES LIBOBJS LTLIBOBJS' ac_subst_files='' # Initialize some variables set by options. @@ -946,6 +946,82 @@ ac_env_FFLAGS_value=$FFLAGS ac_cv_env_FFLAGS_set=${FFLAGS+set} ac_cv_env_FFLAGS_value=$FFLAGS +ac_env_PKG_CONFIG_set=${PKG_CONFIG+set} +ac_env_PKG_CONFIG_value=$PKG_CONFIG +ac_cv_env_PKG_CONFIG_set=${PKG_CONFIG+set} +ac_cv_env_PKG_CONFIG_value=$PKG_CONFIG +ac_env_GMODULE_CFLAGS_set=${GMODULE_CFLAGS+set} +ac_env_GMODULE_CFLAGS_value=$GMODULE_CFLAGS +ac_cv_env_GMODULE_CFLAGS_set=${GMODULE_CFLAGS+set} +ac_cv_env_GMODULE_CFLAGS_value=$GMODULE_CFLAGS +ac_env_GMODULE_LIBS_set=${GMODULE_LIBS+set} +ac_env_GMODULE_LIBS_value=$GMODULE_LIBS +ac_cv_env_GMODULE_LIBS_set=${GMODULE_LIBS+set} +ac_cv_env_GMODULE_LIBS_value=$GMODULE_LIBS +ac_env_GDK_PIXBUF_CFLAGS_set=${GDK_PIXBUF_CFLAGS+set} +ac_env_GDK_PIXBUF_CFLAGS_value=$GDK_PIXBUF_CFLAGS +ac_cv_env_GDK_PIXBUF_CFLAGS_set=${GDK_PIXBUF_CFLAGS+set} +ac_cv_env_GDK_PIXBUF_CFLAGS_value=$GDK_PIXBUF_CFLAGS +ac_env_GDK_PIXBUF_LIBS_set=${GDK_PIXBUF_LIBS+set} +ac_env_GDK_PIXBUF_LIBS_value=$GDK_PIXBUF_LIBS +ac_cv_env_GDK_PIXBUF_LIBS_set=${GDK_PIXBUF_LIBS+set} +ac_cv_env_GDK_PIXBUF_LIBS_value=$GDK_PIXBUF_LIBS +ac_env_LIBART_CFLAGS_set=${LIBART_CFLAGS+set} +ac_env_LIBART_CFLAGS_value=$LIBART_CFLAGS +ac_cv_env_LIBART_CFLAGS_set=${LIBART_CFLAGS+set} +ac_cv_env_LIBART_CFLAGS_value=$LIBART_CFLAGS +ac_env_LIBART_LIBS_set=${LIBART_LIBS+set} +ac_env_LIBART_LIBS_value=$LIBART_LIBS +ac_cv_env_LIBART_LIBS_set=${LIBART_LIBS+set} +ac_cv_env_LIBART_LIBS_value=$LIBART_LIBS +ac_env_FONTCONFIG_CFLAGS_set=${FONTCONFIG_CFLAGS+set} +ac_env_FONTCONFIG_CFLAGS_value=$FONTCONFIG_CFLAGS +ac_cv_env_FONTCONFIG_CFLAGS_set=${FONTCONFIG_CFLAGS+set} +ac_cv_env_FONTCONFIG_CFLAGS_value=$FONTCONFIG_CFLAGS +ac_env_FONTCONFIG_LIBS_set=${FONTCONFIG_LIBS+set} +ac_env_FONTCONFIG_LIBS_value=$FONTCONFIG_LIBS +ac_cv_env_FONTCONFIG_LIBS_set=${FONTCONFIG_LIBS+set} +ac_cv_env_FONTCONFIG_LIBS_value=$FONTCONFIG_LIBS +ac_env_PANGOFT2_CFLAGS_set=${PANGOFT2_CFLAGS+set} +ac_env_PANGOFT2_CFLAGS_value=$PANGOFT2_CFLAGS +ac_cv_env_PANGOFT2_CFLAGS_set=${PANGOFT2_CFLAGS+set} +ac_cv_env_PANGOFT2_CFLAGS_value=$PANGOFT2_CFLAGS +ac_env_PANGOFT2_LIBS_set=${PANGOFT2_LIBS+set} +ac_env_PANGOFT2_LIBS_value=$PANGOFT2_LIBS +ac_cv_env_PANGOFT2_LIBS_set=${PANGOFT2_LIBS+set} +ac_cv_env_PANGOFT2_LIBS_value=$PANGOFT2_LIBS +ac_env_EXIF_CFLAGS_set=${EXIF_CFLAGS+set} +ac_env_EXIF_CFLAGS_value=$EXIF_CFLAGS +ac_cv_env_EXIF_CFLAGS_set=${EXIF_CFLAGS+set} +ac_cv_env_EXIF_CFLAGS_value=$EXIF_CFLAGS +ac_env_EXIF_LIBS_set=${EXIF_LIBS+set} +ac_env_EXIF_LIBS_value=$EXIF_LIBS +ac_cv_env_EXIF_LIBS_set=${EXIF_LIBS+set} +ac_cv_env_EXIF_LIBS_value=$EXIF_LIBS +ac_env_GTKHTML2_CFLAGS_set=${GTKHTML2_CFLAGS+set} +ac_env_GTKHTML2_CFLAGS_value=$GTKHTML2_CFLAGS +ac_cv_env_GTKHTML2_CFLAGS_set=${GTKHTML2_CFLAGS+set} +ac_cv_env_GTKHTML2_CFLAGS_value=$GTKHTML2_CFLAGS +ac_env_GTKHTML2_LIBS_set=${GTKHTML2_LIBS+set} +ac_env_GTKHTML2_LIBS_value=$GTKHTML2_LIBS +ac_cv_env_GTKHTML2_LIBS_set=${GTKHTML2_LIBS+set} +ac_cv_env_GTKHTML2_LIBS_value=$GTKHTML2_LIBS +ac_env_SVG_CFLAGS_set=${SVG_CFLAGS+set} +ac_env_SVG_CFLAGS_value=$SVG_CFLAGS +ac_cv_env_SVG_CFLAGS_set=${SVG_CFLAGS+set} +ac_cv_env_SVG_CFLAGS_value=$SVG_CFLAGS +ac_env_SVG_LIBS_set=${SVG_LIBS+set} +ac_env_SVG_LIBS_value=$SVG_LIBS +ac_cv_env_SVG_LIBS_set=${SVG_LIBS+set} +ac_cv_env_SVG_LIBS_value=$SVG_LIBS +ac_env_PYGTK_CFLAGS_set=${PYGTK_CFLAGS+set} +ac_env_PYGTK_CFLAGS_value=$PYGTK_CFLAGS +ac_cv_env_PYGTK_CFLAGS_set=${PYGTK_CFLAGS+set} +ac_cv_env_PYGTK_CFLAGS_value=$PYGTK_CFLAGS +ac_env_PYGTK_LIBS_set=${PYGTK_LIBS+set} +ac_env_PYGTK_LIBS_value=$PYGTK_LIBS +ac_cv_env_PYGTK_LIBS_set=${PYGTK_LIBS+set} +ac_cv_env_PYGTK_LIBS_value=$PYGTK_LIBS # # Report the --help message. @@ -954,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.6 to adapt to many kinds of systems. +\`configure' configures GIMP 2.2.7 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1024,7 +1100,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of GIMP 2.2.6:";; + short | recursive ) echo "Configuration of GIMP 2.2.7:";; esac cat <<\_ACEOF @@ -1103,6 +1179,37 @@ CXXCPP C++ preprocessor F77 Fortran 77 compiler command FFLAGS Fortran 77 compiler flags + PKG_CONFIG path to pkg-config utility + GMODULE_CFLAGS + C compiler flags for GMODULE, overriding pkg-config + GMODULE_LIBS + linker flags for GMODULE, overriding pkg-config + GDK_PIXBUF_CFLAGS + C compiler flags for GDK_PIXBUF, overriding pkg-config + GDK_PIXBUF_LIBS + linker flags for GDK_PIXBUF, overriding pkg-config + LIBART_CFLAGS + C compiler flags for LIBART, overriding pkg-config + LIBART_LIBS linker flags for LIBART, overriding pkg-config + FONTCONFIG_CFLAGS + C compiler flags for FONTCONFIG, overriding pkg-config + FONTCONFIG_LIBS + linker flags for FONTCONFIG, overriding pkg-config + PANGOFT2_CFLAGS + C compiler flags for PANGOFT2, overriding pkg-config + PANGOFT2_LIBS + linker flags for PANGOFT2, overriding pkg-config + EXIF_CFLAGS C compiler flags for EXIF, overriding pkg-config + EXIF_LIBS linker flags for EXIF, overriding pkg-config + GTKHTML2_CFLAGS + C compiler flags for GTKHTML2, overriding pkg-config + GTKHTML2_LIBS + linker flags for GTKHTML2, overriding pkg-config + SVG_CFLAGS C compiler flags for SVG, overriding pkg-config + SVG_LIBS linker flags for SVG, overriding pkg-config + PYGTK_CFLAGS + C compiler flags for PYGTK, overriding pkg-config + PYGTK_LIBS linker flags for PYGTK, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. @@ -1203,7 +1310,7 @@ test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -GIMP configure 2.2.6 +GIMP configure 2.2.7 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -1217,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.6, which was +It was created by GIMP $as_me 2.2.7, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -1831,7 +1938,7 @@ # Define the identity of the package. PACKAGE='gimp' - VERSION='2.2.6' + VERSION='2.2.7' # Some tools Automake needs. @@ -1953,11 +2060,11 @@ GIMP_MAJOR_VERSION=2 GIMP_MINOR_VERSION=2 -GIMP_MICRO_VERSION=6 -GIMP_INTERFACE_AGE=6 -GIMP_BINARY_AGE=206 -GIMP_VERSION=2.2.6 -GIMP_REAL_VERSION=2.2.6 +GIMP_MICRO_VERSION=7 +GIMP_INTERFACE_AGE=7 +GIMP_BINARY_AGE=207 +GIMP_VERSION=2.2.7 +GIMP_REAL_VERSION=2.2.7 GIMP_API_VERSION=2.0 GIMP_APP_VERSION=2.2 GIMP_PLUGIN_VERSION=2.0 @@ -2009,7 +2116,7 @@ -LT_VERSION_INFO="200:6:200" +LT_VERSION_INFO="200:7:200" LT_CURRENT_MINUS_AGE=0 @@ -3739,7 +3846,7 @@ ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 3742 "configure"' > conftest.$ac_ext + echo '#line 3849 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -5538,7 +5645,7 @@ # Provide some information about the compiler. -echo "$as_me:5541:" \ +echo "$as_me:5648:" \ "checking for Fortran 77 compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` { (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 @@ -6570,11 +6677,11 @@ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:6573: $lt_compile\"" >&5) + (eval echo "\"\$as_me:6680: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:6577: \$? = $ac_status" >&5 + echo "$as_me:6684: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -6803,11 +6910,11 @@ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:6806: $lt_compile\"" >&5) + (eval echo "\"\$as_me:6913: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:6810: \$? = $ac_status" >&5 + echo "$as_me:6917: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -6863,11 +6970,11 @@ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:6866: $lt_compile\"" >&5) + (eval echo "\"\$as_me:6973: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:6870: \$? = $ac_status" >&5 + echo "$as_me:6977: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -9051,7 +9158,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < conftest.$ac_ext <&5) + (eval echo "\"\$as_me:11436: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:11333: \$? = $ac_status" >&5 + echo "$as_me:11440: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -11386,11 +11493,11 @@ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:11389: $lt_compile\"" >&5) + (eval echo "\"\$as_me:11496: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:11393: \$? = $ac_status" >&5 + echo "$as_me:11500: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -12755,7 +12862,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < conftest.$ac_ext <&5) + (eval echo "\"\$as_me:13790: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:13687: \$? = $ac_status" >&5 + echo "$as_me:13794: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -13740,11 +13847,11 @@ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:13743: $lt_compile\"" >&5) + (eval echo "\"\$as_me:13850: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:13747: \$? = $ac_status" >&5 + echo "$as_me:13854: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -15785,11 +15892,11 @@ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:15788: $lt_compile\"" >&5) + (eval echo "\"\$as_me:15895: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:15792: \$? = $ac_status" >&5 + echo "$as_me:15899: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -16018,11 +16125,11 @@ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:16021: $lt_compile\"" >&5) + (eval echo "\"\$as_me:16128: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:16025: \$? = $ac_status" >&5 + echo "$as_me:16132: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -16078,11 +16185,11 @@ -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:16081: $lt_compile\"" >&5) + (eval echo "\"\$as_me:16188: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:16085: \$? = $ac_status" >&5 + echo "$as_me:16192: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized @@ -18266,7 +18373,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < conftest.$ac_ext <&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then @@ -24254,7 +24361,6 @@ done done - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" ;; esac fi @@ -24268,60 +24374,156 @@ echo "${ECHO_T}no" >&6 fi +fi +if test -z "$ac_cv_path_PKG_CONFIG"; then + ac_pt_PKG_CONFIG=$PKG_CONFIG + # Extract the first word of "pkg-config", so it can be a program name with args. +set dummy pkg-config; ac_word=$2 +echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 +if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $ac_pt_PKG_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 fi +done +done - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for gmodule-2.0 gobject-2.0" >&5 -echo $ECHO_N "checking for gmodule-2.0 gobject-2.0... $ECHO_C" >&6 + ;; +esac +fi +ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG - if $PKG_CONFIG --exists "gmodule-2.0 gobject-2.0" ; then - echo "$as_me:$LINENO: result: yes" >&5 +if test -n "$ac_pt_PKG_CONFIG"; then + echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 +echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + PKG_CONFIG=$ac_pt_PKG_CONFIG +else + PKG_CONFIG="$ac_cv_path_PKG_CONFIG" +fi + +fi +if test -n "$PKG_CONFIG"; then + _pkg_min_version=0.9.0 + echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 +echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6 + if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then + echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6 - succeeded=yes + else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 + PKG_CONFIG="" + fi - echo "$as_me:$LINENO: checking GMODULE_CFLAGS" >&5 -echo $ECHO_N "checking GMODULE_CFLAGS... $ECHO_C" >&6 - GMODULE_CFLAGS=`$PKG_CONFIG --cflags "gmodule-2.0 gobject-2.0"` - echo "$as_me:$LINENO: result: $GMODULE_CFLAGS" >&5 -echo "${ECHO_T}$GMODULE_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking GMODULE_LIBS" >&5 -echo $ECHO_N "checking GMODULE_LIBS... $ECHO_C" >&6 - GMODULE_LIBS=`$PKG_CONFIG --libs "gmodule-2.0 gobject-2.0"` - echo "$as_me:$LINENO: result: $GMODULE_LIBS" >&5 -echo "${ECHO_T}$GMODULE_LIBS" >&6 - else - GMODULE_CFLAGS="" - GMODULE_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - GMODULE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gmodule-2.0 gobject-2.0"` - echo $GMODULE_PKG_ERRORS - fi +fi +pkg_failed=no +echo "$as_me:$LINENO: checking for GMODULE_CFLAGS" >&5 +echo $ECHO_N "checking for GMODULE_CFLAGS... $ECHO_C" >&6 +if test "${pkg_cv_GMODULE_CFLAGS+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + 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 + pkg_cv_GMODULE_CFLAGS=`$PKG_CONFIG --cflags "gmodule-2.0 gobject-2.0" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried +fi +fi +echo "$as_me:$LINENO: result: $pkg_cv_GMODULE_CFLAGS" >&5 +echo "${ECHO_T}$pkg_cv_GMODULE_CFLAGS" >&6 +echo "$as_me:$LINENO: checking for GMODULE_LIBS" >&5 +echo $ECHO_N "checking for GMODULE_LIBS... $ECHO_C" >&6 +if test "${pkg_cv_GMODULE_LIBS+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + 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 + pkg_cv_GMODULE_LIBS=`$PKG_CONFIG --libs "gmodule-2.0 gobject-2.0" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried +fi +fi +echo "$as_me:$LINENO: result: $pkg_cv_GMODULE_LIBS" >&5 +echo "${ECHO_T}$pkg_cv_GMODULE_LIBS" >&6 +if test $pkg_failed = yes; then + GMODULE_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gmodule-2.0 gobject-2.0"` + # Put the nasty error message in config.log where it belongs + echo "$GMODULE_PKG_ERRORS" 1>&5 + + { { echo "$as_me:$LINENO: error: Package requirements (gmodule-2.0 gobject-2.0) 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 GMODULE_CFLAGS and GMODULE_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details." >&5 +echo "$as_me: error: Package requirements (gmodule-2.0 gobject-2.0) 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 GMODULE_CFLAGS and GMODULE_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details." >&2;} + { (exit 1); exit 1; }; } +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: 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. + +Alternatively you may set the GMODULE_CFLAGS and GMODULE_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details. - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: 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. + +Alternatively you may set the GMODULE_CFLAGS and GMODULE_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details. - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Library requirements (gmodule-2.0 gobject-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 -echo "$as_me: error: Library requirements (gmodule-2.0 gobject-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} +To get pkg-config, see . +See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } - fi - +else + GMODULE_CFLAGS=$pkg_cv_GMODULE_CFLAGS + GMODULE_LIBS=$pkg_cv_GMODULE_LIBS + : +fi @@ -26138,103 +26340,93 @@ echo "${ECHO_T}$have_gtk_2_7" >&6 - succeeded=no - - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +pkg_failed=no +echo "$as_me:$LINENO: checking for GDK_PIXBUF_CFLAGS" >&5 +echo $ECHO_N "checking for GDK_PIXBUF_CFLAGS... $ECHO_C" >&6 +if test "${pkg_cv_GDK_PIXBUF_CFLAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + 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 + pkg_cv_GDK_PIXBUF_CFLAGS=`$PKG_CONFIG --cflags "gdk-pixbuf-2.0 >= 2.4.4" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG - -if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 +fi +echo "$as_me:$LINENO: result: $pkg_cv_GDK_PIXBUF_CFLAGS" >&5 +echo "${ECHO_T}$pkg_cv_GDK_PIXBUF_CFLAGS" >&6 +echo "$as_me:$LINENO: checking for GDK_PIXBUF_LIBS" >&5 +echo $ECHO_N "checking for GDK_PIXBUF_LIBS... $ECHO_C" >&6 +if test "${pkg_cv_GDK_PIXBUF_LIBS+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + 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 + pkg_cv_GDK_PIXBUF_LIBS=`$PKG_CONFIG --libs "gdk-pixbuf-2.0 >= 2.4.4" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi +fi +echo "$as_me:$LINENO: result: $pkg_cv_GDK_PIXBUF_LIBS" >&5 +echo "${ECHO_T}$pkg_cv_GDK_PIXBUF_LIBS" >&6 - fi - - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for gdk-pixbuf-2.0 >= 2.4.4" >&5 -echo $ECHO_N "checking for gdk-pixbuf-2.0 >= 2.4.4... $ECHO_C" >&6 - - if $PKG_CONFIG --exists "gdk-pixbuf-2.0 >= 2.4.4" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes - - echo "$as_me:$LINENO: checking GDK_PIXBUF_CFLAGS" >&5 -echo $ECHO_N "checking GDK_PIXBUF_CFLAGS... $ECHO_C" >&6 - GDK_PIXBUF_CFLAGS=`$PKG_CONFIG --cflags "gdk-pixbuf-2.0 >= 2.4.4"` - echo "$as_me:$LINENO: result: $GDK_PIXBUF_CFLAGS" >&5 -echo "${ECHO_T}$GDK_PIXBUF_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking GDK_PIXBUF_LIBS" >&5 -echo $ECHO_N "checking GDK_PIXBUF_LIBS... $ECHO_C" >&6 - GDK_PIXBUF_LIBS=`$PKG_CONFIG --libs "gdk-pixbuf-2.0 >= 2.4.4"` - echo "$as_me:$LINENO: result: $GDK_PIXBUF_LIBS" >&5 -echo "${ECHO_T}$GDK_PIXBUF_LIBS" >&6 - else - GDK_PIXBUF_CFLAGS="" - GDK_PIXBUF_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - GDK_PIXBUF_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gdk-pixbuf-2.0 >= 2.4.4"` - echo $GDK_PIXBUF_PKG_ERRORS - fi - - +if test $pkg_failed = yes; then + GDK_PIXBUF_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gdk-pixbuf-2.0 >= 2.4.4"` + # Put the nasty error message in config.log where it belongs + echo "$GDK_PIXBUF_PKG_ERRORS" 1>&5 + + { { echo "$as_me:$LINENO: error: Package requirements (gdk-pixbuf-2.0 >= 2.4.4) 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 GDK_PIXBUF_CFLAGS and GDK_PIXBUF_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details." >&5 +echo "$as_me: error: Package requirements (gdk-pixbuf-2.0 >= 2.4.4) 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 GDK_PIXBUF_CFLAGS and GDK_PIXBUF_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details." >&2;} + { (exit 1); exit 1; }; } +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: 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. + +Alternatively you may set the GDK_PIXBUF_CFLAGS and GDK_PIXBUF_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details. - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: 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. + +Alternatively you may set the GDK_PIXBUF_CFLAGS and GDK_PIXBUF_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details. - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Library requirements (gdk-pixbuf-2.0 >= 2.4.4) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 -echo "$as_me: error: Library requirements (gdk-pixbuf-2.0 >= 2.4.4) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} +To get pkg-config, see . +See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } - fi - +else + GDK_PIXBUF_CFLAGS=$pkg_cv_GDK_PIXBUF_CFLAGS + GDK_PIXBUF_LIBS=$pkg_cv_GDK_PIXBUF_LIBS + : +fi @@ -26285,307 +26477,251 @@ fi - succeeded=no - - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +pkg_failed=no +echo "$as_me:$LINENO: checking for LIBART_CFLAGS" >&5 +echo $ECHO_N "checking for LIBART_CFLAGS... $ECHO_C" >&6 +if test "${pkg_cv_LIBART_CFLAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + 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 + pkg_cv_LIBART_CFLAGS=`$PKG_CONFIG --cflags "libart-2.0" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG - -if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 +fi +echo "$as_me:$LINENO: result: $pkg_cv_LIBART_CFLAGS" >&5 +echo "${ECHO_T}$pkg_cv_LIBART_CFLAGS" >&6 +echo "$as_me:$LINENO: checking for LIBART_LIBS" >&5 +echo $ECHO_N "checking for LIBART_LIBS... $ECHO_C" >&6 +if test "${pkg_cv_LIBART_LIBS+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + 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 + pkg_cv_LIBART_LIBS=`$PKG_CONFIG --libs "libart-2.0" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi +fi +echo "$as_me:$LINENO: result: $pkg_cv_LIBART_LIBS" >&5 +echo "${ECHO_T}$pkg_cv_LIBART_LIBS" >&6 - fi - - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for libart-2.0" >&5 -echo $ECHO_N "checking for libart-2.0... $ECHO_C" >&6 - - if $PKG_CONFIG --exists "libart-2.0" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes - - echo "$as_me:$LINENO: checking LIBART_CFLAGS" >&5 -echo $ECHO_N "checking LIBART_CFLAGS... $ECHO_C" >&6 - LIBART_CFLAGS=`$PKG_CONFIG --cflags "libart-2.0"` - echo "$as_me:$LINENO: result: $LIBART_CFLAGS" >&5 -echo "${ECHO_T}$LIBART_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking LIBART_LIBS" >&5 -echo $ECHO_N "checking LIBART_LIBS... $ECHO_C" >&6 - LIBART_LIBS=`$PKG_CONFIG --libs "libart-2.0"` - echo "$as_me:$LINENO: result: $LIBART_LIBS" >&5 -echo "${ECHO_T}$LIBART_LIBS" >&6 - else - LIBART_CFLAGS="" - LIBART_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - LIBART_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libart-2.0"` - echo $LIBART_PKG_ERRORS - fi - - +if test $pkg_failed = yes; then + LIBART_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libart-2.0"` + # Put the nasty error message in config.log where it belongs + echo "$LIBART_PKG_ERRORS" 1>&5 + + { { echo "$as_me:$LINENO: error: Package requirements (libart-2.0) 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 LIBART_CFLAGS and LIBART_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details." >&5 +echo "$as_me: error: Package requirements (libart-2.0) 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 LIBART_CFLAGS and LIBART_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details." >&2;} + { (exit 1); exit 1; }; } +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: 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. + +Alternatively you may set the LIBART_CFLAGS and LIBART_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details. - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: 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. + +Alternatively you may set the LIBART_CFLAGS and LIBART_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details. - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Library requirements (libart-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 -echo "$as_me: error: Library requirements (libart-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} +To get pkg-config, see . +See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } - fi - - +else + LIBART_CFLAGS=$pkg_cv_LIBART_CFLAGS + LIBART_LIBS=$pkg_cv_LIBART_LIBS + : +fi - succeeded=no - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +pkg_failed=no +echo "$as_me:$LINENO: checking for FONTCONFIG_CFLAGS" >&5 +echo $ECHO_N "checking for FONTCONFIG_CFLAGS... $ECHO_C" >&6 +if test "${pkg_cv_FONTCONFIG_CFLAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + 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 + pkg_cv_FONTCONFIG_CFLAGS=`$PKG_CONFIG --cflags "fontconfig >= 2.2.0" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG - -if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 +fi +echo "$as_me:$LINENO: result: $pkg_cv_FONTCONFIG_CFLAGS" >&5 +echo "${ECHO_T}$pkg_cv_FONTCONFIG_CFLAGS" >&6 +echo "$as_me:$LINENO: checking for FONTCONFIG_LIBS" >&5 +echo $ECHO_N "checking for FONTCONFIG_LIBS... $ECHO_C" >&6 +if test "${pkg_cv_FONTCONFIG_LIBS+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + 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 + pkg_cv_FONTCONFIG_LIBS=`$PKG_CONFIG --libs "fontconfig >= 2.2.0" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi +fi +echo "$as_me:$LINENO: result: $pkg_cv_FONTCONFIG_LIBS" >&5 +echo "${ECHO_T}$pkg_cv_FONTCONFIG_LIBS" >&6 - fi - - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for fontconfig >= 2.2.0" >&5 -echo $ECHO_N "checking for fontconfig >= 2.2.0... $ECHO_C" >&6 - - if $PKG_CONFIG --exists "fontconfig >= 2.2.0" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes - - echo "$as_me:$LINENO: checking FONTCONFIG_CFLAGS" >&5 -echo $ECHO_N "checking FONTCONFIG_CFLAGS... $ECHO_C" >&6 - FONTCONFIG_CFLAGS=`$PKG_CONFIG --cflags "fontconfig >= 2.2.0"` - echo "$as_me:$LINENO: result: $FONTCONFIG_CFLAGS" >&5 -echo "${ECHO_T}$FONTCONFIG_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking FONTCONFIG_LIBS" >&5 -echo $ECHO_N "checking FONTCONFIG_LIBS... $ECHO_C" >&6 - FONTCONFIG_LIBS=`$PKG_CONFIG --libs "fontconfig >= 2.2.0"` - echo "$as_me:$LINENO: result: $FONTCONFIG_LIBS" >&5 -echo "${ECHO_T}$FONTCONFIG_LIBS" >&6 - else - FONTCONFIG_CFLAGS="" - FONTCONFIG_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - FONTCONFIG_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "fontconfig >= 2.2.0"` - echo $FONTCONFIG_PKG_ERRORS - fi - - +if test $pkg_failed = yes; then + FONTCONFIG_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "fontconfig >= 2.2.0"` + # Put the nasty error message in config.log where it belongs + echo "$FONTCONFIG_PKG_ERRORS" 1>&5 + + { { echo "$as_me:$LINENO: error: Package requirements (fontconfig >= 2.2.0) 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 FONTCONFIG_CFLAGS and FONTCONFIG_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details." >&5 +echo "$as_me: error: Package requirements (fontconfig >= 2.2.0) 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 FONTCONFIG_CFLAGS and FONTCONFIG_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details." >&2;} + { (exit 1); exit 1; }; } +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: 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. + +Alternatively you may set the FONTCONFIG_CFLAGS and FONTCONFIG_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details. - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: 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. + +Alternatively you may set the FONTCONFIG_CFLAGS and FONTCONFIG_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details. - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Library requirements (fontconfig >= 2.2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 -echo "$as_me: error: Library requirements (fontconfig >= 2.2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} +To get pkg-config, see . +See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } - fi - - +else + FONTCONFIG_CFLAGS=$pkg_cv_FONTCONFIG_CFLAGS + FONTCONFIG_LIBS=$pkg_cv_FONTCONFIG_LIBS + : +fi - succeeded=no - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +pkg_failed=no +echo "$as_me:$LINENO: checking for PANGOFT2_CFLAGS" >&5 +echo $ECHO_N "checking for PANGOFT2_CFLAGS... $ECHO_C" >&6 +if test "${pkg_cv_PANGOFT2_CFLAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + 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 + pkg_cv_PANGOFT2_CFLAGS=`$PKG_CONFIG --cflags "pangoft2 >= 1.4.0" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG - -if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 +fi +echo "$as_me:$LINENO: result: $pkg_cv_PANGOFT2_CFLAGS" >&5 +echo "${ECHO_T}$pkg_cv_PANGOFT2_CFLAGS" >&6 +echo "$as_me:$LINENO: checking for PANGOFT2_LIBS" >&5 +echo $ECHO_N "checking for PANGOFT2_LIBS... $ECHO_C" >&6 +if test "${pkg_cv_PANGOFT2_LIBS+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + 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 + pkg_cv_PANGOFT2_LIBS=`$PKG_CONFIG --libs "pangoft2 >= 1.4.0" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi +fi +echo "$as_me:$LINENO: result: $pkg_cv_PANGOFT2_LIBS" >&5 +echo "${ECHO_T}$pkg_cv_PANGOFT2_LIBS" >&6 - fi - - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for pangoft2 >= 1.4.0" >&5 -echo $ECHO_N "checking for pangoft2 >= 1.4.0... $ECHO_C" >&6 - - if $PKG_CONFIG --exists "pangoft2 >= 1.4.0" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes - - echo "$as_me:$LINENO: checking PANGOFT2_CFLAGS" >&5 -echo $ECHO_N "checking PANGOFT2_CFLAGS... $ECHO_C" >&6 - PANGOFT2_CFLAGS=`$PKG_CONFIG --cflags "pangoft2 >= 1.4.0"` - echo "$as_me:$LINENO: result: $PANGOFT2_CFLAGS" >&5 -echo "${ECHO_T}$PANGOFT2_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking PANGOFT2_LIBS" >&5 -echo $ECHO_N "checking PANGOFT2_LIBS... $ECHO_C" >&6 - PANGOFT2_LIBS=`$PKG_CONFIG --libs "pangoft2 >= 1.4.0"` - echo "$as_me:$LINENO: result: $PANGOFT2_LIBS" >&5 -echo "${ECHO_T}$PANGOFT2_LIBS" >&6 - else - PANGOFT2_CFLAGS="" - PANGOFT2_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - PANGOFT2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pangoft2 >= 1.4.0"` - - fi - - +if test $pkg_failed = yes; then + PANGOFT2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pangoft2 >= 1.4.0"` + # Put the nasty error message in config.log where it belongs + echo "$PANGOFT2_PKG_ERRORS" 1>&5 - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi - - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Test for PangoFT2 failed. + { { echo "$as_me:$LINENO: error: Test for PangoFT2 failed. *** We require Pango with the optional support for FreeType2 compiled in. *** See the file 'INSTALL' for more help." >&5 echo "$as_me: error: Test for PangoFT2 failed. *** We require Pango with the optional support for FreeType2 compiled in. *** See the file 'INSTALL' for more help." >&2;} { (exit 1); exit 1; }; } - fi - +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: Test for PangoFT2 failed. +*** We require Pango with the optional support for FreeType2 compiled in. +*** See the file 'INSTALL' for more help." >&5 +echo "$as_me: error: Test for PangoFT2 failed. +*** We require Pango with the optional support for FreeType2 compiled in. +*** See the file 'INSTALL' for more help." >&2;} + { (exit 1); exit 1; }; } +else + PANGOFT2_CFLAGS=$pkg_cv_PANGOFT2_CFLAGS + PANGOFT2_LIBS=$pkg_cv_PANGOFT2_LIBS + : +fi @@ -30831,111 +30967,74 @@ fi; if test x$with_libexif != xno && test -z "$LIBEXIF" && test -n "$LIBJPEG"; then - succeeded=no - - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +pkg_failed=no +echo "$as_me:$LINENO: checking for EXIF_CFLAGS" >&5 +echo $ECHO_N "checking for EXIF_CFLAGS... $ECHO_C" >&6 +if test "${pkg_cv_EXIF_CFLAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + 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 + pkg_cv_EXIF_CFLAGS=`$PKG_CONFIG --cflags "libexif" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG - -if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 +fi +echo "$as_me:$LINENO: result: $pkg_cv_EXIF_CFLAGS" >&5 +echo "${ECHO_T}$pkg_cv_EXIF_CFLAGS" >&6 +echo "$as_me:$LINENO: checking for EXIF_LIBS" >&5 +echo $ECHO_N "checking for EXIF_LIBS... $ECHO_C" >&6 +if test "${pkg_cv_EXIF_LIBS+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + 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 + pkg_cv_EXIF_LIBS=`$PKG_CONFIG --libs "libexif" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi +fi +echo "$as_me:$LINENO: result: $pkg_cv_EXIF_LIBS" >&5 +echo "${ECHO_T}$pkg_cv_EXIF_LIBS" >&6 - fi - - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for libexif" >&5 -echo $ECHO_N "checking for libexif... $ECHO_C" >&6 - - if $PKG_CONFIG --exists "libexif" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes - - echo "$as_me:$LINENO: checking EXIF_CFLAGS" >&5 -echo $ECHO_N "checking EXIF_CFLAGS... $ECHO_C" >&6 - EXIF_CFLAGS=`$PKG_CONFIG --cflags "libexif"` - echo "$as_me:$LINENO: result: $EXIF_CFLAGS" >&5 -echo "${ECHO_T}$EXIF_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking EXIF_LIBS" >&5 -echo $ECHO_N "checking EXIF_LIBS... $ECHO_C" >&6 - EXIF_LIBS=`$PKG_CONFIG --libs "libexif"` - echo "$as_me:$LINENO: result: $EXIF_LIBS" >&5 -echo "${ECHO_T}$EXIF_LIBS" >&6 - else - EXIF_CFLAGS="" - EXIF_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - EXIF_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libexif"` - - fi - - - - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi - - if test $succeeded = yes; then +if test $pkg_failed = yes; then + EXIF_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libexif"` + # Put the nasty error message in config.log where it belongs + echo "$EXIF_PKG_ERRORS" 1>&5 -cat >>confdefs.h <<\_ACEOF -#define HAVE_EXIF 1 -_ACEOF - - else - { echo "$as_me:$LINENO: WARNING: libexif not found! + { echo "$as_me:$LINENO: WARNING: libexif not found! EXIF support will not be built into the JPEG plug-in. libexif is available from http://www.sourceforge.net/projects/libexif" >&5 echo "$as_me: WARNING: libexif not found! EXIF support will not be built into the JPEG plug-in. libexif is available from http://www.sourceforge.net/projects/libexif" >&2;} - fi +elif test $pkg_failed = untried; then + { echo "$as_me:$LINENO: WARNING: libexif not found! +EXIF support will not be built into the JPEG plug-in. +libexif is available from http://www.sourceforge.net/projects/libexif" >&5 +echo "$as_me: WARNING: libexif not found! +EXIF support will not be built into the JPEG plug-in. +libexif is available from http://www.sourceforge.net/projects/libexif" >&2;} +else + EXIF_CFLAGS=$pkg_cv_EXIF_CFLAGS + EXIF_LIBS=$pkg_cv_EXIF_LIBS + +cat >>confdefs.h <<\_ACEOF +#define HAVE_EXIF 1 +_ACEOF fi +fi @@ -31409,102 +31508,61 @@ #################### - succeeded=no - - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +pkg_failed=no +echo "$as_me:$LINENO: checking for GTKHTML2_CFLAGS" >&5 +echo $ECHO_N "checking for GTKHTML2_CFLAGS... $ECHO_C" >&6 +if test "${pkg_cv_GTKHTML2_CFLAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + 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 + pkg_cv_GTKHTML2_CFLAGS=`$PKG_CONFIG --cflags "libgtkhtml-2.0 >= 2.0.0" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG - -if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 +fi +echo "$as_me:$LINENO: result: $pkg_cv_GTKHTML2_CFLAGS" >&5 +echo "${ECHO_T}$pkg_cv_GTKHTML2_CFLAGS" >&6 +echo "$as_me:$LINENO: checking for GTKHTML2_LIBS" >&5 +echo $ECHO_N "checking for GTKHTML2_LIBS... $ECHO_C" >&6 +if test "${pkg_cv_GTKHTML2_LIBS+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + 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 + pkg_cv_GTKHTML2_LIBS=`$PKG_CONFIG --libs "libgtkhtml-2.0 >= 2.0.0" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi +fi +echo "$as_me:$LINENO: result: $pkg_cv_GTKHTML2_LIBS" >&5 +echo "${ECHO_T}$pkg_cv_GTKHTML2_LIBS" >&6 - fi - - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for libgtkhtml-2.0 >= 2.0.0" >&5 -echo $ECHO_N "checking for libgtkhtml-2.0 >= 2.0.0... $ECHO_C" >&6 - - if $PKG_CONFIG --exists "libgtkhtml-2.0 >= 2.0.0" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes - - echo "$as_me:$LINENO: checking GTKHTML2_CFLAGS" >&5 -echo $ECHO_N "checking GTKHTML2_CFLAGS... $ECHO_C" >&6 - GTKHTML2_CFLAGS=`$PKG_CONFIG --cflags "libgtkhtml-2.0 >= 2.0.0"` - echo "$as_me:$LINENO: result: $GTKHTML2_CFLAGS" >&5 -echo "${ECHO_T}$GTKHTML2_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking GTKHTML2_LIBS" >&5 -echo $ECHO_N "checking GTKHTML2_LIBS... $ECHO_C" >&6 - GTKHTML2_LIBS=`$PKG_CONFIG --libs "libgtkhtml-2.0 >= 2.0.0"` - echo "$as_me:$LINENO: result: $GTKHTML2_LIBS" >&5 -echo "${ECHO_T}$GTKHTML2_LIBS" >&6 - else - GTKHTML2_CFLAGS="" - GTKHTML2_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - GTKHTML2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libgtkhtml-2.0 >= 2.0.0"` - - fi - - - - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi +if test $pkg_failed = yes; then + GTKHTML2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libgtkhtml-2.0 >= 2.0.0"` + # Put the nasty error message in config.log where it belongs + echo "$GTKHTML2_PKG_ERRORS" 1>&5 - if test $succeeded = yes; then - have_gtkhtml2=yes - else - { echo "$as_me:$LINENO: WARNING: *** Help browser plug-in will not be built (GtkHtml2 not found) ***" >&5 + { echo "$as_me:$LINENO: WARNING: *** Help browser plug-in will not be built (GtkHtml2 not found) ***" >&5 echo "$as_me: WARNING: *** Help browser plug-in will not be built (GtkHtml2 not found) ***" >&2;} - fi - +elif test $pkg_failed = untried; then + { echo "$as_me:$LINENO: WARNING: *** Help browser plug-in will not be built (GtkHtml2 not found) ***" >&5 +echo "$as_me: WARNING: *** Help browser plug-in will not be built (GtkHtml2 not found) ***" >&2;} +else + GTKHTML2_CFLAGS=$pkg_cv_GTKHTML2_CFLAGS + GTKHTML2_LIBS=$pkg_cv_GTKHTML2_LIBS + have_gtkhtml2=yes +fi @@ -31524,103 +31582,62 @@ ################### - succeeded=no - - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +pkg_failed=no +echo "$as_me:$LINENO: checking for SVG_CFLAGS" >&5 +echo $ECHO_N "checking for SVG_CFLAGS... $ECHO_C" >&6 +if test "${pkg_cv_SVG_CFLAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + 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 + pkg_cv_SVG_CFLAGS=`$PKG_CONFIG --cflags "librsvg-2.0 >= 2.2.0" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG - -if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 +fi +echo "$as_me:$LINENO: result: $pkg_cv_SVG_CFLAGS" >&5 +echo "${ECHO_T}$pkg_cv_SVG_CFLAGS" >&6 +echo "$as_me:$LINENO: checking for SVG_LIBS" >&5 +echo $ECHO_N "checking for SVG_LIBS... $ECHO_C" >&6 +if test "${pkg_cv_SVG_LIBS+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + 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 + pkg_cv_SVG_LIBS=`$PKG_CONFIG --libs "librsvg-2.0 >= 2.2.0" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi +fi +echo "$as_me:$LINENO: result: $pkg_cv_SVG_LIBS" >&5 +echo "${ECHO_T}$pkg_cv_SVG_LIBS" >&6 - fi - - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for librsvg-2.0 >= 2.2.0" >&5 -echo $ECHO_N "checking for librsvg-2.0 >= 2.2.0... $ECHO_C" >&6 - - if $PKG_CONFIG --exists "librsvg-2.0 >= 2.2.0" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes - - echo "$as_me:$LINENO: checking SVG_CFLAGS" >&5 -echo $ECHO_N "checking SVG_CFLAGS... $ECHO_C" >&6 - SVG_CFLAGS=`$PKG_CONFIG --cflags "librsvg-2.0 >= 2.2.0"` - echo "$as_me:$LINENO: result: $SVG_CFLAGS" >&5 -echo "${ECHO_T}$SVG_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking SVG_LIBS" >&5 -echo $ECHO_N "checking SVG_LIBS... $ECHO_C" >&6 - SVG_LIBS=`$PKG_CONFIG --libs "librsvg-2.0 >= 2.2.0"` - echo "$as_me:$LINENO: result: $SVG_LIBS" >&5 -echo "${ECHO_T}$SVG_LIBS" >&6 - else - SVG_CFLAGS="" - SVG_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - SVG_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "librsvg-2.0 >= 2.2.0"` - - fi - - +if test $pkg_failed = yes; then + SVG_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "librsvg-2.0 >= 2.2.0"` + # Put the nasty error message in config.log where it belongs + echo "$SVG_PKG_ERRORS" 1>&5 - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi - - if test $succeeded = yes; then - SVG='svg$(EXEEXT)' - LIBSVG=$SVG_LIBS - else - { echo "$as_me:$LINENO: WARNING: *** SVG import plug-in will not be built (librsvg not found) ***" >&5 + { echo "$as_me:$LINENO: WARNING: *** SVG import plug-in will not be built (librsvg not found) ***" >&5 echo "$as_me: WARNING: *** SVG import plug-in will not be built (librsvg not found) ***" >&2;} - fi - +elif test $pkg_failed = untried; then + { echo "$as_me:$LINENO: WARNING: *** SVG import plug-in will not be built (librsvg not found) ***" >&5 +echo "$as_me: WARNING: *** SVG import plug-in will not be built (librsvg not found) ***" >&2;} +else + SVG_CFLAGS=$pkg_cv_SVG_CFLAGS + SVG_LIBS=$pkg_cv_SVG_LIBS + SVG='svg$(EXEEXT)' + LIBSVG=$SVG_LIBS +fi @@ -33295,103 +33312,93 @@ - succeeded=no - - if test -z "$PKG_CONFIG"; then - # Extract the first word of "pkg-config", so it can be a program name with args. -set dummy pkg-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_PKG_CONFIG+set}" = set; then +pkg_failed=no +echo "$as_me:$LINENO: checking for PYGTK_CFLAGS" >&5 +echo $ECHO_N "checking for PYGTK_CFLAGS... $ECHO_C" >&6 +if test "${pkg_cv_PYGTK_CFLAGS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - case $PKG_CONFIG in - [\\/]* | ?:[\\/]*) - ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. - ;; - *) - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no" - ;; -esac + 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 + pkg_cv_PYGTK_CFLAGS=`$PKG_CONFIG --cflags "pygtk-2.0 >= 1.99.15" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi -PKG_CONFIG=$ac_cv_path_PKG_CONFIG - -if test -n "$PKG_CONFIG"; then - echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 -echo "${ECHO_T}$PKG_CONFIG" >&6 +fi +echo "$as_me:$LINENO: result: $pkg_cv_PYGTK_CFLAGS" >&5 +echo "${ECHO_T}$pkg_cv_PYGTK_CFLAGS" >&6 +echo "$as_me:$LINENO: checking for PYGTK_LIBS" >&5 +echo $ECHO_N "checking for PYGTK_LIBS... $ECHO_C" >&6 +if test "${pkg_cv_PYGTK_LIBS+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 + 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 + pkg_cv_PYGTK_LIBS=`$PKG_CONFIG --libs "pygtk-2.0 >= 1.99.15" 2>/dev/null` + else + pkg_failed=yes + fi +else + pkg_failed=untried fi +fi +echo "$as_me:$LINENO: result: $pkg_cv_PYGTK_LIBS" >&5 +echo "${ECHO_T}$pkg_cv_PYGTK_LIBS" >&6 - fi - - if test "$PKG_CONFIG" = "no" ; then - echo "*** The pkg-config script could not be found. Make sure it is" - echo "*** in your path, or set the PKG_CONFIG environment variable" - echo "*** to the full path to pkg-config." - echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." - else - PKG_CONFIG_MIN_VERSION=0.9.0 - if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then - echo "$as_me:$LINENO: checking for pygtk-2.0 >= 1.99.15" >&5 -echo $ECHO_N "checking for pygtk-2.0 >= 1.99.15... $ECHO_C" >&6 - - if $PKG_CONFIG --exists "pygtk-2.0 >= 1.99.15" ; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - succeeded=yes - - echo "$as_me:$LINENO: checking PYGTK_CFLAGS" >&5 -echo $ECHO_N "checking PYGTK_CFLAGS... $ECHO_C" >&6 - PYGTK_CFLAGS=`$PKG_CONFIG --cflags "pygtk-2.0 >= 1.99.15"` - echo "$as_me:$LINENO: result: $PYGTK_CFLAGS" >&5 -echo "${ECHO_T}$PYGTK_CFLAGS" >&6 - - echo "$as_me:$LINENO: checking PYGTK_LIBS" >&5 -echo $ECHO_N "checking PYGTK_LIBS... $ECHO_C" >&6 - PYGTK_LIBS=`$PKG_CONFIG --libs "pygtk-2.0 >= 1.99.15"` - echo "$as_me:$LINENO: result: $PYGTK_LIBS" >&5 -echo "${ECHO_T}$PYGTK_LIBS" >&6 - else - PYGTK_CFLAGS="" - PYGTK_LIBS="" - ## If we have a custom action on failure, don't print errors, but - ## do set a variable so people can do so. - PYGTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pygtk-2.0 >= 1.99.15"` - echo $PYGTK_PKG_ERRORS - fi - - +if test $pkg_failed = yes; then + PYGTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pygtk-2.0 >= 1.99.15"` + # Put the nasty error message in config.log where it belongs + echo "$PYGTK_PKG_ERRORS" 1>&5 + + { { echo "$as_me:$LINENO: error: Package requirements (pygtk-2.0 >= 1.99.15) 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 PYGTK_CFLAGS and PYGTK_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details." >&5 +echo "$as_me: error: Package requirements (pygtk-2.0 >= 1.99.15) 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 PYGTK_CFLAGS and PYGTK_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details." >&2;} + { (exit 1); exit 1; }; } +elif test $pkg_failed = untried; then + { { echo "$as_me:$LINENO: error: 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. + +Alternatively you may set the PYGTK_CFLAGS and PYGTK_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details. - else - echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - fi - fi +To get pkg-config, see . +See \`config.log' for more details." >&5 +echo "$as_me: error: 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. + +Alternatively you may set the PYGTK_CFLAGS and PYGTK_LIBS environment variables +to avoid the need to call pkg-config. See the pkg-config man page for +more details. - if test $succeeded = yes; then - : - else - { { echo "$as_me:$LINENO: error: Library requirements (pygtk-2.0 >= 1.99.15) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5 -echo "$as_me: error: Library requirements (pygtk-2.0 >= 1.99.15) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;} +To get pkg-config, see . +See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } - fi - +else + PYGTK_CFLAGS=$pkg_cv_PYGTK_CFLAGS + PYGTK_LIBS=$pkg_cv_PYGTK_LIBS + : +fi PYGIMP_EXTRA_CFLAGS= @@ -34522,7 +34529,7 @@ } >&5 cat >&5 <<_CSEOF -This file was extended by GIMP $as_me 2.2.6, which was +This file was extended by GIMP $as_me 2.2.7, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -34585,7 +34592,7 @@ cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -GIMP config.status 2.2.6 +GIMP config.status 2.2.7 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" @@ -34693,8 +34700,8 @@ gimp_major_ver=2 gimp_minor_ver=2 - gimp_micro_ver=6 - gimp_ver=2.2.6 + gimp_micro_ver=7 + gimp_ver=2.2.7 gimp_api_ver=2.0 @@ -35096,6 +35103,7 @@ s,@GLIB_GENMARSHAL@,$GLIB_GENMARSHAL,;t t s,@GOBJECT_QUERY@,$GOBJECT_QUERY,;t t s,@GLIB_MKENUMS@,$GLIB_MKENUMS,;t t +s,@ac_pt_PKG_CONFIG@,$ac_pt_PKG_CONFIG,;t t s,@GMODULE_CFLAGS@,$GMODULE_CFLAGS,;t t s,@GMODULE_LIBS@,$GMODULE_LIBS,;t t s,@X_CFLAGS@,$X_CFLAGS,;t t diff -uraN gimp-2.2.6/configure.in gimp-2.2.7/configure.in --- gimp-2.2.6/configure.in 2005-04-10 01:56:38.000000000 +0200 +++ gimp-2.2.7/configure.in 2005-04-11 11:42:07.000000000 +0200 @@ -8,11 +8,11 @@ m4_define([gimp_major_version], [2]) m4_define([gimp_minor_version], [2]) -m4_define([gimp_micro_version], [6]) +m4_define([gimp_micro_version], [7]) 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], [6]) +m4_define([gimp_interface_age], [7]) m4_define([gimp_binary_age], [m4_eval(100 * gimp_minor_version + gimp_micro_version)]) diff -uraN gimp-2.2.6/cursors/Makefile.in gimp-2.2.7/cursors/Makefile.in --- gimp-2.2.6/cursors/Makefile.in 2005-04-10 01:57:07.000000000 +0200 +++ gimp-2.2.7/cursors/Makefile.in 2005-04-11 11:43:57.000000000 +0200 @@ -322,6 +322,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.6/data/brushes/Makefile.in gimp-2.2.7/data/brushes/Makefile.in --- gimp-2.2.6/data/brushes/Makefile.in 2005-04-10 01:57:17.000000000 +0200 +++ gimp-2.2.7/data/brushes/Makefile.in 2005-04-11 11:44:23.000000000 +0200 @@ -322,6 +322,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.6/data/environ/Makefile.in gimp-2.2.7/data/environ/Makefile.in --- gimp-2.2.6/data/environ/Makefile.in 2005-04-10 01:57:14.000000000 +0200 +++ gimp-2.2.7/data/environ/Makefile.in 2005-04-11 11:44:14.000000000 +0200 @@ -322,6 +322,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.6/data/gradients/Makefile.in gimp-2.2.7/data/gradients/Makefile.in --- gimp-2.2.6/data/gradients/Makefile.in 2005-04-10 01:57:18.000000000 +0200 +++ gimp-2.2.7/data/gradients/Makefile.in 2005-04-11 11:44:25.000000000 +0200 @@ -322,6 +322,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.6/data/images/Makefile.in gimp-2.2.7/data/images/Makefile.in --- gimp-2.2.6/data/images/Makefile.in 2005-04-10 01:57:16.000000000 +0200 +++ gimp-2.2.7/data/images/Makefile.in 2005-04-11 11:44:21.000000000 +0200 @@ -322,6 +322,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.6/data/Makefile.in gimp-2.2.7/data/Makefile.in --- gimp-2.2.6/data/Makefile.in 2005-04-10 01:57:13.000000000 +0200 +++ gimp-2.2.7/data/Makefile.in 2005-04-11 11:44:12.000000000 +0200 @@ -322,6 +322,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.6/data/misc/Makefile.in gimp-2.2.7/data/misc/Makefile.in --- gimp-2.2.6/data/misc/Makefile.in 2005-04-10 01:57:14.000000000 +0200 +++ gimp-2.2.7/data/misc/Makefile.in 2005-04-11 11:44:16.000000000 +0200 @@ -322,6 +322,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.6/data/palettes/Makefile.in gimp-2.2.7/data/palettes/Makefile.in --- gimp-2.2.6/data/palettes/Makefile.in 2005-04-10 01:57:19.000000000 +0200 +++ gimp-2.2.7/data/palettes/Makefile.in 2005-04-11 11:44:27.000000000 +0200 @@ -322,6 +322,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.6/data/patterns/Makefile.in gimp-2.2.7/data/patterns/Makefile.in --- gimp-2.2.6/data/patterns/Makefile.in 2005-04-10 01:57:20.000000000 +0200 +++ gimp-2.2.7/data/patterns/Makefile.in 2005-04-11 11:44:29.000000000 +0200 @@ -322,6 +322,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.6/devel-docs/libgimp/html/GimpAspectPreview.html gimp-2.2.7/devel-docs/libgimp/html/GimpAspectPreview.html --- gimp-2.2.6/devel-docs/libgimp/html/GimpAspectPreview.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/GimpAspectPreview.html 2005-05-08 23:43:11.000000000 +0200 @@ -3,29 +3,49 @@ GimpAspectPreview; -GtkWidget* gimp_aspect_preview_new (GimpDrawable *drawable, - gboolean *toggle); - -

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBox
-                           +----GtkVBox
+GtkWidget*  gimp_aspect_preview_new         (GimpDrawable *drawable,
+                                             gboolean *toggle);
+
+

Object Hierarchy

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

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

+


gimp_aspect_preview_new ()

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

drawable:
toggle: diff -uraN gimp-2.2.6/devel-docs/libgimp/html/GimpDrawablePreview.html gimp-2.2.7/devel-docs/libgimp/html/GimpDrawablePreview.html --- gimp-2.2.6/devel-docs/libgimp/html/GimpDrawablePreview.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/GimpDrawablePreview.html 2005-05-08 23:43:11.000000000 +0200 @@ -3,22 +3,38 @@ GimpDrawablePreview; -GtkWidget* gimp_drawable_preview_new (GimpDrawable *drawable, - gboolean *toggle); +GtkWidget* gimp_drawable_preview_new (GimpDrawable *drawable, + 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
-   +----GtkObject
-         +----GtkWidget
-               +----GtkContainer
-                     +----GtkBox
-                           +----GtkVBox
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkContainer
+                     +----GtkBox
+                           +----GtkVBox
                                  +----GimpPreview
@@ -26,27 +42,35 @@
 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 ()

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

+


gimp_drawable_preview_new ()

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

Creates a new GimpDrawablePreview widget for drawable. If updating the preview takes considerable time, you will want to store the state of the "Preview" check-button in the plug-in -data. For convenience you can pass a pointer to the gboolean as +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" +
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);

@@ -55,7 +79,7 @@ gimp_drawable_preview_new().

Since GIMP 2.2 -


gimp_drawable_preview_draw_region ()

void        gimp_drawable_preview_draw_region
+


gimp_drawable_preview_draw_region ()

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

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/GimpProgressBar.html gimp-2.2.7/devel-docs/libgimp/html/GimpProgressBar.html --- gimp-2.2.6/devel-docs/libgimp/html/GimpProgressBar.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/GimpProgressBar.html 2005-05-08 23:43:11.000000000 +0200 @@ -3,24 +3,38 @@ GimpProgressBar; -GtkWidget* gimp_progress_bar_new (void); - -

Object Hierarchy

-
-  GObject
-   +----GtkObject
-         +----GtkWidget
-               +----GtkProgress
-                     +----GtkProgressBar
+GtkWidget*  gimp_progress_bar_new           (void);
+
+

Object Hierarchy

+
+  GObject
+   +----GtkObject
+         +----GtkWidget
+               +----GtkProgress
+                     +----GtkProgressBar
                            +----GimpProgressBar
-

Implemented Interfaces

+

Implemented Interfaces

GimpProgressBar implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

Description

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

Details

GimpProgressBar

typedef struct _GimpProgressBar GimpProgressBar;

+

Details

GimpProgressBar

typedef struct _GimpProgressBar GimpProgressBar;

-


gimp_progress_bar_new ()

GtkWidget*  gimp_progress_bar_new           (void);

+


gimp_progress_bar_new ()

GtkWidget*  gimp_progress_bar_new           (void);

Creates a new GimpProgressBar widget.

Returns: the new widget. diff -uraN gimp-2.2.6/devel-docs/libgimp/html/index.html gimp-2.2.7/devel-docs/libgimp/html/index.html --- gimp-2.2.6/devel-docs/libgimp/html/index.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/index.html 2005-05-08 23:43:11.000000000 +0200 @@ -1,5 +1,5 @@ GIMP Library Reference Manual

- for GIMP 2.2.1 + 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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpbrushes.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrushes.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpbrushes.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrushes.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,39 +2,97 @@ -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. @@ -44,56 +102,98 @@

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.

+


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.

+


gimp_brushes_set_brush ()

gboolean    gimp_brushes_set_brush          (const gchar *name);

Warning

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

This procedure is deprecated! Use gimp_context_set_brush() instead.

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

gimp_brushes_get_opacity ()

gdouble     gimp_brushes_get_opacity        (void);

Warning

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

+


gimp_brushes_get_opacity ()

gdouble     gimp_brushes_get_opacity        (void);

Warning

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

This procedure is deprecated! Use gimp_context_get_opacity() instead.

Returns: The brush opacity. -

gimp_brushes_set_opacity ()

gboolean    gimp_brushes_set_opacity        (gdouble opacity);

Warning

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

+


gimp_brushes_set_opacity ()

gboolean    gimp_brushes_set_opacity        (gdouble opacity);

Warning

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

This procedure is deprecated! Use gimp_context_set_opacity() instead.

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

gimp_brushes_get_paint_mode ()

GimpLayerModeEffects gimp_brushes_get_paint_mode
+

gimp_brushes_get_paint_mode ()

GimpLayerModeEffects gimp_brushes_get_paint_mode
                                             (void);

Warning

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

This procedure isdeprecated! Use gimp_context_get_paint_mode() instead.

Returns: The paint mode. -

gimp_brushes_set_paint_mode ()

gboolean    gimp_brushes_set_paint_mode     (GimpLayerModeEffects paint_mode);

Warning

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

+


gimp_brushes_set_paint_mode ()

gboolean    gimp_brushes_set_paint_mode     (GimpLayerModeEffects paint_mode);

Warning

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

This procedure is deprecated! Use gimp_context_set_paint_mode() instead.

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

gimp_brushes_get_spacing ()

gint        gimp_brushes_get_spacing        (void);

Warning

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

+


gimp_brushes_get_spacing ()

gint        gimp_brushes_get_spacing        (void);

Warning

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

This procedure is deprecated! Use gimp_brush_get_spacing() instead.

Returns: The brush spacing. -

gimp_brushes_set_spacing ()

gboolean    gimp_brushes_set_spacing        (gint spacing);

Warning

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

+


gimp_brushes_set_spacing ()

gboolean    gimp_brushes_set_spacing        (gint spacing);

Warning

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

This procedure is deprecated! Use gimp_brush_set_spacing() instead.

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

gimp_brushes_get_brush_data ()

gchar*      gimp_brushes_get_brush_data     (const gchar *name,
-                                             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.

+ 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). diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpbrush.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrush.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpbrush.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrush.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,32 +2,98 @@ -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

@@ -36,7 +102,11 @@

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

@@ -45,8 +115,14 @@ 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

@@ -56,7 +132,11 @@ 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

@@ -65,11 +145,23 @@ 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 @@ -83,15 +175,35 @@ 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 @@ -109,8 +221,14 @@ 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. @@ -122,8 +240,14 @@ 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. diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,30 +2,68 @@ -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); -void gimp_brush_select_widget_close (GtkWidget *widget); -void gimp_brush_select_widget_set (GtkWidget *widget, - const gchar *brush_name, - gdouble opacity, - gint spacing, + 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, GimpLayerModeEffects paint_mode); -

Description

+

Description

A widget for selecting brushes. -

Details

gimp_brush_select_widget_new ()

GtkWidget*  gimp_brush_select_widget_new    (const gchar *title,
-                                             const gchar *brush_name,
-                                             gdouble opacity,
-                                             gint spacing,
+

Details

gimp_brush_select_widget_new ()

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

-Creates a new GtkWidget that completely controls the selection of -a GimpBrush. This widget is suitable for placement in a table in + gpointer data);

+Creates a new GtkWidget that completely controls the selection of +a 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. @@ -35,15 +73,27 @@
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  (GtkWidget *widget);

+Returns: A GtkWidget that you can use in your UI. +


gimp_brush_select_widget_close ()

void        gimp_brush_select_widget_close  (GtkWidget *widget);

Closes the popup window associated with widget.

widget: A brush select widget. -

gimp_brush_select_widget_set ()

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

gimp_brush_select_widget_set ()

void        gimp_brush_select_widget_set    (GtkWidget *widget,
+                                             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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpbrushselect.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrushselect.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpbrushselect.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpbrushselect.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,46 +2,118 @@ -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);

+ gint width, + gint height, + const guchar *mask_data, + gboolean dialog_closing, + gpointer user_data);

brush_name:
opacity: @@ -54,13 +126,25 @@
user_data: -

gimp_brush_select_new ()

const gchar* gimp_brush_select_new          (const gchar *title,
-                                             const gchar *brush_name,
-                                             gdouble opacity,
-                                             gint spacing,
+

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

+ gpointer data);

title:
brush_name: @@ -72,16 +156,30 @@
Returns: -

gimp_brush_select_destroy ()

void        gimp_brush_select_destroy       (const gchar *brush_callback);

+


gimp_brush_select_destroy ()

void        gimp_brush_select_destroy       (const gchar *brush_callback);

brush_callback: -

gimp_brushes_popup ()

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

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.

@@ -94,17 +192,31 @@ spacing: The initial spacing of the brush (if < 0 then use brush default spacing). paint_mode: The initial paint mode. Returns: TRUE on success. -


gimp_brushes_close_popup ()

gboolean    gimp_brushes_close_popup        (const gchar *brush_callback);

+


gimp_brushes_close_popup ()

gboolean    gimp_brushes_close_popup        (const gchar *brush_callback);

Popdown the Gimp brush selection.

This procedure closes an opened brush selection dialog.

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

gimp_brushes_set_popup ()

gboolean    gimp_brushes_set_popup          (const gchar *brush_callback,
-                                             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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpchannel.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpchannel.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpchannel.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpchannel.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,41 +2,107 @@ -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);

@@ -57,14 +123,22 @@ opacity: The channel opacity. color: The channel compositing color. Returns: The newly created channel. -


gimp_channel_copy ()

gint32      gimp_channel_copy               (gint32 channel_ID);

+


gimp_channel_copy ()

gint32      gimp_channel_copy               (gint32 channel_ID);

Copy a channel.

This procedure copies the specified channel and returns the copy.

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

gimp_channel_get_show_masked ()

gboolean    gimp_channel_get_show_masked    (gint32 channel_ID);

+


gimp_channel_get_show_masked ()

gboolean    gimp_channel_get_show_masked    (gint32 channel_ID);

Get the composite method of the specified channel.

This procedure returns the specified channel's composite method. If @@ -74,8 +148,14 @@

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 @@ -85,15 +165,25 @@

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

gimp_channel_get_opacity ()

gdouble     gimp_channel_get_opacity        (gint32 channel_ID);

+


gimp_channel_get_opacity ()

gdouble     gimp_channel_get_opacity        (gint32 channel_ID);

Get the opacity of the specified channel.

This procedure returns the specified channel's opacity.

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

gimp_channel_set_opacity ()

gboolean    gimp_channel_set_opacity        (gint32 channel_ID,
-                                             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.

@@ -101,7 +191,11 @@

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

@@ -112,7 +206,11 @@

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

@@ -123,11 +221,21 @@

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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpcolor.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpcolor.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpcolor.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpcolor.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,66 +2,200 @@ -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 @@ -72,13 +206,27 @@ brightness: Brightness adjustment. contrast: Contrast adjustment. Returns: TRUE on success. -


gimp_levels ()

gboolean    gimp_levels                     (gint32 drawable_ID,
+

gimp_levels ()

gboolean    gimp_levels                     (gint32 drawable_ID,
                                              GimpHistogramChannel channel,
-                                             gint low_input,
-                                             gint high_input,
-                                             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 @@ -102,12 +250,20 @@ low_output: Intensity of lowest output. high_output: Intensity of highest output. Returns: TRUE on success. -


gimp_levels_auto ()

gboolean    gimp_levels_auto                (gint32 drawable_ID);

Warning

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

+


gimp_levels_auto ()

gboolean    gimp_levels_auto                (gint32 drawable_ID);

Warning

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

This procedure is deprecated! Use gimp_levels_stretch() instead.

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

gimp_levels_stretch ()

gboolean    gimp_levels_stretch             (gint32 drawable_ID);

+


gimp_levels_stretch ()

gboolean    gimp_levels_stretch             (gint32 drawable_ID);

Automatically modifies intensity levels in the specified drawable.

This procedure allows intensity levels in the specified drawable to @@ -118,8 +274,14 @@

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 @@ -128,7 +290,11 @@

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. @@ -136,8 +302,14 @@

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. @@ -152,7 +324,11 @@

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 @@ -162,10 +338,18 @@

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 @@ -181,10 +365,18 @@ num_points: The number of values in the control point array. control_pts: The spline control points: { cp1.x, cp1.y, cp2.x, cp2.y, ... }. Returns: TRUE on success. -


gimp_curves_explicit ()

gboolean    gimp_curves_explicit            (gint32 drawable_ID,
+

gimp_curves_explicit ()

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

+ gint num_bytes, + const guint8 *curve);

Modifies the intensity curve(s) for specified drawable.

Modifies the intensity mapping for one channel in the specified @@ -200,12 +392,24 @@ num_bytes: The number of bytes in the new curve (always 256). curve: The explicit curve. Returns: TRUE on success. -


gimp_color_balance ()

gboolean    gimp_color_balance              (gint32 drawable_ID,
+

gimp_color_balance ()

gboolean    gimp_color_balance              (gint32 drawable_ID,
                                              GimpTransferMode transfer_mode,
-                                             gboolean preserve_lum,
-                                             gdouble cyan_red,
-                                             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 @@ -224,10 +428,20 @@ 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);

+


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.

@@ -242,16 +456,36 @@ 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.

@@ -280,11 +514,21 @@ count: Alpha-weighted pixel count for range. percentile: Percentile that range falls under. Returns: TRUE on success. -


gimp_hue_saturation ()

gboolean    gimp_hue_saturation             (gint32 drawable_ID,
+

gimp_hue_saturation ()

gboolean    gimp_hue_saturation             (gint32 drawable_ID,
                                              GimpHueRange hue_range,
-                                             gdouble hue_offset,
-                                             gdouble lightness,
-                                             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 @@ -297,9 +541,17 @@ lightness: lightness modification. saturation: saturation modification. Returns: TRUE on success. -


gimp_threshold ()

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

+


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. diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpcontext.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpcontext.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpcontext.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpcontext.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,40 +2,96 @@ -gboolean gimp_context_push (void); -gboolean gimp_context_pop (void); -gboolean gimp_context_get_foreground (gboolean gimp_context_push (void); +gboolean gimp_context_pop (void); +gboolean gimp_context_get_foreground (GimpRGB *foreground); -gboolean gimp_context_set_foreground (const gboolean gimp_context_set_foreground (const GimpRGB *foreground); -gboolean gimp_context_get_background (gboolean gimp_context_get_background (GimpRGB *background); -gboolean gimp_context_set_background (const gboolean 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

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. @@ -45,7 +101,9 @@

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 @@ -54,7 +112,9 @@

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. @@ -67,7 +127,9 @@ 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. @@ -80,7 +142,9 @@ 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. @@ -93,7 +157,9 @@ 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. @@ -107,7 +173,9 @@ 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.

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

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 @@ -127,7 +197,9 @@

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 @@ -136,7 +208,11 @@

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 @@ -146,7 +222,7 @@ Returns: TRUE on success.

Since GIMP 2.2 -


gimp_context_get_paint_mode ()

GimpLayerModeEffects gimp_context_get_paint_mode
+


gimp_context_get_paint_mode ()

GimpLayerModeEffects gimp_context_get_paint_mode
                                             (void);

Get the paint mode.

@@ -157,7 +233,9 @@

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.

@@ -166,7 +244,9 @@ 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 @@ -176,7 +256,11 @@

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 @@ -189,7 +273,9 @@ 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 @@ -199,7 +285,11 @@

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 @@ -213,7 +303,9 @@ 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.

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

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 @@ -235,7 +331,9 @@ 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.

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

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 @@ -257,7 +359,9 @@ 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.

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

Returns: The name of the active font.

Since GIMP 2.2 -


gimp_context_set_font ()

gboolean    gimp_context_set_font           (const gchar *name);

+


gimp_context_set_font ()

gboolean    gimp_context_set_font           (const gchar *name);

Set the specified font as the active font.

This procedure allows the active font to be set by specifying its diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpconvert.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpconvert.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpconvert.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpconvert.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,19 +2,43 @@ -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 @@ -24,7 +48,11 @@

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 @@ -33,13 +61,25 @@

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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpdisplay.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdisplay.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpdisplay.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdisplay.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,15 +2,35 @@ -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 @@ -21,7 +41,11 @@

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 @@ -30,7 +54,9 @@

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 @@ -39,8 +65,14 @@ 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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,20 +2,48 @@ -gboolean (*GimpDrawableConstraintFunc) (gint32 image_id, - gint32 drawable_id, - gpointer data); -GtkWidget* gimp_drawable_combo_box_new (GimpDrawableConstraintFunc constraint, - gpointer data); -GtkWidget* gimp_channel_combo_box_new (GimpDrawableConstraintFunc constraint, - gpointer data); -GtkWidget* gimp_layer_combo_box_new (GimpDrawableConstraintFunc constraint, - gpointer data); -

Description

A widget providing a popup menu of drawables. -

Details

GimpDrawableConstraintFunc ()

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

+

Details

GimpDrawableConstraintFunc ()

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

image_id:
drawable_id: @@ -23,8 +51,12 @@
Returns: -

gimp_drawable_combo_box_new ()

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

+


gimp_drawable_combo_box_new ()

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

Creates a new GimpIntComboBox filled with all currently opened @@ -50,8 +82,12 @@ >GimpIntComboBox.

Since GIMP 2.2 -


gimp_channel_combo_box_new ()

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

+


gimp_channel_combo_box_new ()

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

Creates a new GimpIntComboBox filled with all currently opened @@ -64,8 +100,12 @@ >GimpIntComboBox.

Since GIMP 2.2 -


gimp_layer_combo_box_new ()

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

+


gimp_layer_combo_box_new ()

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

Creates a new GimpIntComboBox filled with all currently opened diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpdrawable.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdrawable.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpdrawable.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdrawable.html 2005-05-08 23:43:11.000000000 +0200 @@ -3,127 +3,389 @@ 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, - gint shadow, - gint row, - gint col); + gboolean shadow, + gint row, + gint col); GimpTile* gimp_drawable_get_tile2 (GimpDrawable *drawable, - gint 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 */
@@ -135,7 +397,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 contains some basic information about the drawable and can also @@ -152,7 +416,7 @@

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

gimp_drawable_detach ()

void        gimp_drawable_detach            (GimpDrawable *drawable);

+


gimp_drawable_detach ()

void        gimp_drawable_detach            (GimpDrawable *drawable);

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

drawable: The GimpDrawable to detach from the core -

gimp_drawable_flush ()

void        gimp_drawable_flush             (GimpDrawable *drawable);

+


gimp_drawable_flush ()

void        gimp_drawable_flush             (GimpDrawable *drawable);

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

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 @@ -180,15 +448,25 @@

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

gimp_drawable_get_name ()

gchar*      gimp_drawable_get_name          (gint32 drawable_ID);

+


gimp_drawable_get_name ()

gchar*      gimp_drawable_get_name          (gint32 drawable_ID);

Get the name of the specified drawable.

This procedure returns the specified drawable's name.

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

gimp_drawable_set_name ()

gboolean    gimp_drawable_set_name          (gint32 drawable_ID,
-                                             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.

@@ -196,15 +474,25 @@

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

gimp_drawable_get_visible ()

gboolean    gimp_drawable_get_visible       (gint32 drawable_ID);

+


gimp_drawable_get_visible ()

gboolean    gimp_drawable_get_visible       (gint32 drawable_ID);

Get the visibility of the specified drawable.

This procedure returns the specified drawable's visibility.

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

gimp_drawable_set_visible ()

gboolean    gimp_drawable_set_visible       (gint32 drawable_ID,
-                                             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.

@@ -212,15 +500,25 @@

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

gimp_drawable_get_linked ()

gboolean    gimp_drawable_get_linked        (gint32 drawable_ID);

+


gimp_drawable_get_linked ()

gboolean    gimp_drawable_get_linked        (gint32 drawable_ID);

Get the linked state of the specified drawable.

This procedure returns the specified drawable's linked state.

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

gimp_drawable_set_linked ()

gboolean    gimp_drawable_set_linked        (gint32 drawable_ID,
-                                             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.

@@ -228,7 +526,11 @@

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 @@ -238,8 +540,14 @@

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 @@ -250,10 +558,20 @@

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. @@ -265,11 +583,23 @@ 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. @@ -284,10 +614,16 @@ 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,
-                                             gint shadow,
-                                             gint row,
-                                             gint col);

+


gimp_drawable_get_tile ()

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

drawable:
shadow: @@ -296,10 +632,16 @@
Returns: -

gimp_drawable_get_tile2 ()

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

+


gimp_drawable_get_tile2 ()

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

drawable:
shadow: @@ -308,11 +650,21 @@
Returns: -

gimp_drawable_get_thumbnail_data ()

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

+


gimp_drawable_get_thumbnail_data ()

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

drawable_ID:
width: @@ -321,15 +673,33 @@
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);

+


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: @@ -342,19 +712,29 @@
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: -

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 @@ -365,7 +745,11 @@

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.

@@ -382,11 +766,23 @@

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, @@ -400,11 +796,23 @@ 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);

+


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.

@@ -427,11 +835,23 @@ 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.

@@ -449,21 +869,35 @@ Returns: TRUE if the returned area is not empty.

Since GIMP 2.2 -


gimp_drawable_get_image ()

gint32      gimp_drawable_get_image         (gint32 drawable_ID);

+


gimp_drawable_get_image ()

gint32      gimp_drawable_get_image         (gint32 drawable_ID);

Returns the drawable's image.

This procedure returns the drawable's image.

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

gimp_drawable_set_image ()

gboolean    gimp_drawable_set_image         (gint32 drawable_ID,
-                                             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.
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 @@ -472,9 +906,11 @@

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 @@ -484,16 +920,22 @@

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.
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 @@ -501,7 +943,11 @@

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 @@ -509,7 +955,11 @@

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 @@ -517,7 +967,11 @@

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 @@ -525,23 +979,39 @@

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

gimp_drawable_width ()

gint        gimp_drawable_width             (gint32 drawable_ID);

+


gimp_drawable_width ()

gint        gimp_drawable_width             (gint32 drawable_ID);

Returns the width of the drawable.

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

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

gimp_drawable_height ()

gint        gimp_drawable_height            (gint32 drawable_ID);

+


gimp_drawable_height ()

gint        gimp_drawable_height            (gint32 drawable_ID);

Returns the height of the drawable.

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

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

gimp_drawable_offsets ()

gboolean    gimp_drawable_offsets           (gint32 drawable_ID,
-                                             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 @@ -552,7 +1022,11 @@ 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 @@ -560,7 +1034,11 @@

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 @@ -568,7 +1046,11 @@

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 @@ -576,11 +1058,21 @@

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

@@ -597,10 +1089,14 @@ 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 @@ -609,9 +1105,17 @@

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.

@@ -620,7 +1124,11 @@ 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);

@@ -632,8 +1140,14 @@

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 @@ -642,12 +1156,22 @@

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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,174 +2,480 @@ -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. @@ -190,16 +496,34 @@ 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. @@ -226,14 +550,30 @@ 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 @@ -250,21 +590,47 @@ 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.

@@ -301,18 +667,42 @@ 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.

@@ -334,13 +724,25 @@ 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.

@@ -361,16 +763,34 @@ 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.

@@ -395,14 +815,30 @@ 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.

@@ -420,16 +856,34 @@ 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. @@ -453,14 +907,30 @@ 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 @@ -477,14 +947,26 @@ 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.

@@ -510,12 +992,22 @@ 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.

@@ -531,19 +1023,43 @@ 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 @@ -573,17 +1089,39 @@ 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 @@ -603,21 +1141,49 @@ 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 @@ -647,19 +1213,45 @@ 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() diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpedit.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpedit.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpedit.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpedit.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,43 +2,117 @@ -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 @@ -50,7 +124,11 @@

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 @@ -62,7 +140,11 @@

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 @@ -76,8 +158,14 @@ 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 @@ -99,7 +187,11 @@

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 @@ -110,7 +202,11 @@

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.

@@ -125,14 +221,28 @@

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.

@@ -158,22 +268,48 @@ 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.

@@ -199,7 +335,11 @@ x2: The x coordinate of this blend's ending point. y2: The y coordinate of this blend's ending point. Returns: TRUE on success. -


gimp_edit_stroke ()

gboolean    gimp_edit_stroke                (gint32 drawable_ID);

+


gimp_edit_stroke ()

gboolean    gimp_edit_stroke                (gint32 drawable_ID);

Stroke the current selection

This procedure strokes the current selection, painting along the diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpenums.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpenums.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpenums.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpenums.html 2005-05-08 23:43:11.000000000 +0200 @@ -34,12 +34,16 @@ 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,
@@ -50,7 +54,7 @@
 } GimpAddMaskType;
 

-


enum GimpBlendMode

typedef enum
+


enum GimpBlendMode

typedef enum
 {
   GIMP_FG_BG_RGB_MODE,
   GIMP_FG_BG_HSV_MODE,
@@ -59,14 +63,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,
@@ -74,7 +78,7 @@
 } GimpBucketFillMode;
 

-


enum GimpChannelOps

typedef enum
+


enum GimpChannelOps

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

-


enum GimpChannelType

typedef enum
+


enum GimpChannelType

typedef enum
 {
   GIMP_RED_CHANNEL,
   GIMP_GREEN_CHANNEL,
@@ -94,14 +98,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,
@@ -110,7 +114,7 @@
 } GimpConvertDitherType;
 

-


enum GimpConvertPaletteType

typedef enum
+


enum GimpConvertPaletteType

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

-


enum GimpConvolutionType

typedef enum
+


enum GimpConvolutionType

typedef enum
 {
   GIMP_NORMAL_CONVOL,
   GIMP_ABSOLUTE_CONVOL,
@@ -128,21 +132,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,
@@ -152,7 +156,7 @@
 } GimpFillType;
 

-


enum GimpGradientSegmentColor

typedef enum
+


enum GimpGradientSegmentColor

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

-


enum GimpGradientSegmentType

typedef enum
+


enum GimpGradientSegmentType

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

-


enum GimpGradientType

typedef enum
+


enum GimpGradientType

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

-


enum GimpHistogramChannel

typedef enum
+


enum GimpHistogramChannel

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

-


enum GimpHueRange

typedef enum
+


enum GimpHueRange

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

-


enum GimpIconType

typedef enum
+


enum GimpIconType

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

-


enum GimpInterpolationType

typedef enum
+


enum GimpInterpolationType

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

-


enum GimpLayerModeEffects

typedef enum
+


enum GimpLayerModeEffects

typedef enum
 {
   GIMP_NORMAL_MODE,
   GIMP_DISSOLVE_MODE,
@@ -252,14 +256,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,
@@ -268,14 +272,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,
@@ -283,14 +287,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,
@@ -298,7 +302,7 @@
 } GimpRepeatMode;
 

-


enum GimpRotationType

typedef enum
+


enum GimpRotationType

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

-


enum GimpRunMode

typedef enum
+


enum GimpRunMode

typedef enum
 {
   GIMP_RUN_INTERACTIVE,
   GIMP_RUN_NONINTERACTIVE,
@@ -314,14 +318,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,
@@ -329,14 +333,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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpexport.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpexport.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpexport.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpexport.html 2005-05-08 23:43:11.000000000 +0200 @@ -4,11 +4,17 @@ 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 @@ -21,7 +27,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,
@@ -35,7 +41,7 @@
 } GimpExportCapabilities;
 

-


enum GimpExportReturn

typedef enum
+


enum GimpExportReturn

typedef enum
 {
   GIMP_EXPORT_CANCEL,
   GIMP_EXPORT_IGNORE,
@@ -43,9 +49,15 @@
 } 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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpfileops.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfileops.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpfileops.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfileops.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,34 +2,96 @@ -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 @@ -37,9 +99,15 @@

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 @@ -54,11 +122,21 @@ 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 @@ -74,11 +152,21 @@ 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);

+


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 @@ -89,9 +177,17 @@ 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);

+


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 @@ -101,9 +197,17 @@ 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);

+


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 @@ -113,8 +217,14 @@ 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 @@ -126,8 +236,14 @@ 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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,19 +2,53 @@ -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.

@@ -23,7 +57,11 @@

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 @@ -33,7 +71,11 @@

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 @@ -47,8 +89,14 @@

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 @@ -57,8 +105,14 @@

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.

@@ -66,8 +120,14 @@

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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpfontmenu.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfontmenu.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpfontmenu.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfontmenu.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,20 +2,44 @@ -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); -void gimp_font_select_widget_close (GtkWidget *widget); -void gimp_font_select_widget_set (GtkWidget *widget, - const gchar *font_name); -

Description

+ gpointer data); +void gimp_font_select_widget_close (GtkWidget *widget); +void gimp_font_select_widget_set (GtkWidget *widget, + const gchar *font_name); +

Description

A widget for selecting fonts. -

Details

gimp_font_select_widget_new ()

GtkWidget*  gimp_font_select_widget_new     (const gchar *title,
-                                             const gchar *font_name,
+

Details

gimp_font_select_widget_new ()

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

-Creates a new GtkWidget that completely controls the selection of + 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.

@@ -24,13 +48,21 @@ 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   (GtkWidget *widget);

+Returns: A GtkWidget that you can use in your UI. +


gimp_font_select_widget_close ()

void        gimp_font_select_widget_close   (GtkWidget *widget);

Closes the popup window associated with widget.

widget: A font select widget. -

gimp_font_select_widget_set ()

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

+


gimp_font_select_widget_set ()

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

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

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpfontselect.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfontselect.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpfontselect.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfontselect.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,35 +2,83 @@ -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);

+

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

gimp_font_select_new ()

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

+ gpointer data);

title:
font_name: @@ -39,14 +87,24 @@
Returns: -

gimp_font_select_destroy ()

void        gimp_font_select_destroy        (const gchar *font_callback);

+


gimp_font_select_destroy ()

void        gimp_font_select_destroy        (const gchar *font_callback);

font_callback: -

gimp_fonts_popup ()

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

+


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.

@@ -55,15 +113,25 @@ popup_title: Title to give the font popup window. initial_font: The name of the font to set as the first selected. Returns: TRUE on success. -


gimp_fonts_close_popup ()

gboolean    gimp_fonts_close_popup          (const gchar *font_callback);

+


gimp_fonts_close_popup ()

gboolean    gimp_fonts_close_popup          (const gchar *font_callback);

Popdown the Gimp font selection.

This procedure closes an opened font selection dialog.

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

gimp_fonts_set_popup ()

gboolean    gimp_fonts_set_popup            (const gchar *font_callback,
-                                             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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpfonts.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfonts.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpfonts.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpfonts.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,20 +2,36 @@ -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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpgimprc.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgimprc.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpgimprc.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgimprc.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,18 +2,44 @@ -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

+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 @@ -28,8 +54,14 @@

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 @@ -41,20 +73,30 @@

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 @@ -65,7 +107,9 @@

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.6/devel-docs/libgimp/html/libgimp-gimpgradient.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradient.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpgradient.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradient.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,140 +2,382 @@ -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

@@ -144,7 +386,11 @@ 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

@@ -153,8 +399,14 @@ 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

@@ -164,7 +416,11 @@ 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

@@ -173,12 +429,24 @@ 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 @@ -197,13 +465,27 @@ 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 @@ -222,13 +504,21 @@ 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

@@ -242,13 +532,21 @@ 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

@@ -262,13 +560,21 @@ 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

@@ -282,13 +588,21 @@ 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

@@ -302,10 +616,18 @@ 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

@@ -318,11 +640,21 @@ 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

@@ -339,10 +671,18 @@ 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

@@ -355,11 +695,21 @@ 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 @@ -374,10 +724,18 @@ 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

@@ -390,11 +748,21 @@ 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

@@ -411,9 +779,15 @@ 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

@@ -426,9 +800,15 @@ 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

@@ -441,10 +821,18 @@ 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

@@ -458,10 +846,18 @@ 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

@@ -475,10 +871,18 @@ 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.

@@ -489,11 +893,21 @@ 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. @@ -507,10 +921,18 @@ 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 @@ -522,11 +944,21 @@ 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 @@ -539,10 +971,18 @@ 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.

@@ -553,10 +993,18 @@ 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 @@ -568,10 +1016,18 @@ 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 @@ -584,10 +1040,18 @@ 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 @@ -600,12 +1064,24 @@ 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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,21 +2,45 @@ -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 - (GtkWidget *widget); -void gimp_gradient_select_widget_set (GtkWidget *widget, - const gchar *gradient_name); -

Description

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

Description

A widget for selecting gradients. -

Details

gimp_gradient_select_widget_new ()

GtkWidget*  gimp_gradient_select_widget_new (const gchar *title,
-                                             const gchar *gradient_name,
+

Details

gimp_gradient_select_widget_new ()

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

-Creates a new GtkWidget that completely controls the selection of + 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.

@@ -25,14 +49,22 @@ 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
-                                            (GtkWidget *widget);

+Returns: A GtkWidget that you can use in your UI. +


gimp_gradient_select_widget_close ()

void        gimp_gradient_select_widget_close
+                                            (GtkWidget *widget);

Closes the popup window associated with widget.

widget: A gradient select widget. -

gimp_gradient_select_widget_set ()

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

+


gimp_gradient_select_widget_set ()

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

Sets the current gradient for the gradient select widget. Calls the callback function if one was supplied in the call to gimp_gradient_select_widget_new().

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpgradientselect.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradientselect.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpgradientselect.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradientselect.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,31 +2,83 @@ -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);

+

Details

GimpRunGradientCallback ()

void        (*GimpRunGradientCallback)      (const gchar *gradient_name,
+                                             gint width,
+                                             const gdouble *grad_data,
+                                             gboolean dialog_closing,
+                                             gpointer user_data);

gradient_name:
width: @@ -35,11 +87,21 @@
user_data: -

gimp_gradient_select_new ()

const gchar* gimp_gradient_select_new       (const gchar *title,
-                                             const gchar *gradient_name,
-                                             gint sample_size,
+

gimp_gradient_select_new ()

const gchar* gimp_gradient_select_new       (const gchar *title,
+                                             const gchar *gradient_name,
+                                             gint sample_size,
                                              GimpRunGradientCallback callback,
-                                             gpointer data);

+ gpointer data);

title:
gradient_name: @@ -49,15 +111,27 @@
Returns: -

gimp_gradient_select_destroy ()

void        gimp_gradient_select_destroy    (const gchar *gradient_callback);

+


gimp_gradient_select_destroy ()

void        gimp_gradient_select_destroy    (const gchar *gradient_callback);

gradient_callback: -

gimp_gradients_popup ()

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

+


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.

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


gimp_gradients_close_popup ()

gboolean    gimp_gradients_close_popup      (const gchar *gradient_callback);

+


gimp_gradients_close_popup ()

gboolean    gimp_gradients_close_popup      (const gchar *gradient_callback);

Popdown the Gimp gradient selection.

This procedure closes an opened gradient selection dialog.

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

gimp_gradients_set_popup ()

gboolean    gimp_gradients_set_popup        (const gchar *gradient_callback,
-                                             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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpgradients.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradients.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpgradients.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpgradients.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,34 +2,82 @@ -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 @@ -39,26 +87,46 @@

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

gimp_gradients_get_gradient ()

gchar*      gimp_gradients_get_gradient     (void);

Warning

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

+


gimp_gradients_get_gradient ()

gchar*      gimp_gradients_get_gradient     (void);

Warning

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

This procedure is deprecated! Use gimp_context_get_gradient() instead.

Returns: The name of the active gradient. -

gimp_gradients_set_gradient ()

gboolean    gimp_gradients_set_gradient     (const gchar *name);

Warning

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

+


gimp_gradients_set_gradient ()

gboolean    gimp_gradients_set_gradient     (const gchar *name);

Warning

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

This procedure is deprecated! Use gimp_context_set_gradient() instead.

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

gimp_gradients_sample_uniform ()

gdouble*    gimp_gradients_sample_uniform   (gint num_samples,
-                                             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.

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.

+


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.

@@ -66,12 +134,24 @@ 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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpguides.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpguides.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpguides.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpguides.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,24 +2,64 @@ -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 @@ -29,8 +69,14 @@

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 @@ -40,8 +86,14 @@

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 @@ -50,8 +102,14 @@

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 @@ -63,9 +121,13 @@

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 @@ -74,8 +136,14 @@

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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimphelp.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimphelp.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimphelp.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimphelp.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,13 +2,25 @@ -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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimp.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimp.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimp.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimp.html 2005-05-08 23:43:11.000000000 +0200 @@ -4,7 +4,9 @@ #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; @@ -14,10 +16,16 @@ 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; @@ -25,133 +33,255 @@ 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: @@ -161,7 +291,7 @@
return_vals: -

GimpPlugInInfo

typedef struct {
+

GimpPlugInInfo

typedef struct {
   /* called when the gimp application initially starts up */
   GimpInitProc  init_proc;
 
@@ -181,14 +311,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;
@@ -196,7 +326,7 @@
 } GimpParamRegion;
 

-


union GimpParamData

union GimpParamData
+


union GimpParamData

union GimpParamData
 {
   gint32            d_int32;
   gint16            d_int16;
@@ -226,22 +356,28 @@
 };
 

-


GimpParam

typedef struct {
+


GimpParam

typedef struct {
   GimpPDBArgType type;
   GimpParamData  data;
 } GimpParam;
 

-


MAIN()

#define     MAIN()

+


MAIN()

#define     MAIN()

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

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

-


gimp_main ()

gint        gimp_main                       (const GimpPlugInInfo *info,
-                                             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".

@@ -249,23 +385,43 @@ 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). @@ -323,19 +479,39 @@ 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,
+

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

@@ -375,13 +551,19 @@ 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);

+


gimp_uninstall_temp_proc ()

void        gimp_uninstall_temp_proc        (const gchar *name);

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

name: the procedure's name -

gimp_run_procedure ()

GimpParam*  gimp_run_procedure              (const gchar *name,
-                                             gint *n_return_vals,
+

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.

@@ -395,9 +577,15 @@ 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.

@@ -406,48 +594,64 @@ 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);

+


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

+


gimp_destroy_paramdefs ()

void        gimp_destroy_paramdefs          (GimpParamDef *paramdefs,
+                                             gint n_params);

Destroys a GimpParamDef array as returned by gimp_query_procedure()

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

gimp_tile_width ()

guint       gimp_tile_width                 (void);

+


gimp_tile_width ()

guint       gimp_tile_width                 (void);

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

Returns: the tile_width -

gimp_tile_height ()

guint       gimp_tile_height                (void);

+


gimp_tile_height ()

guint       gimp_tile_height                (void);

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

Returns: the tile_height -

gimp_shm_ID ()

gint        gimp_shm_ID                     (void);

+


gimp_shm_ID ()

gint        gimp_shm_ID                     (void);

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

Returns: the shared memory ID -

gimp_shm_addr ()

guchar*     gimp_shm_addr                   (void);

+


gimp_shm_addr ()

guchar*     gimp_shm_addr                   (void);

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

Returns: the shared memory address -

gimp_gamma ()

gdouble     gimp_gamma                      (void);

+


gimp_gamma ()

gdouble     gimp_gamma                      (void);

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

NOTE: this feature is unimplemented.

Returns: the gamma value -

gimp_install_cmap ()

gboolean    gimp_install_cmap               (void);

+


gimp_install_cmap ()

gboolean    gimp_install_cmap               (void);

Returns whether or not the Plug-In should allocate an own colormap when running on an 8 bit display. This is a constant value given at Plug-In config time. @@ -455,7 +659,9 @@ 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. @@ -463,19 +669,23 @@ 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. @@ -484,7 +694,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. @@ -493,32 +703,42 @@

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.

@@ -533,7 +753,9 @@ 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 +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 @@ -541,7 +763,7 @@

See also: gimp_install_procedure(), gimp_install_temp_proc()

-


gimp_extension_ack ()

void        gimp_extension_ack              (void);

+


gimp_extension_ack ()

void        gimp_extension_ack              (void);

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

@@ -554,7 +776,9 @@

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 @@ -567,9 +791,11 @@ See also: gimp_install_procedure(), gimp_install_temp_proc()

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

gimp_parasite_find ()


gimp_parasite_find ()

GimpParasite* gimp_parasite_find            (const gchar *name);

+>GimpParasite* gimp_parasite_find (const gchar *name);

Finds the named parasite.

Finds and returns the named parasite that was previously attached to @@ -577,8 +803,14 @@

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.

@@ -586,7 +818,9 @@

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. @@ -596,7 +830,11 @@

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 @@ -604,10 +842,18 @@

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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,22 +2,42 @@ -gboolean (*GimpImageConstraintFunc) (gint32 image_id, - gpointer data); -GtkWidget* gimp_image_combo_box_new (GimpImageConstraintFunc constraint, - 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:
Returns: -

gimp_image_combo_box_new ()

GtkWidget*  gimp_image_combo_box_new        (GimpImageConstraintFunc constraint,
-                                             gpointer data);

+


gimp_image_combo_box_new ()

GtkWidget*  gimp_image_combo_box_new        (GimpImageConstraintFunc constraint,
+                                             gpointer data);

Creates a new GimpIntComboBox filled with all currently opened diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpimage.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpimage.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpimage.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpimage.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,172 +2,562 @@ -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 @@ -175,8 +565,14 @@

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

@@ -193,7 +589,11 @@ 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, @@ -201,7 +601,11 @@

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 @@ -213,9 +617,11 @@

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 @@ -223,7 +629,11 @@

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 @@ -231,7 +641,11 @@

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 @@ -239,7 +653,11 @@

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 @@ -248,7 +666,11 @@

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.

@@ -257,7 +679,11 @@

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.

@@ -266,11 +692,23 @@

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 @@ -288,7 +726,11 @@ offx: x offset between upper left corner of old and new images: (new - old). offy: y offset between upper left corner of old and new images: (new - old). Returns: TRUE on success. -


gimp_image_resize_to_layers ()

gboolean    gimp_image_resize_to_layers     (gint32 image_ID);

+


gimp_image_resize_to_layers ()

gboolean    gimp_image_resize_to_layers     (gint32 image_ID);

Resize the image to fit all layers.

This procedure resizes the image to the bounding box of all layers @@ -300,29 +742,49 @@ 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 it's new width and height -are equal to the supplied parameters. Offsets are also provided -which describe the position of the previous image's content. No -bounds checking is currently provided, so don't supply parameters -that are out of bounds. All channels within the image are scaled -according to the specified parameters; this includes the image -selection mask. All layers within the image are repositioned -according to the specified offsets.

+This procedure scales the image so that its new width and height are +equal to the supplied parameters. Offsets are also provided which +describe the position of the previous image's content. No bounds +checking is currently provided, so don't supply parameters that are +out of bounds. All channels within the image are scaled according to +the specified parameters; this includes the image 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.
Returns: TRUE on success. -

gimp_image_crop ()

gboolean    gimp_image_crop                 (gint32 image_ID,
-                                             gint new_width,
-                                             gint new_height,
-                                             gint offx,
-                                             gint offy);

+


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 @@ -338,8 +800,14 @@ 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);

+


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 @@ -348,8 +816,14 @@

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 @@ -359,7 +833,11 @@

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 @@ -371,7 +849,11 @@

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 @@ -381,7 +863,11 @@

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. @@ -389,8 +875,12 @@

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 @@ -399,13 +889,29 @@

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

@@ -433,9 +939,17 @@ 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);

+


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 @@ -448,9 +962,17 @@ 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 @@ -463,8 +985,14 @@ 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);

+


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 @@ -476,8 +1004,14 @@

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 @@ -487,8 +1021,14 @@

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 @@ -498,8 +1038,14 @@

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 @@ -509,9 +1055,15 @@

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

@@ -522,9 +1074,17 @@

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 @@ -535,8 +1095,14 @@ 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);

+


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 @@ -545,8 +1111,14 @@

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 @@ -556,8 +1128,14 @@

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 @@ -567,7 +1145,11 @@

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.

@@ -577,7 +1159,11 @@

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.

@@ -591,8 +1177,14 @@

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.

@@ -608,7 +1200,11 @@ 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 @@ -619,7 +1215,11 @@

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 @@ -627,7 +1227,11 @@

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. @@ -636,8 +1240,14 @@

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 @@ -648,7 +1258,11 @@

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, @@ -656,8 +1270,14 @@

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. @@ -668,7 +1288,11 @@

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 @@ -676,7 +1300,11 @@

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.

@@ -688,9 +1316,15 @@

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. @@ -702,8 +1336,12 @@ 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,
+

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.

@@ -716,10 +1354,16 @@

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. @@ -731,7 +1375,11 @@ component: The image component. visible: Component is visible. Returns: TRUE on success. -


gimp_image_get_filename ()

gchar*      gimp_image_get_filename         (gint32 image_ID);

+


gimp_image_get_filename ()

gchar*      gimp_image_get_filename         (gint32 image_ID);

Returns the specified image's filename.

This procedure returns the specified image's filename in the @@ -740,8 +1388,14 @@

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 @@ -750,16 +1404,28 @@

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

gimp_image_get_name ()

gchar*      gimp_image_get_name             (gint32 image_ID);

+


gimp_image_get_name ()

gchar*      gimp_image_get_name             (gint32 image_ID);

Returns the specified image's name.

This procedure returns the specified image's name.

image_ID: The image.
Returns: The name. -

gimp_image_get_resolution ()

gboolean    gimp_image_get_resolution       (gint32 image_ID,
-                                             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 @@ -769,9 +1435,17 @@ 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);

+


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 @@ -782,9 +1456,11 @@ 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 @@ -794,7 +1470,11 @@

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

@@ -808,8 +1488,14 @@

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 @@ -828,7 +1514,11 @@

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 @@ -837,8 +1527,14 @@

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 @@ -847,9 +1543,15 @@

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 @@ -858,24 +1560,44 @@

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.

+


gimp_image_get_cmap ()

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

Warning

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

This procedure is deprecated! Use gimp_image_get_colormap() instead.

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

gimp_image_set_cmap ()

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

Warning

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

+


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_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 @@ -885,9 +1607,17 @@

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. @@ -899,10 +1629,20 @@ 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);

+


gimp_image_get_thumbnail_data ()

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

image_ID:
width: @@ -911,10 +1651,14 @@
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 @@ -923,9 +1667,17 @@

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.

@@ -934,7 +1686,11 @@ num_parasites: The number of attached parasites. parasites: The names of currently attached parasites. Returns: TRUE on success. -


gimp_image_parasite_attach ()

gboolean    gimp_image_parasite_attach      (gint32 image_ID,
+

gimp_image_parasite_attach ()

gboolean    gimp_image_parasite_attach      (gint32 image_ID,
                                              GimpParasite *parasite);

@@ -946,8 +1702,14 @@

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 @@ -956,11 +1718,21 @@

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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimplayer.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimplayer.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimplayer.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimplayer.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,73 +2,235 @@ -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.

@@ -87,7 +249,11 @@ 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 @@ -98,10 +264,20 @@

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 @@ -115,11 +291,23 @@ 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);

+


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 @@ -133,7 +321,11 @@ offx: x offset between upper left corner of old and new layers: (old - new). offy: y offset between upper left corner of old and new layers: (old - new). Returns: TRUE on success. -


gimp_layer_resize_to_image_size ()

gboolean    gimp_layer_resize_to_image_size (gint32 layer_ID);

+


gimp_layer_resize_to_image_size ()

gboolean    gimp_layer_resize_to_image_size (gint32 layer_ID);

Resize a layer to the image size.

This procedure resizes the layer so that it's new width and height @@ -141,9 +333,17 @@

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 @@ -157,7 +357,11 @@ offx: Offset in x direction. offy: Offset in y direction. Returns: TRUE on success. -


gimp_layer_add_alpha ()

gboolean    gimp_layer_add_alpha            (gint32 layer_ID);

+


gimp_layer_add_alpha ()

gboolean    gimp_layer_add_alpha            (gint32 layer_ID);

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

This procedure adds an additional component to the specified layer @@ -169,9 +373,17 @@

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 @@ -182,7 +394,11 @@ offx: Offset in x direction. offy: Offset in y direction. Returns: TRUE on success. -


gimp_layer_create_mask ()

gint32      gimp_layer_create_mask          (gint32 layer_ID,
+

gimp_layer_create_mask ()

gint32      gimp_layer_create_mask          (gint32 layer_ID,
                                              GimpAddMaskType mask_type);

Create a layer mask for the specified specified layer.

@@ -200,7 +416,11 @@

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 @@ -210,7 +430,11 @@ 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 @@ -218,8 +442,14 @@

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 @@ -232,7 +462,11 @@

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.

@@ -242,8 +476,14 @@

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 @@ -255,7 +495,11 @@

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 @@ -263,8 +507,14 @@

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 @@ -273,7 +523,11 @@

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 @@ -282,8 +536,14 @@

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 @@ -293,7 +553,11 @@

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 @@ -302,8 +566,14 @@

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 @@ -314,7 +584,11 @@

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 @@ -323,8 +597,14 @@

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 @@ -335,15 +615,25 @@

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

gimp_layer_get_opacity ()

gdouble     gimp_layer_get_opacity          (gint32 layer_ID);

+


gimp_layer_get_opacity ()

gdouble     gimp_layer_get_opacity          (gint32 layer_ID);

Get the opacity of the specified layer.

This procedure returns the specified layer's opacity.

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

gimp_layer_set_opacity ()

gboolean    gimp_layer_set_opacity          (gint32 layer_ID,
-                                             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.

@@ -351,14 +641,20 @@

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

gimp_layer_get_mode ()

GimpLayerModeEffects gimp_layer_get_mode    (gint32 layer_ID);

+


gimp_layer_get_mode ()

GimpLayerModeEffects gimp_layer_get_mode    (gint32 layer_ID);

Get the combination mode of the specified layer.

This procedure returns the specified layer's combination mode.

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

gimp_layer_set_mode ()

gboolean    gimp_layer_set_mode             (gint32 layer_ID,
+

gimp_layer_set_mode ()

gboolean    gimp_layer_set_mode             (gint32 layer_ID,
                                              GimpLayerModeEffects mode);

Set the combination mode of the specified layer.

@@ -367,7 +663,11 @@

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

gimp_layer_is_floating_sel ()

gboolean    gimp_layer_is_floating_sel      (gint32 layer_ID);

+


gimp_layer_is_floating_sel ()

gboolean    gimp_layer_is_floating_sel      (gint32 layer_ID);

Is the specified layer a floating selection?

This procedure returns whether the layer is a floating selection. diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpmenu.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpmenu.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpmenu.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpmenu.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,32 +2,76 @@ -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); -GtkWidget* gimp_layer_menu_new (GimpConstraintFunc constraint, - GimpMenuCallback callback, - gpointer data, - gint32 active_layer); -GtkWidget* gimp_channel_menu_new (GimpConstraintFunc constraint, - GimpMenuCallback callback, - 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.

+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); +GtkWidget* gimp_layer_menu_new (GimpConstraintFunc constraint, + GimpMenuCallback callback, + gpointer data, + gint32 active_layer); +GtkWidget* gimp_channel_menu_new (GimpConstraintFunc constraint, + GimpMenuCallback callback, + 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: @@ -35,17 +79,27 @@
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: -

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.

+


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: @@ -54,10 +108,16 @@
Returns: -

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.

+


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: @@ -66,10 +126,16 @@
Returns: -

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.

+


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: @@ -78,10 +144,16 @@
Returns: -

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.

+


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: diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpmessage.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpmessage.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpmessage.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpmessage.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,18 +2,28 @@ -gboolean gimp_message (const gchar *message); +gboolean gimp_message (const gchar *message); GimpMessageHandlerType gimp_message_get_handler (void); -gboolean gimp_message_set_handler (gboolean gimp_message_set_handler (GimpMessageHandlerType handler); -

Description

+

Description

Display a dialog box with a message. -

Details

gimp_message ()

gboolean    gimp_message                    (const gchar *message);

+

Details

gimp_message ()

gboolean    gimp_message                    (const gchar *message);

Displays a dialog box with a message.

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

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

gimp_message_get_handler ()


gimp_message_get_handler ()

GimpMessageHandlerType gimp_message_get_handler
                                             (void);

@@ -32,7 +42,9 @@ gimp was started.

Returns: The current handler type. -

gimp_message_set_handler ()

gboolean    gimp_message_set_handler        (

gimp_message_set_handler ()

gboolean    gimp_message_set_handler        (GimpMessageHandlerType handler);

Controls where warning messages are displayed. diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppalette.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppalette.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppalette.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppalette.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,54 +2,136 @@ -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 (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 (GimpRGB *foreground); -gboolean gimp_palette_get_background (gboolean gimp_palette_get_background (GimpRGB *background); -gboolean gimp_palette_set_foreground (const gboolean gimp_palette_set_foreground (const GimpRGB *foreground); -gboolean gimp_palette_set_background (const gboolean gimp_palette_set_background (const GimpRGB *background); -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

@@ -58,7 +140,11 @@ 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

@@ -67,8 +153,14 @@ 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

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

@@ -87,8 +183,14 @@ 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. @@ -99,12 +201,20 @@ 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 @@ -117,8 +227,14 @@ 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 @@ -129,8 +245,14 @@ 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);

@@ -146,8 +268,14 @@ 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);

@@ -163,9 +291,17 @@ 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 @@ -178,9 +314,17 @@ 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 @@ -193,7 +337,9 @@ Returns: TRUE on success.

Since GIMP 2.2 -


gimp_palette_get_foreground ()

gboolean    gimp_palette_get_foreground     (

gimp_palette_get_foreground ()

gboolean    gimp_palette_get_foreground     (GimpRGB *foreground);

Warning

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

Get the current GIMP foreground color. @@ -204,7 +350,9 @@

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

gimp_palette_get_background ()

gboolean    gimp_palette_get_background     (

gimp_palette_get_background ()

gboolean    gimp_palette_get_background     (GimpRGB *background);

Warning

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

Get the current GIMP background color. @@ -215,7 +363,9 @@

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

gimp_palette_set_foreground ()

gboolean    gimp_palette_set_foreground     (const 

gimp_palette_set_foreground ()

gboolean    gimp_palette_set_foreground     (const GimpRGB *foreground);

Warning

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

Set the current GIMP foreground color. @@ -226,7 +376,9 @@

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

gimp_palette_set_background ()

gboolean    gimp_palette_set_background     (const 

gimp_palette_set_background ()

gboolean    gimp_palette_set_background     (const GimpRGB *background);

Warning

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

Set the current GIMP background color. @@ -238,7 +390,9 @@

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.

@@ -246,7 +400,9 @@ 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.6/devel-docs/libgimp/html/libgimp-gimppalettemenu.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppalettemenu.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppalettemenu.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppalettemenu.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,21 +2,45 @@ -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 - (GtkWidget *widget); -void gimp_palette_select_widget_set (GtkWidget *widget, - const gchar *palette_name); -

Description

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

Description

A widget for selecting palettes. -

Details

gimp_palette_select_widget_new ()

GtkWidget*  gimp_palette_select_widget_new  (const gchar *title,
-                                             const gchar *palette_name,
+

Details

gimp_palette_select_widget_new ()

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

-Creates a new GtkWidget that completely controls the selection of + 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.

@@ -25,17 +49,25 @@ 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. +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
-                                            (GtkWidget *widget);

+


gimp_palette_select_widget_close ()

void        gimp_palette_select_widget_close
+                                            (GtkWidget *widget);

Closes the popup window associated with widget.

widget: A palette select widget.

Since GIMP 2.2 -


gimp_palette_select_widget_set ()

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

+


gimp_palette_select_widget_set ()

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

Sets the current palette for the palette select widget. Calls the callback function if one was supplied in the call to gimp_palette_select_widget_new().

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppaletteselect.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppaletteselect.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppaletteselect.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppaletteselect.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,35 +2,83 @@ -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);

+

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

gimp_palette_select_new ()

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

+ gpointer data);

title:
palette_name: @@ -39,14 +87,24 @@
Returns: -

gimp_palette_select_destroy ()

void        gimp_palette_select_destroy     (const gchar *palette_callback);

+


gimp_palette_select_destroy ()

void        gimp_palette_select_destroy     (const gchar *palette_callback);

palette_callback: -

gimp_palettes_popup ()

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

+


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.

@@ -55,15 +113,25 @@ popup_title: Title to give the palette popup window. initial_palette: The name of the palette to set as the first selected. Returns: TRUE on success. -


gimp_palettes_close_popup ()

gboolean    gimp_palettes_close_popup       (const gchar *palette_callback);

+


gimp_palettes_close_popup ()

gboolean    gimp_palettes_close_popup       (const gchar *palette_callback);

Popdown the Gimp palette selection.

This procedure closes an opened palette selection dialog.

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

gimp_palettes_set_popup ()

gboolean    gimp_palettes_set_popup         (const gchar *palette_callback,
-                                             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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppalettes.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppalettes.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppalettes.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppalettes.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,28 +2,60 @@ -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. @@ -33,20 +65,36 @@

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

gimp_palettes_get_palette ()

gchar*      gimp_palettes_get_palette       (gint *num_colors);

Warning

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

+


gimp_palettes_get_palette ()

gchar*      gimp_palettes_get_palette       (gint *num_colors);

Warning

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

This procedure is deprecated! Use gimp_context_get_palette() instead.

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

gimp_palettes_set_palette ()

gboolean    gimp_palettes_set_palette       (const gchar *name);

Warning

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

+


gimp_palettes_set_palette ()

gboolean    gimp_palettes_set_palette       (const gchar *name);

Warning

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

This procedure is deprecated! Use gimp_context_set_palette() instead.

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

gimp_palettes_get_palette_entry ()

gchar*      gimp_palettes_get_palette_entry (const gchar *name,
-                                             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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppaths.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppaths.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppaths.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppaths.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,55 +2,179 @@ -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.

@@ -58,11 +182,23 @@

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.

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


gimp_path_get_current ()

gchar*      gimp_path_get_current           (gint32 image_ID);

+


gimp_path_get_current ()

gchar*      gimp_path_get_current           (gint32 image_ID);

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

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

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

gimp_path_set_current ()

gboolean    gimp_path_set_current           (gint32 image_ID,
-                                             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.

@@ -89,11 +235,23 @@

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.

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


gimp_path_stroke_current ()

gboolean    gimp_path_stroke_current        (gint32 image_ID);

+


gimp_path_stroke_current ()

gboolean    gimp_path_stroke_current        (gint32 image_ID);

Stroke the current path in the passed image.

Stroke the current path in the passed image.

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

gimp_path_get_point_at_dist ()

gint        gimp_path_get_point_at_dist     (gint32 image_ID,
-                                             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 @@ -129,8 +301,14 @@ 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 @@ -141,8 +319,14 @@

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 @@ -154,8 +338,14 @@

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.

@@ -163,8 +353,14 @@

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 @@ -174,9 +370,17 @@

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 @@ -187,9 +391,17 @@ 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);

+


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 @@ -202,13 +414,27 @@ 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.

@@ -221,10 +447,20 @@ 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);

+


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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppattern.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppattern.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppattern.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppattern.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,22 +2,56 @@ -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. @@ -30,12 +64,26 @@ 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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppatternmenu.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppatternmenu.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppatternmenu.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppatternmenu.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,21 +2,45 @@ -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 - (GtkWidget *widget); -void gimp_pattern_select_widget_set (GtkWidget *widget, - const gchar *pattern_name); -

Description

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

Description

A widget for selecting patterns. -

Details

gimp_pattern_select_widget_new ()

GtkWidget*  gimp_pattern_select_widget_new  (const gchar *title,
-                                             const gchar *pattern_name,
+

Details

gimp_pattern_select_widget_new ()

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

-Creates a new GtkWidget that completely controls the selection of + 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.

@@ -24,14 +48,22 @@ 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
-                                            (GtkWidget *widget);

+Returns: A GtkWidget that you can use in your UI. +


gimp_pattern_select_widget_close ()

void        gimp_pattern_select_widget_close
+                                            (GtkWidget *widget);

Closes the popup window associated with widget.

widget: A pattern select widget. -

gimp_pattern_select_widget_set ()

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

+


gimp_pattern_select_widget_set ()

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

Sets the current pattern for the pattern select widget. Calls the callback function if one was supplied in the call to gimp_pattern_select_widget_new().

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppatternselect.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppatternselect.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppatternselect.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppatternselect.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,33 +2,89 @@ -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);

+

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: @@ -39,10 +95,18 @@
user_data: -

gimp_pattern_select_new ()

const gchar* gimp_pattern_select_new        (const gchar *title,
-                                             const gchar *pattern_name,
+

gimp_pattern_select_new ()

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

+ gpointer data);

title:
pattern_name: @@ -51,14 +115,24 @@
Returns: -

gimp_pattern_select_destroy ()

void        gimp_pattern_select_destroy     (const gchar *pattern_callback);

+


gimp_pattern_select_destroy ()

void        gimp_pattern_select_destroy     (const gchar *pattern_callback);

pattern_callback: -

gimp_patterns_popup ()

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

+


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.

@@ -67,15 +141,25 @@ popup_title: Title to give the pattern popup window. initial_pattern: The name of the pattern to set as the first selected. Returns: TRUE on success. -


gimp_patterns_close_popup ()

gboolean    gimp_patterns_close_popup       (const gchar *pattern_callback);

+


gimp_patterns_close_popup ()

gboolean    gimp_patterns_close_popup       (const gchar *pattern_callback);

Popdown the Gimp pattern selection.

This procedure closes an opened pattern selection dialog.

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

gimp_patterns_set_popup ()

gboolean    gimp_patterns_set_popup         (const gchar *pattern_callback,
-                                             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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppatterns.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppatterns.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppatterns.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppatterns.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,30 +2,70 @@ -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 @@ -35,25 +75,49 @@

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.

+


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.
Returns: The pattern name. -

gimp_patterns_set_pattern ()

gboolean    gimp_patterns_set_pattern       (const gchar *name);

Warning

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

+


gimp_patterns_set_pattern ()

gboolean    gimp_patterns_set_pattern       (const gchar *name);

Warning

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

This procedure is deprecated! Use gimp_context_set_pattern() instead.

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

gimp_patterns_get_pattern_data ()

gchar*      gimp_patterns_get_pattern_data  (const gchar *name,
-                                             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.

+


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). diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppixbuf.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppixbuf.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppixbuf.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppixbuf.html 2005-05-08 23:43:11.000000000 +0200 @@ -3,25 +3,57 @@ 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,
@@ -29,9 +61,17 @@
 } GimpPixbufTransparency;
 

-


gimp_image_get_thumbnail ()

GdkPixbuf*  gimp_image_get_thumbnail        (gint32 image_ID,
-                                             gint width,
-                                             gint height,
+


gimp_image_get_thumbnail ()

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. The thumbnail will be not larger than the requested size.

@@ -40,12 +80,22 @@

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 +
Returns: a new GdkPixbuf

Since GIMP 2.2 -


gimp_drawable_get_thumbnail ()

GdkPixbuf*  gimp_drawable_get_thumbnail     (gint32 drawable_ID,
-                                             gint width,
-                                             gint height,
+


gimp_drawable_get_thumbnail ()

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 @@ -55,16 +105,34 @@ 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 +Returns: a new GdkPixbuf

Since GIMP 2.2 -


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


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,
                                              GimpPixbufTransparency alpha);

Retrieves a thumbnail pixbuf for the drawable identified by drawable_ID. The thumbnail will be not larger than the requested @@ -78,7 +146,9 @@ 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 +Returns: a new GdkPixbuf

Since GIMP 2.2

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html 2005-05-08 23:43:11.000000000 +0200 @@ -5,7 +5,9 @@ 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); @@ -14,21 +16,33 @@ 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,
@@ -38,24 +52,28 @@
 } 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 +
shadow: a gboolean indicating whether the region is attached to the shadow tiles or the real drawable tiles.
Returns: a pointer to a GimpPixelRgn structure (or NULL). -

gimp_pixel_fetcher_set_edge_mode ()

void        gimp_pixel_fetcher_set_edge_mode
+

gimp_pixel_fetcher_set_edge_mode ()

void        gimp_pixel_fetcher_set_edge_mode
                                             (GimpPixelFetcher *pf,
                                              GimpPixelFetcherEdgeMode mode);

Change the edage mode of a previously initialized pixel region.

pf: a pointer to a previously initialized GimpPixelFetcher.
mode: the new edge mode from GimpPixelFetcherEdgeMode. -

gimp_pixel_fetcher_set_bg_color ()

void        gimp_pixel_fetcher_set_bg_color (GimpPixelFetcher *pf,
+

gimp_pixel_fetcher_set_bg_color ()

void        gimp_pixel_fetcher_set_bg_color (GimpPixelFetcher *pf,
                                              const GimpRGB *color);

@@ -63,27 +81,39 @@

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

+


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

+


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

+


gimp_pixel_fetcher_destroy ()

void        gimp_pixel_fetcher_destroy      (GimpPixelFetcher *pf);

Close a previously initializd pixel region.

pf: a pointer to a previously initialized GimpPixelFetcher. diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppixelrgn.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppixelrgn.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimppixelrgn.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimppixelrgn.html 2005-05-08 23:43:11.000000000 +0200 @@ -5,67 +5,163 @@ 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 */
@@ -78,14 +174,26 @@
 } 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);

+ 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: @@ -128,15 +236,27 @@ drawable.

width: the width of the region.
height: the height of the region. -
dirty: a gboolean indicating whether the drawable should be marked +
dirty: a gboolean indicating whether the drawable should be marked as "dirty". -
shadow: a gboolean indicating whether the region is attached to the +
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);

+


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. @@ -146,128 +266,226 @@ 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);

+


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.

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

+


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.

pr: a pointer to a previously initialized GimpPixelRgn. -
buf: a pointer to an array of guchar +
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);

+


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.

pr: a pointer to a previously initialized GimpPixelRgn. -
buf: a pointer to an array of guchar +
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);

+


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

+


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

+


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.

pr: a pointer to a previously initialized GimpPixelRgn. -
buf: a pointer to an array of guchar +
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);

+


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.

pr: a pointer to a previously initialized GimpPixelRgn. -
buf: a pointer to an array of guchar +
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);

+


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

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,
+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 @@ -282,13 +500,21 @@

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

+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, 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.6/devel-docs/libgimp/html/libgimp-gimpplugin.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpplugin.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpplugin.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpplugin.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,20 +2,50 @@ -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 @@ -30,8 +60,14 @@

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 @@ -41,9 +77,15 @@

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

+ const guint8 *icon_data);

procedure_name:
icon_type: @@ -51,8 +93,14 @@
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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,55 +2,139 @@ -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 @@ -58,17 +142,35 @@ 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 @@ -92,8 +194,14 @@ 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 @@ -104,9 +212,17 @@ 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 @@ -117,7 +233,11 @@ 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 @@ -128,15 +248,35 @@

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.

@@ -163,13 +303,23 @@ 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.

@@ -182,13 +332,23 @@ 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.

@@ -202,8 +362,12 @@ 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 diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpprogress.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpprogress.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpprogress.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpprogress.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,54 +2,110 @@ -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);

+

Details

GimpProgressStartCallback ()

void        (*GimpProgressStartCallback)    (const gchar *message,
+                                             gboolean cancelable,
+                                             gpointer user_data);

message:
cancelable:
user_data: -

GimpProgressEndCallback ()

void        (*GimpProgressEndCallback)      (gpointer user_data);

+


GimpProgressEndCallback ()

void        (*GimpProgressEndCallback)      (gpointer user_data);

user_data: -

GimpProgressTextCallback ()

void        (*GimpProgressTextCallback)     (const gchar *message,
-                                             gpointer user_data);

+


GimpProgressTextCallback ()

void        (*GimpProgressTextCallback)     (const gchar *message,
+                                             gpointer user_data);

message:
user_data: -

GimpProgressValueCallback ()

void        (*GimpProgressValueCallback)    (gdouble percentage,
-                                             gpointer user_data);

+


GimpProgressValueCallback ()

void        (*GimpProgressValueCallback)    (gdouble percentage,
+                                             gpointer user_data);

percentage:
user_data: -

gimp_progress_init ()

gboolean    gimp_progress_init              (const gchar *message);

+


gimp_progress_init ()

gboolean    gimp_progress_init              (const gchar *message);

Initializes the progress bar for the current plug-in.

Initializes the progress bar for the current plug-in. It is only @@ -57,7 +113,11 @@

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 @@ -65,11 +125,15 @@

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 @@ -80,7 +144,11 @@
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().

@@ -88,7 +156,11 @@ Returns: the user_data that was passed to gimp_progress_install().

Since GIMP 2.2 -


gimp_progress_cancel ()

gboolean    gimp_progress_cancel            (const gchar *progress_callback);

+


gimp_progress_cancel ()

gboolean    gimp_progress_cancel            (const gchar *progress_callback);

Cancels a running progress.

This function cancels the currently running progress.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpregioniterator.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpregioniterator.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpregioniterator.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpregioniterator.html 2005-05-08 23:43:11.000000000 +0200 @@ -3,68 +3,138 @@ 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);

+


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

+


GimpRgnFunc2 ()

void        (*GimpRgnFunc2)                 (const guchar *src,
+                                             guchar *dest,
+                                             gint bpp,
+                                             gpointer data);

src:
dest: @@ -72,11 +142,21 @@
data: -

GimpRgnFuncSrc ()

void        (*GimpRgnFuncSrc)               (gint x,
-                                             gint y,
-                                             const guchar *src,
-                                             gint bpp,
-                                             gpointer data);

+


GimpRgnFuncSrc ()

void        (*GimpRgnFuncSrc)               (gint x,
+                                             gint y,
+                                             const guchar *src,
+                                             gint bpp,
+                                             gpointer data);

x:
y: @@ -85,11 +165,21 @@
data: -

GimpRgnFuncDest ()

void        (*GimpRgnFuncDest)              (gint x,
-                                             gint y,
-                                             guchar *dest,
-                                             gint bpp,
-                                             gpointer data);

+


GimpRgnFuncDest ()

void        (*GimpRgnFuncDest)              (gint x,
+                                             gint y,
+                                             guchar *dest,
+                                             gint bpp,
+                                             gpointer data);

x:
y: @@ -98,12 +188,24 @@
data: -

GimpRgnFuncSrcDest ()

void        (*GimpRgnFuncSrcDest)           (gint x,
-                                             gint y,
-                                             const guchar *src,
-                                             guchar *dest,
-                                             gint bpp,
-                                             gpointer data);

+


GimpRgnFuncSrcDest ()

void        (*GimpRgnFuncSrcDest)           (gint x,
+                                             gint y,
+                                             const guchar *src,
+                                             guchar *dest,
+                                             gint bpp,
+                                             gpointer data);

x:
y: @@ -113,7 +215,7 @@
data: -

gimp_rgn_iterator_new ()

GimpRgnIterator* gimp_rgn_iterator_new      (GimpDrawable *drawable,
+

gimp_rgn_iterator_new ()

GimpRgnIterator* gimp_rgn_iterator_new      (GimpDrawable *drawable,
                                              GimpRunMode unused);

Creates a new GimpRgnIterator for drawable. The GimpRunMode parameter is ignored.

@@ -121,41 +223,49 @@

drawable: a GimpDrawable
unused: ignored
Returns: a newly allocated GimpRgnIterator. -

gimp_rgn_iterator_free ()

void        gimp_rgn_iterator_free          (GimpRgnIterator *iter);

+


gimp_rgn_iterator_free ()

void        gimp_rgn_iterator_free          (GimpRgnIterator *iter);

Frees the resources allocated for iter.

iter: a GimpRgnIterator -

gimp_rgn_iterator_src ()

void        gimp_rgn_iterator_src           (GimpRgnIterator *iter,
+

gimp_rgn_iterator_src ()

void        gimp_rgn_iterator_src           (GimpRgnIterator *iter,
                                              GimpRgnFuncSrc func,
-                                             gpointer data);

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

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

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: @@ -163,10 +273,12 @@
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);

+ gpointer data);

drawable:
unused: diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpselection.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpselection.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpselection.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpselection.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,50 +2,168 @@ -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 @@ -64,7 +182,11 @@

x2: x coordinate of lower right corner of selection bounds.
y2: y coordinate of lower right corner of selection bounds.
Returns: TRUE on success. -

gimp_selection_all ()

gboolean    gimp_selection_all              (gint32 image_ID);

+


gimp_selection_all ()

gboolean    gimp_selection_all              (gint32 image_ID);

Select all of the image.

This procedure sets the selection mask to completely encompass the @@ -72,7 +194,11 @@

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 @@ -80,12 +206,20 @@

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

gimp_selection_clear ()

gboolean    gimp_selection_clear            (gint32 image_ID);

Warning

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

+


gimp_selection_clear ()

gboolean    gimp_selection_clear            (gint32 image_ID);

Warning

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

This procedure is deprecated! Use gimp_selection_none() instead.

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

gimp_selection_is_empty ()

gboolean    gimp_selection_is_empty         (gint32 image_ID);

+


gimp_selection_is_empty ()

gboolean    gimp_selection_is_empty         (gint32 image_ID);

Determine whether the selection is empty.

This procedure returns non-zero if the selection for the specified @@ -93,10 +227,20 @@

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.

@@ -111,14 +255,22 @@ offx: x offset for translation. offy: y offset for translation. Returns: The floated layer. -


gimp_selection_load ()

gboolean    gimp_selection_load             (gint32 channel_ID);

+


gimp_selection_load ()

gboolean    gimp_selection_load             (gint32 channel_ID);

Transfer the specified channel to the selection mask.

This procedure loads the specified channel into the selection mask.

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

gimp_selection_save ()

gint32      gimp_selection_save             (gint32 image_ID);

+


gimp_selection_save ()

gint32      gimp_selection_save             (gint32 image_ID);

Copy the selection mask to a new channel.

This procedure copies the selection mask and stores the content in a @@ -127,9 +279,17 @@

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 @@ -139,8 +299,14 @@ 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 @@ -149,8 +315,14 @@

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 @@ -160,7 +332,11 @@

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 @@ -168,8 +344,14 @@

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 @@ -178,7 +360,11 @@

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 @@ -188,8 +374,14 @@

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 @@ -199,9 +391,17 @@

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 @@ -214,7 +414,11 @@ offx: x offset for translation. offy: y offset for translation. Returns: TRUE on success. -


gimp_selection_layer_alpha ()

gboolean    gimp_selection_layer_alpha      (gint32 layer_ID);

+


gimp_selection_layer_alpha ()

gboolean    gimp_selection_layer_alpha      (gint32 layer_ID);

Transfer the specified layer's alpha channel to the selection mask.

This procedure requires a layer with an alpha channel. The alpha @@ -226,7 +430,11 @@

layer_ID: Layer with alpha.
Returns: TRUE on success. -

gimp_selection_combine ()

gboolean    gimp_selection_combine          (gint32 channel_ID,
+

gimp_selection_combine ()

gboolean    gimp_selection_combine          (gint32 channel_ID,
                                              GimpChannelOps operation);

Combines the specified channel with the selection mask.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimptexttool.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimptexttool.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimptexttool.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimptexttool.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,69 +2,189 @@ -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.

@@ -90,14 +210,30 @@ 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 @@ -113,23 +249,57 @@ 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.

+


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. @@ -150,21 +320,51 @@
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.

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

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimptile.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimptile.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimptile.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimptile.html 2005-05-08 23:43:11.000000000 +0200 @@ -6,14 +6,20 @@ 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 ) */
@@ -26,35 +32,41 @@
 } GimpTile;
 

-


gimp_tile_ref ()

void        gimp_tile_ref                   (GimpTile *tile);

+


gimp_tile_ref ()

void        gimp_tile_ref                   (GimpTile *tile);

tile: -

gimp_tile_ref_zero ()

void        gimp_tile_ref_zero              (GimpTile *tile);

+


gimp_tile_ref_zero ()

void        gimp_tile_ref_zero              (GimpTile *tile);

tile: -

gimp_tile_unref ()

void        gimp_tile_unref                 (GimpTile *tile,
-                                             gboolean dirty);

+


gimp_tile_unref ()

void        gimp_tile_unref                 (GimpTile *tile,
+                                             gboolean dirty);

tile:
dirty: -

gimp_tile_flush ()

void        gimp_tile_flush                 (GimpTile *tile);

+


gimp_tile_flush ()

void        gimp_tile_flush                 (GimpTile *tile);

tile: -

gimp_tile_cache_size ()

void        gimp_tile_cache_size            (gulong kilobytes);

+


gimp_tile_cache_size ()

void        gimp_tile_cache_size            (gulong kilobytes);

Sets the size of the tile cache on the plug-in side. The tile cache is used to reduce the number of tiles exchanged between the GIMP core and the plug-in. See also gimp_tile_cache_ntiles().

kilobytes: new cache size in kilobytes -

gimp_tile_cache_ntiles ()

void        gimp_tile_cache_ntiles          (gulong ntiles);

+


gimp_tile_cache_ntiles ()

void        gimp_tile_cache_ntiles          (gulong ntiles);

Sets the size of the tile cache on the plug-in side. This function is similar to gimp_tile_cache_size() but allows to specify the number of tiles directly. diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimptools.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimptools.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimptools.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimptools.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,151 +2,455 @@ -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.

@@ -160,9 +464,17 @@ 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);

+


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.

@@ -175,16 +487,30 @@ 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.

@@ -211,13 +537,27 @@ 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 @@ -241,9 +581,17 @@ 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);

+


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 @@ -257,11 +605,21 @@ 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 @@ -275,9 +633,17 @@ 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);

+


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 @@ -290,12 +656,22 @@ 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.

@@ -307,9 +683,17 @@ 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);

+


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 @@ -321,15 +705,33 @@ 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,
+

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. @@ -352,9 +754,17 @@ 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,
+

gimp_eraser ()

gboolean    gimp_eraser                     (gint32 drawable_ID,
+                                             gint num_strokes,
+                                             const gdouble *strokes,
                                              GimpBrushApplicationMode hardness,
                                              GimpPaintApplicationMode method);

Erase using the current brush. @@ -371,9 +781,17 @@ hardness: %desc%%. method: %desc%%. Returns: TRUE on success. -


gimp_eraser_default ()

gboolean    gimp_eraser_default             (gint32 drawable_ID,
-                                             gint num_strokes,
-                                             const gdouble *strokes);

+


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 @@ -386,7 +804,11 @@ num_strokes: Number of stroke control points (count each coordinate as 2 points). strokes: Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. Returns: TRUE on success. -


gimp_flip ()

gint32      gimp_flip                       (gint32 drawable_ID,
+

gimp_flip ()

gint32      gimp_flip                       (gint32 drawable_ID,
                                              GimpOrientationType flip_type);

Warning

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

This procedure is deprecated! Use gimp_drawable_transform_flip_simple() instead.

@@ -394,13 +816,27 @@

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. @@ -423,15 +859,33 @@ 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,
+

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.

@@ -464,12 +918,24 @@ 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,
+

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.

@@ -491,9 +957,17 @@ 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);

+


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 @@ -515,9 +989,17 @@ 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);

+


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 @@ -531,16 +1013,38 @@ 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.

+


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.

@@ -555,14 +1059,30 @@ 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. @@ -581,9 +1101,17 @@ 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.

+


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.

@@ -591,12 +1119,26 @@ 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.

@@ -607,10 +1149,18 @@ 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.

@@ -619,10 +1169,20 @@ 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 @@ -634,9 +1194,17 @@ 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);

+


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 @@ -648,15 +1216,35 @@ 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.

+


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.

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpui.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpui.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpui.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpui.html 2005-05-08 23:43:11.000000000 +0200 @@ -3,15 +3,25 @@ -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);

-This function initializes GTK+ with gtk_init() and initializes GDK's +

Details

gimp_ui_init ()

void        gimp_ui_init                    (const gchar *prog_name,
+                                             gboolean preview);

+This function initializes GTK+ with gtk_init() and initializes GDK's image rendering subsystem (GdkRGB) to follow the GIMP main program's colormap allocation/installation policy.

@@ -19,13 +29,33 @@ gimprc variables min_colors and install_cmap.

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

See Also

-gtk_init(), gdk_set_use_xshm(), gdk_rgb_set_min_colors(), -gdk_rgb_set_install(), gdk_rgb_get_visual(), gdk_rgb_get_cmap(), -gtk_widget_set_default_visual(), gtk_widget_set_default_colormap(), -gtk_preview_set_gamma(). +

diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpundo.html gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpundo.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimp-gimpundo.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimp-gimpundo.html 2005-05-08 23:43:11.000000000 +0200 @@ -2,17 +2,49 @@ -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 @@ -22,7 +54,11 @@

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 @@ -30,7 +66,11 @@

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

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 @@ -51,7 +95,11 @@

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 @@ -61,7 +109,11 @@

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 @@ -77,7 +129,11 @@

image_ID: The image.
Returns: True if the image undo has been frozen. -

gimp_image_undo_thaw ()

gboolean    gimp_image_undo_thaw            (gint32 image_ID);

+


gimp_image_undo_thaw ()

gboolean    gimp_image_undo_thaw            (gint32 image_ID);

Thaw the image's undo stack.

This procedure thaws the image's undo stack, allowing subsequent diff -uraN gimp-2.2.6/devel-docs/libgimp/html/libgimpui-hierarchy.html gimp-2.2.7/devel-docs/libgimp/html/libgimpui-hierarchy.html --- gimp-2.2.6/devel-docs/libgimp/html/libgimpui-hierarchy.html 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/html/libgimpui-hierarchy.html 2005-05-08 23:43:11.000000000 +0200 @@ -1,10 +1,22 @@ Object Hierarchy

Object Hierarchy

-    GObject
-        GtkObject
-            GtkWidget
-                GtkContainer
-                    GtkBox
-                        GtkVBox
+    GObject
+        GtkObject
+            GtkWidget
+                GtkContainer
+                    GtkBox
+                        GtkVBox
                             GimpPreview
@@ -13,7 +25,11 @@
 href="../libgimpwidgets/libgimpwidgets-GimpScrolledPreview.html#GimpScrolledPreview"
 >GimpScrolledPreview
                                     GimpDrawablePreview
-                GtkProgress
-                    GtkProgressBar
+                GtkProgress
+                    GtkProgressBar
                         GimpProgressBar
 
diff -uraN gimp-2.2.6/devel-docs/libgimp/Makefile.in gimp-2.2.7/devel-docs/libgimp/Makefile.in --- gimp-2.2.6/devel-docs/libgimp/Makefile.in 2005-04-10 02:09:48.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/Makefile.in 2005-04-11 12:03:26.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.6/devel-docs/libgimp/xml/gimpbrush.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpbrush.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpbrush.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpbrush.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpcolor.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpcolor.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpcolor.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpcolor.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpcontext.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpcontext.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpcontext.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpcontext.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpdrawablecombobox.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawablecombobox.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpdrawablecombobox.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawablecombobox.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpdrawablepreview.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawablepreview.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpdrawablepreview.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawablepreview.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpdrawabletransform.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawabletransform.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpdrawabletransform.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawabletransform.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpdrawable.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawable.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpdrawable.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpdrawable.xml 2005-05-08 23:43:11.000000000 +0200 @@ -46,11 +46,11 @@ gint num_channels, const guint8 *pixel); GimpTile* gimp_drawable_get_tile (GimpDrawable *drawable, - gint shadow, + gboolean shadow, gint row, gint col); GimpTile* gimp_drawable_get_tile2 (GimpDrawable *drawable, - gint shadow, + gboolean shadow, gint x, gint y); guchar* gimp_drawable_get_thumbnail_data @@ -475,7 +475,7 @@ <anchor id="gimp-drawable-get-tile"/>gimp_drawable_get_tile () gimp_drawable_get_tileGimpTile* gimp_drawable_get_tile (GimpDrawable *drawable, - gint shadow, + gboolean shadow, gint row, gint col); @@ -501,7 +501,7 @@ <anchor id="gimp-drawable-get-tile2"/>gimp_drawable_get_tile2 () gimp_drawable_get_tile2GimpTile* gimp_drawable_get_tile2 (GimpDrawable *drawable, - gint shadow, + gboolean shadow, gint x, gint y); @@ -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.6/devel-docs/libgimp/xml/gimpedit.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpedit.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpedit.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpedit.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpenums.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpenums.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpenums.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpenums.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpfileops.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpfileops.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpfileops.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpfileops.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpgradient.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpgradient.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpgradient.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpgradient.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpimagecombobox.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpimagecombobox.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpimagecombobox.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpimagecombobox.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpimage.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpimage.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpimage.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpimage.xml 2005-05-08 23:43:11.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. @@ -462,14 +462,14 @@ Scale the image to the specified extents. -This procedure scales the image so that it's new width and height -are equal to the supplied parameters. Offsets are also provided -which describe the position of the previous image's content. No -bounds checking is currently provided, so don't supply parameters -that are out of bounds. All channels within the image are scaled -according to the specified parameters; this includes the image -selection mask. All layers within the image are repositioned -according to the specified offsets. +This procedure scales the image so that its new width and height are +equal to the supplied parameters. Offsets are also provided which +describe the position of the previous image's content. No bounds +checking is currently provided, so don't supply parameters that are +out of bounds. All channels within the image are scaled according to +the specified parameters; this includes the image selection mask. +All layers within the image are repositioned according to the +specified offsets. diff -uraN gimp-2.2.6/devel-docs/libgimp/xml/gimplayer.xml gimp-2.2.7/devel-docs/libgimp/xml/gimplayer.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimplayer.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimplayer.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimppalettemenu.xml gimp-2.2.7/devel-docs/libgimp/xml/gimppalettemenu.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimppalettemenu.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimppalettemenu.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimppalette.xml gimp-2.2.7/devel-docs/libgimp/xml/gimppalette.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimppalette.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimppalette.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimppattern.xml gimp-2.2.7/devel-docs/libgimp/xml/gimppattern.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimppattern.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimppattern.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimppixbuf.xml gimp-2.2.7/devel-docs/libgimp/xml/gimppixbuf.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimppixbuf.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimppixbuf.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpplugin.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpplugin.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpplugin.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpplugin.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpprogressbar.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpprogressbar.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpprogressbar.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpprogressbar.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimpprogress.xml gimp-2.2.7/devel-docs/libgimp/xml/gimpprogress.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimpprogress.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimpprogress.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimp/xml/gimp.xml gimp-2.2.7/devel-docs/libgimp/xml/gimp.xml --- gimp-2.2.6/devel-docs/libgimp/xml/gimp.xml 2005-04-10 02:12:58.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimp/xml/gimp.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimpbase/Makefile.in gimp-2.2.7/devel-docs/libgimpbase/Makefile.in --- gimp-2.2.6/devel-docs/libgimpbase/Makefile.in 2005-04-10 02:09:42.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpbase/Makefile.in 2005-04-11 12:03: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.6/devel-docs/libgimpcolor/Makefile.in gimp-2.2.7/devel-docs/libgimpcolor/Makefile.in --- gimp-2.2.6/devel-docs/libgimpcolor/Makefile.in 2005-04-10 02:09:43.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpcolor/Makefile.in 2005-04-11 12:03:21.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.6/devel-docs/libgimpmath/Makefile.in gimp-2.2.7/devel-docs/libgimpmath/Makefile.in --- gimp-2.2.6/devel-docs/libgimpmath/Makefile.in 2005-04-10 02:09:44.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpmath/Makefile.in 2005-04-11 12:03:22.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.6/devel-docs/libgimpmodule/Makefile.in gimp-2.2.7/devel-docs/libgimpmodule/Makefile.in --- gimp-2.2.6/devel-docs/libgimpmodule/Makefile.in 2005-04-10 02:09:45.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpmodule/Makefile.in 2005-04-11 12:03:23.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.6/devel-docs/libgimpthumb/Makefile.in gimp-2.2.7/devel-docs/libgimpthumb/Makefile.in --- gimp-2.2.6/devel-docs/libgimpthumb/Makefile.in 2005-04-10 02:09:46.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpthumb/Makefile.in 2005-04-11 12:03:24.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.6/devel-docs/libgimpwidgets/html/GimpButton.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpButton.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpButton.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpButton.html 2005-05-08 23:43:11.000000000 +0200 @@ -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,21 +47,21 @@
                                             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);

@@ -69,7 +69,7 @@

button: a GimpButton.
state: a state as found in GdkEventButton->state, e.g. GDK_SHIFT_MASK. -

Signals

The "extended-clicked" signal

void        user_function                  (GimpButton *gimpbutton,
+

Signals

The "extended-clicked" signal

void        user_function                  (GimpButton *gimpbutton,
                                             GdkModifierType arg1,
diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html
--- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html	2005-04-10 02:12:57.000000000 +0200
+++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html	2005-05-08 23:43:11.000000000 +0200
@@ -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.6/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html 2005-05-08 23:43:11.000000000 +0200 @@ -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 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 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,
diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpChainButton.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpChainButton.html
--- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpChainButton.html	2005-04-10 02:12:57.000000000 +0200
+++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpChainButton.html	2005-05-08 23:43:11.000000000 +0200
@@ -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. @@ -81,7 +81,7 @@ Returns: Pointer to the new GimpChainButton, which is inactive by default. Use gimp_chain_button_set_active() to change its state. -


gimp_chain_button_set_active ()

void        gimp_chain_button_set_active    (GimpChainButton *button,
+

gimp_chain_button_set_active ()

void        gimp_chain_button_set_active    (GimpChainButton *button,
                                              gboolean active);

@@ -90,21 +90,21 @@

button: Pointer to a GimpChainButton.
active: The new state. -

gimp_chain_button_get_active ()


gimp_chain_button_get_active ()

gboolean    gimp_chain_button_get_active    (GimpChainButton *button);

Checks the state of the GimpChainButton.

button: Pointer to a GimpChainButton.
Returns: TRUE if the GimpChainButton is active (locked). -

Signals

The "toggled" signal

void        user_function                  (GimpChainButton *gimpchainbutton,
+

Signals

The "toggled" signal

void        user_function                  (GimpChainButton *gimpchainbutton,
                                             gpointer user_data);

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

See Also

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

See Also

You may want to use the convenience function gimp_coordinates_new() to set up two GimpSizeEntries (see GimpSizeEntry) linked with a GimpChainButton.

diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorArea.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorArea.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorArea.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorArea.html 2005-05-08 23:43:11.000000000 +0200 @@ -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,
+

gimp_color_area_set_color ()

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

@@ -97,7 +97,7 @@ color: Pointer to a GimpRGB struct that defines the new color. -


gimp_color_area_get_color ()

void        gimp_color_area_get_color       (GimpColorArea *area,
+

gimp_color_area_get_color ()

void        gimp_color_area_get_color       (GimpColorArea *area,
                                              GimpRGB *color);

@@ -107,7 +107,7 @@ color: Pointer to a GimpRGB struct that is used to return the color. -


gimp_color_area_has_alpha ()


gimp_color_area_has_alpha ()

gboolean    gimp_color_area_has_alpha       (GimpColorArea *area);

Checks whether the area shows transparency information. This is determined @@ -115,7 +115,7 @@

area: Pointer to a GimpColorArea.
Returns: TRUE if area shows transparency information, FALSE otherwise. -

gimp_color_area_set_type ()

void        gimp_color_area_set_type        (GimpColorArea *area,
+

gimp_color_area_set_type ()

void        gimp_color_area_set_type        (GimpColorArea *area,
                                              GimpColorAreaType type);

Allows to change the type of area. The GimpColorAreaType determines whether the widget shows transparency information and chooses the size of @@ -123,7 +123,7 @@

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

gimp_color_area_set_draw_border ()

void        gimp_color_area_set_draw_border (GimpColorArea *area,
+

gimp_color_area_set_draw_border ()

void        gimp_color_area_set_draw_border (GimpColorArea *area,
                                              gboolean draw_border);

@@ -133,7 +133,7 @@

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

Signals

The "color-changed" signal

void        user_function                  (GimpColorArea *gimpcolorarea,
+

Signals

The "color-changed" signal

void        user_function                  (GimpColorArea *gimpcolorarea,
                                             gpointer user_data);

diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorButton.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorButton.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorButton.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorButton.html 2005-05-08 23:43:11.000000000 +0200 @@ -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_new ()

GtkWidget*  gimp_color_button_new           (const GimpRGB color.
 type:
 Returns: Pointer to the new GimpColorButton widget.
-

gimp_color_button_set_color ()

void        gimp_color_button_set_color     (GimpColorButton *button,
+

gimp_color_button_set_color ()

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

@@ -121,7 +121,7 @@ color: Pointer to the new GimpRGB color. -


gimp_color_button_get_color ()

void        gimp_color_button_get_color     (GimpColorButton *button,
+

gimp_color_button_get_color ()

void        gimp_color_button_get_color     (GimpColorButton *button,
                                              GimpRGB *color);

@@ -131,26 +131,24 @@ color: Pointer to a GimpRGB struct used to return the color. -


gimp_color_button_set_update ()

void        gimp_color_button_set_update    (GimpColorButton *button,
+

gimp_color_button_set_update ()

void        gimp_color_button_set_update    (GimpColorButton *button,
                                              gboolean continuous);

-When set to TRUE, the button will emit the "color_changed" +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 ()


gimp_color_button_get_update ()

gboolean    gimp_color_button_get_update    (GimpColorButton *button);

Returns the color button's continuous_update property.

button: A GimpColorButton widget.
Returns: the continuous_update property. -

gimp_color_button_has_alpha ()


gimp_color_button_has_alpha ()

gboolean    gimp_color_button_has_alpha     (GimpColorButton *button);

Checks whether the buttons shows transparency information.

@@ -158,19 +156,19 @@

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

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

Signals

The "color-changed" signal

void        user_function                  (GimpColorButton *gimpcolorbutton,
+

Signals

The "color-changed" signal

void        user_function                  (GimpColorButton *gimpcolorbutton,
                                             gpointer user_data);

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

See Also

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

See Also

libgimpcolor-gimpcolorspace

diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorDisplay.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorDisplay.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorDisplay.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorDisplay.html 2005-05-08 23:43:11.000000000 +0200 @@ -44,29 +44,29 @@ (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);

@@ -74,13 +74,13 @@ Returns: -


gimp_color_display_clone ()

GimpColorDisplay* gimp_color_display_clone  (GimpColorDisplay *display);

+


gimp_color_display_clone ()

GimpColorDisplay* gimp_color_display_clone  (GimpColorDisplay *display);

display:
Returns: -

gimp_color_display_set_enabled ()

void        gimp_color_display_set_enabled  (GimpColorDisplay *display,
+

gimp_color_display_set_enabled ()

void        gimp_color_display_set_enabled  (GimpColorDisplay *display,
                                              gboolean enabled);

@@ -89,7 +89,7 @@ enabled: -


gimp_color_display_get_enabled ()


gimp_color_display_get_enabled ()

gboolean    gimp_color_display_get_enabled  (GimpColorDisplay *display);

@@ -97,7 +97,7 @@ 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,
@@ -122,7 +122,7 @@
 bpl:
 
 
-

gimp_color_display_load_state ()

void        gimp_color_display_load_state   (GimpColorDisplay *display,
+

gimp_color_display_load_state ()

void        gimp_color_display_load_state   (GimpColorDisplay *display,
                                              GimpParasite *state);

@@ -131,7 +131,7 @@ state: -


gimp_color_display_save_state ()


gimp_color_display_save_state ()

GimpParasite* gimp_color_display_save_state (GimpColorDisplay *display);

@@ -139,7 +139,7 @@ Returns: -


gimp_color_display_configure ()


gimp_color_display_configure ()

GtkWidget*  gimp_color_display_configure    (GimpColorDisplay *display);

@@ -147,27 +147,27 @@ Returns: -


gimp_color_display_configure_reset ()

void        gimp_color_display_configure_reset
+

gimp_color_display_configure_reset ()

void        gimp_color_display_configure_reset
                                             (GimpColorDisplay *display);

display: -

gimp_color_display_changed ()

void        gimp_color_display_changed      (GimpColorDisplay *display);

+


gimp_color_display_changed ()

void        gimp_color_display_changed      (GimpColorDisplay *display);

display: -

Properties

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. -
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.6/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html 2005-05-08 23:43:11.000000000 +0200 @@ -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,44 +70,44 @@
                                             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:
Returns: -

gimp_color_display_stack_changed ()

void        gimp_color_display_stack_changed
+

gimp_color_display_stack_changed ()

void        gimp_color_display_stack_changed
                                             (GimpColorDisplayStack *stack);

stack: -

gimp_color_display_stack_add ()

void        gimp_color_display_stack_add    (GimpColorDisplayStack *stack,
+

gimp_color_display_stack_add ()

void        gimp_color_display_stack_add    (GimpColorDisplayStack *stack,
                                              GimpColorDisplay *display);

stack:
display: -

gimp_color_display_stack_remove ()

void        gimp_color_display_stack_remove (GimpColorDisplayStack *stack,
+

gimp_color_display_stack_remove ()

void        gimp_color_display_stack_remove (GimpColorDisplayStack *stack,
                                              GimpColorDisplay *display);

stack:
display: -

gimp_color_display_stack_reorder_up ()

void        gimp_color_display_stack_reorder_up
+

gimp_color_display_stack_reorder_up ()

void        gimp_color_display_stack_reorder_up
                                             (GimpColorDisplayStack *stack,
                                              GimpColorDisplay *display);

@@ -115,7 +115,7 @@ display: -


gimp_color_display_stack_reorder_down ()

void        gimp_color_display_stack_reorder_down
+

gimp_color_display_stack_reorder_down ()

void        gimp_color_display_stack_reorder_down
                                             (GimpColorDisplayStack *stack,
                                              GimpColorDisplay *display);

@@ -123,7 +123,7 @@ display: -


gimp_color_display_stack_convert ()

void        gimp_color_display_stack_convert
+

gimp_color_display_stack_convert ()

void        gimp_color_display_stack_convert
                                             (GimpColorDisplayStack *stack,
                                              bpl:
 
 
-

Signals

The "added" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+

Signals


The "changed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+user_data:user data set when the signal handler was connected.

The "changed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
                                             gpointer user_data);

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

The "removed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+user_data:user data set when the signal handler was connected.


The "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,
                                             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);

@@ -68,7 +68,7 @@ href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB" >GimpRGB

Since GIMP 2.2 -


gimp_color_hex_entry_get_color ()

void        gimp_color_hex_entry_get_color  (GimpColorHexEntry *entry,
+


gimp_color_hex_entry_get_color ()

void        gimp_color_hex_entry_get_color  (GimpColorHexEntry *entry,
                                              GimpRGB *color);

@@ -79,7 +79,7 @@ href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB" >GimpRGB

Since GIMP 2.2 -

Signals

The "color-changed" signal

void        user_function                  (GimpColorHexEntry *gimpcolorhexentry,
+

Signals

The "color-changed" signal

void        user_function                  (GimpColorHexEntry *gimpcolorhexentry,
                                             gpointer user_data);

diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorNotebook.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorNotebook.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorNotebook.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorNotebook.html 2005-05-08 23:43:11.000000000 +0200 @@ -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,
@@ -69,16 +69,10 @@
 href="../gobject/gobject-Type-Information.html#GType"
 >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

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.6/devel-docs/libgimpwidgets/html/GimpColorScale.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorScale.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorScale.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorScale.html 2005-05-08 23:43:11.000000000 +0200 @@ -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_set_channel ()

void        gimp_color_scale_set_channel    (GimpColorScale *scale,
+

gimp_color_scale_set_channel ()

void        gimp_color_scale_set_channel    (GimpColorScale *scale,
                                              GimpColorSelectorChannel channel);

Changes the color channel displayed by the scale.

scale: a GimpColorScale widget
channel: the new color channel -

gimp_color_scale_set_color ()

void        gimp_color_scale_set_color      (GimpColorScale *scale,
+

gimp_color_scale_set_color ()

void        gimp_color_scale_set_color      (GimpColorScale *scale,
                                              const GimpRGB *rgb,
diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorScales.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorScales.html
--- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorScales.html	2005-04-10 02:12:57.000000000 +0200
+++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorScales.html	2005-05-08 23:43:11.000000000 +0200
@@ -4,7 +4,7 @@
 
             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.6/devel-docs/libgimpwidgets/html/GimpColorSelect.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorSelect.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorSelect.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorSelect.html 2005-05-08 23:43:11.000000000 +0200 @@ -4,7 +4,7 @@ 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 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.6/devel-docs/libgimpwidgets/html/GimpColorSelection.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorSelection.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorSelection.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorSelection.html 2005-05-08 23:43:11.000000000 +0200 @@ -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_get_show_alpha ()


gimp_color_selection_get_show_alpha ()

gboolean    gimp_color_selection_get_show_alpha
                                             (GimpColorSelection *selection);

Returns the selection's show_alpha property.

selection: A GimpColorSelection widget. -
Returns: TRUE if the GimpColorSelection has alpha controls. -

gimp_color_selection_set_color ()

void        gimp_color_selection_set_color  (GimpColorSelection *selection,
+Returns: TRUE if the GimpColorSelection has alpha controls.
+

gimp_color_selection_set_color ()

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

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

selection: A GimpColorSelection widget.
color: The color to set as current color. -

gimp_color_selection_get_color ()

void        gimp_color_selection_get_color  (GimpColorSelection *selection,
+

gimp_color_selection_get_color ()

void        gimp_color_selection_get_color  (GimpColorSelection *selection,
                                              GimpRGB *color);

@@ -112,7 +110,7 @@

selection: A GimpColorSelection widget.
color: Return location for the selection's current color. -

gimp_color_selection_set_old_color ()

void        gimp_color_selection_set_old_color
+

gimp_color_selection_set_old_color ()

void        gimp_color_selection_set_old_color
                                             (GimpColorSelection *selection,
                                              const 
selection: A GimpColorSelection widget.
color: The color to set as old color. -

gimp_color_selection_get_old_color ()

void        gimp_color_selection_get_old_color
+


gimp_color_selection_reset ()

void        gimp_color_selection_reset      (GimpColorSelection *selection);

+


gimp_color_selection_reset ()

void        gimp_color_selection_reset      (GimpColorSelection *selection);

Sets the GimpColorSelection's current color to its old color.

selection: A GimpColorSelection widget. -

gimp_color_selection_color_changed ()

void        gimp_color_selection_color_changed
+

gimp_color_selection_color_changed ()

void        gimp_color_selection_color_changed
                                             (GimpColorSelection *selection);

Emits the "color_changed" signal.

selection: A GimpColorSelection widget. -

Signals

The "color-changed" signal

void        user_function                  (GimpColorSelection *gimpcolorselection,
+

Signals

The "color-changed" signal

void        user_function                  (GimpColorSelection *gimpcolorselection,
                                             gpointer user_data);

diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorSelector.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorSelector.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpColorSelector.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpColorSelector.html 2005-05-08 23:43:11.000000000 +0200 @@ -3,8 +3,8 @@ GimpColorSelector; -#define GIMP_COLOR_SELECTOR_SIZE -#define GIMP_COLOR_SELECTOR_BAR_SIZE +#define GIMP_COLOR_SELECTOR_SIZE +#define GIMP_COLOR_SELECTOR_BAR_SIZE enum GimpColorSelectorChannel; 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,
@@ -125,7 +125,7 @@
 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         (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,
                                              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,
                                              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,
                                              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,
@@ -188,26 +188,26 @@
 hsv:
 
 
-

gimp_color_selector_set_channel ()

void        gimp_color_selector_set_channel (GimpColorSelector *selector,
+

gimp_color_selector_set_channel ()

void        gimp_color_selector_set_channel (GimpColorSelector *selector,
                                              GimpColorSelectorChannel channel);

selector:
channel: -

gimp_color_selector_color_changed ()

void        gimp_color_selector_color_changed
+

gimp_color_selector_color_changed ()

void        gimp_color_selector_color_changed
                                             (GimpColorSelector *selector);

selector: -

gimp_color_selector_channel_changed ()

void        gimp_color_selector_channel_changed
+

gimp_color_selector_channel_changed ()

void        gimp_color_selector_channel_changed
                                             (GimpColorSelector *selector);

selector: -

Signals

The "channel-changed" signal

void        user_function                  (GimpColorSelector *gimpcolorselector,
+

Signals

The "channel-changed" signal

void        user_function                  (GimpColorSelector *gimpcolorselector,
                                             gint arg1,
@@ -218,7 +218,7 @@
 

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,
@@ -233,7 +233,7 @@
 arg1:
 arg2:
 
-user_data:user data set when the signal handler was connected.

See Also

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

See Also

GModule diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpController.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpController.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpController.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpController.html 2005-05-08 23:43:11.000000000 +0200 @@ -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,9 +97,9 @@
 };
 

-


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

@@ -107,7 +107,7 @@ Returns: -


gimp_controller_get_n_events ()


gimp_controller_get_n_events ()

gint        gimp_controller_get_n_events    (GimpController *controller);

@@ -115,7 +115,7 @@ Returns: -


gimp_controller_get_event_name ()

const 

gimp_controller_get_event_name ()

const gchar* gimp_controller_get_event_name (GimpController *controller,
                                              Returns:
 
 
-

gimp_controller_get_event_blurb ()

const 

gimp_controller_get_event_blurb ()

const gchar* gimp_controller_get_event_blurb
                                             (GimpController *controller,
@@ -140,7 +140,7 @@
 Returns:
 
 
-

gimp_controller_event ()


gimp_controller_event ()

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

@@ -150,11 +150,11 @@ 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,
                                             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_valist ()



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

dialog: The dialog to add buttons to.
args: The buttons as va_list. -

gimp_dialog_run ()


gimp_dialog_run ()

gint        gimp_dialog_run                 (GimpDialog *dialog);

This function does exactly the same as

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

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.6/devel-docs/libgimpwidgets/html/GimpFileEntry.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpFileEntry.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpFileEntry.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpFileEntry.html 2005-05-08 23:43:11.000000000 +0200 @@ -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_get_filename ()


gimp_file_entry_get_filename ()

gchar*      gimp_file_entry_get_filename    (GimpFileEntry *entry);

Note that you have to

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

@@ -121,12 +119,12 @@

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

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.6/devel-docs/libgimpwidgets/html/GimpFrame.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpFrame.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpFrame.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpFrame.html 2005-05-08 23:43:11.000000000 +0200 @@ -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 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.6/devel-docs/libgimpwidgets/html/GimpIntComboBox.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpIntComboBox.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpIntComboBox.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpIntComboBox.html 2005-05-08 23:43:11.000000000 +0200 @@ -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 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 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    (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 @@ -155,7 +155,7 @@

combo_box: a GimpIntComboBox
...: pairs of column number and value, terminated with -1

Since GIMP 2.2 -


gimp_int_combo_box_append ()

void        gimp_int_combo_box_append       (GimpIntComboBox *combo_box,
+


gimp_int_combo_box_append ()

void        gimp_int_combo_box_append       (GimpIntComboBox *combo_box,
                                              ...);

This function provides a convenient way to append items to a GimpIntComboBox. It appends a row to the combo_box's list store @@ -168,7 +168,7 @@

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,
                                              

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,
                                              

Since GIMP 2.2 -


gimp_int_combo_box_connect ()


gimp_int_combo_box_connect ()

gulong      gimp_int_combo_box_connect      (GimpIntComboBox *combo_box,
                                              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  (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_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);

@@ -91,14 +91,14 @@

entry: a GimpMemsizeEntry
value: the new value (in Bytes) -

gimp_memsize_entry_get_value ()


gimp_memsize_entry_get_value ()

guint64     gimp_memsize_entry_get_value    (GimpMemsizeEntry *entry);

Retrieves the current value from a GimpMemsizeEntry.

entry: a GimpMemsizeEntry
Returns: the current value of entry (in Bytes). -

Signals

The "value-changed" signal

void        user_function                  (GimpMemsizeEntry *gimpmemsizeentry,
+

Signals

The "value-changed" signal

void        user_function                  (GimpMemsizeEntry *gimpmemsizeentry,
                                             gpointer user_data);

diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpOffsetArea.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpOffsetArea.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpOffsetArea.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpOffsetArea.html 2005-05-08 23:43:11.000000000 +0200 @@ -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,
+

gimp_offset_area_set_size ()

void        gimp_offset_area_set_size       (GimpOffsetArea *offset_area,
                                              gint width,
@@ -93,7 +93,7 @@
 

offset_area: a GimpOffsetArea.
width: the new width
height: the new height -

gimp_offset_area_set_offsets ()

void        gimp_offset_area_set_offsets    (GimpOffsetArea *offset_area,
+

gimp_offset_area_set_offsets ()

void        gimp_offset_area_set_offsets    (GimpOffsetArea *offset_area,
                                              gint offset_x,
@@ -106,7 +106,7 @@
 

offset_area: a GimpOffsetArea.
offset_x: the X offset
offset_y: the Y offset -

gimp_offset_area_set_pixbuf ()

void        gimp_offset_area_set_pixbuf     (GimpOffsetArea *offset_area,
+

gimp_offset_area_set_pixbuf ()

void        gimp_offset_area_set_pixbuf     (GimpOffsetArea *offset_area,
                                              GdkPixbuf *pixbuf);

@@ -118,7 +118,7 @@ href="../gdk-pixbuf/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf" >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,
diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpPathEditor.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPathEditor.html
--- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpPathEditor.html	2005-04-10 02:12:57.000000000 +0200
+++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPathEditor.html	2005-05-08 23:43:11.000000000 +0200
@@ -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_new ()

GtkWidget*  gimp_path_editor_new            (const GimpPathEditor widget.
 

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

+G_SEARCHPATH_SEPARATOR character.

filesel_title: The title of the GimpFileSelection.
path: The initial search path.
Returns: A pointer to the new GimpPathEditor widget. -

gimp_path_editor_get_path ()


gimp_path_editor_get_path ()

gchar*      gimp_path_editor_get_path       (GimpPathEditor *editor);

The elements of the returned search path string are separated with the -G_SEARCHPATH_SEPARATOR character. +G_SEARCHPATH_SEPARATOR character.

Note that you have to

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.

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


gimp_path_editor_get_writable_path ()

gchar*      gimp_path_editor_get_writable_path
                                             (GimpPathEditor *editor);

@@ -147,7 +141,7 @@ 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 path:
 
 
-

gimp_path_editor_get_dir_writable ()


gimp_path_editor_get_dir_writable ()

gboolean    gimp_path_editor_get_dir_writable
                                             (GimpPathEditor *editor,
@@ -170,7 +164,7 @@
 Returns:
 
 
-

gimp_path_editor_set_dir_writable ()

void        gimp_path_editor_set_dir_writable
+

gimp_path_editor_set_dir_writable ()

void        gimp_path_editor_set_dir_writable
                                             (GimpPathEditor *editor,
                                              const 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);

@@ -199,10 +193,8 @@ is changed, either by the user clicking on it or by calling gimp_path_editor_set_dir_writable().

-

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

See Also

+

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

See Also

GimpFileEntry

-G_SEARCHPATH_SEPARATOR +G_SEARCHPATH_SEPARATOR

diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpPickButton.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPickButton.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpPickButton.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPickButton.html 2005-05-08 23:43:11.000000000 +0200 @@ -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,
diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpPixmap.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPixmap.html
--- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpPixmap.html	2005-04-10 02:12:57.000000000 +0200
+++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPixmap.html	2005-05-08 23:43:11.000000000 +0200
@@ -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. @@ -50,9 +50,9 @@ >GdkPixmap and it's mask have to be constructed every time you call gimp_pixmap_new() and cannot be cached in memory without doing bad hacks. -

Details

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

@@ -69,7 +69,7 @@

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

+

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,
@@ -216,7 +216,7 @@
 href="../glib/glib-Basic-Types.html#guchar"
 >guchar buffer that contains the preview pixel data.
 rowstride: rowstride of buf
-

gimp_preview_area_fill ()

void        gimp_preview_area_fill          (GimpPreviewArea *area,
+

gimp_preview_area_fill ()

void        gimp_preview_area_fill          (GimpPreviewArea *area,
                                              gint x,
@@ -251,7 +251,7 @@
 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,
+

gimp_preview_area_blend ()

void        gimp_preview_area_blend         (GimpPreviewArea *area,
                                              gint x,
@@ -306,7 +306,7 @@
              the upper layer
 rowstride2: rowstride of buf2
 opacity:    The opacity of the first layer.
-

gimp_preview_area_mask ()

void        gimp_preview_area_mask          (GimpPreviewArea *area,
+

gimp_preview_area_mask ()

void        gimp_preview_area_mask          (GimpPreviewArea *area,
                                              gint x,
@@ -368,7 +368,7 @@
 >guchar buffer representing the mask of the second
                  layer.
 rowstride_mask: rowstride for the mask.
-

gimp_preview_area_set_offsets ()

void        gimp_preview_area_set_offsets   (GimpPreviewArea *area,
+

gimp_preview_area_set_offsets ()

void        gimp_preview_area_set_offsets   (GimpPreviewArea *area,
                                              gint x,
@@ -382,7 +382,7 @@
 x:    horizontal offset
 y:    vertical offset
 

Since GIMP 2.2 -


gimp_preview_area_set_colormap ()

void        gimp_preview_area_set_colormap  (GimpPreviewArea *area,
+


gimp_preview_area_set_colormap ()

void        gimp_preview_area_set_colormap  (GimpPreviewArea *area,
                                              const guchar *colormap,
@@ -400,7 +400,7 @@
 href="../glib/glib-Basic-Types.html#guchar"
 >guchar buffer that contains the colormap
 num_colors: the number of colors in the colormap
-

gimp_preview_area_set_max_size ()

void        gimp_preview_area_set_max_size  (GimpPreviewArea *area,
+

gimp_preview_area_set_max_size ()

void        gimp_preview_area_set_max_size  (GimpPreviewArea *area,
                                              gint width,
@@ -416,7 +416,7 @@
 width:  the maximum width in pixels or -1 to unset the limit
 height: the maximum height in pixels or -1 to unset the limit
 

Since GIMP 2.2 -


gimp_preview_area_menu_popup ()

void        gimp_preview_area_menu_popup    (GimpPreviewArea *area,
+


gimp_preview_area_menu_popup ()

void        gimp_preview_area_menu_popup    (GimpPreviewArea *area,
                                              GdkEventButton *event);

@@ -426,8 +426,8 @@

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.6/devel-docs/libgimpwidgets/html/GimpPreview.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPreview.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpPreview.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpPreview.html 2005-05-08 23:43:11.000000000 +0200 @@ -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);

@@ -104,7 +104,7 @@ 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);

@@ -114,7 +114,7 @@ update: TRUE if the preview should invalidate itself when being scrolled or when gimp_preview_invalidate() is being called

Since GIMP 2.2 -


gimp_preview_set_bounds ()

void        gimp_preview_set_bounds         (GimpPreview *preview,
+


gimp_preview_set_bounds ()

void        gimp_preview_set_bounds         (GimpPreview *preview,
                                              gint xmin,
@@ -137,7 +137,7 @@
 xmax:
 ymax:
 

Since GIMP 2.2 -


gimp_preview_get_size ()

void        gimp_preview_get_size           (GimpPreview *preview,
+


gimp_preview_get_size ()

void        gimp_preview_get_size           (GimpPreview *preview,
                                              gint *width,
@@ -150,7 +150,7 @@
 width:   return location for the preview area width
 height:  return location for the preview area height
 

Since GIMP 2.2 -


gimp_preview_get_position ()

void        gimp_preview_get_position       (GimpPreview *preview,
+


gimp_preview_get_position ()

void        gimp_preview_get_position       (GimpPreview *preview,
                                              gint *x,
@@ -163,7 +163,7 @@
 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. @@ -175,7 +175,7 @@

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,
@@ -190,7 +190,7 @@
 buffer:    a pixel buffer the size of the preview
 rowstride: the buffer's rowstride
 

Since GIMP 2.2 -


gimp_preview_invalidate ()

void        gimp_preview_invalidate         (GimpPreview *preview);

+


gimp_preview_invalidate ()

void        gimp_preview_invalidate         (GimpPreview *preview);

This function starts or renews a short low-priority timeout. When the timeout expires, the GimpPreview::invalidated signal is emitted which will usually cause the preview to be updated. @@ -203,7 +203,7 @@

preview: a GimpPreview widget

Since GIMP 2.2 -


gimp_preview_set_default_cursor ()

void        gimp_preview_set_default_cursor (GimpPreview *preview,
+


gimp_preview_set_default_cursor ()

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

@@ -216,11 +216,11 @@ href="../gdk/gdk-Cursors.html#GdkCursor" >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);

diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpSizeEntry.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpSizeEntry.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpSizeEntry.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpSizeEntry.html 2005-05-08 23:43:11.000000000 +0200 @@ -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,9 +199,7 @@ For each field, there can be one or two GtkSpinButton's to enter -"value" and "reference value". If you specify show_refval as FALSE +"value" and "reference value". If you specify show_refval as FALSE in gimp_size_entry_new() there will be only one GtkSpinButton and the @@ -214,11 +212,11 @@ href="../libgimpbase/libgimpbase-gimpunit.html#GimpUnit" >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,
@@ -226,7 +224,7 @@
 } GimpSizeEntryUpdatePolicy;
 

-


gimp_size_entry_new ()



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,
@@ -315,7 +313,7 @@
 

gse: The sizeentry you want to add a field to.
value_spinbutton: The spinbutton to display the field's value.
refval_spinbutton: The spinbutton to display the field's reference value. -

gimp_size_entry_attach_label ()


gimp_size_entry_attach_label ()

GtkWidget*  gimp_size_entry_attach_label    (GimpSizeEntry *gse,
                                              const 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,
@@ -358,9 +356,9 @@
 

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

This function does nothing if the GimpSizeEntryUpdatePolicy specified in @@ -371,7 +369,7 @@ resolution: The new resolution (in dpi) for the chosen field. keep_size: TRUE if the field's size in pixels should stay the same. FALSE if the field's size in units should stay the same. -


gimp_size_entry_set_size ()

void        gimp_size_entry_set_size        (GimpSizeEntry *gse,
+

gimp_size_entry_set_size ()

void        gimp_size_entry_set_size        (GimpSizeEntry *gse,
                                              gint field,
@@ -395,7 +393,7 @@
 field: The index of the field you want to set the size for.
 lower: The reference value which will be treated as 0%.
 upper: The reference value which will be treated as 100%.
-

gimp_size_entry_set_value_boundaries ()

void        gimp_size_entry_set_value_boundaries
+


gimp_size_entry_get_value ()



gimp_size_entry_set_value ()

void        gimp_size_entry_set_value       (GimpSizeEntry *gse,
+

gimp_size_entry_set_value ()

void        gimp_size_entry_set_value       (GimpSizeEntry *gse,
                                              gint field,
@@ -465,7 +463,7 @@
 

gse: The sizeentry you want to set a value for.
field: The index of the field you want to set a value for.
value: The new value for field. -

gimp_size_entry_set_refval_boundaries ()

void        gimp_size_entry_set_refval_boundaries
+


gimp_size_entry_set_refval_digits ()

void        gimp_size_entry_set_refval_digits
+

gimp_size_entry_set_refval_digits ()

void        gimp_size_entry_set_refval_digits
                                             (GimpSizeEntry *gse,
                                              GtkSpinButton which
          displays field's reference value.
-

gimp_size_entry_get_refval ()



gimp_size_entry_set_refval ()

void        gimp_size_entry_set_refval      (GimpSizeEntry *gse,
+

gimp_size_entry_set_refval ()

void        gimp_size_entry_set_refval      (GimpSizeEntry *gse,
                                              gint field,
@@ -539,7 +537,7 @@
 

gse: The sizeentry you want to set a reference value for.
field: The index of the field you want to set the reference value for.
refval: The new reference value for field. -

gimp_size_entry_get_unit ()


gimp_size_entry_get_unit ()

GimpUnit    gimp_size_entry_get_unit        (GimpSizeEntry *gse);

Returns the

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

gimp_size_entry_set_unit ()

void        gimp_size_entry_set_unit        (GimpSizeEntry *gse,
+

gimp_size_entry_set_unit ()

void        gimp_size_entry_set_unit        (GimpSizeEntry *gse,
                                              GimpUnit unit);

@@ -560,7 +558,7 @@

gse: The sizeentry you want to change the unit for.
unit: The new unit. -

gimp_size_entry_set_pixel_digits ()

void        gimp_size_entry_set_pixel_digits
+


gimp_size_entry_grab_focus ()

void        gimp_size_entry_grab_focus      (GimpSizeEntry *gse);

+


gimp_size_entry_grab_focus ()

void        gimp_size_entry_grab_focus      (GimpSizeEntry *gse);

This function is rather ugly and just a workaround for the fact that it's impossible to implement GtkTable.

gse: The sizeentry you want to grab the keyboard focus. -

gimp_size_entry_get_help_widget ()


gimp_size_entry_get_help_widget ()

GtkWidget*  gimp_size_entry_get_help_widget (GimpSizeEntry *gse,
                                              Returns: a GtkWidget pointer that you can attach a tooltip to.
-

Signals

The "refval-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
+

Signals

The "refval-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
                                             gpointer user_data);

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

The "unit-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
+user_data:user data set when the signal handler was connected.

The "unit-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
                                             gpointer user_data);

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

The "value-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
+user_data:user data set when the signal handler was connected.

The "value-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
                                             gpointer user_data);

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

See Also

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

See Also

GimpUnit diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpUnitMenu.html gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpUnitMenu.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/GimpUnitMenu.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/GimpUnitMenu.html 2005-05-08 23:43:11.000000000 +0200 @@ -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

+

Details

GimpUnitMenu

typedef struct _GimpUnitMenu GimpUnitMenu;

+

Details

GimpUnitMenu

typedef struct _GimpUnitMenu GimpUnitMenu;

-


gimp_unit_menu_new ()



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

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

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

gimp_unit_menu_get_unit ()


gimp_unit_menu_get_unit ()

GimpUnit    gimp_unit_menu_get_unit         (GimpUnitMenu *menu);

Returns the

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

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

@@ -164,7 +164,7 @@

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

Signals

The "unit-changed" signal

void        user_function                  (GimpUnitMenu *arg0,
+

Signals

The "unit-changed" signal

void        user_function                  (GimpUnitMenu *arg0,
                                             gpointer user_data);

@@ -173,7 +173,7 @@ >GimpUnit from the GimpUnitMenu.

-

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

See Also

+

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

See Also

GimpUnit diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/index.sgml gimp-2.2.7/devel-docs/libgimpwidgets/html/index.sgml --- gimp-2.2.6/devel-docs/libgimpwidgets/html/index.sgml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/index.sgml 2005-05-08 23:43:11.000000000 +0200 @@ -200,8 +200,8 @@ - - + + @@ -239,7 +239,7 @@ - + @@ -257,7 +257,7 @@ - + @@ -284,184 +284,184 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -469,21 +469,21 @@ - - - - - + + + + + - - - + + + - + diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/libgimpwidgets.devhelp gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets.devhelp --- gimp-2.2.6/devel-docs/libgimpwidgets/html/libgimpwidgets.devhelp 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets.devhelp 2005-05-08 23:43:11.000000000 +0200 @@ -230,8 +230,8 @@ - - + + @@ -264,7 +264,7 @@ - + @@ -281,7 +281,7 @@ - + @@ -306,205 +306,205 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - + + + - + diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html 2005-05-08 23:43:11.000000000 +0200 @@ -11,7 +11,7 @@ gpointer help_data); -#define GIMP_HELP_ID +#define GIMP_HELP_ID void gimp_help_enable_tooltips (void); void gimp_help_disable_tooltips (void); void gimp_standard_help_func (const GtkWidget *widget); -

Description

+

Description

-

Details

GimpHelpFunc ()

void        (*GimpHelpFunc)                 (const 

Details

GimpHelpFunc ()

void        (*GimpHelpFunc)                 (const gchar *help_id,
                                              help_data:
 
 
-

GIMP_HELP_ID

#define GIMP_HELP_ID (gimp_help_id_quark ())
+

GIMP_HELP_ID

#define GIMP_HELP_ID (gimp_help_id_quark ())
 

Since: GIMP 2.2 -


gimp_help_enable_tooltips ()

void        gimp_help_enable_tooltips       (void);

+


gimp_help_enable_tooltips ()

void        gimp_help_enable_tooltips       (void);

This function calls gtk_tooltips_enable().

-


gimp_help_disable_tooltips ()

void        gimp_help_disable_tooltips      (void);

+


gimp_help_disable_tooltips ()

void        gimp_help_disable_tooltips      (void);

This function calls gtk_tooltips_disable().

-


gimp_standard_help_func ()

void        gimp_standard_help_func         (const 


gimp_help_connect ()

void        gimp_help_connect               (

gimp_help_connect ()

void        gimp_help_connect               (GtkWidget *widget,
                                              GimpHelpFunc help_func,
@@ -120,7 +120,7 @@
 help_func: The function which will be called if the user presses "F1".
 help_id:   The help_id which will be passed to help_func.
 help_data: The help_data pointer which will be passed to help_func.
-

gimp_help_set_help_data ()

void        gimp_help_set_help_data         (

gimp_help_set_help_data ()

void        gimp_help_set_help_data         (GtkWidget *widget,
                                              const 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.

@@ -148,7 +146,7 @@ help_id: The help_id for the GtkTipsQuery tooltips inspector. -


gimp_context_help ()

void        gimp_context_help               (

gimp_context_help ()

void        gimp_context_help               (GtkWidget *widget);

This function invokes the context help inspector. diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html 2005-05-08 23:43:11.000000000 +0200 @@ -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        (GtkOptionMenu or a GtkMenu (depending on menu_only).
-

gimp_int_option_menu_set_history ()

void        gimp_int_option_menu_set_history
+

gimp_int_option_menu_set_history ()

void        gimp_int_option_menu_set_history
                                             (GtkOptionMenu *option_menu,
@@ -154,7 +154,7 @@
 href="../gtk/GtkOptionMenu.html"
 >GtkOptionMenu as returned by gimp_int_option_menu_new().
 item_data:   The item_data of the menu item you want to select.
-

GimpIntOptionMenuSensitivityCallback ()


GimpIntOptionMenuSensitivityCallback ()

gboolean    (*GimpIntOptionMenuSensitivityCallback)
                                             (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,
@@ -190,7 +190,7 @@
 callback: a function called for each item in the menu to determine the
            the sensitivity state.
 callback_data: data to pass to the callback function.
-

gimp_option_menu_new ()


gimp_option_menu_new ()

GtkWidget*  gimp_option_menu_new            (GtkOptionMenu or a GtkMenu (depending on menu_only).
-

gimp_option_menu_new2 ()


gimp_option_menu_new2 ()

GtkWidget*  gimp_option_menu_new2           (GtkOptionMenu or a GtkMenu (depending on menu_only).
-

gimp_option_menu_set_history ()

void        gimp_option_menu_set_history    (

gimp_option_menu_set_history ()

void        gimp_option_menu_set_history    (GtkOptionMenu *option_menu,
                                              GtkOptionMenu as returned by gimp_option_menu_new() or
               gimp_option_menu_new2().
 item_data:   The item_data of the menu item you want to select.
-

GimpOptionMenuSensitivityCallback ()


GimpOptionMenuSensitivityCallback ()

gboolean    (*GimpOptionMenuSensitivityCallback)
                                             (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,
@@ -301,7 +301,7 @@
 callback: a function called for each item in the menu to determine the
            the sensitivity state.
 callback_data: data to pass to the callback function.
-

gimp_menu_item_update ()

void        gimp_menu_item_update           (

gimp_menu_item_update ()

void        gimp_menu_item_update           (GtkWidget *widget,
                                              gint variable which will store the value of
          GPOINTER_TO_INT (g_object_get_data (widget, "gimp-item-data")).
-

See Also

+

See Also

GimpIntComboBox

diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html 2005-05-08 23:43:11.000000000 +0200 @@ -229,8 +229,8 @@ gpointer data); -#define GIMP_QUERY_BOX_VBOX (qbox) -

Description

+#define GIMP_QUERY_BOX_VBOX (qbox) +

Description

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

@@ -245,7 +245,7 @@ and "OK" and "Cancel" buttons. On "Cancel", all query boxes except the boolean one silently destroy themselves. On "OK" the user defined callback function is called and returns the entered value. -

Details

GimpQueryStringCallback ()

void        (*GimpQueryStringCallback)      (

Details

GimpQueryStringCallback ()

void        (*GimpQueryStringCallback)      (GtkWidget *query_box,
                                              const data:The user data.
 
 
-

GimpQueryIntCallback ()

void        (*GimpQueryIntCallback)         (

GimpQueryIntCallback ()

void        (*GimpQueryIntCallback)         (GtkWidget *query_box,
                                              data:The user data.
 
 
-

GimpQueryDoubleCallback ()

void        (*GimpQueryDoubleCallback)      (

GimpQueryDoubleCallback ()

void        (*GimpQueryDoubleCallback)      (GtkWidget *query_box,
                                              data:The user data.
 
 
-

GimpQuerySizeCallback ()

void        (*GimpQuerySizeCallback)        (

GimpQuerySizeCallback ()

void        (*GimpQuerySizeCallback)        (GtkWidget *query_box,
                                              data:The user data.
 
 
-

GimpQueryBooleanCallback ()

void        (*GimpQueryBooleanCallback)     (

GimpQueryBooleanCallback ()

void        (*GimpQueryBooleanCallback)     (GtkWidget *query_box,
                                              data:The user data.
 
 
-

gimp_query_string_box ()


gimp_query_string_box ()

GtkWidget*  gimp_query_string_box           (const Returns: A pointer to the new GtkDialog.
-

gimp_query_int_box ()


gimp_query_int_box ()

GtkWidget*  gimp_query_int_box              (const Returns: A pointer to the new GtkDialog.
-

gimp_query_double_box ()


gimp_query_double_box ()

GtkWidget*  gimp_query_double_box           (const Returns: A pointer to the new GtkDialog.
-

gimp_query_size_box ()


gimp_query_size_box ()

GtkWidget*  gimp_query_size_box             (const Returns: A pointer to the new GtkDialog.
-

gimp_query_boolean_box ()


gimp_query_boolean_box ()

GtkWidget*  gimp_query_boolean_box          (const 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 @@ -620,7 +620,7 @@

qbox: -

See Also

+

See Also

GimpSizeEntry

GimpUnitMenu diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html 2005-05-08 23:43:11.000000000 +0200 @@ -4,9 +4,9 @@ GimpScrolledPreview; -

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

Description

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

Description

GIMP registers a set of menu/toolbar items and corresponding icons in addition to the standard GTK+ stock items. These can be used just like GTK+ stock items. GIMP also overrides a few of the GTK+ icons (namely @@ -190,7 +190,7 @@

Stock icons may have a RTL variant which gets used for right-to-left locales. -

Details

gimp_stock_init ()

void        gimp_stock_init                 (void);

+

Details

gimp_stock_init ()

void        gimp_stock_init                 (void);

Initializes the GIMP stock icon factory.

You don't need to call this function as gimp_ui_init() already does this for you.

-


GIMP_STOCK_ANCHOR

#define GIMP_STOCK_ANCHOR                   "gimp-anchor"
+


GIMP_STOCK_ANCHOR

#define GIMP_STOCK_ANCHOR                   "gimp-anchor"
 

-


GIMP_STOCK_CENTER

#define GIMP_STOCK_CENTER                   "gimp-center"
+


GIMP_STOCK_CENTER

#define GIMP_STOCK_CENTER                   "gimp-center"
 

-


GIMP_STOCK_DUPLICATE

#define GIMP_STOCK_DUPLICATE                "gimp-duplicate"
+


GIMP_STOCK_DUPLICATE

#define GIMP_STOCK_DUPLICATE                "gimp-duplicate"
 

-


GIMP_STOCK_EDIT

#define GIMP_STOCK_EDIT                     "gimp-edit"
+


GIMP_STOCK_EDIT

#define GIMP_STOCK_EDIT                     "gimp-edit"
 

-


GIMP_STOCK_RESET

#define GIMP_STOCK_RESET                    "gimp-reset"
+


GIMP_STOCK_RESET

#define GIMP_STOCK_RESET                    "gimp-reset"
 

-


GIMP_STOCK_CLOSE

#define GIMP_STOCK_CLOSE                    "gimp-close"
+


GIMP_STOCK_CLOSE

#define GIMP_STOCK_CLOSE                    "gimp-close"
 

-


GIMP_STOCK_MENU_LEFT

#define GIMP_STOCK_MENU_LEFT                "gimp-menu-left"
+


GIMP_STOCK_MENU_LEFT

#define GIMP_STOCK_MENU_LEFT                "gimp-menu-left"
 

RTL variant -


GIMP_STOCK_MENU_RIGHT

#define GIMP_STOCK_MENU_RIGHT               "gimp-menu-right"
+


GIMP_STOCK_MENU_RIGHT

#define GIMP_STOCK_MENU_RIGHT               "gimp-menu-right"
 

RTL variant -


GIMP_STOCK_MOVE_TO_SCREEN

#define GIMP_STOCK_MOVE_TO_SCREEN           "gimp_move-to-screen"
+


GIMP_STOCK_MOVE_TO_SCREEN

#define GIMP_STOCK_MOVE_TO_SCREEN           "gimp_move-to-screen"
 

-


GIMP_STOCK_INVERT

#define GIMP_STOCK_INVERT                   "gimp-invert"
+


GIMP_STOCK_INVERT

#define GIMP_STOCK_INVERT                   "gimp-invert"
 

-


GIMP_STOCK_LAYER_TO_IMAGESIZE

#define GIMP_STOCK_LAYER_TO_IMAGESIZE       "gimp-layer-to-imagesize"
+


GIMP_STOCK_LAYER_TO_IMAGESIZE

#define GIMP_STOCK_LAYER_TO_IMAGESIZE       "gimp-layer-to-imagesize"
 

-


GIMP_STOCK_MERGE_DOWN

#define GIMP_STOCK_MERGE_DOWN               "gimp-merge-down"
+


GIMP_STOCK_MERGE_DOWN

#define GIMP_STOCK_MERGE_DOWN               "gimp-merge-down"
 

-


GIMP_STOCK_NAVIGATION

#define GIMP_STOCK_NAVIGATION               "gimp-navigation"
+


GIMP_STOCK_NAVIGATION

#define GIMP_STOCK_NAVIGATION               "gimp-navigation"
 

-


GIMP_STOCK_PASTE_AS_NEW

#define GIMP_STOCK_PASTE_AS_NEW             "gimp-paste-as-new"
+


GIMP_STOCK_PASTE_AS_NEW

#define GIMP_STOCK_PASTE_AS_NEW             "gimp-paste-as-new"
 

-


GIMP_STOCK_PASTE_INTO

#define GIMP_STOCK_PASTE_INTO               "gimp-paste-into"
+


GIMP_STOCK_PASTE_INTO

#define GIMP_STOCK_PASTE_INTO               "gimp-paste-into"
 

-


GIMP_STOCK_PATH_STROKE

#define GIMP_STOCK_PATH_STROKE              "gimp-path-stroke"
+


GIMP_STOCK_PATH_STROKE

#define GIMP_STOCK_PATH_STROKE              "gimp-path-stroke"
 

-


GIMP_STOCK_PLUGIN

#define GIMP_STOCK_PLUGIN                   "gimp-plugin"
+


GIMP_STOCK_PLUGIN

#define GIMP_STOCK_PLUGIN                   "gimp-plugin"
 

-


GIMP_STOCK_QMASK_OFF

#define GIMP_STOCK_QMASK_OFF                "gimp-qmask-off"
+


GIMP_STOCK_QMASK_OFF

#define GIMP_STOCK_QMASK_OFF                "gimp-qmask-off"
 

-


GIMP_STOCK_QMASK_ON

#define GIMP_STOCK_QMASK_ON                 "gimp-qmask-on"
+


GIMP_STOCK_QMASK_ON

#define GIMP_STOCK_QMASK_ON                 "gimp-qmask-on"
 

-


GIMP_STOCK_HISTOGRAM

#define GIMP_STOCK_HISTOGRAM                "gimp-histogram"
+


GIMP_STOCK_HISTOGRAM

#define GIMP_STOCK_HISTOGRAM                "gimp-histogram"
 

-


GIMP_STOCK_HISTOGRAM_LINEAR

#define GIMP_STOCK_HISTOGRAM_LINEAR         "gimp-histogram-linear"
+


GIMP_STOCK_HISTOGRAM_LINEAR

#define GIMP_STOCK_HISTOGRAM_LINEAR         "gimp-histogram-linear"
 

-


GIMP_STOCK_HISTOGRAM_LOGARITHMIC

#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC    "gimp-histogram-logarithmic"
+


GIMP_STOCK_HISTOGRAM_LOGARITHMIC

#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC    "gimp-histogram-logarithmic"
 

-


GIMP_STOCK_RESHOW_FILTER

#define GIMP_STOCK_RESHOW_FILTER            "gimp-reshow-filter"
+


GIMP_STOCK_RESHOW_FILTER

#define GIMP_STOCK_RESHOW_FILTER            "gimp-reshow-filter"
 

-


GIMP_STOCK_RESIZE

#define GIMP_STOCK_RESIZE                   "gimp-resize"
+


GIMP_STOCK_RESIZE

#define GIMP_STOCK_RESIZE                   "gimp-resize"
 

-


GIMP_STOCK_FLIP_HORIZONTAL

#define GIMP_STOCK_FLIP_HORIZONTAL          "gimp-flip-horizontal"
+


GIMP_STOCK_FLIP_HORIZONTAL

#define GIMP_STOCK_FLIP_HORIZONTAL          "gimp-flip-horizontal"
 

-


GIMP_STOCK_FLIP_VERTICAL

#define GIMP_STOCK_FLIP_VERTICAL            "gimp-flip-vertical"
+


GIMP_STOCK_FLIP_VERTICAL

#define GIMP_STOCK_FLIP_VERTICAL            "gimp-flip-vertical"
 

-


GIMP_STOCK_ROTATE_180

#define GIMP_STOCK_ROTATE_180               "gimp-rotate-180"
+


GIMP_STOCK_ROTATE_180

#define GIMP_STOCK_ROTATE_180               "gimp-rotate-180"
 

-


GIMP_STOCK_ROTATE_270

#define GIMP_STOCK_ROTATE_270               "gimp-rotate-270"
+


GIMP_STOCK_ROTATE_270

#define GIMP_STOCK_ROTATE_270               "gimp-rotate-270"
 

-


GIMP_STOCK_ROTATE_90

#define GIMP_STOCK_ROTATE_90                "gimp-rotate-90"
+


GIMP_STOCK_ROTATE_90

#define GIMP_STOCK_ROTATE_90                "gimp-rotate-90"
 

-


GIMP_STOCK_SCALE

#define GIMP_STOCK_SCALE                    "gimp-scale"
+


GIMP_STOCK_SCALE

#define GIMP_STOCK_SCALE                    "gimp-scale"
 

-


GIMP_STOCK_LINKED

#define GIMP_STOCK_LINKED                   "gimp-linked"
+


GIMP_STOCK_LINKED

#define GIMP_STOCK_LINKED                   "gimp-linked"
 

-


GIMP_STOCK_VISIBLE

#define GIMP_STOCK_VISIBLE                  "gimp-visible"
+


GIMP_STOCK_VISIBLE

#define GIMP_STOCK_VISIBLE                  "gimp-visible"
 

-


GIMP_STOCK_LIST

#define GIMP_STOCK_LIST                     "gimp-list"
+


GIMP_STOCK_LIST

#define GIMP_STOCK_LIST                     "gimp-list"
 

-


GIMP_STOCK_GRID

#define GIMP_STOCK_GRID                     "gimp-grid"
+


GIMP_STOCK_GRID

#define GIMP_STOCK_GRID                     "gimp-grid"
 

-


GIMP_STOCK_PORTRAIT

#define GIMP_STOCK_PORTRAIT                 "gimp-portrait"
+


GIMP_STOCK_PORTRAIT

#define GIMP_STOCK_PORTRAIT                 "gimp-portrait"
 

-


GIMP_STOCK_LANDSCAPE

#define GIMP_STOCK_LANDSCAPE                "gimp-landscape"
+


GIMP_STOCK_LANDSCAPE

#define GIMP_STOCK_LANDSCAPE                "gimp-landscape"
 

-


GIMP_STOCK_VIDEO

#define GIMP_STOCK_VIDEO                    "gimp-video"
+


GIMP_STOCK_VIDEO

#define GIMP_STOCK_VIDEO                    "gimp-video"
 

-


GIMP_STOCK_WEB

#define GIMP_STOCK_WEB                      "gimp-web"
+


GIMP_STOCK_WEB

#define GIMP_STOCK_WEB                      "gimp-web"
 

-


GIMP_STOCK_IMAGE

#define GIMP_STOCK_IMAGE                    "gimp-image"
+


GIMP_STOCK_IMAGE

#define GIMP_STOCK_IMAGE                    "gimp-image"
 

-


GIMP_STOCK_LAYER

#define GIMP_STOCK_LAYER                    "gimp-layer"
+


GIMP_STOCK_LAYER

#define GIMP_STOCK_LAYER                    "gimp-layer"
 

-


GIMP_STOCK_LAYER_MASK

#define GIMP_STOCK_LAYER_MASK               "gimp-layer-mask"
+


GIMP_STOCK_LAYER_MASK

#define GIMP_STOCK_LAYER_MASK               "gimp-layer-mask"
 

-


GIMP_STOCK_CHANNEL

#define GIMP_STOCK_CHANNEL                  "gimp-channel"
+


GIMP_STOCK_CHANNEL

#define GIMP_STOCK_CHANNEL                  "gimp-channel"
 

-


GIMP_STOCK_CHANNEL_RED

#define GIMP_STOCK_CHANNEL_RED              "gimp-channel-red"
+


GIMP_STOCK_CHANNEL_RED

#define GIMP_STOCK_CHANNEL_RED              "gimp-channel-red"
 

-


GIMP_STOCK_CHANNEL_GREEN

#define GIMP_STOCK_CHANNEL_GREEN            "gimp-channel-green"
+


GIMP_STOCK_CHANNEL_GREEN

#define GIMP_STOCK_CHANNEL_GREEN            "gimp-channel-green"
 

-


GIMP_STOCK_CHANNEL_BLUE

#define GIMP_STOCK_CHANNEL_BLUE             "gimp-channel-blue"
+


GIMP_STOCK_CHANNEL_BLUE

#define GIMP_STOCK_CHANNEL_BLUE             "gimp-channel-blue"
 

-


GIMP_STOCK_CHANNEL_GRAY

#define GIMP_STOCK_CHANNEL_GRAY             "gimp-channel-gray"
+


GIMP_STOCK_CHANNEL_GRAY

#define GIMP_STOCK_CHANNEL_GRAY             "gimp-channel-gray"
 

-


GIMP_STOCK_CHANNEL_INDEXED

#define GIMP_STOCK_CHANNEL_INDEXED          "gimp-channel-indexed"
+


GIMP_STOCK_CHANNEL_INDEXED

#define GIMP_STOCK_CHANNEL_INDEXED          "gimp-channel-indexed"
 

-


GIMP_STOCK_CHANNEL_ALPHA

#define GIMP_STOCK_CHANNEL_ALPHA            "gimp-channel-alpha"
+


GIMP_STOCK_CHANNEL_ALPHA

#define GIMP_STOCK_CHANNEL_ALPHA            "gimp-channel-alpha"
 

-


GIMP_STOCK_PATH

#define GIMP_STOCK_PATH                     "gimp-path"
+


GIMP_STOCK_PATH

#define GIMP_STOCK_PATH                     "gimp-path"
 

-


GIMP_STOCK_TEXT_LAYER

#define GIMP_STOCK_TEXT_LAYER               "gimp-text-layer"
+


GIMP_STOCK_TEXT_LAYER

#define GIMP_STOCK_TEXT_LAYER               "gimp-text-layer"
 

-


GIMP_STOCK_FLOATING_SELECTION

#define GIMP_STOCK_FLOATING_SELECTION       "gimp-floating-selection"
+


GIMP_STOCK_FLOATING_SELECTION

#define GIMP_STOCK_FLOATING_SELECTION       "gimp-floating-selection"
 

-


GIMP_STOCK_TEMPLATE

#define GIMP_STOCK_TEMPLATE                 "gimp-template"
+


GIMP_STOCK_TEMPLATE

#define GIMP_STOCK_TEMPLATE                 "gimp-template"
 

-


GIMP_STOCK_IMAGES

#define GIMP_STOCK_IMAGES                   "gimp-images"
+


GIMP_STOCK_IMAGES

#define GIMP_STOCK_IMAGES                   "gimp-images"
 

-


GIMP_STOCK_LAYERS

#define GIMP_STOCK_LAYERS                   "gimp-layers"
+


GIMP_STOCK_LAYERS

#define GIMP_STOCK_LAYERS                   "gimp-layers"
 

-


GIMP_STOCK_CHANNELS

#define GIMP_STOCK_CHANNELS                 "gimp-channels"
+


GIMP_STOCK_CHANNELS

#define GIMP_STOCK_CHANNELS                 "gimp-channels"
 

-


GIMP_STOCK_PATHS

#define GIMP_STOCK_PATHS                    "gimp-paths"
+


GIMP_STOCK_PATHS

#define GIMP_STOCK_PATHS                    "gimp-paths"
 

-


GIMP_STOCK_INDEXED_PALETTE

#define GIMP_STOCK_INDEXED_PALETTE          "gimp-indexed-palette"
+


GIMP_STOCK_INDEXED_PALETTE

#define GIMP_STOCK_INDEXED_PALETTE          "gimp-indexed-palette"
 

-


GIMP_STOCK_SHAPE_CIRCLE

#define GIMP_STOCK_SHAPE_CIRCLE             "gimp-shape-circle"
+


GIMP_STOCK_SHAPE_CIRCLE

#define GIMP_STOCK_SHAPE_CIRCLE             "gimp-shape-circle"
 

-


GIMP_STOCK_SHAPE_SQUARE

#define GIMP_STOCK_SHAPE_SQUARE             "gimp-shape-square"
+


GIMP_STOCK_SHAPE_SQUARE

#define GIMP_STOCK_SHAPE_SQUARE             "gimp-shape-square"
 

-


GIMP_STOCK_SHAPE_DIAMOND

#define GIMP_STOCK_SHAPE_DIAMOND            "gimp-shape-diamond"
+


GIMP_STOCK_SHAPE_DIAMOND

#define GIMP_STOCK_SHAPE_DIAMOND            "gimp-shape-diamond"
 

-


GIMP_STOCK_CAP_BUTT

#define GIMP_STOCK_CAP_BUTT                 "gimp-cap-butt"
+


GIMP_STOCK_CAP_BUTT

#define GIMP_STOCK_CAP_BUTT                 "gimp-cap-butt"
 

-


GIMP_STOCK_CAP_ROUND

#define GIMP_STOCK_CAP_ROUND                "gimp-cap-round"
+


GIMP_STOCK_CAP_ROUND

#define GIMP_STOCK_CAP_ROUND                "gimp-cap-round"
 

-


GIMP_STOCK_CAP_SQUARE

#define GIMP_STOCK_CAP_SQUARE               "gimp-cap-square"
+


GIMP_STOCK_CAP_SQUARE

#define GIMP_STOCK_CAP_SQUARE               "gimp-cap-square"
 

-


GIMP_STOCK_JOIN_MITER

#define GIMP_STOCK_JOIN_MITER               "gimp-join-miter"
+


GIMP_STOCK_JOIN_MITER

#define GIMP_STOCK_JOIN_MITER               "gimp-join-miter"
 

-


GIMP_STOCK_JOIN_ROUND

#define GIMP_STOCK_JOIN_ROUND               "gimp-join-round"
+


GIMP_STOCK_JOIN_ROUND

#define GIMP_STOCK_JOIN_ROUND               "gimp-join-round"
 

-


GIMP_STOCK_JOIN_BEVEL

#define GIMP_STOCK_JOIN_BEVEL               "gimp-join-bevel"
+


GIMP_STOCK_JOIN_BEVEL

#define GIMP_STOCK_JOIN_BEVEL               "gimp-join-bevel"
 

-


GIMP_STOCK_SELECTION

#define GIMP_STOCK_SELECTION                "gimp-selection"
+


GIMP_STOCK_SELECTION

#define GIMP_STOCK_SELECTION                "gimp-selection"
 

-


GIMP_STOCK_SELECTION_ALL

#define GIMP_STOCK_SELECTION_ALL            "gimp-selection-all"
+


GIMP_STOCK_SELECTION_ALL

#define GIMP_STOCK_SELECTION_ALL            "gimp-selection-all"
 

-


GIMP_STOCK_SELECTION_NONE

#define GIMP_STOCK_SELECTION_NONE           "gimp-selection-none"
+


GIMP_STOCK_SELECTION_NONE

#define GIMP_STOCK_SELECTION_NONE           "gimp-selection-none"
 

-


GIMP_STOCK_SELECTION_GROW

#define GIMP_STOCK_SELECTION_GROW           "gimp-selection-grow"
+


GIMP_STOCK_SELECTION_GROW

#define GIMP_STOCK_SELECTION_GROW           "gimp-selection-grow"
 

-


GIMP_STOCK_SELECTION_SHRINK

#define GIMP_STOCK_SELECTION_SHRINK         "gimp-selection-shrink"
+


GIMP_STOCK_SELECTION_SHRINK

#define GIMP_STOCK_SELECTION_SHRINK         "gimp-selection-shrink"
 

-


GIMP_STOCK_SELECTION_BORDER

#define GIMP_STOCK_SELECTION_BORDER         "gimp-selection-border"
+


GIMP_STOCK_SELECTION_BORDER

#define GIMP_STOCK_SELECTION_BORDER         "gimp-selection-border"
 

-


GIMP_STOCK_SELECTION_ADD

#define GIMP_STOCK_SELECTION_ADD            "gimp-selection-add"
+


GIMP_STOCK_SELECTION_ADD

#define GIMP_STOCK_SELECTION_ADD            "gimp-selection-add"
 

-


GIMP_STOCK_SELECTION_SUBTRACT

#define GIMP_STOCK_SELECTION_SUBTRACT       "gimp-selection-subtract"
+


GIMP_STOCK_SELECTION_SUBTRACT

#define GIMP_STOCK_SELECTION_SUBTRACT       "gimp-selection-subtract"
 

-


GIMP_STOCK_SELECTION_REPLACE

#define GIMP_STOCK_SELECTION_REPLACE        "gimp-selection-replace"
+


GIMP_STOCK_SELECTION_REPLACE

#define GIMP_STOCK_SELECTION_REPLACE        "gimp-selection-replace"
 

-


GIMP_STOCK_SELECTION_INTERSECT

#define GIMP_STOCK_SELECTION_INTERSECT      "gimp-selection-intersect"
+


GIMP_STOCK_SELECTION_INTERSECT

#define GIMP_STOCK_SELECTION_INTERSECT      "gimp-selection-intersect"
 

-


GIMP_STOCK_SELECTION_STROKE

#define GIMP_STOCK_SELECTION_STROKE         "gimp-selection-stroke"
+


GIMP_STOCK_SELECTION_STROKE

#define GIMP_STOCK_SELECTION_STROKE         "gimp-selection-stroke"
 

-


GIMP_STOCK_SELECTION_TO_CHANNEL

#define GIMP_STOCK_SELECTION_TO_CHANNEL     "gimp-selection-to-channel"
+


GIMP_STOCK_SELECTION_TO_CHANNEL

#define GIMP_STOCK_SELECTION_TO_CHANNEL     "gimp-selection-to-channel"
 

-


GIMP_STOCK_SELECTION_TO_PATH

#define GIMP_STOCK_SELECTION_TO_PATH        "gimp-selection-to-path"
+


GIMP_STOCK_SELECTION_TO_PATH

#define GIMP_STOCK_SELECTION_TO_PATH        "gimp-selection-to-path"
 

-


GIMP_STOCK_GRADIENT_LINEAR

#define GIMP_STOCK_GRADIENT_LINEAR               "gimp-gradient-linear"
+


GIMP_STOCK_GRADIENT_LINEAR

#define GIMP_STOCK_GRADIENT_LINEAR               "gimp-gradient-linear"
 

-


GIMP_STOCK_GRADIENT_BILINEAR

#define GIMP_STOCK_GRADIENT_BILINEAR             "gimp-gradient-bilinear"
+


GIMP_STOCK_GRADIENT_BILINEAR

#define GIMP_STOCK_GRADIENT_BILINEAR             "gimp-gradient-bilinear"
 

-


GIMP_STOCK_GRADIENT_RADIAL

#define GIMP_STOCK_GRADIENT_RADIAL               "gimp-gradient-radial"
+


GIMP_STOCK_GRADIENT_RADIAL

#define GIMP_STOCK_GRADIENT_RADIAL               "gimp-gradient-radial"
 

-


GIMP_STOCK_GRADIENT_SQUARE

#define GIMP_STOCK_GRADIENT_SQUARE               "gimp-gradient-square"
+


GIMP_STOCK_GRADIENT_SQUARE

#define GIMP_STOCK_GRADIENT_SQUARE               "gimp-gradient-square"
 

-


GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC

#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC    "gimp-gradient-conical-symmetric"
+


GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC

#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC    "gimp-gradient-conical-symmetric"
 

-


GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC

#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC   "gimp-gradient-conical-asymmetric"
+


GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC

#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC   "gimp-gradient-conical-asymmetric"
 

-


GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL

#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL "gimp-gradient-shapeburst-spherical"
+


GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL

#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL "gimp-gradient-shapeburst-spherical"
 

-


GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR

#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR   "gimp-gradient-shapeburst-angular"
+


GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR

#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR   "gimp-gradient-shapeburst-angular"
 

-


GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED

#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED   "gimp-gradient-shapeburst-dimpled"
+


GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED

#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED   "gimp-gradient-shapeburst-dimpled"
 

-


GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE

#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE     "gimp-gradient-spiral-clockwise"
+


GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE

#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE     "gimp-gradient-spiral-clockwise"
 

-


GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE

#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE "gimp-gradient-spiral-anticlockwise"
+


GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE

#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE "gimp-gradient-spiral-anticlockwise"
 

-


GIMP_STOCK_GRAVITY_NORTH_WEST

#define GIMP_STOCK_GRAVITY_NORTH_WEST       "gimp-gravity-north-west"
+


GIMP_STOCK_GRAVITY_NORTH_WEST

#define GIMP_STOCK_GRAVITY_NORTH_WEST       "gimp-gravity-north-west"
 

-


GIMP_STOCK_GRAVITY_NORTH

#define GIMP_STOCK_GRAVITY_NORTH            "gimp-gravity-north"
+


GIMP_STOCK_GRAVITY_NORTH

#define GIMP_STOCK_GRAVITY_NORTH            "gimp-gravity-north"
 

-


GIMP_STOCK_GRAVITY_NORTH_EAST

#define GIMP_STOCK_GRAVITY_NORTH_EAST       "gimp-gravity-north-east"
+


GIMP_STOCK_GRAVITY_NORTH_EAST

#define GIMP_STOCK_GRAVITY_NORTH_EAST       "gimp-gravity-north-east"
 

-


GIMP_STOCK_GRAVITY_WEST

#define GIMP_STOCK_GRAVITY_WEST             "gimp-gravity-west"
+


GIMP_STOCK_GRAVITY_WEST

#define GIMP_STOCK_GRAVITY_WEST             "gimp-gravity-west"
 

-


GIMP_STOCK_GRAVITY_EAST

#define GIMP_STOCK_GRAVITY_EAST             "gimp-gravity-east"
+


GIMP_STOCK_GRAVITY_EAST

#define GIMP_STOCK_GRAVITY_EAST             "gimp-gravity-east"
 

-


GIMP_STOCK_GRAVITY_SOUTH_WEST

#define GIMP_STOCK_GRAVITY_SOUTH_WEST       "gimp-gravity-south-west"
+


GIMP_STOCK_GRAVITY_SOUTH_WEST

#define GIMP_STOCK_GRAVITY_SOUTH_WEST       "gimp-gravity-south-west"
 

-


GIMP_STOCK_GRAVITY_SOUTH

#define GIMP_STOCK_GRAVITY_SOUTH            "gimp-gravity-south"
+


GIMP_STOCK_GRAVITY_SOUTH

#define GIMP_STOCK_GRAVITY_SOUTH            "gimp-gravity-south"
 

-


GIMP_STOCK_GRAVITY_SOUTH_EAST

#define GIMP_STOCK_GRAVITY_SOUTH_EAST       "gimp-gravity-south-east"
+


GIMP_STOCK_GRAVITY_SOUTH_EAST

#define GIMP_STOCK_GRAVITY_SOUTH_EAST       "gimp-gravity-south-east"
 

-


GIMP_STOCK_CHAR_PICKER

#define GIMP_STOCK_CHAR_PICKER              "gimp-char-picker"
+


GIMP_STOCK_CHAR_PICKER

#define GIMP_STOCK_CHAR_PICKER              "gimp-char-picker"
 

-


GIMP_STOCK_LETTER_SPACING

#define GIMP_STOCK_LETTER_SPACING           "gimp-letter-spacing"
+


GIMP_STOCK_LETTER_SPACING

#define GIMP_STOCK_LETTER_SPACING           "gimp-letter-spacing"
 

-


GIMP_STOCK_LINE_SPACING

#define GIMP_STOCK_LINE_SPACING             "gimp-line-spacing"
+


GIMP_STOCK_LINE_SPACING

#define GIMP_STOCK_LINE_SPACING             "gimp-line-spacing"
 

-


GIMP_STOCK_TEXT_DIR_LTR

#define GIMP_STOCK_TEXT_DIR_LTR             "gimp-text-dir-ltr"
+


GIMP_STOCK_TEXT_DIR_LTR

#define GIMP_STOCK_TEXT_DIR_LTR             "gimp-text-dir-ltr"
 

-


GIMP_STOCK_TEXT_DIR_RTL

#define GIMP_STOCK_TEXT_DIR_RTL             "gimp-text-dir-rtl"
+


GIMP_STOCK_TEXT_DIR_RTL

#define GIMP_STOCK_TEXT_DIR_RTL             "gimp-text-dir-rtl"
 

-


GIMP_STOCK_PRINT_RESOLUTION

#define GIMP_STOCK_PRINT_RESOLUTION         "gimp-print-resolution"
+


GIMP_STOCK_PRINT_RESOLUTION

#define GIMP_STOCK_PRINT_RESOLUTION         "gimp-print-resolution"
 

-


GIMP_STOCK_TOOLS

#define GIMP_STOCK_TOOLS                    "gimp-tools"
+


GIMP_STOCK_TOOLS

#define GIMP_STOCK_TOOLS                    "gimp-tools"
 

-


GIMP_STOCK_TOOL_OPTIONS

#define GIMP_STOCK_TOOL_OPTIONS             "gimp-tool-options"
+


GIMP_STOCK_TOOL_OPTIONS

#define GIMP_STOCK_TOOL_OPTIONS             "gimp-tool-options"
 

-


GIMP_STOCK_DEVICE_STATUS

#define GIMP_STOCK_DEVICE_STATUS            "gimp-device-status"
+


GIMP_STOCK_DEVICE_STATUS

#define GIMP_STOCK_DEVICE_STATUS            "gimp-device-status"
 

-


GIMP_STOCK_DISPLAY_FILTER

#define GIMP_STOCK_DISPLAY_FILTER           "gimp-display-filter"
+


GIMP_STOCK_DISPLAY_FILTER

#define GIMP_STOCK_DISPLAY_FILTER           "gimp-display-filter"
 

-


GIMP_STOCK_CURVE_FREE

#define GIMP_STOCK_CURVE_FREE               "gimp-curve-free"
+


GIMP_STOCK_CURVE_FREE

#define GIMP_STOCK_CURVE_FREE               "gimp-curve-free"
 

-


GIMP_STOCK_CURVE_SMOOTH

#define GIMP_STOCK_CURVE_SMOOTH             "gimp-curve-smooth"
+


GIMP_STOCK_CURVE_SMOOTH

#define GIMP_STOCK_CURVE_SMOOTH             "gimp-curve-smooth"
 

-


GIMP_STOCK_COLOR_PICKER_BLACK

#define GIMP_STOCK_COLOR_PICKER_BLACK       "gimp-color-picker-black"
+


GIMP_STOCK_COLOR_PICKER_BLACK

#define GIMP_STOCK_COLOR_PICKER_BLACK       "gimp-color-picker-black"
 

-


GIMP_STOCK_COLOR_PICKER_GRAY

#define GIMP_STOCK_COLOR_PICKER_GRAY        "gimp-color-picker-gray"
+


GIMP_STOCK_COLOR_PICKER_GRAY

#define GIMP_STOCK_COLOR_PICKER_GRAY        "gimp-color-picker-gray"
 

-


GIMP_STOCK_COLOR_PICKER_WHITE

#define GIMP_STOCK_COLOR_PICKER_WHITE       "gimp-color-picker-white"
+


GIMP_STOCK_COLOR_PICKER_WHITE

#define GIMP_STOCK_COLOR_PICKER_WHITE       "gimp-color-picker-white"
 

-


GIMP_STOCK_COLOR_TRIANGLE

#define GIMP_STOCK_COLOR_TRIANGLE           "gimp-color-triangle"
+


GIMP_STOCK_COLOR_TRIANGLE

#define GIMP_STOCK_COLOR_TRIANGLE           "gimp-color-triangle"
 

-


GIMP_STOCK_COLOR_PICK_FROM_SCREEN

#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN   "gimp-color-pick-from-screen"
+


GIMP_STOCK_COLOR_PICK_FROM_SCREEN

#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN   "gimp-color-pick-from-screen"
 

-


GIMP_STOCK_CONVERT_GRAYSCALE

#define GIMP_STOCK_CONVERT_GRAYSCALE        "gimp-convert-grayscale"
+


GIMP_STOCK_CONVERT_GRAYSCALE

#define GIMP_STOCK_CONVERT_GRAYSCALE        "gimp-convert-grayscale"
 

-


GIMP_STOCK_CONVERT_INDEXED

#define GIMP_STOCK_CONVERT_INDEXED          "gimp-convert-indexed"
+


GIMP_STOCK_CONVERT_INDEXED

#define GIMP_STOCK_CONVERT_INDEXED          "gimp-convert-indexed"
 

-


GIMP_STOCK_CONVERT_RGB

#define GIMP_STOCK_CONVERT_RGB              "gimp-convert-rgb"
+


GIMP_STOCK_CONVERT_RGB

#define GIMP_STOCK_CONVERT_RGB              "gimp-convert-rgb"
 

-


GIMP_STOCK_TRANSPARENCY

#define GIMP_STOCK_TRANSPARENCY             "gimp-transparency"
+


GIMP_STOCK_TRANSPARENCY

#define GIMP_STOCK_TRANSPARENCY             "gimp-transparency"
 

-


GIMP_STOCK_DEFAULT_COLORS

#define GIMP_STOCK_DEFAULT_COLORS           "gimp-default-colors"
+


GIMP_STOCK_DEFAULT_COLORS

#define GIMP_STOCK_DEFAULT_COLORS           "gimp-default-colors"
 

-


GIMP_STOCK_SWAP_COLORS

#define GIMP_STOCK_SWAP_COLORS              "gimp-swap-colors"
+


GIMP_STOCK_SWAP_COLORS

#define GIMP_STOCK_SWAP_COLORS              "gimp-swap-colors"
 

-


GIMP_STOCK_UNDO_HISTORY

#define GIMP_STOCK_UNDO_HISTORY             "gimp-undo-history"
+


GIMP_STOCK_UNDO_HISTORY

#define GIMP_STOCK_UNDO_HISTORY             "gimp-undo-history"
 

-


GIMP_STOCK_TOOL_AIRBRUSH

#define GIMP_STOCK_TOOL_AIRBRUSH            "gimp-tool-airbrush"
+


GIMP_STOCK_TOOL_AIRBRUSH

#define GIMP_STOCK_TOOL_AIRBRUSH            "gimp-tool-airbrush"
 

-


GIMP_STOCK_TOOL_BLEND

#define GIMP_STOCK_TOOL_BLEND               "gimp-tool-blend"
+


GIMP_STOCK_TOOL_BLEND

#define GIMP_STOCK_TOOL_BLEND               "gimp-tool-blend"
 

-


GIMP_STOCK_TOOL_BLUR

#define GIMP_STOCK_TOOL_BLUR                "gimp-tool-blur"
+


GIMP_STOCK_TOOL_BLUR

#define GIMP_STOCK_TOOL_BLUR                "gimp-tool-blur"
 

-


GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST

#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST "gimp-tool-brightness-contrast"
+


GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST

#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST "gimp-tool-brightness-contrast"
 

-


GIMP_STOCK_TOOL_BUCKET_FILL

#define GIMP_STOCK_TOOL_BUCKET_FILL         "gimp-tool-bucket-fill"
+


GIMP_STOCK_TOOL_BUCKET_FILL

#define GIMP_STOCK_TOOL_BUCKET_FILL         "gimp-tool-bucket-fill"
 

-


GIMP_STOCK_TOOL_BY_COLOR_SELECT

#define GIMP_STOCK_TOOL_BY_COLOR_SELECT     "gimp-tool-by-color-select"
+


GIMP_STOCK_TOOL_BY_COLOR_SELECT

#define GIMP_STOCK_TOOL_BY_COLOR_SELECT     "gimp-tool-by-color-select"
 

-


GIMP_STOCK_TOOL_CLONE

#define GIMP_STOCK_TOOL_CLONE               "gimp-tool-clone"
+


GIMP_STOCK_TOOL_CLONE

#define GIMP_STOCK_TOOL_CLONE               "gimp-tool-clone"
 

-


GIMP_STOCK_TOOL_COLOR_BALANCE

#define GIMP_STOCK_TOOL_COLOR_BALANCE       "gimp-tool-color-balance"
+


GIMP_STOCK_TOOL_COLOR_BALANCE

#define GIMP_STOCK_TOOL_COLOR_BALANCE       "gimp-tool-color-balance"
 

-


GIMP_STOCK_TOOL_COLOR_PICKER

#define GIMP_STOCK_TOOL_COLOR_PICKER        "gimp-tool-color-picker"
+


GIMP_STOCK_TOOL_COLOR_PICKER

#define GIMP_STOCK_TOOL_COLOR_PICKER        "gimp-tool-color-picker"
 

-


GIMP_STOCK_TOOL_COLORIZE

#define GIMP_STOCK_TOOL_COLORIZE            "gimp-tool-colorize"
+


GIMP_STOCK_TOOL_COLORIZE

#define GIMP_STOCK_TOOL_COLORIZE            "gimp-tool-colorize"
 

-


GIMP_STOCK_TOOL_CROP

#define GIMP_STOCK_TOOL_CROP                "gimp-tool-crop"
+


GIMP_STOCK_TOOL_CROP

#define GIMP_STOCK_TOOL_CROP                "gimp-tool-crop"
 

-


GIMP_STOCK_TOOL_CURVES

#define GIMP_STOCK_TOOL_CURVES              "gimp-tool-curves"
+


GIMP_STOCK_TOOL_CURVES

#define GIMP_STOCK_TOOL_CURVES              "gimp-tool-curves"
 

-


GIMP_STOCK_TOOL_DODGE

#define GIMP_STOCK_TOOL_DODGE               "gimp-tool-dodge"
+


GIMP_STOCK_TOOL_DODGE

#define GIMP_STOCK_TOOL_DODGE               "gimp-tool-dodge"
 

-


GIMP_STOCK_TOOL_ELLIPSE_SELECT

#define GIMP_STOCK_TOOL_ELLIPSE_SELECT      "gimp-tool-ellipse-select"
+


GIMP_STOCK_TOOL_ELLIPSE_SELECT

#define GIMP_STOCK_TOOL_ELLIPSE_SELECT      "gimp-tool-ellipse-select"
 

-


GIMP_STOCK_TOOL_ERASER

#define GIMP_STOCK_TOOL_ERASER              "gimp-tool-eraser"
+


GIMP_STOCK_TOOL_ERASER

#define GIMP_STOCK_TOOL_ERASER              "gimp-tool-eraser"
 

-


GIMP_STOCK_TOOL_FLIP

#define GIMP_STOCK_TOOL_FLIP                "gimp-tool-flip"
+


GIMP_STOCK_TOOL_FLIP

#define GIMP_STOCK_TOOL_FLIP                "gimp-tool-flip"
 

-


GIMP_STOCK_TOOL_FREE_SELECT

#define GIMP_STOCK_TOOL_FREE_SELECT         "gimp-tool-free-select"
+


GIMP_STOCK_TOOL_FREE_SELECT

#define GIMP_STOCK_TOOL_FREE_SELECT         "gimp-tool-free-select"
 

-


GIMP_STOCK_TOOL_FUZZY_SELECT

#define GIMP_STOCK_TOOL_FUZZY_SELECT        "gimp-tool-fuzzy-select"
+


GIMP_STOCK_TOOL_FUZZY_SELECT

#define GIMP_STOCK_TOOL_FUZZY_SELECT        "gimp-tool-fuzzy-select"
 

-


GIMP_STOCK_TOOL_HUE_SATURATION

#define GIMP_STOCK_TOOL_HUE_SATURATION      "gimp-tool-hue-saturation"
+


GIMP_STOCK_TOOL_HUE_SATURATION

#define GIMP_STOCK_TOOL_HUE_SATURATION      "gimp-tool-hue-saturation"
 

-


GIMP_STOCK_TOOL_INK

#define GIMP_STOCK_TOOL_INK                 "gimp-tool-ink"
+


GIMP_STOCK_TOOL_INK

#define GIMP_STOCK_TOOL_INK                 "gimp-tool-ink"
 

-


GIMP_STOCK_TOOL_ISCISSORS

#define GIMP_STOCK_TOOL_ISCISSORS           "gimp-tool-iscissors"
+


GIMP_STOCK_TOOL_ISCISSORS

#define GIMP_STOCK_TOOL_ISCISSORS           "gimp-tool-iscissors"
 

-


GIMP_STOCK_TOOL_LEVELS

#define GIMP_STOCK_TOOL_LEVELS              "gimp-tool-levels"
+


GIMP_STOCK_TOOL_LEVELS

#define GIMP_STOCK_TOOL_LEVELS              "gimp-tool-levels"
 

-


GIMP_STOCK_TOOL_MEASURE

#define GIMP_STOCK_TOOL_MEASURE             "gimp-tool-measure"
+


GIMP_STOCK_TOOL_MEASURE

#define GIMP_STOCK_TOOL_MEASURE             "gimp-tool-measure"
 

-


GIMP_STOCK_TOOL_MOVE

#define GIMP_STOCK_TOOL_MOVE                "gimp-tool-move"
+


GIMP_STOCK_TOOL_MOVE

#define GIMP_STOCK_TOOL_MOVE                "gimp-tool-move"
 

-


GIMP_STOCK_TOOL_PAINTBRUSH

#define GIMP_STOCK_TOOL_PAINTBRUSH          "gimp-tool-paintbrush"
+


GIMP_STOCK_TOOL_PAINTBRUSH

#define GIMP_STOCK_TOOL_PAINTBRUSH          "gimp-tool-paintbrush"
 

-


GIMP_STOCK_TOOL_PATH

#define GIMP_STOCK_TOOL_PATH                "gimp-tool-path"
+


GIMP_STOCK_TOOL_PATH

#define GIMP_STOCK_TOOL_PATH                "gimp-tool-path"
 

-


GIMP_STOCK_TOOL_PENCIL

#define GIMP_STOCK_TOOL_PENCIL              "gimp-tool-pencil"
+


GIMP_STOCK_TOOL_PENCIL

#define GIMP_STOCK_TOOL_PENCIL              "gimp-tool-pencil"
 

-


GIMP_STOCK_TOOL_PERSPECTIVE

#define GIMP_STOCK_TOOL_PERSPECTIVE         "gimp-tool-perspective"
+


GIMP_STOCK_TOOL_PERSPECTIVE

#define GIMP_STOCK_TOOL_PERSPECTIVE         "gimp-tool-perspective"
 

-


GIMP_STOCK_TOOL_POSTERIZE

#define GIMP_STOCK_TOOL_POSTERIZE           "gimp-tool-posterize"
+


GIMP_STOCK_TOOL_POSTERIZE

#define GIMP_STOCK_TOOL_POSTERIZE           "gimp-tool-posterize"
 

-


GIMP_STOCK_TOOL_RECT_SELECT

#define GIMP_STOCK_TOOL_RECT_SELECT         "gimp-tool-rect-select"
+


GIMP_STOCK_TOOL_RECT_SELECT

#define GIMP_STOCK_TOOL_RECT_SELECT         "gimp-tool-rect-select"
 

-


GIMP_STOCK_TOOL_ROTATE

#define GIMP_STOCK_TOOL_ROTATE              "gimp-tool-rotate"
+


GIMP_STOCK_TOOL_ROTATE

#define GIMP_STOCK_TOOL_ROTATE              "gimp-tool-rotate"
 

-


GIMP_STOCK_TOOL_SCALE

#define GIMP_STOCK_TOOL_SCALE               "gimp-tool-scale"
+


GIMP_STOCK_TOOL_SCALE

#define GIMP_STOCK_TOOL_SCALE               "gimp-tool-scale"
 

-


GIMP_STOCK_TOOL_SHEAR

#define GIMP_STOCK_TOOL_SHEAR               "gimp-tool-shear"
+


GIMP_STOCK_TOOL_SHEAR

#define GIMP_STOCK_TOOL_SHEAR               "gimp-tool-shear"
 

-


GIMP_STOCK_TOOL_SMUDGE

#define GIMP_STOCK_TOOL_SMUDGE              "gimp-tool-smudge"
+


GIMP_STOCK_TOOL_SMUDGE

#define GIMP_STOCK_TOOL_SMUDGE              "gimp-tool-smudge"
 

-


GIMP_STOCK_TOOL_TEXT

#define GIMP_STOCK_TOOL_TEXT                "gimp-tool-text"
+


GIMP_STOCK_TOOL_TEXT

#define GIMP_STOCK_TOOL_TEXT                "gimp-tool-text"
 

-


GIMP_STOCK_TOOL_THRESHOLD

#define GIMP_STOCK_TOOL_THRESHOLD           "gimp-tool-threshold"
+


GIMP_STOCK_TOOL_THRESHOLD

#define GIMP_STOCK_TOOL_THRESHOLD           "gimp-tool-threshold"
 

-


GIMP_STOCK_TOOL_ZOOM

#define GIMP_STOCK_TOOL_ZOOM                "gimp-tool-zoom"
+


GIMP_STOCK_TOOL_ZOOM

#define GIMP_STOCK_TOOL_ZOOM                "gimp-tool-zoom"
 

-


GIMP_STOCK_HCHAIN

#define GIMP_STOCK_HCHAIN                   "gimp-hchain"
+


GIMP_STOCK_HCHAIN

#define GIMP_STOCK_HCHAIN                   "gimp-hchain"
 

-


GIMP_STOCK_HCHAIN_BROKEN

#define GIMP_STOCK_HCHAIN_BROKEN            "gimp-hchain-broken"
+


GIMP_STOCK_HCHAIN_BROKEN

#define GIMP_STOCK_HCHAIN_BROKEN            "gimp-hchain-broken"
 

-


GIMP_STOCK_VCHAIN

#define GIMP_STOCK_VCHAIN                   "gimp-vchain"
+


GIMP_STOCK_VCHAIN

#define GIMP_STOCK_VCHAIN                   "gimp-vchain"
 

-


GIMP_STOCK_VCHAIN_BROKEN

#define GIMP_STOCK_VCHAIN_BROKEN            "gimp-vchain-broken"
+


GIMP_STOCK_VCHAIN_BROKEN

#define GIMP_STOCK_VCHAIN_BROKEN            "gimp-vchain-broken"
 

-


GIMP_STOCK_TEXTURE

#define GIMP_STOCK_TEXTURE                  "gimp-texture"
+


GIMP_STOCK_TEXTURE

#define GIMP_STOCK_TEXTURE                  "gimp-texture"
 

-


GIMP_STOCK_FRAME

#define GIMP_STOCK_FRAME                    "gimp-frame"
+


GIMP_STOCK_FRAME

#define GIMP_STOCK_FRAME                    "gimp-frame"
 

-


GIMP_STOCK_ERROR

#define GIMP_STOCK_ERROR                    "gimp-error"
+


GIMP_STOCK_ERROR

#define GIMP_STOCK_ERROR                    "gimp-error"
 

-


GIMP_STOCK_INFO

#define GIMP_STOCK_INFO                     "gimp-info"
+


GIMP_STOCK_INFO

#define GIMP_STOCK_INFO                     "gimp-info"
 

-


GIMP_STOCK_QUESTION

#define GIMP_STOCK_QUESTION                 "gimp-question"
+


GIMP_STOCK_QUESTION

#define GIMP_STOCK_QUESTION                 "gimp-question"
 

-


GIMP_STOCK_WARNING

#define GIMP_STOCK_WARNING                  "gimp-warning"
+


GIMP_STOCK_WARNING

#define GIMP_STOCK_WARNING                  "gimp-warning"
 

-


GIMP_STOCK_WILBER

#define GIMP_STOCK_WILBER                   "gimp-wilber"
+


GIMP_STOCK_WILBER

#define GIMP_STOCK_WILBER                   "gimp-wilber"
 

-


GIMP_STOCK_WILBER_EEK

#define GIMP_STOCK_WILBER_EEK               "gimp-wilber-eek"
+


GIMP_STOCK_WILBER_EEK

#define GIMP_STOCK_WILBER_EEK               "gimp-wilber-eek"
 

-


GIMP_STOCK_BRUSH

#define GIMP_STOCK_BRUSH                    GIMP_STOCK_TOOL_PAINTBRUSH
+


GIMP_STOCK_BRUSH

#define GIMP_STOCK_BRUSH                    GIMP_STOCK_TOOL_PAINTBRUSH
 

-


GIMP_STOCK_BUFFER

#define GIMP_STOCK_BUFFER                   GTK_STOCK_PASTE
+


GIMP_STOCK_BUFFER

#define GIMP_STOCK_BUFFER                   GTK_STOCK_PASTE
 

-


GIMP_STOCK_FONT

#define GIMP_STOCK_FONT                     GTK_STOCK_SELECT_FONT
+


GIMP_STOCK_FONT

#define GIMP_STOCK_FONT                     GTK_STOCK_SELECT_FONT
 

-


GIMP_STOCK_GRADIENT

#define GIMP_STOCK_GRADIENT                 GIMP_STOCK_TOOL_BLEND
+


GIMP_STOCK_GRADIENT

#define GIMP_STOCK_GRADIENT                 GIMP_STOCK_TOOL_BLEND
 

-


GIMP_STOCK_PALETTE

#define GIMP_STOCK_PALETTE                  GTK_STOCK_SELECT_COLOR
+


GIMP_STOCK_PALETTE

#define GIMP_STOCK_PALETTE                  GTK_STOCK_SELECT_COLOR
 

-


GIMP_STOCK_PATTERN

#define GIMP_STOCK_PATTERN                  GIMP_STOCK_TOOL_BUCKET_FILL
+


GIMP_STOCK_PATTERN

#define GIMP_STOCK_PATTERN                  GIMP_STOCK_TOOL_BUCKET_FILL
 

-


GIMP_STOCK_ZOOM_FOLLOW_WINDOW

#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW       "gimp-zoom-follow-window"
+


GIMP_STOCK_ZOOM_FOLLOW_WINDOW

#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW       "gimp-zoom-follow-window"
 

diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html --- gimp-2.2.6/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html 2005-05-08 23:43:11.000000000 +0200 @@ -89,11 +89,11 @@ guint digits); -#define GIMP_SCALE_ENTRY_LABEL (adj) -#define GIMP_SCALE_ENTRY_SCALE (adj) -#define GIMP_SCALE_ENTRY_SCALE_ADJ (adj) -#define GIMP_SCALE_ENTRY_SPINBUTTON (adj) -#define GIMP_SCALE_ENTRY_SPINBUTTON_ADJ (adj) +#define GIMP_SCALE_ENTRY_LABEL (adj) +#define GIMP_SCALE_ENTRY_SCALE (adj) +#define GIMP_SCALE_ENTRY_SCALE_ADJ (adj) +#define GIMP_SCALE_ENTRY_SPINBUTTON (adj) +#define GIMP_SCALE_ENTRY_SPINBUTTON_ADJ (adj) GtkObject* gimp_scale_entry_new (gchar *help_id); -#define GIMP_RANDOM_SEED_SPINBUTTON (hbox) -#define GIMP_RANDOM_SEED_SPINBUTTON_ADJ (hbox) -#define GIMP_RANDOM_SEED_TOGGLE (hbox) +#define GIMP_RANDOM_SEED_SPINBUTTON (hbox) +#define GIMP_RANDOM_SEED_SPINBUTTON_ADJ (hbox) +#define GIMP_RANDOM_SEED_TOGGLE (hbox) GtkWidget* gimp_random_seed_new (gboolean *random_seed); -#define GIMP_COORDINATES_CHAINBUTTON (sizeentry) +#define GIMP_COORDINATES_CHAINBUTTON (sizeentry) GtkWidget* gimp_coordinates_new (GtkLabel *label, ...); -

Description

+

Description

-

Details

gimp_radio_group_new ()

Details

gimp_radio_group_new ()

GtkWidget*  gimp_radio_group_new            (Returns: A GtkFrame or GtkVbox (depending on in_frame).
-

gimp_radio_group_new2 ()


gimp_radio_group_new2 ()

GtkWidget*  gimp_radio_group_new2           (Returns: A GtkFrame or GtkVbox (depending on in_frame).
-

gimp_radio_group_set_active ()

void        gimp_radio_group_set_active     (

gimp_radio_group_set_active ()

void        gimp_radio_group_set_active     (GtkRadioButton *radio_button,
                                              GtkRadioButton.
 item_data: The item_data of the radio button you want to select.
-

gimp_int_radio_group_new ()


gimp_int_radio_group_new ()

GtkWidget*  gimp_int_radio_group_new        (Returns: A GtkFrame or GtkVbox (depending on in_frame).
-

gimp_int_radio_group_set_active ()

void        gimp_int_radio_group_set_active (

gimp_int_radio_group_set_active ()

void        gimp_int_radio_group_set_active (GtkRadioButton *radio_button,
                                              GtkRadioButton.
 item_data: The item_data of the radio button you want to select.
-

gimp_spin_button_new ()


gimp_spin_button_new ()

GtkWidget*  gimp_spin_button_new            (Returns: A GtkSpinbutton and it's GtkAdjustment.
-

GIMP_SCALE_ENTRY_LABEL()

#define     GIMP_SCALE_ENTRY_LABEL(adj)

+


GIMP_SCALE_ENTRY_LABEL()

#define     GIMP_SCALE_ENTRY_LABEL(adj)

Returns the scale_entry's GtkLabel. @@ -576,7 +576,7 @@ >GtkAdjustment returned by gimp_scale_entry_new(). -


GIMP_SCALE_ENTRY_SCALE()

#define     GIMP_SCALE_ENTRY_SCALE(adj)

+


GIMP_SCALE_ENTRY_SCALE()

#define     GIMP_SCALE_ENTRY_SCALE(adj)

Returns the scale_entry's GtkHScale. @@ -585,7 +585,7 @@ >GtkAdjustment returned by gimp_scale_entry_new(). -


GIMP_SCALE_ENTRY_SCALE_ADJ()

#define     GIMP_SCALE_ENTRY_SCALE_ADJ(adj)

+


GIMP_SCALE_ENTRY_SCALE_ADJ()

#define     GIMP_SCALE_ENTRY_SCALE_ADJ(adj)

Returns the GtkAdjustment of the scale_entry's GtkAdjustment returned by gimp_scale_entry_new(). -


GIMP_SCALE_ENTRY_SPINBUTTON()

#define     GIMP_SCALE_ENTRY_SPINBUTTON(adj)

+


GIMP_SCALE_ENTRY_SPINBUTTON()

#define     GIMP_SCALE_ENTRY_SPINBUTTON(adj)

Returns the scale_entry's GtkSpinButton. @@ -605,7 +605,7 @@ >GtkAdjustment returned by gimp_scale_entry_new(). -


GIMP_SCALE_ENTRY_SPINBUTTON_ADJ()

#define     GIMP_SCALE_ENTRY_SPINBUTTON_ADJ(adj)

+


GIMP_SCALE_ENTRY_SPINBUTTON_ADJ()

#define     GIMP_SCALE_ENTRY_SPINBUTTON_ADJ(adj)

Returns the GtkAdjustment of the scale_entry's GtkAdjustment returned by gimp_scale_entry_new(). -


gimp_scale_entry_new ()


gimp_scale_entry_new ()

GtkObject*  gimp_scale_entry_new            (GtkSpinButton's GtkAdjustment.
-

gimp_scale_entry_set_sensitive ()

void        gimp_scale_entry_set_sensitive  (

gimp_scale_entry_set_sensitive ()

void        gimp_scale_entry_set_sensitive  (GtkObject *adjustment,
                                              gtk_widget_set_sensitive()
-

gimp_scale_entry_set_logarithmic ()

void        gimp_scale_entry_set_logarithmic
+

gimp_scale_entry_set_logarithmic ()

void        gimp_scale_entry_set_logarithmic
                                             (GtkObject *adjustment,
@@ -758,7 +758,7 @@
 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
                                             (FALSE for linear behaviour.
 
 

Since GIMP 2.2 -


gimp_color_scale_entry_new ()


gimp_color_scale_entry_new ()

GtkObject*  gimp_color_scale_entry_new      (GtkSpinButton's GtkAdjustment.
-

GIMP_RANDOM_SEED_SPINBUTTON()

#define     GIMP_RANDOM_SEED_SPINBUTTON(hbox)

+


GIMP_RANDOM_SEED_SPINBUTTON()

#define     GIMP_RANDOM_SEED_SPINBUTTON(hbox)

Returns the random_seed's GtkSpinButton. @@ -865,7 +865,7 @@ >GtkHBox returned by gimp_random_seed_new(). -


GIMP_RANDOM_SEED_SPINBUTTON_ADJ()

#define     GIMP_RANDOM_SEED_SPINBUTTON_ADJ(hbox)

+


GIMP_RANDOM_SEED_SPINBUTTON_ADJ()

#define     GIMP_RANDOM_SEED_SPINBUTTON_ADJ(hbox)

Returns the GtkAdjustment of the random_seed's GtkHBox returned by gimp_random_seed_new(). -


GIMP_RANDOM_SEED_TOGGLE()

#define     GIMP_RANDOM_SEED_TOGGLE(hbox)

+


GIMP_RANDOM_SEED_TOGGLE()

#define     GIMP_RANDOM_SEED_TOGGLE(hbox)

hbox: -

gimp_random_seed_new ()


gimp_random_seed_new ()

GtkWidget*  gimp_random_seed_new            (GtkButton for setting a random seed.
-

GIMP_COORDINATES_CHAINBUTTON()

#define     GIMP_COORDINATES_CHAINBUTTON(sizeentry)

+


GIMP_COORDINATES_CHAINBUTTON()

#define     GIMP_COORDINATES_CHAINBUTTON(sizeentry)

Returns the GimpChainButton which is attached to the GimpSizeEntry.

sizeentry:The GimpSizeEntry returned by gimp_coordinates_new(). -

gimp_coordinates_new ()



gimp_pixmap_button_new ()


gimp_pixmap_button_new ()

GtkWidget*  gimp_pixmap_button_new          (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);

@@ -1056,7 +1056,7 @@ href="../gtk/GtkToggleButton.html" >GtkToggleButton the "set_sensitive" and "inverse_sensitive" lists are attached to. -


gimp_toggle_button_update ()

void        gimp_toggle_button_update       (

gimp_toggle_button_update ()

void        gimp_toggle_button_update       (GtkWidget *widget,
                                              gtk_toggle_button_get_active().
-

gimp_radio_button_update ()

void        gimp_radio_button_update        (

gimp_radio_button_update ()

void        gimp_radio_button_update        (GtkWidget *widget,
                                              gint variable which will store the value of
          GPOINTER_TO_INT (g_object_get_data (widget, "gimp-item-data")).
-

gimp_int_adjustment_update ()

void        gimp_int_adjustment_update      (

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

adjustment: A gint variable which will store the adjustment's value. -

gimp_uint_adjustment_update ()

void        gimp_uint_adjustment_update     (

gimp_uint_adjustment_update ()

void        gimp_uint_adjustment_update     (GtkAdjustment *adjustment,
                                              guint variable which will store the
              adjustment's value.
-

gimp_float_adjustment_update ()

void        gimp_float_adjustment_update    (

gimp_float_adjustment_update ()

void        gimp_float_adjustment_update    (GtkAdjustment *adjustment,
                                              gfloat varaiable which will store the
              adjustment's value.
-

gimp_double_adjustment_update ()

void        gimp_double_adjustment_update   (

gimp_double_adjustment_update ()

void        gimp_double_adjustment_update   (GtkAdjustment *adjustment,
                                              gdouble variable which will store the
              adjustment's value.
-

gimp_unit_menu_update ()

void        gimp_unit_menu_update           (

gimp_unit_menu_update ()

void        gimp_unit_menu_update           (GtkWidget *widget,
                                              GimpUnit variable which will store the unit menu's
          value.
-

gimp_table_attach_aligned ()


gimp_table_attach_aligned ()

GtkWidget*  gimp_table_attach_aligned       (Returns: The created GtkLabel.
-

gimp_label_set_attributes ()

void        gimp_label_set_attributes       (

gimp_label_set_attributes ()

void        gimp_label_set_attributes       (GtkLabel *label,
                                              ...);

diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/Makefile.in gimp-2.2.7/devel-docs/libgimpwidgets/Makefile.in --- gimp-2.2.6/devel-docs/libgimpwidgets/Makefile.in 2005-04-10 02:09:47.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/Makefile.in 2005-04-11 12:03:25.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.6/devel-docs/libgimpwidgets/xml/gimpbutton.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpbutton.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpbutton.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpbutton.xml 2005-05-08 23:43:11.000000000 +0200 @@ -108,7 +108,7 @@ a GimpButton. state : - a state as found in GdkEventButton->state, e.g. GDK_SHIFT_MASK. + a state as found in GdkEventButton->state, e.g. GDK_SHIFT_MASK. diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpcellrenderercolor.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcellrenderercolor.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpcellrenderercolor.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcellrenderercolor.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimpwidgets/xml/gimpcellrenderertoggle.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcellrenderertoggle.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpcellrenderertoggle.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcellrenderertoggle.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimpwidgets/xml/gimpcolorbutton.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcolorbutton.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpcolorbutton.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcolorbutton.xml 2005-05-08 23:43:11.000000000 +0200 @@ -174,7 +174,7 @@ gimp_color_button_set_updatevoid gimp_color_button_set_update (GimpColorButton *button, gboolean continuous); -When set to TRUE, the button will emit the "color_changed" +When set to TRUE, the button will emit the "color_changed" continuously while the color is changed in the color selection dialog. diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpcolorhexentry.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcolorhexentry.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpcolorhexentry.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcolorhexentry.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimpwidgets/xml/gimpcolornotebook.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcolornotebook.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpcolornotebook.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcolornotebook.xml 2005-05-08 23:43:11.000000000 +0200 @@ -103,8 +103,8 @@ has_page : Whether the page should be added or removed. -Returns : The new page widget, if has_page was TRUE, or NULL - if has_page was FALSE. +Returns : The new page widget, if has_page was TRUE, or NULL + if has_page was FALSE. diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpcolorselection.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcolorselection.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpcolorselection.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcolorselection.xml 2005-05-08 23:43:11.000000000 +0200 @@ -136,7 +136,7 @@ selection : A GimpColorSelection widget. -Returns : TRUE if the GimpColorSelection has alpha controls. +Returns : TRUE if the GimpColorSelection has alpha controls. diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpcolorselector.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcolorselector.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpcolorselector.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpcolorselector.xml 2005-05-08 23:43:11.000000000 +0200 @@ -20,8 +20,8 @@ GimpColorSelector; -#define GIMP_COLOR_SELECTOR_SIZE -#define GIMP_COLOR_SELECTOR_BAR_SIZE +#define GIMP_COLOR_SELECTOR_SIZE +#define GIMP_COLOR_SELECTOR_BAR_SIZE enum GimpColorSelectorChannel; GtkWidget* gimp_color_selector_new (GType selector_type, const GimpRGB *rgb, @@ -113,14 +113,14 @@ -<anchor id="GIMP-COLOR-SELECTOR-SIZE--CAPS"/>GIMP_COLOR_SELECTOR_SIZE +<anchor id="GIMP-COLOR-SELECTOR-SIZE:CAPS"/>GIMP_COLOR_SELECTOR_SIZE GIMP_COLOR_SELECTOR_SIZE#define GIMP_COLOR_SELECTOR_SIZE 150 The suggested size for a color area in a GimpColorSelector implementation. -<anchor id="GIMP-COLOR-SELECTOR-BAR-SIZE--CAPS"/>GIMP_COLOR_SELECTOR_BAR_SIZE +<anchor id="GIMP-COLOR-SELECTOR-BAR-SIZE:CAPS"/>GIMP_COLOR_SELECTOR_BAR_SIZE GIMP_COLOR_SELECTOR_BAR_SIZE#define GIMP_COLOR_SELECTOR_BAR_SIZE 15 diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpdialog.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpdialog.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpdialog.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpdialog.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimpwidgets/xml/gimpfileentry.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpfileentry.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpfileentry.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpfileentry.xml 2005-05-08 23:43:11.000000000 +0200 @@ -83,7 +83,7 @@ the filename listbox of the GtkFileSelection dialog will be hidden. -If you specify check_valid as TRUE in gimp_file_entry_new() +If you specify check_valid as TRUE in gimp_file_entry_new() the entered filename will be checked for validity and a pixmap will be shown which indicates if the file exists or not. diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpframe.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpframe.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpframe.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpframe.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimpwidgets/xml/gimphelpui.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimphelpui.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimphelpui.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimphelpui.xml 2005-05-08 23:43:11.000000000 +0200 @@ -22,7 +22,7 @@ void (*GimpHelpFunc) (const gchar *help_id, gpointer help_data); -#define GIMP_HELP_ID +#define GIMP_HELP_ID void gimp_help_enable_tooltips (void); void gimp_help_disable_tooltips (void); void gimp_standard_help_func (const gchar *help_id, @@ -92,7 +92,7 @@ -<anchor id="GIMP-HELP-ID--CAPS"/>GIMP_HELP_ID +<anchor id="GIMP-HELP-ID:CAPS"/>GIMP_HELP_ID GIMP_HELP_ID#define GIMP_HELP_ID (gimp_help_id_quark ()) @@ -169,7 +169,7 @@ tooltip. -This function can be called with NULL for tooltip. Use this feature +This function can be called with NULL for tooltip. Use this feature if you want to set a help link for a widget which shouldn't have a visible tooltip. diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpintcombobox.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpintcombobox.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpintcombobox.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpintcombobox.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimpwidgets/xml/gimpintstore.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpintstore.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpintstore.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpintstore.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimpwidgets/xml/gimpoffsetarea.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpoffsetarea.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpoffsetarea.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpoffsetarea.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimpwidgets/xml/gimppatheditor.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimppatheditor.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimppatheditor.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimppatheditor.xml 2005-05-08 23:43:11.000000000 +0200 @@ -119,7 +119,7 @@ The elements of the initial search path must be separated with the -G_SEARCHPATH_SEPARATOR character. +G_SEARCHPATH_SEPARATOR character. @@ -138,7 +138,7 @@ gimp_path_editor_get_pathgchar* gimp_path_editor_get_path (GimpPathEditor *editor); The elements of the returned search path string are separated with the -G_SEARCHPATH_SEPARATOR character. +G_SEARCHPATH_SEPARATOR character. Note that you have to g_free() the returned string. @@ -157,7 +157,7 @@ const gchar *path); The elements of the initial search path must be separated with the -G_SEARCHPATH_SEPARATOR character. +G_SEARCHPATH_SEPARATOR character. @@ -278,7 +278,7 @@ GimpFileEntry -G_SEARCHPATH_SEPARATOR +G_SEARCHPATH_SEPARATOR diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimppreviewarea.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimpwidgets/xml/gimppreview.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimppreview.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimppreview.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimppreview.xml 2005-05-08 23:43:11.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.6/devel-docs/libgimpwidgets/xml/gimpquerybox.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpquerybox.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpquerybox.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpquerybox.xml 2005-05-08 23:43:11.000000000 +0200 @@ -98,7 +98,7 @@ const gchar *signal, GimpQueryBooleanCallback callback, gpointer data); -#define GIMP_QUERY_BOX_VBOX (qbox) +#define GIMP_QUERY_BOX_VBOX (qbox) @@ -544,7 +544,7 @@ -<anchor id="GIMP-QUERY-BOX-VBOX--CAPS"/>GIMP_QUERY_BOX_VBOX() +<anchor id="GIMP-QUERY-BOX-VBOX:CAPS"/>GIMP_QUERY_BOX_VBOX() GIMP_QUERY_BOX_VBOX#define GIMP_QUERY_BOX_VBOX(qbox) A macro to access the GtkVBox in a GimpQueryBox. Useful if you want to add diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpsizeentry.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpsizeentry.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpsizeentry.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpsizeentry.xml 2005-05-08 23:43:11.000000000 +0200 @@ -142,7 +142,7 @@ For each field, there can be one or two GtkSpinButton's to enter -"value" and "reference value". If you specify show_refval as FALSE +"value" and "reference value". If you specify show_refval as FALSE in gimp_size_entry_new() there will be only one GtkSpinButton and the GimpUnitMenu will contain an item for selecting GIMP_UNIT_PIXEL. @@ -331,11 +331,11 @@ The resolution passed will be clamped to fit in -[GIMP_MIN_RESOLUTION..GIMP_MAX_RESOLUTION]. +[GIMP_MIN_RESOLUTION..GIMP_MAX_RESOLUTION]. This function does nothing if the GimpSizeEntryUpdatePolicy specified in -gimp_size_entry_new() doesn't equal to GIMP_SIZE_ENTRY_UPDATE_SIZE. +gimp_size_entry_new() doesn't equal to GIMP_SIZE_ENTRY_UPDATE_SIZE. @@ -525,8 +525,8 @@ If you don't specify this value explicitly, the reference value's number -of digits will equal to 0 for GIMP_SIZE_ENTRY_UPDATE_SIZE and to 2 for -GIMP_SIZE_ENTRY_UPDATE_RESOLUTION. +of digits will equal to 0 for GIMP_SIZE_ENTRY_UPDATE_SIZE and to 2 for +GIMP_SIZE_ENTRY_UPDATE_RESOLUTION. diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpstock.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpstock.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpstock.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpstock.xml 2005-05-08 23:43:11.000000000 +0200 @@ -21,184 +21,184 @@ void gimp_stock_init (void); -#define GIMP_STOCK_ANCHOR -#define GIMP_STOCK_CENTER -#define GIMP_STOCK_DUPLICATE -#define GIMP_STOCK_EDIT -#define GIMP_STOCK_RESET -#define GIMP_STOCK_CLOSE -#define GIMP_STOCK_MENU_LEFT -#define GIMP_STOCK_MENU_RIGHT -#define GIMP_STOCK_MOVE_TO_SCREEN -#define GIMP_STOCK_INVERT -#define GIMP_STOCK_LAYER_TO_IMAGESIZE -#define GIMP_STOCK_MERGE_DOWN -#define GIMP_STOCK_NAVIGATION -#define GIMP_STOCK_PASTE_AS_NEW -#define GIMP_STOCK_PASTE_INTO -#define GIMP_STOCK_PATH_STROKE -#define GIMP_STOCK_PLUGIN -#define GIMP_STOCK_QMASK_OFF -#define GIMP_STOCK_QMASK_ON -#define GIMP_STOCK_HISTOGRAM -#define GIMP_STOCK_HISTOGRAM_LINEAR -#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC -#define GIMP_STOCK_RESHOW_FILTER -#define GIMP_STOCK_RESIZE -#define GIMP_STOCK_FLIP_HORIZONTAL -#define GIMP_STOCK_FLIP_VERTICAL -#define GIMP_STOCK_ROTATE_180 -#define GIMP_STOCK_ROTATE_270 -#define GIMP_STOCK_ROTATE_90 -#define GIMP_STOCK_SCALE -#define GIMP_STOCK_LINKED -#define GIMP_STOCK_VISIBLE -#define GIMP_STOCK_LIST -#define GIMP_STOCK_GRID -#define GIMP_STOCK_PORTRAIT -#define GIMP_STOCK_LANDSCAPE -#define GIMP_STOCK_VIDEO -#define GIMP_STOCK_WEB -#define GIMP_STOCK_IMAGE -#define GIMP_STOCK_LAYER -#define GIMP_STOCK_LAYER_MASK -#define GIMP_STOCK_CHANNEL -#define GIMP_STOCK_CHANNEL_RED -#define GIMP_STOCK_CHANNEL_GREEN -#define GIMP_STOCK_CHANNEL_BLUE -#define GIMP_STOCK_CHANNEL_GRAY -#define GIMP_STOCK_CHANNEL_INDEXED -#define GIMP_STOCK_CHANNEL_ALPHA -#define GIMP_STOCK_PATH -#define GIMP_STOCK_TEXT_LAYER -#define GIMP_STOCK_FLOATING_SELECTION -#define GIMP_STOCK_TEMPLATE -#define GIMP_STOCK_IMAGES -#define GIMP_STOCK_LAYERS -#define GIMP_STOCK_CHANNELS -#define GIMP_STOCK_PATHS -#define GIMP_STOCK_INDEXED_PALETTE -#define GIMP_STOCK_SHAPE_CIRCLE -#define GIMP_STOCK_SHAPE_SQUARE -#define GIMP_STOCK_SHAPE_DIAMOND -#define GIMP_STOCK_CAP_BUTT -#define GIMP_STOCK_CAP_ROUND -#define GIMP_STOCK_CAP_SQUARE -#define GIMP_STOCK_JOIN_MITER -#define GIMP_STOCK_JOIN_ROUND -#define GIMP_STOCK_JOIN_BEVEL -#define GIMP_STOCK_SELECTION -#define GIMP_STOCK_SELECTION_ALL -#define GIMP_STOCK_SELECTION_NONE -#define GIMP_STOCK_SELECTION_GROW -#define GIMP_STOCK_SELECTION_SHRINK -#define GIMP_STOCK_SELECTION_BORDER -#define GIMP_STOCK_SELECTION_ADD -#define GIMP_STOCK_SELECTION_SUBTRACT -#define GIMP_STOCK_SELECTION_REPLACE -#define GIMP_STOCK_SELECTION_INTERSECT -#define GIMP_STOCK_SELECTION_STROKE -#define GIMP_STOCK_SELECTION_TO_CHANNEL -#define GIMP_STOCK_SELECTION_TO_PATH -#define GIMP_STOCK_GRADIENT_LINEAR -#define GIMP_STOCK_GRADIENT_BILINEAR -#define GIMP_STOCK_GRADIENT_RADIAL -#define GIMP_STOCK_GRADIENT_SQUARE -#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC -#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC -#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL -#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR -#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED -#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE -#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE -#define GIMP_STOCK_GRAVITY_NORTH_WEST -#define GIMP_STOCK_GRAVITY_NORTH -#define GIMP_STOCK_GRAVITY_NORTH_EAST -#define GIMP_STOCK_GRAVITY_WEST -#define GIMP_STOCK_GRAVITY_EAST -#define GIMP_STOCK_GRAVITY_SOUTH_WEST -#define GIMP_STOCK_GRAVITY_SOUTH -#define GIMP_STOCK_GRAVITY_SOUTH_EAST -#define GIMP_STOCK_CHAR_PICKER -#define GIMP_STOCK_LETTER_SPACING -#define GIMP_STOCK_LINE_SPACING -#define GIMP_STOCK_TEXT_DIR_LTR -#define GIMP_STOCK_TEXT_DIR_RTL -#define GIMP_STOCK_PRINT_RESOLUTION -#define GIMP_STOCK_TOOLS -#define GIMP_STOCK_TOOL_OPTIONS -#define GIMP_STOCK_DEVICE_STATUS -#define GIMP_STOCK_DISPLAY_FILTER -#define GIMP_STOCK_CURVE_FREE -#define GIMP_STOCK_CURVE_SMOOTH -#define GIMP_STOCK_COLOR_PICKER_BLACK -#define GIMP_STOCK_COLOR_PICKER_GRAY -#define GIMP_STOCK_COLOR_PICKER_WHITE -#define GIMP_STOCK_COLOR_TRIANGLE -#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN -#define GIMP_STOCK_CONVERT_GRAYSCALE -#define GIMP_STOCK_CONVERT_INDEXED -#define GIMP_STOCK_CONVERT_RGB -#define GIMP_STOCK_TRANSPARENCY -#define GIMP_STOCK_DEFAULT_COLORS -#define GIMP_STOCK_SWAP_COLORS -#define GIMP_STOCK_UNDO_HISTORY -#define GIMP_STOCK_TOOL_AIRBRUSH -#define GIMP_STOCK_TOOL_BLEND -#define GIMP_STOCK_TOOL_BLUR -#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST -#define GIMP_STOCK_TOOL_BUCKET_FILL -#define GIMP_STOCK_TOOL_BY_COLOR_SELECT -#define GIMP_STOCK_TOOL_CLONE -#define GIMP_STOCK_TOOL_COLOR_BALANCE -#define GIMP_STOCK_TOOL_COLOR_PICKER -#define GIMP_STOCK_TOOL_COLORIZE -#define GIMP_STOCK_TOOL_CROP -#define GIMP_STOCK_TOOL_CURVES -#define GIMP_STOCK_TOOL_DODGE -#define GIMP_STOCK_TOOL_ELLIPSE_SELECT -#define GIMP_STOCK_TOOL_ERASER -#define GIMP_STOCK_TOOL_FLIP -#define GIMP_STOCK_TOOL_FREE_SELECT -#define GIMP_STOCK_TOOL_FUZZY_SELECT -#define GIMP_STOCK_TOOL_HUE_SATURATION -#define GIMP_STOCK_TOOL_INK -#define GIMP_STOCK_TOOL_ISCISSORS -#define GIMP_STOCK_TOOL_LEVELS -#define GIMP_STOCK_TOOL_MEASURE -#define GIMP_STOCK_TOOL_MOVE -#define GIMP_STOCK_TOOL_PAINTBRUSH -#define GIMP_STOCK_TOOL_PATH -#define GIMP_STOCK_TOOL_PENCIL -#define GIMP_STOCK_TOOL_PERSPECTIVE -#define GIMP_STOCK_TOOL_POSTERIZE -#define GIMP_STOCK_TOOL_RECT_SELECT -#define GIMP_STOCK_TOOL_ROTATE -#define GIMP_STOCK_TOOL_SCALE -#define GIMP_STOCK_TOOL_SHEAR -#define GIMP_STOCK_TOOL_SMUDGE -#define GIMP_STOCK_TOOL_TEXT -#define GIMP_STOCK_TOOL_THRESHOLD -#define GIMP_STOCK_TOOL_ZOOM -#define GIMP_STOCK_HCHAIN -#define GIMP_STOCK_HCHAIN_BROKEN -#define GIMP_STOCK_VCHAIN -#define GIMP_STOCK_VCHAIN_BROKEN -#define GIMP_STOCK_TEXTURE -#define GIMP_STOCK_FRAME -#define GIMP_STOCK_ERROR -#define GIMP_STOCK_INFO -#define GIMP_STOCK_QUESTION -#define GIMP_STOCK_WARNING -#define GIMP_STOCK_WILBER -#define GIMP_STOCK_WILBER_EEK -#define GIMP_STOCK_BRUSH -#define GIMP_STOCK_BUFFER -#define GIMP_STOCK_FONT -#define GIMP_STOCK_GRADIENT -#define GIMP_STOCK_PALETTE -#define GIMP_STOCK_PATTERN -#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW +#define GIMP_STOCK_ANCHOR +#define GIMP_STOCK_CENTER +#define GIMP_STOCK_DUPLICATE +#define GIMP_STOCK_EDIT +#define GIMP_STOCK_RESET +#define GIMP_STOCK_CLOSE +#define GIMP_STOCK_MENU_LEFT +#define GIMP_STOCK_MENU_RIGHT +#define GIMP_STOCK_MOVE_TO_SCREEN +#define GIMP_STOCK_INVERT +#define GIMP_STOCK_LAYER_TO_IMAGESIZE +#define GIMP_STOCK_MERGE_DOWN +#define GIMP_STOCK_NAVIGATION +#define GIMP_STOCK_PASTE_AS_NEW +#define GIMP_STOCK_PASTE_INTO +#define GIMP_STOCK_PATH_STROKE +#define GIMP_STOCK_PLUGIN +#define GIMP_STOCK_QMASK_OFF +#define GIMP_STOCK_QMASK_ON +#define GIMP_STOCK_HISTOGRAM +#define GIMP_STOCK_HISTOGRAM_LINEAR +#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC +#define GIMP_STOCK_RESHOW_FILTER +#define GIMP_STOCK_RESIZE +#define GIMP_STOCK_FLIP_HORIZONTAL +#define GIMP_STOCK_FLIP_VERTICAL +#define GIMP_STOCK_ROTATE_180 +#define GIMP_STOCK_ROTATE_270 +#define GIMP_STOCK_ROTATE_90 +#define GIMP_STOCK_SCALE +#define GIMP_STOCK_LINKED +#define GIMP_STOCK_VISIBLE +#define GIMP_STOCK_LIST +#define GIMP_STOCK_GRID +#define GIMP_STOCK_PORTRAIT +#define GIMP_STOCK_LANDSCAPE +#define GIMP_STOCK_VIDEO +#define GIMP_STOCK_WEB +#define GIMP_STOCK_IMAGE +#define GIMP_STOCK_LAYER +#define GIMP_STOCK_LAYER_MASK +#define GIMP_STOCK_CHANNEL +#define GIMP_STOCK_CHANNEL_RED +#define GIMP_STOCK_CHANNEL_GREEN +#define GIMP_STOCK_CHANNEL_BLUE +#define GIMP_STOCK_CHANNEL_GRAY +#define GIMP_STOCK_CHANNEL_INDEXED +#define GIMP_STOCK_CHANNEL_ALPHA +#define GIMP_STOCK_PATH +#define GIMP_STOCK_TEXT_LAYER +#define GIMP_STOCK_FLOATING_SELECTION +#define GIMP_STOCK_TEMPLATE +#define GIMP_STOCK_IMAGES +#define GIMP_STOCK_LAYERS +#define GIMP_STOCK_CHANNELS +#define GIMP_STOCK_PATHS +#define GIMP_STOCK_INDEXED_PALETTE +#define GIMP_STOCK_SHAPE_CIRCLE +#define GIMP_STOCK_SHAPE_SQUARE +#define GIMP_STOCK_SHAPE_DIAMOND +#define GIMP_STOCK_CAP_BUTT +#define GIMP_STOCK_CAP_ROUND +#define GIMP_STOCK_CAP_SQUARE +#define GIMP_STOCK_JOIN_MITER +#define GIMP_STOCK_JOIN_ROUND +#define GIMP_STOCK_JOIN_BEVEL +#define GIMP_STOCK_SELECTION +#define GIMP_STOCK_SELECTION_ALL +#define GIMP_STOCK_SELECTION_NONE +#define GIMP_STOCK_SELECTION_GROW +#define GIMP_STOCK_SELECTION_SHRINK +#define GIMP_STOCK_SELECTION_BORDER +#define GIMP_STOCK_SELECTION_ADD +#define GIMP_STOCK_SELECTION_SUBTRACT +#define GIMP_STOCK_SELECTION_REPLACE +#define GIMP_STOCK_SELECTION_INTERSECT +#define GIMP_STOCK_SELECTION_STROKE +#define GIMP_STOCK_SELECTION_TO_CHANNEL +#define GIMP_STOCK_SELECTION_TO_PATH +#define GIMP_STOCK_GRADIENT_LINEAR +#define GIMP_STOCK_GRADIENT_BILINEAR +#define GIMP_STOCK_GRADIENT_RADIAL +#define GIMP_STOCK_GRADIENT_SQUARE +#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC +#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC +#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL +#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR +#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED +#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE +#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE +#define GIMP_STOCK_GRAVITY_NORTH_WEST +#define GIMP_STOCK_GRAVITY_NORTH +#define GIMP_STOCK_GRAVITY_NORTH_EAST +#define GIMP_STOCK_GRAVITY_WEST +#define GIMP_STOCK_GRAVITY_EAST +#define GIMP_STOCK_GRAVITY_SOUTH_WEST +#define GIMP_STOCK_GRAVITY_SOUTH +#define GIMP_STOCK_GRAVITY_SOUTH_EAST +#define GIMP_STOCK_CHAR_PICKER +#define GIMP_STOCK_LETTER_SPACING +#define GIMP_STOCK_LINE_SPACING +#define GIMP_STOCK_TEXT_DIR_LTR +#define GIMP_STOCK_TEXT_DIR_RTL +#define GIMP_STOCK_PRINT_RESOLUTION +#define GIMP_STOCK_TOOLS +#define GIMP_STOCK_TOOL_OPTIONS +#define GIMP_STOCK_DEVICE_STATUS +#define GIMP_STOCK_DISPLAY_FILTER +#define GIMP_STOCK_CURVE_FREE +#define GIMP_STOCK_CURVE_SMOOTH +#define GIMP_STOCK_COLOR_PICKER_BLACK +#define GIMP_STOCK_COLOR_PICKER_GRAY +#define GIMP_STOCK_COLOR_PICKER_WHITE +#define GIMP_STOCK_COLOR_TRIANGLE +#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN +#define GIMP_STOCK_CONVERT_GRAYSCALE +#define GIMP_STOCK_CONVERT_INDEXED +#define GIMP_STOCK_CONVERT_RGB +#define GIMP_STOCK_TRANSPARENCY +#define GIMP_STOCK_DEFAULT_COLORS +#define GIMP_STOCK_SWAP_COLORS +#define GIMP_STOCK_UNDO_HISTORY +#define GIMP_STOCK_TOOL_AIRBRUSH +#define GIMP_STOCK_TOOL_BLEND +#define GIMP_STOCK_TOOL_BLUR +#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST +#define GIMP_STOCK_TOOL_BUCKET_FILL +#define GIMP_STOCK_TOOL_BY_COLOR_SELECT +#define GIMP_STOCK_TOOL_CLONE +#define GIMP_STOCK_TOOL_COLOR_BALANCE +#define GIMP_STOCK_TOOL_COLOR_PICKER +#define GIMP_STOCK_TOOL_COLORIZE +#define GIMP_STOCK_TOOL_CROP +#define GIMP_STOCK_TOOL_CURVES +#define GIMP_STOCK_TOOL_DODGE +#define GIMP_STOCK_TOOL_ELLIPSE_SELECT +#define GIMP_STOCK_TOOL_ERASER +#define GIMP_STOCK_TOOL_FLIP +#define GIMP_STOCK_TOOL_FREE_SELECT +#define GIMP_STOCK_TOOL_FUZZY_SELECT +#define GIMP_STOCK_TOOL_HUE_SATURATION +#define GIMP_STOCK_TOOL_INK +#define GIMP_STOCK_TOOL_ISCISSORS +#define GIMP_STOCK_TOOL_LEVELS +#define GIMP_STOCK_TOOL_MEASURE +#define GIMP_STOCK_TOOL_MOVE +#define GIMP_STOCK_TOOL_PAINTBRUSH +#define GIMP_STOCK_TOOL_PATH +#define GIMP_STOCK_TOOL_PENCIL +#define GIMP_STOCK_TOOL_PERSPECTIVE +#define GIMP_STOCK_TOOL_POSTERIZE +#define GIMP_STOCK_TOOL_RECT_SELECT +#define GIMP_STOCK_TOOL_ROTATE +#define GIMP_STOCK_TOOL_SCALE +#define GIMP_STOCK_TOOL_SHEAR +#define GIMP_STOCK_TOOL_SMUDGE +#define GIMP_STOCK_TOOL_TEXT +#define GIMP_STOCK_TOOL_THRESHOLD +#define GIMP_STOCK_TOOL_ZOOM +#define GIMP_STOCK_HCHAIN +#define GIMP_STOCK_HCHAIN_BROKEN +#define GIMP_STOCK_VCHAIN +#define GIMP_STOCK_VCHAIN_BROKEN +#define GIMP_STOCK_TEXTURE +#define GIMP_STOCK_FRAME +#define GIMP_STOCK_ERROR +#define GIMP_STOCK_INFO +#define GIMP_STOCK_QUESTION +#define GIMP_STOCK_WARNING +#define GIMP_STOCK_WILBER +#define GIMP_STOCK_WILBER_EEK +#define GIMP_STOCK_BRUSH +#define GIMP_STOCK_BUFFER +#define GIMP_STOCK_FONT +#define GIMP_STOCK_GRADIENT +#define GIMP_STOCK_PALETTE +#define GIMP_STOCK_PATTERN +#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW @@ -239,14 +239,14 @@ -<anchor id="GIMP-STOCK-ANCHOR--CAPS"/>GIMP_STOCK_ANCHOR +<anchor id="GIMP-STOCK-ANCHOR:CAPS"/>GIMP_STOCK_ANCHOR GIMP_STOCK_ANCHOR#define GIMP_STOCK_ANCHOR "gimp-anchor" -<anchor id="GIMP-STOCK-CENTER--CAPS"/>GIMP_STOCK_CENTER +<anchor id="GIMP-STOCK-CENTER:CAPS"/>GIMP_STOCK_CENTER GIMP_STOCK_CENTER#define GIMP_STOCK_CENTER "gimp-center" @@ -254,35 +254,35 @@ -<anchor id="GIMP-STOCK-DUPLICATE--CAPS"/>GIMP_STOCK_DUPLICATE +<anchor id="GIMP-STOCK-DUPLICATE:CAPS"/>GIMP_STOCK_DUPLICATE GIMP_STOCK_DUPLICATE#define GIMP_STOCK_DUPLICATE "gimp-duplicate" -<anchor id="GIMP-STOCK-EDIT--CAPS"/>GIMP_STOCK_EDIT +<anchor id="GIMP-STOCK-EDIT:CAPS"/>GIMP_STOCK_EDIT GIMP_STOCK_EDIT#define GIMP_STOCK_EDIT "gimp-edit" -<anchor id="GIMP-STOCK-RESET--CAPS"/>GIMP_STOCK_RESET +<anchor id="GIMP-STOCK-RESET:CAPS"/>GIMP_STOCK_RESET GIMP_STOCK_RESET#define GIMP_STOCK_RESET "gimp-reset" -<anchor id="GIMP-STOCK-CLOSE--CAPS"/>GIMP_STOCK_CLOSE +<anchor id="GIMP-STOCK-CLOSE:CAPS"/>GIMP_STOCK_CLOSE GIMP_STOCK_CLOSE#define GIMP_STOCK_CLOSE "gimp-close" -<anchor id="GIMP-STOCK-MENU-LEFT--CAPS"/>GIMP_STOCK_MENU_LEFT +<anchor id="GIMP-STOCK-MENU-LEFT:CAPS"/>GIMP_STOCK_MENU_LEFT GIMP_STOCK_MENU_LEFT#define GIMP_STOCK_MENU_LEFT "gimp-menu-left" @@ -291,7 +291,7 @@ -<anchor id="GIMP-STOCK-MENU-RIGHT--CAPS"/>GIMP_STOCK_MENU_RIGHT +<anchor id="GIMP-STOCK-MENU-RIGHT:CAPS"/>GIMP_STOCK_MENU_RIGHT GIMP_STOCK_MENU_RIGHT#define GIMP_STOCK_MENU_RIGHT "gimp-menu-right" @@ -300,7 +300,7 @@ -<anchor id="GIMP-STOCK-MOVE-TO-SCREEN--CAPS"/>GIMP_STOCK_MOVE_TO_SCREEN +<anchor id="GIMP-STOCK-MOVE-TO-SCREEN:CAPS"/>GIMP_STOCK_MOVE_TO_SCREEN GIMP_STOCK_MOVE_TO_SCREEN#define GIMP_STOCK_MOVE_TO_SCREEN "gimp_move-to-screen" @@ -308,77 +308,77 @@ -<anchor id="GIMP-STOCK-INVERT--CAPS"/>GIMP_STOCK_INVERT +<anchor id="GIMP-STOCK-INVERT:CAPS"/>GIMP_STOCK_INVERT GIMP_STOCK_INVERT#define GIMP_STOCK_INVERT "gimp-invert" -<anchor id="GIMP-STOCK-LAYER-TO-IMAGESIZE--CAPS"/>GIMP_STOCK_LAYER_TO_IMAGESIZE +<anchor id="GIMP-STOCK-LAYER-TO-IMAGESIZE:CAPS"/>GIMP_STOCK_LAYER_TO_IMAGESIZE GIMP_STOCK_LAYER_TO_IMAGESIZE#define GIMP_STOCK_LAYER_TO_IMAGESIZE "gimp-layer-to-imagesize" -<anchor id="GIMP-STOCK-MERGE-DOWN--CAPS"/>GIMP_STOCK_MERGE_DOWN +<anchor id="GIMP-STOCK-MERGE-DOWN:CAPS"/>GIMP_STOCK_MERGE_DOWN GIMP_STOCK_MERGE_DOWN#define GIMP_STOCK_MERGE_DOWN "gimp-merge-down" -<anchor id="GIMP-STOCK-NAVIGATION--CAPS"/>GIMP_STOCK_NAVIGATION +<anchor id="GIMP-STOCK-NAVIGATION:CAPS"/>GIMP_STOCK_NAVIGATION GIMP_STOCK_NAVIGATION#define GIMP_STOCK_NAVIGATION "gimp-navigation" -<anchor id="GIMP-STOCK-PASTE-AS-NEW--CAPS"/>GIMP_STOCK_PASTE_AS_NEW +<anchor id="GIMP-STOCK-PASTE-AS-NEW:CAPS"/>GIMP_STOCK_PASTE_AS_NEW GIMP_STOCK_PASTE_AS_NEW#define GIMP_STOCK_PASTE_AS_NEW "gimp-paste-as-new" -<anchor id="GIMP-STOCK-PASTE-INTO--CAPS"/>GIMP_STOCK_PASTE_INTO +<anchor id="GIMP-STOCK-PASTE-INTO:CAPS"/>GIMP_STOCK_PASTE_INTO GIMP_STOCK_PASTE_INTO#define GIMP_STOCK_PASTE_INTO "gimp-paste-into" -<anchor id="GIMP-STOCK-PATH-STROKE--CAPS"/>GIMP_STOCK_PATH_STROKE +<anchor id="GIMP-STOCK-PATH-STROKE:CAPS"/>GIMP_STOCK_PATH_STROKE GIMP_STOCK_PATH_STROKE#define GIMP_STOCK_PATH_STROKE "gimp-path-stroke" -<anchor id="GIMP-STOCK-PLUGIN--CAPS"/>GIMP_STOCK_PLUGIN +<anchor id="GIMP-STOCK-PLUGIN:CAPS"/>GIMP_STOCK_PLUGIN GIMP_STOCK_PLUGIN#define GIMP_STOCK_PLUGIN "gimp-plugin" -<anchor id="GIMP-STOCK-QMASK-OFF--CAPS"/>GIMP_STOCK_QMASK_OFF +<anchor id="GIMP-STOCK-QMASK-OFF:CAPS"/>GIMP_STOCK_QMASK_OFF GIMP_STOCK_QMASK_OFF#define GIMP_STOCK_QMASK_OFF "gimp-qmask-off" -<anchor id="GIMP-STOCK-QMASK-ON--CAPS"/>GIMP_STOCK_QMASK_ON +<anchor id="GIMP-STOCK-QMASK-ON:CAPS"/>GIMP_STOCK_QMASK_ON GIMP_STOCK_QMASK_ON#define GIMP_STOCK_QMASK_ON "gimp-qmask-on" -<anchor id="GIMP-STOCK-HISTOGRAM--CAPS"/>GIMP_STOCK_HISTOGRAM +<anchor id="GIMP-STOCK-HISTOGRAM:CAPS"/>GIMP_STOCK_HISTOGRAM GIMP_STOCK_HISTOGRAM#define GIMP_STOCK_HISTOGRAM "gimp-histogram" @@ -386,77 +386,77 @@ -<anchor id="GIMP-STOCK-HISTOGRAM-LINEAR--CAPS"/>GIMP_STOCK_HISTOGRAM_LINEAR +<anchor id="GIMP-STOCK-HISTOGRAM-LINEAR:CAPS"/>GIMP_STOCK_HISTOGRAM_LINEAR GIMP_STOCK_HISTOGRAM_LINEAR#define GIMP_STOCK_HISTOGRAM_LINEAR "gimp-histogram-linear" -<anchor id="GIMP-STOCK-HISTOGRAM-LOGARITHMIC--CAPS"/>GIMP_STOCK_HISTOGRAM_LOGARITHMIC +<anchor id="GIMP-STOCK-HISTOGRAM-LOGARITHMIC:CAPS"/>GIMP_STOCK_HISTOGRAM_LOGARITHMIC GIMP_STOCK_HISTOGRAM_LOGARITHMIC#define GIMP_STOCK_HISTOGRAM_LOGARITHMIC "gimp-histogram-logarithmic" -<anchor id="GIMP-STOCK-RESHOW-FILTER--CAPS"/>GIMP_STOCK_RESHOW_FILTER +<anchor id="GIMP-STOCK-RESHOW-FILTER:CAPS"/>GIMP_STOCK_RESHOW_FILTER GIMP_STOCK_RESHOW_FILTER#define GIMP_STOCK_RESHOW_FILTER "gimp-reshow-filter" -<anchor id="GIMP-STOCK-RESIZE--CAPS"/>GIMP_STOCK_RESIZE +<anchor id="GIMP-STOCK-RESIZE:CAPS"/>GIMP_STOCK_RESIZE GIMP_STOCK_RESIZE#define GIMP_STOCK_RESIZE "gimp-resize" -<anchor id="GIMP-STOCK-FLIP-HORIZONTAL--CAPS"/>GIMP_STOCK_FLIP_HORIZONTAL +<anchor id="GIMP-STOCK-FLIP-HORIZONTAL:CAPS"/>GIMP_STOCK_FLIP_HORIZONTAL GIMP_STOCK_FLIP_HORIZONTAL#define GIMP_STOCK_FLIP_HORIZONTAL "gimp-flip-horizontal" -<anchor id="GIMP-STOCK-FLIP-VERTICAL--CAPS"/>GIMP_STOCK_FLIP_VERTICAL +<anchor id="GIMP-STOCK-FLIP-VERTICAL:CAPS"/>GIMP_STOCK_FLIP_VERTICAL GIMP_STOCK_FLIP_VERTICAL#define GIMP_STOCK_FLIP_VERTICAL "gimp-flip-vertical" -<anchor id="GIMP-STOCK-ROTATE-180--CAPS"/>GIMP_STOCK_ROTATE_180 +<anchor id="GIMP-STOCK-ROTATE-180:CAPS"/>GIMP_STOCK_ROTATE_180 GIMP_STOCK_ROTATE_180#define GIMP_STOCK_ROTATE_180 "gimp-rotate-180" -<anchor id="GIMP-STOCK-ROTATE-270--CAPS"/>GIMP_STOCK_ROTATE_270 +<anchor id="GIMP-STOCK-ROTATE-270:CAPS"/>GIMP_STOCK_ROTATE_270 GIMP_STOCK_ROTATE_270#define GIMP_STOCK_ROTATE_270 "gimp-rotate-270" -<anchor id="GIMP-STOCK-ROTATE-90--CAPS"/>GIMP_STOCK_ROTATE_90 +<anchor id="GIMP-STOCK-ROTATE-90:CAPS"/>GIMP_STOCK_ROTATE_90 GIMP_STOCK_ROTATE_90#define GIMP_STOCK_ROTATE_90 "gimp-rotate-90" -<anchor id="GIMP-STOCK-SCALE--CAPS"/>GIMP_STOCK_SCALE +<anchor id="GIMP-STOCK-SCALE:CAPS"/>GIMP_STOCK_SCALE GIMP_STOCK_SCALE#define GIMP_STOCK_SCALE "gimp-scale" -<anchor id="GIMP-STOCK-LINKED--CAPS"/>GIMP_STOCK_LINKED +<anchor id="GIMP-STOCK-LINKED:CAPS"/>GIMP_STOCK_LINKED GIMP_STOCK_LINKED#define GIMP_STOCK_LINKED "gimp-linked" @@ -464,7 +464,7 @@ -<anchor id="GIMP-STOCK-VISIBLE--CAPS"/>GIMP_STOCK_VISIBLE +<anchor id="GIMP-STOCK-VISIBLE:CAPS"/>GIMP_STOCK_VISIBLE GIMP_STOCK_VISIBLE#define GIMP_STOCK_VISIBLE "gimp-visible" @@ -472,35 +472,35 @@ -<anchor id="GIMP-STOCK-LIST--CAPS"/>GIMP_STOCK_LIST +<anchor id="GIMP-STOCK-LIST:CAPS"/>GIMP_STOCK_LIST GIMP_STOCK_LIST#define GIMP_STOCK_LIST "gimp-list" -<anchor id="GIMP-STOCK-GRID--CAPS"/>GIMP_STOCK_GRID +<anchor id="GIMP-STOCK-GRID:CAPS"/>GIMP_STOCK_GRID GIMP_STOCK_GRID#define GIMP_STOCK_GRID "gimp-grid" -<anchor id="GIMP-STOCK-PORTRAIT--CAPS"/>GIMP_STOCK_PORTRAIT +<anchor id="GIMP-STOCK-PORTRAIT:CAPS"/>GIMP_STOCK_PORTRAIT GIMP_STOCK_PORTRAIT#define GIMP_STOCK_PORTRAIT "gimp-portrait" -<anchor id="GIMP-STOCK-LANDSCAPE--CAPS"/>GIMP_STOCK_LANDSCAPE +<anchor id="GIMP-STOCK-LANDSCAPE:CAPS"/>GIMP_STOCK_LANDSCAPE GIMP_STOCK_LANDSCAPE#define GIMP_STOCK_LANDSCAPE "gimp-landscape" -<anchor id="GIMP-STOCK-VIDEO--CAPS"/>GIMP_STOCK_VIDEO +<anchor id="GIMP-STOCK-VIDEO:CAPS"/>GIMP_STOCK_VIDEO GIMP_STOCK_VIDEO#define GIMP_STOCK_VIDEO "gimp-video" @@ -508,7 +508,7 @@ -<anchor id="GIMP-STOCK-WEB--CAPS"/>GIMP_STOCK_WEB +<anchor id="GIMP-STOCK-WEB:CAPS"/>GIMP_STOCK_WEB GIMP_STOCK_WEB#define GIMP_STOCK_WEB "gimp-web" @@ -516,7 +516,7 @@ -<anchor id="GIMP-STOCK-IMAGE--CAPS"/>GIMP_STOCK_IMAGE +<anchor id="GIMP-STOCK-IMAGE:CAPS"/>GIMP_STOCK_IMAGE GIMP_STOCK_IMAGE#define GIMP_STOCK_IMAGE "gimp-image" @@ -526,7 +526,7 @@ -<anchor id="GIMP-STOCK-LAYER--CAPS"/>GIMP_STOCK_LAYER +<anchor id="GIMP-STOCK-LAYER:CAPS"/>GIMP_STOCK_LAYER GIMP_STOCK_LAYER#define GIMP_STOCK_LAYER "gimp-layer" @@ -536,7 +536,7 @@ -<anchor id="GIMP-STOCK-LAYER-MASK--CAPS"/>GIMP_STOCK_LAYER_MASK +<anchor id="GIMP-STOCK-LAYER-MASK:CAPS"/>GIMP_STOCK_LAYER_MASK GIMP_STOCK_LAYER_MASK#define GIMP_STOCK_LAYER_MASK "gimp-layer-mask" @@ -546,7 +546,7 @@ -<anchor id="GIMP-STOCK-CHANNEL--CAPS"/>GIMP_STOCK_CHANNEL +<anchor id="GIMP-STOCK-CHANNEL:CAPS"/>GIMP_STOCK_CHANNEL GIMP_STOCK_CHANNEL#define GIMP_STOCK_CHANNEL "gimp-channel" @@ -556,7 +556,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-RED--CAPS"/>GIMP_STOCK_CHANNEL_RED +<anchor id="GIMP-STOCK-CHANNEL-RED:CAPS"/>GIMP_STOCK_CHANNEL_RED GIMP_STOCK_CHANNEL_RED#define GIMP_STOCK_CHANNEL_RED "gimp-channel-red" @@ -566,7 +566,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-GREEN--CAPS"/>GIMP_STOCK_CHANNEL_GREEN +<anchor id="GIMP-STOCK-CHANNEL-GREEN:CAPS"/>GIMP_STOCK_CHANNEL_GREEN GIMP_STOCK_CHANNEL_GREEN#define GIMP_STOCK_CHANNEL_GREEN "gimp-channel-green" @@ -576,7 +576,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-BLUE--CAPS"/>GIMP_STOCK_CHANNEL_BLUE +<anchor id="GIMP-STOCK-CHANNEL-BLUE:CAPS"/>GIMP_STOCK_CHANNEL_BLUE GIMP_STOCK_CHANNEL_BLUE#define GIMP_STOCK_CHANNEL_BLUE "gimp-channel-blue" @@ -586,7 +586,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-GRAY--CAPS"/>GIMP_STOCK_CHANNEL_GRAY +<anchor id="GIMP-STOCK-CHANNEL-GRAY:CAPS"/>GIMP_STOCK_CHANNEL_GRAY GIMP_STOCK_CHANNEL_GRAY#define GIMP_STOCK_CHANNEL_GRAY "gimp-channel-gray" @@ -596,7 +596,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-INDEXED--CAPS"/>GIMP_STOCK_CHANNEL_INDEXED +<anchor id="GIMP-STOCK-CHANNEL-INDEXED:CAPS"/>GIMP_STOCK_CHANNEL_INDEXED GIMP_STOCK_CHANNEL_INDEXED#define GIMP_STOCK_CHANNEL_INDEXED "gimp-channel-indexed" @@ -606,7 +606,7 @@ -<anchor id="GIMP-STOCK-CHANNEL-ALPHA--CAPS"/>GIMP_STOCK_CHANNEL_ALPHA +<anchor id="GIMP-STOCK-CHANNEL-ALPHA:CAPS"/>GIMP_STOCK_CHANNEL_ALPHA GIMP_STOCK_CHANNEL_ALPHA#define GIMP_STOCK_CHANNEL_ALPHA "gimp-channel-alpha" @@ -616,7 +616,7 @@ -<anchor id="GIMP-STOCK-PATH--CAPS"/>GIMP_STOCK_PATH +<anchor id="GIMP-STOCK-PATH:CAPS"/>GIMP_STOCK_PATH GIMP_STOCK_PATH#define GIMP_STOCK_PATH "gimp-path" @@ -624,7 +624,7 @@ -<anchor id="GIMP-STOCK-TEXT-LAYER--CAPS"/>GIMP_STOCK_TEXT_LAYER +<anchor id="GIMP-STOCK-TEXT-LAYER:CAPS"/>GIMP_STOCK_TEXT_LAYER GIMP_STOCK_TEXT_LAYER#define GIMP_STOCK_TEXT_LAYER "gimp-text-layer" @@ -634,7 +634,7 @@ -<anchor id="GIMP-STOCK-FLOATING-SELECTION--CAPS"/>GIMP_STOCK_FLOATING_SELECTION +<anchor id="GIMP-STOCK-FLOATING-SELECTION:CAPS"/>GIMP_STOCK_FLOATING_SELECTION GIMP_STOCK_FLOATING_SELECTION#define GIMP_STOCK_FLOATING_SELECTION "gimp-floating-selection" @@ -644,7 +644,7 @@ -<anchor id="GIMP-STOCK-TEMPLATE--CAPS"/>GIMP_STOCK_TEMPLATE +<anchor id="GIMP-STOCK-TEMPLATE:CAPS"/>GIMP_STOCK_TEMPLATE GIMP_STOCK_TEMPLATE#define GIMP_STOCK_TEMPLATE "gimp-template" @@ -652,7 +652,7 @@ -<anchor id="GIMP-STOCK-IMAGES--CAPS"/>GIMP_STOCK_IMAGES +<anchor id="GIMP-STOCK-IMAGES:CAPS"/>GIMP_STOCK_IMAGES GIMP_STOCK_IMAGES#define GIMP_STOCK_IMAGES "gimp-images" @@ -660,7 +660,7 @@ -<anchor id="GIMP-STOCK-LAYERS--CAPS"/>GIMP_STOCK_LAYERS +<anchor id="GIMP-STOCK-LAYERS:CAPS"/>GIMP_STOCK_LAYERS GIMP_STOCK_LAYERS#define GIMP_STOCK_LAYERS "gimp-layers" @@ -668,7 +668,7 @@ -<anchor id="GIMP-STOCK-CHANNELS--CAPS"/>GIMP_STOCK_CHANNELS +<anchor id="GIMP-STOCK-CHANNELS:CAPS"/>GIMP_STOCK_CHANNELS GIMP_STOCK_CHANNELS#define GIMP_STOCK_CHANNELS "gimp-channels" @@ -676,7 +676,7 @@ -<anchor id="GIMP-STOCK-PATHS--CAPS"/>GIMP_STOCK_PATHS +<anchor id="GIMP-STOCK-PATHS:CAPS"/>GIMP_STOCK_PATHS GIMP_STOCK_PATHS#define GIMP_STOCK_PATHS "gimp-paths" @@ -684,7 +684,7 @@ -<anchor id="GIMP-STOCK-INDEXED-PALETTE--CAPS"/>GIMP_STOCK_INDEXED_PALETTE +<anchor id="GIMP-STOCK-INDEXED-PALETTE:CAPS"/>GIMP_STOCK_INDEXED_PALETTE GIMP_STOCK_INDEXED_PALETTE#define GIMP_STOCK_INDEXED_PALETTE "gimp-indexed-palette" @@ -692,329 +692,329 @@ -<anchor id="GIMP-STOCK-SHAPE-CIRCLE--CAPS"/>GIMP_STOCK_SHAPE_CIRCLE +<anchor id="GIMP-STOCK-SHAPE-CIRCLE:CAPS"/>GIMP_STOCK_SHAPE_CIRCLE GIMP_STOCK_SHAPE_CIRCLE#define GIMP_STOCK_SHAPE_CIRCLE "gimp-shape-circle" -<anchor id="GIMP-STOCK-SHAPE-SQUARE--CAPS"/>GIMP_STOCK_SHAPE_SQUARE +<anchor id="GIMP-STOCK-SHAPE-SQUARE:CAPS"/>GIMP_STOCK_SHAPE_SQUARE GIMP_STOCK_SHAPE_SQUARE#define GIMP_STOCK_SHAPE_SQUARE "gimp-shape-square" -<anchor id="GIMP-STOCK-SHAPE-DIAMOND--CAPS"/>GIMP_STOCK_SHAPE_DIAMOND +<anchor id="GIMP-STOCK-SHAPE-DIAMOND:CAPS"/>GIMP_STOCK_SHAPE_DIAMOND GIMP_STOCK_SHAPE_DIAMOND#define GIMP_STOCK_SHAPE_DIAMOND "gimp-shape-diamond" -<anchor id="GIMP-STOCK-CAP-BUTT--CAPS"/>GIMP_STOCK_CAP_BUTT +<anchor id="GIMP-STOCK-CAP-BUTT:CAPS"/>GIMP_STOCK_CAP_BUTT GIMP_STOCK_CAP_BUTT#define GIMP_STOCK_CAP_BUTT "gimp-cap-butt" -<anchor id="GIMP-STOCK-CAP-ROUND--CAPS"/>GIMP_STOCK_CAP_ROUND +<anchor id="GIMP-STOCK-CAP-ROUND:CAPS"/>GIMP_STOCK_CAP_ROUND GIMP_STOCK_CAP_ROUND#define GIMP_STOCK_CAP_ROUND "gimp-cap-round" -<anchor id="GIMP-STOCK-CAP-SQUARE--CAPS"/>GIMP_STOCK_CAP_SQUARE +<anchor id="GIMP-STOCK-CAP-SQUARE:CAPS"/>GIMP_STOCK_CAP_SQUARE GIMP_STOCK_CAP_SQUARE#define GIMP_STOCK_CAP_SQUARE "gimp-cap-square" -<anchor id="GIMP-STOCK-JOIN-MITER--CAPS"/>GIMP_STOCK_JOIN_MITER +<anchor id="GIMP-STOCK-JOIN-MITER:CAPS"/>GIMP_STOCK_JOIN_MITER GIMP_STOCK_JOIN_MITER#define GIMP_STOCK_JOIN_MITER "gimp-join-miter" -<anchor id="GIMP-STOCK-JOIN-ROUND--CAPS"/>GIMP_STOCK_JOIN_ROUND +<anchor id="GIMP-STOCK-JOIN-ROUND:CAPS"/>GIMP_STOCK_JOIN_ROUND GIMP_STOCK_JOIN_ROUND#define GIMP_STOCK_JOIN_ROUND "gimp-join-round" -<anchor id="GIMP-STOCK-JOIN-BEVEL--CAPS"/>GIMP_STOCK_JOIN_BEVEL +<anchor id="GIMP-STOCK-JOIN-BEVEL:CAPS"/>GIMP_STOCK_JOIN_BEVEL GIMP_STOCK_JOIN_BEVEL#define GIMP_STOCK_JOIN_BEVEL "gimp-join-bevel" -<anchor id="GIMP-STOCK-SELECTION--CAPS"/>GIMP_STOCK_SELECTION +<anchor id="GIMP-STOCK-SELECTION:CAPS"/>GIMP_STOCK_SELECTION GIMP_STOCK_SELECTION#define GIMP_STOCK_SELECTION "gimp-selection" -<anchor id="GIMP-STOCK-SELECTION-ALL--CAPS"/>GIMP_STOCK_SELECTION_ALL +<anchor id="GIMP-STOCK-SELECTION-ALL:CAPS"/>GIMP_STOCK_SELECTION_ALL GIMP_STOCK_SELECTION_ALL#define GIMP_STOCK_SELECTION_ALL "gimp-selection-all" -<anchor id="GIMP-STOCK-SELECTION-NONE--CAPS"/>GIMP_STOCK_SELECTION_NONE +<anchor id="GIMP-STOCK-SELECTION-NONE:CAPS"/>GIMP_STOCK_SELECTION_NONE GIMP_STOCK_SELECTION_NONE#define GIMP_STOCK_SELECTION_NONE "gimp-selection-none" -<anchor id="GIMP-STOCK-SELECTION-GROW--CAPS"/>GIMP_STOCK_SELECTION_GROW +<anchor id="GIMP-STOCK-SELECTION-GROW:CAPS"/>GIMP_STOCK_SELECTION_GROW GIMP_STOCK_SELECTION_GROW#define GIMP_STOCK_SELECTION_GROW "gimp-selection-grow" -<anchor id="GIMP-STOCK-SELECTION-SHRINK--CAPS"/>GIMP_STOCK_SELECTION_SHRINK +<anchor id="GIMP-STOCK-SELECTION-SHRINK:CAPS"/>GIMP_STOCK_SELECTION_SHRINK GIMP_STOCK_SELECTION_SHRINK#define GIMP_STOCK_SELECTION_SHRINK "gimp-selection-shrink" -<anchor id="GIMP-STOCK-SELECTION-BORDER--CAPS"/>GIMP_STOCK_SELECTION_BORDER +<anchor id="GIMP-STOCK-SELECTION-BORDER:CAPS"/>GIMP_STOCK_SELECTION_BORDER GIMP_STOCK_SELECTION_BORDER#define GIMP_STOCK_SELECTION_BORDER "gimp-selection-border" -<anchor id="GIMP-STOCK-SELECTION-ADD--CAPS"/>GIMP_STOCK_SELECTION_ADD +<anchor id="GIMP-STOCK-SELECTION-ADD:CAPS"/>GIMP_STOCK_SELECTION_ADD GIMP_STOCK_SELECTION_ADD#define GIMP_STOCK_SELECTION_ADD "gimp-selection-add" -<anchor id="GIMP-STOCK-SELECTION-SUBTRACT--CAPS"/>GIMP_STOCK_SELECTION_SUBTRACT +<anchor id="GIMP-STOCK-SELECTION-SUBTRACT:CAPS"/>GIMP_STOCK_SELECTION_SUBTRACT GIMP_STOCK_SELECTION_SUBTRACT#define GIMP_STOCK_SELECTION_SUBTRACT "gimp-selection-subtract" -<anchor id="GIMP-STOCK-SELECTION-REPLACE--CAPS"/>GIMP_STOCK_SELECTION_REPLACE +<anchor id="GIMP-STOCK-SELECTION-REPLACE:CAPS"/>GIMP_STOCK_SELECTION_REPLACE GIMP_STOCK_SELECTION_REPLACE#define GIMP_STOCK_SELECTION_REPLACE "gimp-selection-replace" -<anchor id="GIMP-STOCK-SELECTION-INTERSECT--CAPS"/>GIMP_STOCK_SELECTION_INTERSECT +<anchor id="GIMP-STOCK-SELECTION-INTERSECT:CAPS"/>GIMP_STOCK_SELECTION_INTERSECT GIMP_STOCK_SELECTION_INTERSECT#define GIMP_STOCK_SELECTION_INTERSECT "gimp-selection-intersect" -<anchor id="GIMP-STOCK-SELECTION-STROKE--CAPS"/>GIMP_STOCK_SELECTION_STROKE +<anchor id="GIMP-STOCK-SELECTION-STROKE:CAPS"/>GIMP_STOCK_SELECTION_STROKE GIMP_STOCK_SELECTION_STROKE#define GIMP_STOCK_SELECTION_STROKE "gimp-selection-stroke" -<anchor id="GIMP-STOCK-SELECTION-TO-CHANNEL--CAPS"/>GIMP_STOCK_SELECTION_TO_CHANNEL +<anchor id="GIMP-STOCK-SELECTION-TO-CHANNEL:CAPS"/>GIMP_STOCK_SELECTION_TO_CHANNEL GIMP_STOCK_SELECTION_TO_CHANNEL#define GIMP_STOCK_SELECTION_TO_CHANNEL "gimp-selection-to-channel" -<anchor id="GIMP-STOCK-SELECTION-TO-PATH--CAPS"/>GIMP_STOCK_SELECTION_TO_PATH +<anchor id="GIMP-STOCK-SELECTION-TO-PATH:CAPS"/>GIMP_STOCK_SELECTION_TO_PATH GIMP_STOCK_SELECTION_TO_PATH#define GIMP_STOCK_SELECTION_TO_PATH "gimp-selection-to-path" -<anchor id="GIMP-STOCK-GRADIENT-LINEAR--CAPS"/>GIMP_STOCK_GRADIENT_LINEAR +<anchor id="GIMP-STOCK-GRADIENT-LINEAR:CAPS"/>GIMP_STOCK_GRADIENT_LINEAR GIMP_STOCK_GRADIENT_LINEAR#define GIMP_STOCK_GRADIENT_LINEAR "gimp-gradient-linear" -<anchor id="GIMP-STOCK-GRADIENT-BILINEAR--CAPS"/>GIMP_STOCK_GRADIENT_BILINEAR +<anchor id="GIMP-STOCK-GRADIENT-BILINEAR:CAPS"/>GIMP_STOCK_GRADIENT_BILINEAR GIMP_STOCK_GRADIENT_BILINEAR#define GIMP_STOCK_GRADIENT_BILINEAR "gimp-gradient-bilinear" -<anchor id="GIMP-STOCK-GRADIENT-RADIAL--CAPS"/>GIMP_STOCK_GRADIENT_RADIAL +<anchor id="GIMP-STOCK-GRADIENT-RADIAL:CAPS"/>GIMP_STOCK_GRADIENT_RADIAL GIMP_STOCK_GRADIENT_RADIAL#define GIMP_STOCK_GRADIENT_RADIAL "gimp-gradient-radial" -<anchor id="GIMP-STOCK-GRADIENT-SQUARE--CAPS"/>GIMP_STOCK_GRADIENT_SQUARE +<anchor id="GIMP-STOCK-GRADIENT-SQUARE:CAPS"/>GIMP_STOCK_GRADIENT_SQUARE GIMP_STOCK_GRADIENT_SQUARE#define GIMP_STOCK_GRADIENT_SQUARE "gimp-gradient-square" -<anchor id="GIMP-STOCK-GRADIENT-CONICAL-SYMMETRIC--CAPS"/>GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC +<anchor id="GIMP-STOCK-GRADIENT-CONICAL-SYMMETRIC:CAPS"/>GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC#define GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC "gimp-gradient-conical-symmetric" -<anchor id="GIMP-STOCK-GRADIENT-CONICAL-ASYMMETRIC--CAPS"/>GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC +<anchor id="GIMP-STOCK-GRADIENT-CONICAL-ASYMMETRIC:CAPS"/>GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC#define GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC "gimp-gradient-conical-asymmetric" -<anchor id="GIMP-STOCK-GRADIENT-SHAPEBURST-SPHERICAL--CAPS"/>GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL +<anchor id="GIMP-STOCK-GRADIENT-SHAPEBURST-SPHERICAL:CAPS"/>GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL#define GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL "gimp-gradient-shapeburst-spherical" -<anchor id="GIMP-STOCK-GRADIENT-SHAPEBURST-ANGULAR--CAPS"/>GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR +<anchor id="GIMP-STOCK-GRADIENT-SHAPEBURST-ANGULAR:CAPS"/>GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR#define GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR "gimp-gradient-shapeburst-angular" -<anchor id="GIMP-STOCK-GRADIENT-SHAPEBURST-DIMPLED--CAPS"/>GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED +<anchor id="GIMP-STOCK-GRADIENT-SHAPEBURST-DIMPLED:CAPS"/>GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED#define GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED "gimp-gradient-shapeburst-dimpled" -<anchor id="GIMP-STOCK-GRADIENT-SPIRAL-CLOCKWISE--CAPS"/>GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE +<anchor id="GIMP-STOCK-GRADIENT-SPIRAL-CLOCKWISE:CAPS"/>GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE#define GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE "gimp-gradient-spiral-clockwise" -<anchor id="GIMP-STOCK-GRADIENT-SPIRAL-ANTICLOCKWISE--CAPS"/>GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE +<anchor id="GIMP-STOCK-GRADIENT-SPIRAL-ANTICLOCKWISE:CAPS"/>GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE#define GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE "gimp-gradient-spiral-anticlockwise" -<anchor id="GIMP-STOCK-GRAVITY-NORTH-WEST--CAPS"/>GIMP_STOCK_GRAVITY_NORTH_WEST +<anchor id="GIMP-STOCK-GRAVITY-NORTH-WEST:CAPS"/>GIMP_STOCK_GRAVITY_NORTH_WEST GIMP_STOCK_GRAVITY_NORTH_WEST#define GIMP_STOCK_GRAVITY_NORTH_WEST "gimp-gravity-north-west" -<anchor id="GIMP-STOCK-GRAVITY-NORTH--CAPS"/>GIMP_STOCK_GRAVITY_NORTH +<anchor id="GIMP-STOCK-GRAVITY-NORTH:CAPS"/>GIMP_STOCK_GRAVITY_NORTH GIMP_STOCK_GRAVITY_NORTH#define GIMP_STOCK_GRAVITY_NORTH "gimp-gravity-north" -<anchor id="GIMP-STOCK-GRAVITY-NORTH-EAST--CAPS"/>GIMP_STOCK_GRAVITY_NORTH_EAST +<anchor id="GIMP-STOCK-GRAVITY-NORTH-EAST:CAPS"/>GIMP_STOCK_GRAVITY_NORTH_EAST GIMP_STOCK_GRAVITY_NORTH_EAST#define GIMP_STOCK_GRAVITY_NORTH_EAST "gimp-gravity-north-east" -<anchor id="GIMP-STOCK-GRAVITY-WEST--CAPS"/>GIMP_STOCK_GRAVITY_WEST +<anchor id="GIMP-STOCK-GRAVITY-WEST:CAPS"/>GIMP_STOCK_GRAVITY_WEST GIMP_STOCK_GRAVITY_WEST#define GIMP_STOCK_GRAVITY_WEST "gimp-gravity-west" -<anchor id="GIMP-STOCK-GRAVITY-EAST--CAPS"/>GIMP_STOCK_GRAVITY_EAST +<anchor id="GIMP-STOCK-GRAVITY-EAST:CAPS"/>GIMP_STOCK_GRAVITY_EAST GIMP_STOCK_GRAVITY_EAST#define GIMP_STOCK_GRAVITY_EAST "gimp-gravity-east" -<anchor id="GIMP-STOCK-GRAVITY-SOUTH-WEST--CAPS"/>GIMP_STOCK_GRAVITY_SOUTH_WEST +<anchor id="GIMP-STOCK-GRAVITY-SOUTH-WEST:CAPS"/>GIMP_STOCK_GRAVITY_SOUTH_WEST GIMP_STOCK_GRAVITY_SOUTH_WEST#define GIMP_STOCK_GRAVITY_SOUTH_WEST "gimp-gravity-south-west" -<anchor id="GIMP-STOCK-GRAVITY-SOUTH--CAPS"/>GIMP_STOCK_GRAVITY_SOUTH +<anchor id="GIMP-STOCK-GRAVITY-SOUTH:CAPS"/>GIMP_STOCK_GRAVITY_SOUTH GIMP_STOCK_GRAVITY_SOUTH#define GIMP_STOCK_GRAVITY_SOUTH "gimp-gravity-south" -<anchor id="GIMP-STOCK-GRAVITY-SOUTH-EAST--CAPS"/>GIMP_STOCK_GRAVITY_SOUTH_EAST +<anchor id="GIMP-STOCK-GRAVITY-SOUTH-EAST:CAPS"/>GIMP_STOCK_GRAVITY_SOUTH_EAST GIMP_STOCK_GRAVITY_SOUTH_EAST#define GIMP_STOCK_GRAVITY_SOUTH_EAST "gimp-gravity-south-east" -<anchor id="GIMP-STOCK-CHAR-PICKER--CAPS"/>GIMP_STOCK_CHAR_PICKER +<anchor id="GIMP-STOCK-CHAR-PICKER:CAPS"/>GIMP_STOCK_CHAR_PICKER GIMP_STOCK_CHAR_PICKER#define GIMP_STOCK_CHAR_PICKER "gimp-char-picker" -<anchor id="GIMP-STOCK-LETTER-SPACING--CAPS"/>GIMP_STOCK_LETTER_SPACING +<anchor id="GIMP-STOCK-LETTER-SPACING:CAPS"/>GIMP_STOCK_LETTER_SPACING GIMP_STOCK_LETTER_SPACING#define GIMP_STOCK_LETTER_SPACING "gimp-letter-spacing" -<anchor id="GIMP-STOCK-LINE-SPACING--CAPS"/>GIMP_STOCK_LINE_SPACING +<anchor id="GIMP-STOCK-LINE-SPACING:CAPS"/>GIMP_STOCK_LINE_SPACING GIMP_STOCK_LINE_SPACING#define GIMP_STOCK_LINE_SPACING "gimp-line-spacing" -<anchor id="GIMP-STOCK-TEXT-DIR-LTR--CAPS"/>GIMP_STOCK_TEXT_DIR_LTR +<anchor id="GIMP-STOCK-TEXT-DIR-LTR:CAPS"/>GIMP_STOCK_TEXT_DIR_LTR GIMP_STOCK_TEXT_DIR_LTR#define GIMP_STOCK_TEXT_DIR_LTR "gimp-text-dir-ltr" -<anchor id="GIMP-STOCK-TEXT-DIR-RTL--CAPS"/>GIMP_STOCK_TEXT_DIR_RTL +<anchor id="GIMP-STOCK-TEXT-DIR-RTL:CAPS"/>GIMP_STOCK_TEXT_DIR_RTL GIMP_STOCK_TEXT_DIR_RTL#define GIMP_STOCK_TEXT_DIR_RTL "gimp-text-dir-rtl" -<anchor id="GIMP-STOCK-PRINT-RESOLUTION--CAPS"/>GIMP_STOCK_PRINT_RESOLUTION +<anchor id="GIMP-STOCK-PRINT-RESOLUTION:CAPS"/>GIMP_STOCK_PRINT_RESOLUTION GIMP_STOCK_PRINT_RESOLUTION#define GIMP_STOCK_PRINT_RESOLUTION "gimp-print-resolution" @@ -1022,7 +1022,7 @@ -<anchor id="GIMP-STOCK-TOOLS--CAPS"/>GIMP_STOCK_TOOLS +<anchor id="GIMP-STOCK-TOOLS:CAPS"/>GIMP_STOCK_TOOLS GIMP_STOCK_TOOLS#define GIMP_STOCK_TOOLS "gimp-tools" @@ -1030,7 +1030,7 @@ -<anchor id="GIMP-STOCK-TOOL-OPTIONS--CAPS"/>GIMP_STOCK_TOOL_OPTIONS +<anchor id="GIMP-STOCK-TOOL-OPTIONS:CAPS"/>GIMP_STOCK_TOOL_OPTIONS GIMP_STOCK_TOOL_OPTIONS#define GIMP_STOCK_TOOL_OPTIONS "gimp-tool-options" @@ -1038,7 +1038,7 @@ -<anchor id="GIMP-STOCK-DEVICE-STATUS--CAPS"/>GIMP_STOCK_DEVICE_STATUS +<anchor id="GIMP-STOCK-DEVICE-STATUS:CAPS"/>GIMP_STOCK_DEVICE_STATUS GIMP_STOCK_DEVICE_STATUS#define GIMP_STOCK_DEVICE_STATUS "gimp-device-status" @@ -1046,7 +1046,7 @@ -<anchor id="GIMP-STOCK-DISPLAY-FILTER--CAPS"/>GIMP_STOCK_DISPLAY_FILTER +<anchor id="GIMP-STOCK-DISPLAY-FILTER:CAPS"/>GIMP_STOCK_DISPLAY_FILTER GIMP_STOCK_DISPLAY_FILTER#define GIMP_STOCK_DISPLAY_FILTER "gimp-display-filter" @@ -1054,105 +1054,105 @@ -<anchor id="GIMP-STOCK-CURVE-FREE--CAPS"/>GIMP_STOCK_CURVE_FREE +<anchor id="GIMP-STOCK-CURVE-FREE:CAPS"/>GIMP_STOCK_CURVE_FREE GIMP_STOCK_CURVE_FREE#define GIMP_STOCK_CURVE_FREE "gimp-curve-free" -<anchor id="GIMP-STOCK-CURVE-SMOOTH--CAPS"/>GIMP_STOCK_CURVE_SMOOTH +<anchor id="GIMP-STOCK-CURVE-SMOOTH:CAPS"/>GIMP_STOCK_CURVE_SMOOTH GIMP_STOCK_CURVE_SMOOTH#define GIMP_STOCK_CURVE_SMOOTH "gimp-curve-smooth" -<anchor id="GIMP-STOCK-COLOR-PICKER-BLACK--CAPS"/>GIMP_STOCK_COLOR_PICKER_BLACK +<anchor id="GIMP-STOCK-COLOR-PICKER-BLACK:CAPS"/>GIMP_STOCK_COLOR_PICKER_BLACK GIMP_STOCK_COLOR_PICKER_BLACK#define GIMP_STOCK_COLOR_PICKER_BLACK "gimp-color-picker-black" -<anchor id="GIMP-STOCK-COLOR-PICKER-GRAY--CAPS"/>GIMP_STOCK_COLOR_PICKER_GRAY +<anchor id="GIMP-STOCK-COLOR-PICKER-GRAY:CAPS"/>GIMP_STOCK_COLOR_PICKER_GRAY GIMP_STOCK_COLOR_PICKER_GRAY#define GIMP_STOCK_COLOR_PICKER_GRAY "gimp-color-picker-gray" -<anchor id="GIMP-STOCK-COLOR-PICKER-WHITE--CAPS"/>GIMP_STOCK_COLOR_PICKER_WHITE +<anchor id="GIMP-STOCK-COLOR-PICKER-WHITE:CAPS"/>GIMP_STOCK_COLOR_PICKER_WHITE GIMP_STOCK_COLOR_PICKER_WHITE#define GIMP_STOCK_COLOR_PICKER_WHITE "gimp-color-picker-white" -<anchor id="GIMP-STOCK-COLOR-TRIANGLE--CAPS"/>GIMP_STOCK_COLOR_TRIANGLE +<anchor id="GIMP-STOCK-COLOR-TRIANGLE:CAPS"/>GIMP_STOCK_COLOR_TRIANGLE GIMP_STOCK_COLOR_TRIANGLE#define GIMP_STOCK_COLOR_TRIANGLE "gimp-color-triangle" -<anchor id="GIMP-STOCK-COLOR-PICK-FROM-SCREEN--CAPS"/>GIMP_STOCK_COLOR_PICK_FROM_SCREEN +<anchor id="GIMP-STOCK-COLOR-PICK-FROM-SCREEN:CAPS"/>GIMP_STOCK_COLOR_PICK_FROM_SCREEN GIMP_STOCK_COLOR_PICK_FROM_SCREEN#define GIMP_STOCK_COLOR_PICK_FROM_SCREEN "gimp-color-pick-from-screen" -<anchor id="GIMP-STOCK-CONVERT-GRAYSCALE--CAPS"/>GIMP_STOCK_CONVERT_GRAYSCALE +<anchor id="GIMP-STOCK-CONVERT-GRAYSCALE:CAPS"/>GIMP_STOCK_CONVERT_GRAYSCALE GIMP_STOCK_CONVERT_GRAYSCALE#define GIMP_STOCK_CONVERT_GRAYSCALE "gimp-convert-grayscale" -<anchor id="GIMP-STOCK-CONVERT-INDEXED--CAPS"/>GIMP_STOCK_CONVERT_INDEXED +<anchor id="GIMP-STOCK-CONVERT-INDEXED:CAPS"/>GIMP_STOCK_CONVERT_INDEXED GIMP_STOCK_CONVERT_INDEXED#define GIMP_STOCK_CONVERT_INDEXED "gimp-convert-indexed" -<anchor id="GIMP-STOCK-CONVERT-RGB--CAPS"/>GIMP_STOCK_CONVERT_RGB +<anchor id="GIMP-STOCK-CONVERT-RGB:CAPS"/>GIMP_STOCK_CONVERT_RGB GIMP_STOCK_CONVERT_RGB#define GIMP_STOCK_CONVERT_RGB "gimp-convert-rgb" -<anchor id="GIMP-STOCK-TRANSPARENCY--CAPS"/>GIMP_STOCK_TRANSPARENCY +<anchor id="GIMP-STOCK-TRANSPARENCY:CAPS"/>GIMP_STOCK_TRANSPARENCY GIMP_STOCK_TRANSPARENCY#define GIMP_STOCK_TRANSPARENCY "gimp-transparency" -<anchor id="GIMP-STOCK-DEFAULT-COLORS--CAPS"/>GIMP_STOCK_DEFAULT_COLORS +<anchor id="GIMP-STOCK-DEFAULT-COLORS:CAPS"/>GIMP_STOCK_DEFAULT_COLORS GIMP_STOCK_DEFAULT_COLORS#define GIMP_STOCK_DEFAULT_COLORS "gimp-default-colors" -<anchor id="GIMP-STOCK-SWAP-COLORS--CAPS"/>GIMP_STOCK_SWAP_COLORS +<anchor id="GIMP-STOCK-SWAP-COLORS:CAPS"/>GIMP_STOCK_SWAP_COLORS GIMP_STOCK_SWAP_COLORS#define GIMP_STOCK_SWAP_COLORS "gimp-swap-colors" -<anchor id="GIMP-STOCK-UNDO-HISTORY--CAPS"/>GIMP_STOCK_UNDO_HISTORY +<anchor id="GIMP-STOCK-UNDO-HISTORY:CAPS"/>GIMP_STOCK_UNDO_HISTORY GIMP_STOCK_UNDO_HISTORY#define GIMP_STOCK_UNDO_HISTORY "gimp-undo-history" -<anchor id="GIMP-STOCK-TOOL-AIRBRUSH--CAPS"/>GIMP_STOCK_TOOL_AIRBRUSH +<anchor id="GIMP-STOCK-TOOL-AIRBRUSH:CAPS"/>GIMP_STOCK_TOOL_AIRBRUSH GIMP_STOCK_TOOL_AIRBRUSH#define GIMP_STOCK_TOOL_AIRBRUSH "gimp-tool-airbrush" @@ -1160,7 +1160,7 @@ -<anchor id="GIMP-STOCK-TOOL-BLEND--CAPS"/>GIMP_STOCK_TOOL_BLEND +<anchor id="GIMP-STOCK-TOOL-BLEND:CAPS"/>GIMP_STOCK_TOOL_BLEND GIMP_STOCK_TOOL_BLEND#define GIMP_STOCK_TOOL_BLEND "gimp-tool-blend" @@ -1168,7 +1168,7 @@ -<anchor id="GIMP-STOCK-TOOL-BLUR--CAPS"/>GIMP_STOCK_TOOL_BLUR +<anchor id="GIMP-STOCK-TOOL-BLUR:CAPS"/>GIMP_STOCK_TOOL_BLUR GIMP_STOCK_TOOL_BLUR#define GIMP_STOCK_TOOL_BLUR "gimp-tool-blur" @@ -1176,7 +1176,7 @@ -<anchor id="GIMP-STOCK-TOOL-BRIGHTNESS-CONTRAST--CAPS"/>GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST +<anchor id="GIMP-STOCK-TOOL-BRIGHTNESS-CONTRAST:CAPS"/>GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST#define GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST "gimp-tool-brightness-contrast" @@ -1184,7 +1184,7 @@ -<anchor id="GIMP-STOCK-TOOL-BUCKET-FILL--CAPS"/>GIMP_STOCK_TOOL_BUCKET_FILL +<anchor id="GIMP-STOCK-TOOL-BUCKET-FILL:CAPS"/>GIMP_STOCK_TOOL_BUCKET_FILL GIMP_STOCK_TOOL_BUCKET_FILL#define GIMP_STOCK_TOOL_BUCKET_FILL "gimp-tool-bucket-fill" @@ -1192,7 +1192,7 @@ -<anchor id="GIMP-STOCK-TOOL-BY-COLOR-SELECT--CAPS"/>GIMP_STOCK_TOOL_BY_COLOR_SELECT +<anchor id="GIMP-STOCK-TOOL-BY-COLOR-SELECT:CAPS"/>GIMP_STOCK_TOOL_BY_COLOR_SELECT GIMP_STOCK_TOOL_BY_COLOR_SELECT#define GIMP_STOCK_TOOL_BY_COLOR_SELECT "gimp-tool-by-color-select" @@ -1200,7 +1200,7 @@ -<anchor id="GIMP-STOCK-TOOL-CLONE--CAPS"/>GIMP_STOCK_TOOL_CLONE +<anchor id="GIMP-STOCK-TOOL-CLONE:CAPS"/>GIMP_STOCK_TOOL_CLONE GIMP_STOCK_TOOL_CLONE#define GIMP_STOCK_TOOL_CLONE "gimp-tool-clone" @@ -1208,7 +1208,7 @@ -<anchor id="GIMP-STOCK-TOOL-COLOR-BALANCE--CAPS"/>GIMP_STOCK_TOOL_COLOR_BALANCE +<anchor id="GIMP-STOCK-TOOL-COLOR-BALANCE:CAPS"/>GIMP_STOCK_TOOL_COLOR_BALANCE GIMP_STOCK_TOOL_COLOR_BALANCE#define GIMP_STOCK_TOOL_COLOR_BALANCE "gimp-tool-color-balance" @@ -1216,7 +1216,7 @@ -<anchor id="GIMP-STOCK-TOOL-COLOR-PICKER--CAPS"/>GIMP_STOCK_TOOL_COLOR_PICKER +<anchor id="GIMP-STOCK-TOOL-COLOR-PICKER:CAPS"/>GIMP_STOCK_TOOL_COLOR_PICKER GIMP_STOCK_TOOL_COLOR_PICKER#define GIMP_STOCK_TOOL_COLOR_PICKER "gimp-tool-color-picker" @@ -1224,7 +1224,7 @@ -<anchor id="GIMP-STOCK-TOOL-COLORIZE--CAPS"/>GIMP_STOCK_TOOL_COLORIZE +<anchor id="GIMP-STOCK-TOOL-COLORIZE:CAPS"/>GIMP_STOCK_TOOL_COLORIZE GIMP_STOCK_TOOL_COLORIZE#define GIMP_STOCK_TOOL_COLORIZE "gimp-tool-colorize" @@ -1232,7 +1232,7 @@ -<anchor id="GIMP-STOCK-TOOL-CROP--CAPS"/>GIMP_STOCK_TOOL_CROP +<anchor id="GIMP-STOCK-TOOL-CROP:CAPS"/>GIMP_STOCK_TOOL_CROP GIMP_STOCK_TOOL_CROP#define GIMP_STOCK_TOOL_CROP "gimp-tool-crop" @@ -1240,7 +1240,7 @@ -<anchor id="GIMP-STOCK-TOOL-CURVES--CAPS"/>GIMP_STOCK_TOOL_CURVES +<anchor id="GIMP-STOCK-TOOL-CURVES:CAPS"/>GIMP_STOCK_TOOL_CURVES GIMP_STOCK_TOOL_CURVES#define GIMP_STOCK_TOOL_CURVES "gimp-tool-curves" @@ -1248,7 +1248,7 @@ -<anchor id="GIMP-STOCK-TOOL-DODGE--CAPS"/>GIMP_STOCK_TOOL_DODGE +<anchor id="GIMP-STOCK-TOOL-DODGE:CAPS"/>GIMP_STOCK_TOOL_DODGE GIMP_STOCK_TOOL_DODGE#define GIMP_STOCK_TOOL_DODGE "gimp-tool-dodge" @@ -1256,7 +1256,7 @@ -<anchor id="GIMP-STOCK-TOOL-ELLIPSE-SELECT--CAPS"/>GIMP_STOCK_TOOL_ELLIPSE_SELECT +<anchor id="GIMP-STOCK-TOOL-ELLIPSE-SELECT:CAPS"/>GIMP_STOCK_TOOL_ELLIPSE_SELECT GIMP_STOCK_TOOL_ELLIPSE_SELECT#define GIMP_STOCK_TOOL_ELLIPSE_SELECT "gimp-tool-ellipse-select" @@ -1264,7 +1264,7 @@ -<anchor id="GIMP-STOCK-TOOL-ERASER--CAPS"/>GIMP_STOCK_TOOL_ERASER +<anchor id="GIMP-STOCK-TOOL-ERASER:CAPS"/>GIMP_STOCK_TOOL_ERASER GIMP_STOCK_TOOL_ERASER#define GIMP_STOCK_TOOL_ERASER "gimp-tool-eraser" @@ -1272,7 +1272,7 @@ -<anchor id="GIMP-STOCK-TOOL-FLIP--CAPS"/>GIMP_STOCK_TOOL_FLIP +<anchor id="GIMP-STOCK-TOOL-FLIP:CAPS"/>GIMP_STOCK_TOOL_FLIP GIMP_STOCK_TOOL_FLIP#define GIMP_STOCK_TOOL_FLIP "gimp-tool-flip" @@ -1280,7 +1280,7 @@ -<anchor id="GIMP-STOCK-TOOL-FREE-SELECT--CAPS"/>GIMP_STOCK_TOOL_FREE_SELECT +<anchor id="GIMP-STOCK-TOOL-FREE-SELECT:CAPS"/>GIMP_STOCK_TOOL_FREE_SELECT GIMP_STOCK_TOOL_FREE_SELECT#define GIMP_STOCK_TOOL_FREE_SELECT "gimp-tool-free-select" @@ -1288,7 +1288,7 @@ -<anchor id="GIMP-STOCK-TOOL-FUZZY-SELECT--CAPS"/>GIMP_STOCK_TOOL_FUZZY_SELECT +<anchor id="GIMP-STOCK-TOOL-FUZZY-SELECT:CAPS"/>GIMP_STOCK_TOOL_FUZZY_SELECT GIMP_STOCK_TOOL_FUZZY_SELECT#define GIMP_STOCK_TOOL_FUZZY_SELECT "gimp-tool-fuzzy-select" @@ -1296,7 +1296,7 @@ -<anchor id="GIMP-STOCK-TOOL-HUE-SATURATION--CAPS"/>GIMP_STOCK_TOOL_HUE_SATURATION +<anchor id="GIMP-STOCK-TOOL-HUE-SATURATION:CAPS"/>GIMP_STOCK_TOOL_HUE_SATURATION GIMP_STOCK_TOOL_HUE_SATURATION#define GIMP_STOCK_TOOL_HUE_SATURATION "gimp-tool-hue-saturation" @@ -1304,7 +1304,7 @@ -<anchor id="GIMP-STOCK-TOOL-INK--CAPS"/>GIMP_STOCK_TOOL_INK +<anchor id="GIMP-STOCK-TOOL-INK:CAPS"/>GIMP_STOCK_TOOL_INK GIMP_STOCK_TOOL_INK#define GIMP_STOCK_TOOL_INK "gimp-tool-ink" @@ -1312,7 +1312,7 @@ -<anchor id="GIMP-STOCK-TOOL-ISCISSORS--CAPS"/>GIMP_STOCK_TOOL_ISCISSORS +<anchor id="GIMP-STOCK-TOOL-ISCISSORS:CAPS"/>GIMP_STOCK_TOOL_ISCISSORS GIMP_STOCK_TOOL_ISCISSORS#define GIMP_STOCK_TOOL_ISCISSORS "gimp-tool-iscissors" @@ -1320,7 +1320,7 @@ -<anchor id="GIMP-STOCK-TOOL-LEVELS--CAPS"/>GIMP_STOCK_TOOL_LEVELS +<anchor id="GIMP-STOCK-TOOL-LEVELS:CAPS"/>GIMP_STOCK_TOOL_LEVELS GIMP_STOCK_TOOL_LEVELS#define GIMP_STOCK_TOOL_LEVELS "gimp-tool-levels" @@ -1328,7 +1328,7 @@ -<anchor id="GIMP-STOCK-TOOL-MEASURE--CAPS"/>GIMP_STOCK_TOOL_MEASURE +<anchor id="GIMP-STOCK-TOOL-MEASURE:CAPS"/>GIMP_STOCK_TOOL_MEASURE GIMP_STOCK_TOOL_MEASURE#define GIMP_STOCK_TOOL_MEASURE "gimp-tool-measure" @@ -1336,7 +1336,7 @@ -<anchor id="GIMP-STOCK-TOOL-MOVE--CAPS"/>GIMP_STOCK_TOOL_MOVE +<anchor id="GIMP-STOCK-TOOL-MOVE:CAPS"/>GIMP_STOCK_TOOL_MOVE GIMP_STOCK_TOOL_MOVE#define GIMP_STOCK_TOOL_MOVE "gimp-tool-move" @@ -1344,7 +1344,7 @@ -<anchor id="GIMP-STOCK-TOOL-PAINTBRUSH--CAPS"/>GIMP_STOCK_TOOL_PAINTBRUSH +<anchor id="GIMP-STOCK-TOOL-PAINTBRUSH:CAPS"/>GIMP_STOCK_TOOL_PAINTBRUSH GIMP_STOCK_TOOL_PAINTBRUSH#define GIMP_STOCK_TOOL_PAINTBRUSH "gimp-tool-paintbrush" @@ -1352,7 +1352,7 @@ -<anchor id="GIMP-STOCK-TOOL-PATH--CAPS"/>GIMP_STOCK_TOOL_PATH +<anchor id="GIMP-STOCK-TOOL-PATH:CAPS"/>GIMP_STOCK_TOOL_PATH GIMP_STOCK_TOOL_PATH#define GIMP_STOCK_TOOL_PATH "gimp-tool-path" @@ -1360,7 +1360,7 @@ -<anchor id="GIMP-STOCK-TOOL-PENCIL--CAPS"/>GIMP_STOCK_TOOL_PENCIL +<anchor id="GIMP-STOCK-TOOL-PENCIL:CAPS"/>GIMP_STOCK_TOOL_PENCIL GIMP_STOCK_TOOL_PENCIL#define GIMP_STOCK_TOOL_PENCIL "gimp-tool-pencil" @@ -1368,7 +1368,7 @@ -<anchor id="GIMP-STOCK-TOOL-PERSPECTIVE--CAPS"/>GIMP_STOCK_TOOL_PERSPECTIVE +<anchor id="GIMP-STOCK-TOOL-PERSPECTIVE:CAPS"/>GIMP_STOCK_TOOL_PERSPECTIVE GIMP_STOCK_TOOL_PERSPECTIVE#define GIMP_STOCK_TOOL_PERSPECTIVE "gimp-tool-perspective" @@ -1376,7 +1376,7 @@ -<anchor id="GIMP-STOCK-TOOL-POSTERIZE--CAPS"/>GIMP_STOCK_TOOL_POSTERIZE +<anchor id="GIMP-STOCK-TOOL-POSTERIZE:CAPS"/>GIMP_STOCK_TOOL_POSTERIZE GIMP_STOCK_TOOL_POSTERIZE#define GIMP_STOCK_TOOL_POSTERIZE "gimp-tool-posterize" @@ -1384,7 +1384,7 @@ -<anchor id="GIMP-STOCK-TOOL-RECT-SELECT--CAPS"/>GIMP_STOCK_TOOL_RECT_SELECT +<anchor id="GIMP-STOCK-TOOL-RECT-SELECT:CAPS"/>GIMP_STOCK_TOOL_RECT_SELECT GIMP_STOCK_TOOL_RECT_SELECT#define GIMP_STOCK_TOOL_RECT_SELECT "gimp-tool-rect-select" @@ -1392,7 +1392,7 @@ -<anchor id="GIMP-STOCK-TOOL-ROTATE--CAPS"/>GIMP_STOCK_TOOL_ROTATE +<anchor id="GIMP-STOCK-TOOL-ROTATE:CAPS"/>GIMP_STOCK_TOOL_ROTATE GIMP_STOCK_TOOL_ROTATE#define GIMP_STOCK_TOOL_ROTATE "gimp-tool-rotate" @@ -1400,7 +1400,7 @@ -<anchor id="GIMP-STOCK-TOOL-SCALE--CAPS"/>GIMP_STOCK_TOOL_SCALE +<anchor id="GIMP-STOCK-TOOL-SCALE:CAPS"/>GIMP_STOCK_TOOL_SCALE GIMP_STOCK_TOOL_SCALE#define GIMP_STOCK_TOOL_SCALE "gimp-tool-scale" @@ -1408,7 +1408,7 @@ -<anchor id="GIMP-STOCK-TOOL-SHEAR--CAPS"/>GIMP_STOCK_TOOL_SHEAR +<anchor id="GIMP-STOCK-TOOL-SHEAR:CAPS"/>GIMP_STOCK_TOOL_SHEAR GIMP_STOCK_TOOL_SHEAR#define GIMP_STOCK_TOOL_SHEAR "gimp-tool-shear" @@ -1416,7 +1416,7 @@ -<anchor id="GIMP-STOCK-TOOL-SMUDGE--CAPS"/>GIMP_STOCK_TOOL_SMUDGE +<anchor id="GIMP-STOCK-TOOL-SMUDGE:CAPS"/>GIMP_STOCK_TOOL_SMUDGE GIMP_STOCK_TOOL_SMUDGE#define GIMP_STOCK_TOOL_SMUDGE "gimp-tool-smudge" @@ -1424,7 +1424,7 @@ -<anchor id="GIMP-STOCK-TOOL-TEXT--CAPS"/>GIMP_STOCK_TOOL_TEXT +<anchor id="GIMP-STOCK-TOOL-TEXT:CAPS"/>GIMP_STOCK_TOOL_TEXT GIMP_STOCK_TOOL_TEXT#define GIMP_STOCK_TOOL_TEXT "gimp-tool-text" @@ -1432,7 +1432,7 @@ -<anchor id="GIMP-STOCK-TOOL-THRESHOLD--CAPS"/>GIMP_STOCK_TOOL_THRESHOLD +<anchor id="GIMP-STOCK-TOOL-THRESHOLD:CAPS"/>GIMP_STOCK_TOOL_THRESHOLD GIMP_STOCK_TOOL_THRESHOLD#define GIMP_STOCK_TOOL_THRESHOLD "gimp-tool-threshold" @@ -1440,7 +1440,7 @@ -<anchor id="GIMP-STOCK-TOOL-ZOOM--CAPS"/>GIMP_STOCK_TOOL_ZOOM +<anchor id="GIMP-STOCK-TOOL-ZOOM:CAPS"/>GIMP_STOCK_TOOL_ZOOM GIMP_STOCK_TOOL_ZOOM#define GIMP_STOCK_TOOL_ZOOM "gimp-tool-zoom" @@ -1448,56 +1448,56 @@ -<anchor id="GIMP-STOCK-HCHAIN--CAPS"/>GIMP_STOCK_HCHAIN +<anchor id="GIMP-STOCK-HCHAIN:CAPS"/>GIMP_STOCK_HCHAIN GIMP_STOCK_HCHAIN#define GIMP_STOCK_HCHAIN "gimp-hchain" -<anchor id="GIMP-STOCK-HCHAIN-BROKEN--CAPS"/>GIMP_STOCK_HCHAIN_BROKEN +<anchor id="GIMP-STOCK-HCHAIN-BROKEN:CAPS"/>GIMP_STOCK_HCHAIN_BROKEN GIMP_STOCK_HCHAIN_BROKEN#define GIMP_STOCK_HCHAIN_BROKEN "gimp-hchain-broken" -<anchor id="GIMP-STOCK-VCHAIN--CAPS"/>GIMP_STOCK_VCHAIN +<anchor id="GIMP-STOCK-VCHAIN:CAPS"/>GIMP_STOCK_VCHAIN GIMP_STOCK_VCHAIN#define GIMP_STOCK_VCHAIN "gimp-vchain" -<anchor id="GIMP-STOCK-VCHAIN-BROKEN--CAPS"/>GIMP_STOCK_VCHAIN_BROKEN +<anchor id="GIMP-STOCK-VCHAIN-BROKEN:CAPS"/>GIMP_STOCK_VCHAIN_BROKEN GIMP_STOCK_VCHAIN_BROKEN#define GIMP_STOCK_VCHAIN_BROKEN "gimp-vchain-broken" -<anchor id="GIMP-STOCK-TEXTURE--CAPS"/>GIMP_STOCK_TEXTURE +<anchor id="GIMP-STOCK-TEXTURE:CAPS"/>GIMP_STOCK_TEXTURE GIMP_STOCK_TEXTURE#define GIMP_STOCK_TEXTURE "gimp-texture" -<anchor id="GIMP-STOCK-FRAME--CAPS"/>GIMP_STOCK_FRAME +<anchor id="GIMP-STOCK-FRAME:CAPS"/>GIMP_STOCK_FRAME GIMP_STOCK_FRAME#define GIMP_STOCK_FRAME "gimp-frame" -<anchor id="GIMP-STOCK-ERROR--CAPS"/>GIMP_STOCK_ERROR +<anchor id="GIMP-STOCK-ERROR:CAPS"/>GIMP_STOCK_ERROR GIMP_STOCK_ERROR#define GIMP_STOCK_ERROR "gimp-error" -<anchor id="GIMP-STOCK-INFO--CAPS"/>GIMP_STOCK_INFO +<anchor id="GIMP-STOCK-INFO:CAPS"/>GIMP_STOCK_INFO GIMP_STOCK_INFO#define GIMP_STOCK_INFO "gimp-info" @@ -1506,14 +1506,14 @@ -<anchor id="GIMP-STOCK-QUESTION--CAPS"/>GIMP_STOCK_QUESTION +<anchor id="GIMP-STOCK-QUESTION:CAPS"/>GIMP_STOCK_QUESTION GIMP_STOCK_QUESTION#define GIMP_STOCK_QUESTION "gimp-question" -<anchor id="GIMP-STOCK-WARNING--CAPS"/>GIMP_STOCK_WARNING +<anchor id="GIMP-STOCK-WARNING:CAPS"/>GIMP_STOCK_WARNING GIMP_STOCK_WARNING#define GIMP_STOCK_WARNING "gimp-warning" @@ -1522,7 +1522,7 @@ -<anchor id="GIMP-STOCK-WILBER--CAPS"/>GIMP_STOCK_WILBER +<anchor id="GIMP-STOCK-WILBER:CAPS"/>GIMP_STOCK_WILBER GIMP_STOCK_WILBER#define GIMP_STOCK_WILBER "gimp-wilber" @@ -1530,56 +1530,56 @@ -<anchor id="GIMP-STOCK-WILBER-EEK--CAPS"/>GIMP_STOCK_WILBER_EEK +<anchor id="GIMP-STOCK-WILBER-EEK:CAPS"/>GIMP_STOCK_WILBER_EEK GIMP_STOCK_WILBER_EEK#define GIMP_STOCK_WILBER_EEK "gimp-wilber-eek" -<anchor id="GIMP-STOCK-BRUSH--CAPS"/>GIMP_STOCK_BRUSH +<anchor id="GIMP-STOCK-BRUSH:CAPS"/>GIMP_STOCK_BRUSH GIMP_STOCK_BRUSH#define GIMP_STOCK_BRUSH GIMP_STOCK_TOOL_PAINTBRUSH -<anchor id="GIMP-STOCK-BUFFER--CAPS"/>GIMP_STOCK_BUFFER +<anchor id="GIMP-STOCK-BUFFER:CAPS"/>GIMP_STOCK_BUFFER GIMP_STOCK_BUFFER#define GIMP_STOCK_BUFFER GTK_STOCK_PASTE -<anchor id="GIMP-STOCK-FONT--CAPS"/>GIMP_STOCK_FONT +<anchor id="GIMP-STOCK-FONT:CAPS"/>GIMP_STOCK_FONT GIMP_STOCK_FONT#define GIMP_STOCK_FONT GTK_STOCK_SELECT_FONT -<anchor id="GIMP-STOCK-GRADIENT--CAPS"/>GIMP_STOCK_GRADIENT +<anchor id="GIMP-STOCK-GRADIENT:CAPS"/>GIMP_STOCK_GRADIENT GIMP_STOCK_GRADIENT#define GIMP_STOCK_GRADIENT GIMP_STOCK_TOOL_BLEND -<anchor id="GIMP-STOCK-PALETTE--CAPS"/>GIMP_STOCK_PALETTE +<anchor id="GIMP-STOCK-PALETTE:CAPS"/>GIMP_STOCK_PALETTE GIMP_STOCK_PALETTE#define GIMP_STOCK_PALETTE GTK_STOCK_SELECT_COLOR -<anchor id="GIMP-STOCK-PATTERN--CAPS"/>GIMP_STOCK_PATTERN +<anchor id="GIMP-STOCK-PATTERN:CAPS"/>GIMP_STOCK_PATTERN GIMP_STOCK_PATTERN#define GIMP_STOCK_PATTERN GIMP_STOCK_TOOL_BUCKET_FILL -<anchor id="GIMP-STOCK-ZOOM-FOLLOW-WINDOW--CAPS"/>GIMP_STOCK_ZOOM_FOLLOW_WINDOW +<anchor id="GIMP-STOCK-ZOOM-FOLLOW-WINDOW:CAPS"/>GIMP_STOCK_ZOOM_FOLLOW_WINDOW GIMP_STOCK_ZOOM_FOLLOW_WINDOW#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW "gimp-zoom-follow-window" diff -uraN gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpwidgets.xml gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpwidgets.xml --- gimp-2.2.6/devel-docs/libgimpwidgets/xml/gimpwidgets.xml 2005-04-10 02:12:57.000000000 +0200 +++ gimp-2.2.7/devel-docs/libgimpwidgets/xml/gimpwidgets.xml 2005-05-08 23:43:11.000000000 +0200 @@ -48,11 +48,11 @@ gdouble page_size, gdouble climb_rate, guint digits); -#define GIMP_SCALE_ENTRY_LABEL (adj) -#define GIMP_SCALE_ENTRY_SCALE (adj) -#define GIMP_SCALE_ENTRY_SCALE_ADJ (adj) -#define GIMP_SCALE_ENTRY_SPINBUTTON (adj) -#define GIMP_SCALE_ENTRY_SPINBUTTON_ADJ (adj) +#define GIMP_SCALE_ENTRY_LABEL (adj) +#define GIMP_SCALE_ENTRY_SCALE (adj) +#define GIMP_SCALE_ENTRY_SCALE_ADJ (adj) +#define GIMP_SCALE_ENTRY_SPINBUTTON (adj) +#define GIMP_SCALE_ENTRY_SPINBUTTON_ADJ (adj) GtkObject* gimp_scale_entry_new (GtkTable *table, gint column, gint row, @@ -91,12 +91,12 @@ guint digits, const gchar *tooltip, const gchar *help_id); -#define GIMP_RANDOM_SEED_SPINBUTTON (hbox) -#define GIMP_RANDOM_SEED_SPINBUTTON_ADJ (hbox) -#define GIMP_RANDOM_SEED_TOGGLE (hbox) +#define GIMP_RANDOM_SEED_SPINBUTTON (hbox) +#define GIMP_RANDOM_SEED_SPINBUTTON_ADJ (hbox) +#define GIMP_RANDOM_SEED_TOGGLE (hbox) GtkWidget* gimp_random_seed_new (guint32 *seed, gboolean *random_seed); -#define GIMP_COORDINATES_CHAINBUTTON (sizeentry) +#define GIMP_COORDINATES_CHAINBUTTON (sizeentry) GtkWidget* gimp_coordinates_new (GimpUnit unit, const gchar *unit_format, gboolean menu_show_pixels, @@ -359,7 +359,7 @@ -<anchor id="GIMP-SCALE-ENTRY-LABEL--CAPS"/>GIMP_SCALE_ENTRY_LABEL() +<anchor id="GIMP-SCALE-ENTRY-LABEL:CAPS"/>GIMP_SCALE_ENTRY_LABEL() GIMP_SCALE_ENTRY_LABEL#define GIMP_SCALE_ENTRY_LABEL(adj) Returns the scale_entry's GtkLabel. @@ -371,7 +371,7 @@ -<anchor id="GIMP-SCALE-ENTRY-SCALE--CAPS"/>GIMP_SCALE_ENTRY_SCALE() +<anchor id="GIMP-SCALE-ENTRY-SCALE:CAPS"/>GIMP_SCALE_ENTRY_SCALE() GIMP_SCALE_ENTRY_SCALE#define GIMP_SCALE_ENTRY_SCALE(adj) Returns the scale_entry's GtkHScale. @@ -383,7 +383,7 @@ -<anchor id="GIMP-SCALE-ENTRY-SCALE-ADJ--CAPS"/>GIMP_SCALE_ENTRY_SCALE_ADJ() +<anchor id="GIMP-SCALE-ENTRY-SCALE-ADJ:CAPS"/>GIMP_SCALE_ENTRY_SCALE_ADJ() GIMP_SCALE_ENTRY_SCALE_ADJ#define GIMP_SCALE_ENTRY_SCALE_ADJ(adj) Returns the GtkAdjustment of the scale_entry's GtkHScale. @@ -395,7 +395,7 @@ -<anchor id="GIMP-SCALE-ENTRY-SPINBUTTON--CAPS"/>GIMP_SCALE_ENTRY_SPINBUTTON() +<anchor id="GIMP-SCALE-ENTRY-SPINBUTTON:CAPS"/>GIMP_SCALE_ENTRY_SPINBUTTON() GIMP_SCALE_ENTRY_SPINBUTTON#define GIMP_SCALE_ENTRY_SPINBUTTON(adj) Returns the scale_entry's GtkSpinButton. @@ -407,7 +407,7 @@ -<anchor id="GIMP-SCALE-ENTRY-SPINBUTTON-ADJ--CAPS"/>GIMP_SCALE_ENTRY_SPINBUTTON_ADJ() +<anchor id="GIMP-SCALE-ENTRY-SPINBUTTON-ADJ:CAPS"/>GIMP_SCALE_ENTRY_SPINBUTTON_ADJ() GIMP_SCALE_ENTRY_SPINBUTTON_ADJ#define GIMP_SCALE_ENTRY_SPINBUTTON_ADJ(adj) Returns the GtkAdjustment of the scale_entry's GtkSpinButton. @@ -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); @@ -628,7 +628,7 @@ -<anchor id="GIMP-RANDOM-SEED-SPINBUTTON--CAPS"/>GIMP_RANDOM_SEED_SPINBUTTON() +<anchor id="GIMP-RANDOM-SEED-SPINBUTTON:CAPS"/>GIMP_RANDOM_SEED_SPINBUTTON() GIMP_RANDOM_SEED_SPINBUTTON#define GIMP_RANDOM_SEED_SPINBUTTON(hbox) Returns the random_seed's GtkSpinButton. @@ -640,7 +640,7 @@ -<anchor id="GIMP-RANDOM-SEED-SPINBUTTON-ADJ--CAPS"/>GIMP_RANDOM_SEED_SPINBUTTON_ADJ() +<anchor id="GIMP-RANDOM-SEED-SPINBUTTON-ADJ:CAPS"/>GIMP_RANDOM_SEED_SPINBUTTON_ADJ() GIMP_RANDOM_SEED_SPINBUTTON_ADJ#define GIMP_RANDOM_SEED_SPINBUTTON_ADJ(hbox) Returns the GtkAdjustment of the random_seed's GtkSpinButton. @@ -652,7 +652,7 @@ -<anchor id="GIMP-RANDOM-SEED-TOGGLE--CAPS"/>GIMP_RANDOM_SEED_TOGGLE() +<anchor id="GIMP-RANDOM-SEED-TOGGLE:CAPS"/>GIMP_RANDOM_SEED_TOGGLE() GIMP_RANDOM_SEED_TOGGLE#define GIMP_RANDOM_SEED_TOGGLE(hbox) @@ -685,7 +685,7 @@ -<anchor id="GIMP-COORDINATES-CHAINBUTTON--CAPS"/>GIMP_COORDINATES_CHAINBUTTON() +<anchor id="GIMP-COORDINATES-CHAINBUTTON:CAPS"/>GIMP_COORDINATES_CHAINBUTTON() GIMP_COORDINATES_CHAINBUTTON#define GIMP_COORDINATES_CHAINBUTTON(sizeentry) Returns the GimpChainButton which is attached to the GimpSizeEntry. @@ -889,7 +889,7 @@ gpointer data); Note that the GtkAdjustment's value (which is a gdouble) will be -rounded with RINT(). +rounded with RINT(). @@ -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.6/devel-docs/Makefile.in gimp-2.2.7/devel-docs/Makefile.in --- gimp-2.2.6/devel-docs/Makefile.in 2005-04-10 02:09:41.000000000 +0200 +++ gimp-2.2.7/devel-docs/Makefile.in 2005-04-11 12:03:18.000000000 +0200 @@ -322,6 +322,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.6/docs/Makefile.in gimp-2.2.7/docs/Makefile.in --- gimp-2.2.6/docs/Makefile.in 2005-04-10 02:09:48.000000000 +0200 +++ gimp-2.2.7/docs/Makefile.in 2005-04-11 12:03:27.000000000 +0200 @@ -322,6 +322,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.6/etc/Makefile.in gimp-2.2.7/etc/Makefile.in --- gimp-2.2.6/etc/Makefile.in 2005-04-10 02:09:41.000000000 +0200 +++ gimp-2.2.7/etc/Makefile.in 2005-04-11 12:03:17.000000000 +0200 @@ -322,6 +322,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.6/libgimp/gimpdrawable.c gimp-2.2.7/libgimp/gimpdrawable.c --- gimp-2.2.6/libgimp/gimpdrawable.c 2004-12-14 00:36:16.000000000 +0100 +++ gimp-2.2.7/libgimp/gimpdrawable.c 2005-04-18 18:09:43.000000000 +0200 @@ -210,7 +210,7 @@ GimpTile * gimp_drawable_get_tile2 (GimpDrawable *drawable, - gint shadow, + gboolean shadow, gint x, gint y) { diff -uraN gimp-2.2.6/libgimp/gimpdrawable.h gimp-2.2.7/libgimp/gimpdrawable.h --- gimp-2.2.6/libgimp/gimpdrawable.h 2004-12-14 00:36:16.000000000 +0100 +++ gimp-2.2.7/libgimp/gimpdrawable.h 2005-04-18 18:09:43.000000000 +0200 @@ -44,11 +44,11 @@ void gimp_drawable_detach (GimpDrawable *drawable); void gimp_drawable_flush (GimpDrawable *drawable); GimpTile * gimp_drawable_get_tile (GimpDrawable *drawable, - gint shadow, + gboolean shadow, gint row, gint col); GimpTile * gimp_drawable_get_tile2 (GimpDrawable *drawable, - gint shadow, + gboolean shadow, gint x, gint y); diff -uraN gimp-2.2.6/libgimp/gimpdrawablepreview.c gimp-2.2.7/libgimp/gimpdrawablepreview.c --- gimp-2.2.6/libgimp/gimpdrawablepreview.c 2005-02-08 14:42:48.000000000 +0100 +++ gimp-2.2.7/libgimp/gimpdrawablepreview.c 2005-04-25 18:22:48.000000000 +0200 @@ -49,6 +49,11 @@ static void gimp_drawable_preview_draw_buffer (GimpPreview *preview, const guchar *buffer, gint rowstride); +static gboolean gimp_drawable_preview_get_bounds (GimpDrawable *drawable, + gint *xmin, + gint *ymin, + gint *xmax, + gint *ymax); static GimpScrolledPreviewClass *parent_class = NULL; @@ -174,13 +179,23 @@ GimpDrawablePreview *drawable_preview = GIMP_DRAWABLE_PREVIEW (preview); GimpDrawable *drawable = drawable_preview->drawable; guchar *buffer; + gint x1, y1, x2, y2; gint bpp; if (! drawable) return; - buffer = gimp_drawable_get_thumbnail_data (drawable->drawable_id, - &width, &height, &bpp); + if (gimp_drawable_preview_get_bounds (drawable, &x1, &y1, &x2, &y2)) + { + buffer = gimp_drawable_get_sub_thumbnail_data (drawable->drawable_id, + x1, y1, x2 - x1, y2 - y1, + &width, &height, &bpp); + } + else + { + buffer = gimp_drawable_get_thumbnail_data (drawable->drawable_id, + &width, &height, &bpp); + } if (buffer) { @@ -291,32 +306,18 @@ buffer, rowstride); } -#define MAX3(a, b, c) (MAX (MAX ((a), (b)), (c))) -#define MIN3(a, b, c) (MIN (MIN ((a), (b)), (c))) - static void gimp_drawable_preview_set_drawable (GimpDrawablePreview *drawable_preview, GimpDrawable *drawable) { GimpPreview *preview = GIMP_PREVIEW (drawable_preview); - gint width = gimp_drawable_width (drawable->drawable_id); - gint height = gimp_drawable_height (drawable->drawable_id); - gint x1, x2; - gint y1, y2; - gint xmin, ymin, xmax, ymax; - gint offset_x, offset_y; + gint x1, y1, x2, y2; drawable_preview->drawable = drawable; - gimp_drawable_mask_bounds (drawable->drawable_id, &x1, &y1, &x2, &y2); - gimp_drawable_offsets (drawable->drawable_id, &offset_x, &offset_y); - - xmin = MAX3 (x1 - SELECTION_BORDER, 0, - offset_x); - ymin = MAX3 (y1 - SELECTION_BORDER, 0, - offset_y); - xmax = MIN3 (x2 + SELECTION_BORDER, width, width + offset_x); - ymax = MIN3 (y2 + SELECTION_BORDER, height, height + offset_y); + gimp_drawable_preview_get_bounds (drawable, &x1, &y1, &x2, &y2); - gimp_preview_set_bounds (preview, xmin, ymin, xmax, ymax); + gimp_preview_set_bounds (preview, x1, y1, x2, y2); if (gimp_drawable_is_indexed (drawable->drawable_id)) { @@ -331,6 +332,42 @@ } } + +#define MAX3(a, b, c) (MAX (MAX ((a), (b)), (c))) +#define MIN3(a, b, c) (MIN (MIN ((a), (b)), (c))) + +static gboolean +gimp_drawable_preview_get_bounds (GimpDrawable *drawable, + gint *xmin, + gint *ymin, + gint *xmax, + gint *ymax) +{ + gint width; + gint height; + gint offset_x; + gint offset_y; + gint x1, y1; + gint x2, y2; + gboolean retval; + + width = gimp_drawable_width (drawable->drawable_id); + height = gimp_drawable_height (drawable->drawable_id); + + retval = gimp_drawable_mask_bounds (drawable->drawable_id, + &x1, &y1, &x2, &y2); + + gimp_drawable_offsets (drawable->drawable_id, &offset_x, &offset_y); + + *xmin = MAX3 (x1 - SELECTION_BORDER, 0, - offset_x); + *ymin = MAX3 (y1 - SELECTION_BORDER, 0, - offset_y); + *xmax = MIN3 (x2 + SELECTION_BORDER, width, width + offset_x); + *ymax = MIN3 (y2 + SELECTION_BORDER, height, height + offset_y); + + return retval; +} + + static void gimp_drawable_preview_notify_update (GimpPreview *preview, GParamSpec *pspec, diff -uraN gimp-2.2.6/libgimp/gimpimage_pdb.c gimp-2.2.7/libgimp/gimpimage_pdb.c --- gimp-2.2.6/libgimp/gimpimage_pdb.c 2004-11-14 01:35:24.000000000 +0100 +++ gimp-2.2.7/libgimp/gimpimage_pdb.c 2005-05-08 12:01:56.000000000 +0200 @@ -384,14 +384,14 @@ * * Scale the image to the specified extents. * - * This procedure scales the image so that it's new width and height - * are equal to the supplied parameters. Offsets are also provided - * which describe the position of the previous image's content. No - * bounds checking is currently provided, so don't supply parameters - * that are out of bounds. All channels within the image are scaled - * according to the specified parameters; this includes the image - * selection mask. All layers within the image are repositioned - * according to the specified offsets. + * This procedure scales the image so that its new width and height are + * equal to the supplied parameters. Offsets are also provided which + * describe the position of the previous image's content. No bounds + * checking is currently provided, so don't supply parameters that are + * out of bounds. All channels within the image are scaled according to + * the specified parameters; this includes the image selection mask. + * All layers within the image are repositioned according to the + * specified offsets. * * Returns: TRUE on success. */ diff -uraN gimp-2.2.6/libgimp/Makefile.in gimp-2.2.7/libgimp/Makefile.in --- gimp-2.2.6/libgimp/Makefile.in 2005-04-10 01:58:04.000000000 +0200 +++ gimp-2.2.7/libgimp/Makefile.in 2005-04-11 11:46:30.000000000 +0200 @@ -322,6 +322,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.6/libgimpbase/gimpversion.h gimp-2.2.7/libgimpbase/gimpversion.h --- gimp-2.2.6/libgimpbase/gimpversion.h 2005-04-10 01:57:12.000000000 +0200 +++ gimp-2.2.7/libgimpbase/gimpversion.h 2005-04-11 11:44:09.000000000 +0200 @@ -11,8 +11,8 @@ #define GIMP_MAJOR_VERSION (2) #define GIMP_MINOR_VERSION (2) -#define GIMP_MICRO_VERSION (6) -#define GIMP_VERSION "2.2.6" +#define GIMP_MICRO_VERSION (7) +#define GIMP_VERSION "2.2.7" #define GIMP_API_VERSION "2.0" #define GIMP_CHECK_VERSION(major, minor, micro) \ (GIMP_MAJOR_VERSION > (major) || \ diff -uraN gimp-2.2.6/libgimpbase/Makefile.in gimp-2.2.7/libgimpbase/Makefile.in --- gimp-2.2.6/libgimpbase/Makefile.in 2005-04-10 01:57:22.000000000 +0200 +++ gimp-2.2.7/libgimpbase/Makefile.in 2005-04-11 11:44:35.000000000 +0200 @@ -322,6 +322,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.6/libgimpcolor/Makefile.in gimp-2.2.7/libgimpcolor/Makefile.in --- gimp-2.2.6/libgimpcolor/Makefile.in 2005-04-10 01:57:27.000000000 +0200 +++ gimp-2.2.7/libgimpcolor/Makefile.in 2005-04-11 11:44:50.000000000 +0200 @@ -322,6 +322,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.6/libgimpmath/Makefile.in gimp-2.2.7/libgimpmath/Makefile.in --- gimp-2.2.6/libgimpmath/Makefile.in 2005-04-10 01:57:31.000000000 +0200 +++ gimp-2.2.7/libgimpmath/Makefile.in 2005-04-11 11:44:59.000000000 +0200 @@ -322,6 +322,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.6/libgimpmodule/Makefile.in gimp-2.2.7/libgimpmodule/Makefile.in --- gimp-2.2.6/libgimpmodule/Makefile.in 2005-04-10 01:57:33.000000000 +0200 +++ gimp-2.2.7/libgimpmodule/Makefile.in 2005-04-11 11:45:04.000000000 +0200 @@ -322,6 +322,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.6/libgimpthumb/Makefile.in gimp-2.2.7/libgimpthumb/Makefile.in --- gimp-2.2.6/libgimpthumb/Makefile.in 2005-04-10 01:57:34.000000000 +0200 +++ gimp-2.2.7/libgimpthumb/Makefile.in 2005-04-11 11:45:10.000000000 +0200 @@ -322,6 +322,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.6/libgimpwidgets/gimpintstore.c gimp-2.2.7/libgimpwidgets/gimpintstore.c --- gimp-2.2.6/libgimpwidgets/gimpintstore.c 2004-11-11 00:50:10.000000000 +0100 +++ gimp-2.2.7/libgimpwidgets/gimpintstore.c 2005-04-22 12:16:55.000000000 +0200 @@ -40,8 +40,6 @@ static void gimp_int_store_row_inserted (GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter); -static void gimp_int_store_row_deleted (GtkTreeModel *model, - GtkTreePath *path); static void gimp_int_store_add_empty (GimpIntStore *store); @@ -102,7 +100,6 @@ parent_iface = g_type_interface_peek_parent (iface); iface->row_inserted = gimp_int_store_row_inserted; - iface->row_deleted = gimp_int_store_row_deleted; } static void @@ -158,17 +155,6 @@ } static void -gimp_int_store_row_deleted (GtkTreeModel *model, - GtkTreePath *path) -{ - if (parent_iface->row_deleted) - parent_iface->row_deleted (model, path); - - if (gtk_tree_model_iter_n_children (model, NULL) == 0) - gimp_int_store_add_empty (GIMP_INT_STORE (model)); -} - -static void gimp_int_store_add_empty (GimpIntStore *store) { g_return_if_fail (store->empty_iter == NULL); diff -uraN gimp-2.2.6/libgimpwidgets/Makefile.in gimp-2.2.7/libgimpwidgets/Makefile.in --- gimp-2.2.6/libgimpwidgets/Makefile.in 2005-04-10 01:57:38.000000000 +0200 +++ gimp-2.2.7/libgimpwidgets/Makefile.in 2005-04-11 11:45:18.000000000 +0200 @@ -322,6 +322,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.6/ltmain.sh gimp-2.2.7/ltmain.sh --- gimp-2.2.6/ltmain.sh 2005-01-22 16:02:26.000000000 +0100 +++ gimp-2.2.7/ltmain.sh 2005-04-01 02:47:06.000000000 +0200 @@ -44,7 +44,7 @@ PROGRAM=ltmain.sh PACKAGE=libtool VERSION=1.5.6 -TIMESTAMP=" (1.1220.2.95 2004/04/11 05:50:42) Debian$Rev: 220 $" +TIMESTAMP=" (1.1220.2.95 2004/04/11 05:50:42) Debian$Rev: 224 $" # Check that we have a working $echo. @@ -2945,7 +2945,7 @@ # Check that each of the things are valid numbers. case $current in - 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;; + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 @@ -2954,7 +2954,7 @@ esac case $revision in - 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;; + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 @@ -2963,7 +2963,7 @@ esac case $age in - 0 | [1-9] | [1-9][0-9] | [1-9][0-9][0-9]) ;; + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 diff -uraN gimp-2.2.6/m4macros/Makefile.in gimp-2.2.7/m4macros/Makefile.in --- gimp-2.2.6/m4macros/Makefile.in 2005-04-10 01:57:03.000000000 +0200 +++ gimp-2.2.7/m4macros/Makefile.in 2005-04-11 11:43:45.000000000 +0200 @@ -324,6 +324,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.6/Makefile.in gimp-2.2.7/Makefile.in --- gimp-2.2.6/Makefile.in 2005-04-10 01:56:49.000000000 +0200 +++ gimp-2.2.7/Makefile.in 2005-04-11 11:42:40.000000000 +0200 @@ -322,6 +322,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.6/menus/Makefile.in gimp-2.2.7/menus/Makefile.in --- gimp-2.2.6/menus/Makefile.in 2005-04-10 01:57:20.000000000 +0200 +++ gimp-2.2.7/menus/Makefile.in 2005-04-11 11:44:31.000000000 +0200 @@ -322,6 +322,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.6/modules/Makefile.in gimp-2.2.7/modules/Makefile.in --- gimp-2.2.6/modules/Makefile.in 2005-04-10 02:03:48.000000000 +0200 +++ gimp-2.2.7/modules/Makefile.in 2005-04-11 11:55:02.000000000 +0200 @@ -322,6 +322,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.6/NEWS gimp-2.2.7/NEWS --- gimp-2.2.6/NEWS 2005-04-10 01:56:38.000000000 +0200 +++ gimp-2.2.7/NEWS 2005-05-08 23:33:02.000000000 +0200 @@ -6,8 +6,23 @@ released as GIMP version 2.4. -Changes in GIMP 2.2.6 -===================== +Bugs fixed in GIMP 2.2.7 +======================== +- update layer previews on colormap changes (bug #301033) +- fixed loading of text layers from XCF files (bug #301028) +- when loading a PDF, honor CropBox over MediaBox (bug #301432) +- fixed incompatibility of GimpIntStore with GTK+ 2.6 (bug #301524) +- fixed navigation popup in plug-in previews (bug #301523) +- fixed handling of compression types in TIFF plug-in (bug #301557) +- fixed bug in Lighting Effects plug-in (bug #302075) +- fixed focus issues in message dialogs (bug #302400) +- fixed bug in SSE2 assembly for Lighten Only layer mode (bug #164061) +- fixed resize-window-on-zoom feature (bug #164281) +- corrected upper limit of tile-cache-size (bug #303371) + + +Bugs fixed in GIMP 2.2.6 +======================== - reverted change to the print plug-in (see bug #169909) diff -uraN gimp-2.2.6/plug-ins/bmp/Makefile.in gimp-2.2.7/plug-ins/bmp/Makefile.in --- gimp-2.2.6/plug-ins/bmp/Makefile.in 2005-04-10 02:04:33.000000000 +0200 +++ gimp-2.2.7/plug-ins/bmp/Makefile.in 2005-04-11 11:56:32.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/common/mail.c gimp-2.2.7/plug-ins/common/mail.c --- gimp-2.2.6/plug-ins/common/mail.c 2004-11-10 16:52:49.000000000 +0100 +++ gimp-2.2.7/plug-ins/common/mail.c 2005-04-21 13:51:10.000000000 +0200 @@ -752,7 +752,7 @@ if (mail_info.encapsulation == ENCAPSULATION_MIME ) { fprintf (mailpipe, "--GUMP-MIME-boundary\n"); - fprintf (mailpipe, "Content-type: text/plain; charset=US-ASCII\n\n"); + fprintf (mailpipe, "Content-type: text/plain; charset=UTF-8\n\n"); } fprintf (mailpipe, mail_info.comment); fprintf (mailpipe, "\n\n"); diff -uraN gimp-2.2.6/plug-ins/common/Makefile.in gimp-2.2.7/plug-ins/common/Makefile.in --- gimp-2.2.6/plug-ins/common/Makefile.in 2005-04-10 02:06:41.000000000 +0200 +++ gimp-2.2.7/plug-ins/common/Makefile.in 2005-04-11 11:59:44.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/common/newsprint.c gimp-2.2.7/plug-ins/common/newsprint.c --- gimp-2.2.6/plug-ins/common/newsprint.c 2004-10-31 20:40:11.000000000 +0100 +++ gimp-2.2.7/plug-ins/common/newsprint.c 2005-04-19 17:18:59.000000000 +0200 @@ -17,9 +17,6 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - * Portions of this plug-in are copyright 1991-1992 Adobe Systems - * Incorporated. See the spot_PS*() functions for details. */ /* @@ -62,7 +59,7 @@ #ifdef RCSID -static char rcsid[] = "$Id: newsprint.c,v 1.69 2004/10/31 19:40:11 neo Exp $"; +static char rcsid[] = "$Id: newsprint.c,v 1.69.2.1 2005/04/18 19:07:24 yosh Exp $"; #endif #define VERSION "v0.60" @@ -1601,23 +1598,9 @@ 2 * xy * xy - 4 * (xy - 1) * (xy - 1)) / 4; } -/* The following functions were derived from a peice of PostScript by - * Peter Fink and published in his book, "PostScript Screening: Adobe - * Accurate Screens" (Adobe Press, 1992). Adobe Systems Incorporated - * allow its use, provided the following copyright message is present: - * - * % Film Test Pages for Screenset Development - * % Copyright (c) 1991 and 1992 Adobe Systems Incorporated - * % All rights reserved. - * % - * % NOTICE: This code is copyrighted by Adobe Systems Incorporated, and - * % may not be reproduced for sale except by permission of Adobe Systems - * % Incorporated. Adobe Systems Incorporated grants permission to use - * % this code for the development of screen sets for use with Adobe - * % Accurate Screens software, as long as the copyright notice remains - * % intact. - * % - * % By Peter Fink 1991/1992 +/* The following two functions are implementations of algorithms + * described in "Postscript Screening: Adobe Accurate Screens" + * (Adobe Press, 1992) by Peter Fink. */ /* Square (or Euclidean) dot. Also very common. */ @@ -1633,8 +1616,7 @@ 1 - (ay * ay + ax * ax)); } -/* Diamond spot function, again from Peter Fink's PostScript - * original. Copyright as for previous function. */ +/* Diamond spot function */ static gdouble spot_PSdiamond (gdouble x, gdouble y) @@ -1647,8 +1629,6 @@ ((ay - 1) * (ay - 1) + (ax - 1) * (ax - 1)) -1)); /* back to dot */ } -/* end of Adobe Systems Incorporated copyrighted functions */ - /*************************************************************/ /* Spot function to threshold matrix conversion */ diff -uraN gimp-2.2.6/plug-ins/common/postscript.c gimp-2.2.7/plug-ins/common/postscript.c --- gimp-2.2.6/plug-ins/common/postscript.c 2004-11-19 14:34:07.000000000 +0100 +++ gimp-2.2.7/plug-ins/common/postscript.c 2005-04-21 13:51:11.000000000 +0200 @@ -1544,9 +1544,18 @@ g_ptr_array_add (cmdA, g_strdup_printf ("-sDEVICE=%s", driver)); g_ptr_array_add (cmdA, g_strdup_printf ("-r%d", resolution)); - /* For PDF, we can't set geometry */ - if (!is_pdf) - g_ptr_array_add (cmdA, g_strdup_printf ("-g%dx%d", width, height)); + if (is_pdf) + { + /* Acrobat Reader honors CropBox over MediaBox, so let's match that + * behavior. + */ + g_ptr_array_add (cmdA, g_strdup ("-dUseCropBox")); + } + else + { + /* For PDF, we can't set geometry */ + g_ptr_array_add (cmdA, g_strdup_printf ("-g%dx%d", width, height)); + } /* Antialiasing not available for PBM-device */ if ((loadopt->pnm_type != 4) && (loadopt->textalpha != 1)) diff -uraN gimp-2.2.6/plug-ins/common/tiff.c gimp-2.2.7/plug-ins/common/tiff.c --- gimp-2.2.6/plug-ins/common/tiff.c 2004-11-27 13:39:08.000000000 +0100 +++ gimp-2.2.7/plug-ins/common/tiff.c 2005-04-25 18:22:48.000000000 +0200 @@ -672,7 +672,22 @@ if (!TIFFGetField (tif, TIFFTAG_COMPRESSION, &tmp)) save_vals.compression = COMPRESSION_NONE; else - save_vals.compression = tmp; + { + switch (tmp) + { + case COMPRESSION_NONE: + case COMPRESSION_LZW: + case COMPRESSION_PACKBITS: + case COMPRESSION_DEFLATE: + case COMPRESSION_JPEG: + save_vals.compression = tmp; + break; + + default: + save_vals.compression = COMPRESSION_NONE; + break; + } + } parasite = gimp_parasite_new ("tiff-save-options", 0, sizeof (save_vals), &save_vals); diff -uraN gimp-2.2.6/plug-ins/dbbrowser/Makefile.in gimp-2.2.7/plug-ins/dbbrowser/Makefile.in --- gimp-2.2.6/plug-ins/dbbrowser/Makefile.in 2005-04-10 02:04:00.000000000 +0200 +++ gimp-2.2.7/plug-ins/dbbrowser/Makefile.in 2005-04-11 11:55:24.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/faxg3/Makefile.in gimp-2.2.7/plug-ins/faxg3/Makefile.in --- gimp-2.2.6/plug-ins/faxg3/Makefile.in 2005-04-10 02:04:36.000000000 +0200 +++ gimp-2.2.7/plug-ins/faxg3/Makefile.in 2005-04-11 11:56:38.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/fits/Makefile.in gimp-2.2.7/plug-ins/fits/Makefile.in --- gimp-2.2.6/plug-ins/fits/Makefile.in 2005-04-10 02:04:38.000000000 +0200 +++ gimp-2.2.7/plug-ins/fits/Makefile.in 2005-04-11 11:56:42.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/flame/Makefile.in gimp-2.2.7/plug-ins/flame/Makefile.in --- gimp-2.2.6/plug-ins/flame/Makefile.in 2005-04-10 02:04:41.000000000 +0200 +++ gimp-2.2.7/plug-ins/flame/Makefile.in 2005-04-11 11:56:48.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/FractalExplorer/examples/Makefile.in gimp-2.2.7/plug-ins/FractalExplorer/examples/Makefile.in --- gimp-2.2.6/plug-ins/FractalExplorer/examples/Makefile.in 2005-04-10 02:04:17.000000000 +0200 +++ gimp-2.2.7/plug-ins/FractalExplorer/examples/Makefile.in 2005-04-11 11:56:03.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/FractalExplorer/Makefile.in gimp-2.2.7/plug-ins/FractalExplorer/Makefile.in --- gimp-2.2.6/plug-ins/FractalExplorer/Makefile.in 2005-04-10 02:04:16.000000000 +0200 +++ gimp-2.2.7/plug-ins/FractalExplorer/Makefile.in 2005-04-11 11:56:01.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/gfig/gfig-examples/Makefile.in gimp-2.2.7/plug-ins/gfig/gfig-examples/Makefile.in --- gimp-2.2.6/plug-ins/gfig/gfig-examples/Makefile.in 2005-04-10 02:04:46.000000000 +0200 +++ gimp-2.2.7/plug-ins/gfig/gfig-examples/Makefile.in 2005-04-11 11:56:56.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/gfig/images/Makefile.in gimp-2.2.7/plug-ins/gfig/images/Makefile.in --- gimp-2.2.6/plug-ins/gfig/images/Makefile.in 2005-04-10 02:04:46.000000000 +0200 +++ gimp-2.2.7/plug-ins/gfig/images/Makefile.in 2005-04-11 11:56:58.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/gfig/Makefile.in gimp-2.2.7/plug-ins/gfig/Makefile.in --- gimp-2.2.6/plug-ins/gfig/Makefile.in 2005-04-10 02:04:45.000000000 +0200 +++ gimp-2.2.7/plug-ins/gfig/Makefile.in 2005-04-11 11:56:54.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/gflare/gflares/Makefile.in gimp-2.2.7/plug-ins/gflare/gflares/Makefile.in --- gimp-2.2.6/plug-ins/gflare/gflares/Makefile.in 2005-04-10 02:04:58.000000000 +0200 +++ gimp-2.2.7/plug-ins/gflare/gflares/Makefile.in 2005-04-11 11:57:19.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/gflare/Makefile.in gimp-2.2.7/plug-ins/gflare/Makefile.in --- gimp-2.2.6/plug-ins/gflare/Makefile.in 2005-04-10 02:04:57.000000000 +0200 +++ gimp-2.2.7/plug-ins/gflare/Makefile.in 2005-04-11 11:57:17.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/gfli/Makefile.in gimp-2.2.7/plug-ins/gfli/Makefile.in --- gimp-2.2.6/plug-ins/gfli/Makefile.in 2005-04-10 02:05:01.000000000 +0200 +++ gimp-2.2.7/plug-ins/gfli/Makefile.in 2005-04-11 11:57:25.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/gimpressionist/Brushes/Makefile.in gimp-2.2.7/plug-ins/gimpressionist/Brushes/Makefile.in --- gimp-2.2.6/plug-ins/gimpressionist/Brushes/Makefile.in 2005-04-10 02:05:05.000000000 +0200 +++ gimp-2.2.7/plug-ins/gimpressionist/Brushes/Makefile.in 2005-04-11 11:57:32.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/gimpressionist/Makefile.in gimp-2.2.7/plug-ins/gimpressionist/Makefile.in --- gimp-2.2.6/plug-ins/gimpressionist/Makefile.in 2005-04-10 02:05:04.000000000 +0200 +++ gimp-2.2.7/plug-ins/gimpressionist/Makefile.in 2005-04-11 11:57:30.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/gimpressionist/Paper/Makefile.in gimp-2.2.7/plug-ins/gimpressionist/Paper/Makefile.in --- gimp-2.2.6/plug-ins/gimpressionist/Paper/Makefile.in 2005-04-10 02:05:06.000000000 +0200 +++ gimp-2.2.7/plug-ins/gimpressionist/Paper/Makefile.in 2005-04-11 11:57:33.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/gimpressionist/Presets/Makefile.in gimp-2.2.7/plug-ins/gimpressionist/Presets/Makefile.in --- gimp-2.2.6/plug-ins/gimpressionist/Presets/Makefile.in 2005-04-10 02:05:06.000000000 +0200 +++ gimp-2.2.7/plug-ins/gimpressionist/Presets/Makefile.in 2005-04-11 11:57:34.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/help/Makefile.in gimp-2.2.7/plug-ins/help/Makefile.in --- gimp-2.2.6/plug-ins/help/Makefile.in 2005-04-10 02:05:19.000000000 +0200 +++ gimp-2.2.7/plug-ins/help/Makefile.in 2005-04-11 11:57:53.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/helpbrowser/Makefile.in gimp-2.2.7/plug-ins/helpbrowser/Makefile.in --- gimp-2.2.6/plug-ins/helpbrowser/Makefile.in 2005-04-10 02:05:21.000000000 +0200 +++ gimp-2.2.7/plug-ins/helpbrowser/Makefile.in 2005-04-11 11:57:57.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/ifscompose/Makefile.in gimp-2.2.7/plug-ins/ifscompose/Makefile.in --- gimp-2.2.6/plug-ins/ifscompose/Makefile.in 2005-04-10 02:05:24.000000000 +0200 +++ gimp-2.2.7/plug-ins/ifscompose/Makefile.in 2005-04-11 11:58:02.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/imagemap/images/Makefile.in gimp-2.2.7/plug-ins/imagemap/images/Makefile.in --- gimp-2.2.6/plug-ins/imagemap/images/Makefile.in 2005-04-10 02:05:30.000000000 +0200 +++ gimp-2.2.7/plug-ins/imagemap/images/Makefile.in 2005-04-11 11:58:10.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/imagemap/Makefile.in gimp-2.2.7/plug-ins/imagemap/Makefile.in --- gimp-2.2.6/plug-ins/imagemap/Makefile.in 2005-04-10 02:05:29.000000000 +0200 +++ gimp-2.2.7/plug-ins/imagemap/Makefile.in 2005-04-11 11:58:09.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/Lighting/images/Makefile.in gimp-2.2.7/plug-ins/Lighting/images/Makefile.in --- gimp-2.2.6/plug-ins/Lighting/images/Makefile.in 2005-04-10 02:04:22.000000000 +0200 +++ gimp-2.2.7/plug-ins/Lighting/images/Makefile.in 2005-04-11 11:56:12.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/Lighting/lighting_shade.c gimp-2.2.7/plug-ins/Lighting/lighting_shade.c --- gimp-2.2.6/plug-ins/Lighting/lighting_shade.c 2005-01-14 11:00:51.000000000 +0100 +++ gimp-2.2.7/plug-ins/Lighting/lighting_shade.c 2005-04-27 16:53:04.000000000 +0200 @@ -489,7 +489,7 @@ if (mapvals.transparent_background && heights[1][x] == 0) { - gimp_rgb_set_alpha (&color, 0.0); + gimp_rgb_set_alpha (&color_sum, 0.0); } else { diff -uraN gimp-2.2.6/plug-ins/Lighting/Makefile.in gimp-2.2.7/plug-ins/Lighting/Makefile.in --- gimp-2.2.6/plug-ins/Lighting/Makefile.in 2005-04-10 02:04:21.000000000 +0200 +++ gimp-2.2.7/plug-ins/Lighting/Makefile.in 2005-04-11 11:56:10.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/Makefile.in gimp-2.2.7/plug-ins/Makefile.in --- gimp-2.2.6/plug-ins/Makefile.in 2005-04-10 02:03:59.000000000 +0200 +++ gimp-2.2.7/plug-ins/Makefile.in 2005-04-11 11:55:21.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/MapObject/Makefile.in gimp-2.2.7/plug-ins/MapObject/Makefile.in --- gimp-2.2.6/plug-ins/MapObject/Makefile.in 2005-04-10 02:04:27.000000000 +0200 +++ gimp-2.2.7/plug-ins/MapObject/Makefile.in 2005-04-11 11:56:22.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/maze/Makefile.in gimp-2.2.7/plug-ins/maze/Makefile.in --- gimp-2.2.6/plug-ins/maze/Makefile.in 2005-04-10 02:05:59.000000000 +0200 +++ gimp-2.2.7/plug-ins/maze/Makefile.in 2005-04-11 11:58:53.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/pagecurl/Makefile.in gimp-2.2.7/plug-ins/pagecurl/Makefile.in --- gimp-2.2.6/plug-ins/pagecurl/Makefile.in 2005-04-10 02:06:03.000000000 +0200 +++ gimp-2.2.7/plug-ins/pagecurl/Makefile.in 2005-04-11 11:58:58.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/print/Makefile.in gimp-2.2.7/plug-ins/print/Makefile.in --- gimp-2.2.6/plug-ins/print/Makefile.in 2005-04-10 02:06:05.000000000 +0200 +++ gimp-2.2.7/plug-ins/print/Makefile.in 2005-04-11 11:59:00.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/pygimp/doc/Makefile.in gimp-2.2.7/plug-ins/pygimp/doc/Makefile.in --- gimp-2.2.6/plug-ins/pygimp/doc/Makefile.in 2005-04-10 02:06:11.000000000 +0200 +++ gimp-2.2.7/plug-ins/pygimp/doc/Makefile.in 2005-04-11 11:59:07.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/pygimp/Makefile.in gimp-2.2.7/plug-ins/pygimp/Makefile.in --- gimp-2.2.6/plug-ins/pygimp/Makefile.in 2005-04-10 02:06:10.000000000 +0200 +++ gimp-2.2.7/plug-ins/pygimp/Makefile.in 2005-04-11 11:59:06.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/pygimp/plug-ins/clothify.py gimp-2.2.7/plug-ins/pygimp/plug-ins/clothify.py --- gimp-2.2.6/plug-ins/pygimp/plug-ins/clothify.py 2005-03-08 16:47:59.000000000 +0100 +++ gimp-2.2.7/plug-ins/pygimp/plug-ins/clothify.py 2005-04-29 12:28:02.000000000 +0200 @@ -22,7 +22,6 @@ def python_clothify(timg, tdrawable, bx=9, by=9, azimuth=135, elevation=45, depth=3): - bx = 9 ; by = 9 ; azimuth = 135 ; elevation = 45 ; depth = 3 width = tdrawable.width height = tdrawable.height img = gimp.Image(width, height, RGB) diff -uraN gimp-2.2.6/plug-ins/pygimp/plug-ins/Makefile.in gimp-2.2.7/plug-ins/pygimp/plug-ins/Makefile.in --- gimp-2.2.6/plug-ins/pygimp/plug-ins/Makefile.in 2005-04-10 02:06:12.000000000 +0200 +++ gimp-2.2.7/plug-ins/pygimp/plug-ins/Makefile.in 2005-04-11 11:59:08.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/rcm/images/Makefile.in gimp-2.2.7/plug-ins/rcm/images/Makefile.in --- gimp-2.2.6/plug-ins/rcm/images/Makefile.in 2005-04-10 02:06:20.000000000 +0200 +++ gimp-2.2.7/plug-ins/rcm/images/Makefile.in 2005-04-11 11:59:17.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/rcm/Makefile.in gimp-2.2.7/plug-ins/rcm/Makefile.in --- gimp-2.2.6/plug-ins/rcm/Makefile.in 2005-04-10 02:06:19.000000000 +0200 +++ gimp-2.2.7/plug-ins/rcm/Makefile.in 2005-04-11 11:59:16.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/script-fu/Makefile.in gimp-2.2.7/plug-ins/script-fu/Makefile.in --- gimp-2.2.6/plug-ins/script-fu/Makefile.in 2005-04-10 02:04:06.000000000 +0200 +++ gimp-2.2.7/plug-ins/script-fu/Makefile.in 2005-04-11 11:55:34.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/script-fu/scripts/images/Makefile.in gimp-2.2.7/plug-ins/script-fu/scripts/images/Makefile.in --- gimp-2.2.6/plug-ins/script-fu/scripts/images/Makefile.in 2005-04-10 02:04:10.000000000 +0200 +++ gimp-2.2.7/plug-ins/script-fu/scripts/images/Makefile.in 2005-04-11 11:55:43.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/script-fu/scripts/Makefile.in gimp-2.2.7/plug-ins/script-fu/scripts/Makefile.in --- gimp-2.2.6/plug-ins/script-fu/scripts/Makefile.in 2005-04-10 02:04:09.000000000 +0200 +++ gimp-2.2.7/plug-ins/script-fu/scripts/Makefile.in 2005-04-11 11:55:41.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/script-fu/siod/Makefile.in gimp-2.2.7/plug-ins/script-fu/siod/Makefile.in --- gimp-2.2.6/plug-ins/script-fu/siod/Makefile.in 2005-04-10 02:04:07.000000000 +0200 +++ gimp-2.2.7/plug-ins/script-fu/siod/Makefile.in 2005-04-11 11:55:36.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/sel2path/Makefile.in gimp-2.2.7/plug-ins/sel2path/Makefile.in --- gimp-2.2.6/plug-ins/sel2path/Makefile.in 2005-04-10 02:06:27.000000000 +0200 +++ gimp-2.2.7/plug-ins/sel2path/Makefile.in 2005-04-11 11:59:26.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/sgi/Makefile.in gimp-2.2.7/plug-ins/sgi/Makefile.in --- gimp-2.2.6/plug-ins/sgi/Makefile.in 2005-04-10 02:06:25.000000000 +0200 +++ gimp-2.2.7/plug-ins/sgi/Makefile.in 2005-04-11 11:59:22.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/twain/Makefile.in gimp-2.2.7/plug-ins/twain/Makefile.in --- gimp-2.2.6/plug-ins/twain/Makefile.in 2005-04-10 02:12:47.000000000 +0200 +++ gimp-2.2.7/plug-ins/twain/Makefile.in 2005-05-08 12:30:12.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/winicon/Makefile.in gimp-2.2.7/plug-ins/winicon/Makefile.in --- gimp-2.2.6/plug-ins/winicon/Makefile.in 2005-04-10 02:06:32.000000000 +0200 +++ gimp-2.2.7/plug-ins/winicon/Makefile.in 2005-04-11 11:59:31.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/winsnap/Makefile.in gimp-2.2.7/plug-ins/winsnap/Makefile.in --- gimp-2.2.6/plug-ins/winsnap/Makefile.in 2005-04-10 02:12:48.000000000 +0200 +++ gimp-2.2.7/plug-ins/winsnap/Makefile.in 2005-05-08 12:30:14.000000000 +0200 @@ -322,6 +322,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.6/plug-ins/xjt/Makefile.in gimp-2.2.7/plug-ins/xjt/Makefile.in --- gimp-2.2.6/plug-ins/xjt/Makefile.in 2005-04-10 02:06:35.000000000 +0200 +++ gimp-2.2.7/plug-ins/xjt/Makefile.in 2005-04-11 11:59:36.000000000 +0200 @@ -322,6 +322,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.6/po/ChangeLog gimp-2.2.7/po/ChangeLog --- gimp-2.2.6/po/ChangeLog 2005-04-09 21:46:24.000000000 +0200 +++ gimp-2.2.7/po/ChangeLog 2005-05-08 12:01:58.000000000 +0200 @@ -1,3 +1,34 @@ +2005-05-06 Jakub Friedl + + * cs.po: Minor improvements + +2005-01-02 Roman Joost + + * de.po: fixed ambigious mnemonics for "Bild" and "Bearbeiten" + menuitems spotted by Christian Theune + +2005-04-29 Jakub Friedl + + * cs.po: Minor fix. + +2005-04-26 Sven Neumann + + * ko.po: marked an invallid translation as fuzzy (invalid + according to msgfmt). + +2005-04-26 Jakub Friedl + + * cs.po: Updated Czech translation. Fixed some problems. + +2005-04-25 Dmitry G. Mastrukov + + * ru.po: Updated Russian translation + from Russian team . + +2005-04-22 Changwoo Ryu + + * ko.po: Updated Korean translation by Dongsu Jang. + 2005-04-09 Vincent van Adrighem * nl.po: Translation updated by Tino Meinen. diff -uraN gimp-2.2.6/po/cs.gmo gimp-2.2.7/po/cs.gmo --- gimp-2.2.6/po/cs.gmo 2005-01-22 17:33:13.000000000 +0100 +++ gimp-2.2.7/po/cs.gmo 2005-05-08 12:15:21.000000000 +0200 @@ -1,242 +1,228 @@ -V Js |HI&_kG9:GtANiM<k@`2;POa29-9L;7  -  - -+ 6BR -alo -06GZck - - -  -  &2 7 CKP."1Q!- -? JV l -x  -$6E*[6+J_s#! -=HYas| 130dx~ -$/I_y -AJ-x<  %5=B \h~  -8O&e$ "% HTY_d -t7   )0 8 EQ Yfk pm}  <JZ aCn7=@(6id#39m<#!! ;G ] gqz6S,j  !)Kf|    +8.N5}578!)Z,2 5VqOA%&E4l1#  ! -7O`fo~ -  0$ U an u  +,5 ES \f -n y$ =Wu"  (0 5 J"X"{ -  - -)?,Y!##! -%,R.q #-8f%| ) -C -N -Yd|  - -+6-=k r +>U fr %! $&<c w    ,> MYh - -- 6B IW_ gt -|  #= FP `jq:?8 - COXj { - - -  - % .;O ^>l #2Ddt   - 0:Mb} - -   -:Je t -*!.)Xt#}"&' =I],f# '0'MuFT%z    - !/ Lm| ($ 0.=_61<?CA79c709B=If>C-Jqg $0@Rgl~      -2FYl~ <Wn  -   -     ) <  -M X t  |        - -(3 -\ -b -i - q -~ - - +^  K  &kFG9G4A|Ni <wk@ 2a;PO!2q9-9 ;F7  + + +  +!,/? +Wbjr0#+ +BMT\d s + +   K\.1!Cew~ + + , +8CX ku +*6F} +3Gf{# +!3<\p x 13$8>QX + 9@ O +\gxAJ8<K  (>QZq  +&%$Lqx ~ " $ +4?N_s7   &+ 0m=   + !C.7r=@6)d`3-<A#~!   '1:Rh,*Wqy  ! &<Qfo x   .5=5s78),Dq2 1OMA%&4,1a#   &/>N +]hp v 0  !. 5 ? LYt+  & +. 9C$c 5HX"m  r{  +"";^w +  +),F!`##!%.1` gs#-&%<bx  + + +$<CR W er  +-+ 2?Of jty &2 B N \ipv%|! &# 7ETg y    (@[x + +-   '4 +< GTgz   *1:O?8 * ;E +T_e +{ + +   >, k$4 DQ `mr  "= S +al +    +% 4 B +NY*j!.4#="a&  ,&#Sw~ '' 5RhFT:A GTj }  +  -<K]o u ($ 0=C61<?'Ag79c09B=-fk>CJUg $ 6DY^p     $8K^p  . I ` t     +     +    + +.  - -O - - - - -      -      " .. ] p   -          -  ( < S ub   c} ziorw#5DM]r&' B ! +5 D R^ cmsz  )>MVl  -    - -*?VH^ -  -H!(BJ1  -#. 3 ?`KCF10    - -*5L\m ( - -H -M X -ep w     )1OV ^l 'AWs w   K3 6@w"  $3N c q (+)*2!]/*$'Aiy -   7 J  a         !*!E! V!`!p!!!!!!!" ""1"B"W"v""-"##### $ $&$6$ F$R$3X$$$$$ $ -$ $ %%,%K%k%%%% %%% %% &&.&@6&w&-~&& && & & &&' '(' -' 9'E'\'{''' ' ' '' ' (!( :(F( -\(g(|( (( (( -((() ))#)+)4)<)N)f) |)))) -)#))**5*;*C*`*+}*** * * -* * ** +!+:+S+ h+u+ ++++"++,, 9,G,M,R,X,$n,,,,, ,, , ,-- - *-7- -O- Z- -g-r- --- - -----.2.N.`.g.p. ..... -. ...// */ 4/>/G/ X/ e/ o/{//// / -/ // 0 0!0 ;0 G0 S0,_00!0000) 1 31@1 X1 f1r1w111 1 11B1A2P2n22 2222 22223 333333 -33 33 4 4(4:4Z4"y4!4!4445 )5 35 =5G5W5f5 n5|5V5+5 6(6:6"@6c6 y6 666%6 -6 6677)7 -97D7 S7a7 j7x7 7 7777 7 7 77&8,98 f8s8x8 -8 -888889#9459j9|9 -999 -9 999 9999 :: 0:!<:^: m:{: :::: ::: ;;;;";?^;;;;;;;<4<<<-< )>3><> -L> W>#a>>-> >>> >??%?.? -7? B?N??@@ %@2@;@C@I@_@ -w@ -@@@ -@ @ @@@@ A A!A;A ?AMAaA pA }AAAA AAA AA - BB)B T RT_TrTTT$TTU U$U4UNUbU!zUUUU -UUU VV-VHV_VsVV VVVVVW(W AWOWbW uWWWWWWWX -XX-X"GXjXX XXXXX -Y=Y6XYSYJY.ZGZZZ mZwZZZZZZZ [[![6[I[ ][i[[[ [[[[\ \;\S\ g\s\\\\\\\)]N]^K#_=o__*1`\`a3aTa?-b`mb2bcc3e46f/kff Vgbgjgpgwggggggggghh 4h @hMh;Vhh hhh hh hii#$i HiUi ji xi&ii -iiiij"jCL3c;;ӏF    )/7 Ijqy3ْ# 1I\l ǓӓFI -i -t      Ȕ!֔!  &+2K^0Qە-Ɩ$i5PėG-]OjۙoFej~poww<_?>ܝtt`fp0vƠ۠ 6o34# G֢%XDUOCZclt -}   #̤ $+4GZcu    ɥӥۥ  ;\ bov  Φ Ѧ ݦ   -" *7?_ hv| ŧ -ͧا  '5 I We uͨ ި  9 C -P[apǩة $ E OY ak q} Ū̪Ҫ٪    - -$/HQ Yc iv|  ūҫ 1@ -`k~  ˬ ڬ   9BJ]s  ĭʭѭ -٭    - ( 6 C M Zg x  - ʮ ٮ   ' 0 = KX a o}  Я ݯ   +1:K^p(Ұ41K/}ñӱ "#3 Wx" -'= NZaiy - -ij -ϳڳ  - -1<MS -\gmv{ ʴٴݴ - -5P bl| ! յ  -7 BNUYaflr y  .¶4C)ZqL8CN|D˹ukEp8M<F4V{DҼ/AG5B87; s -   ξ ߾ - )"2Uu3ſݿ  )  7 -CNW` p ~  - -     Y|q41##Uy 1@\o ,D\v*5 >[c~/*Fq - $ 1 =IZjl-)F`ev|%?Xr y  >G5}?  >Q X*d /L]f n|=1 0< B O[ d ! -2     = G U b o2|  -    '1zA - -'<DDU/H@4Tf"8+dH|%#"!2Te    -#$:_!'#"#2#V z +DIRZi AFCMB?6.K#z&7,G*caB,3,`<?( -3%Ek   );BHZw: # *6 FRn2 -  -, -7B%S/y .Fb|- 1DKT\  -$!='_&& 0Iax -3. +9$e##%#>[cs*,F,_ ')Qbq0 -/GWls ;6>W `j| 0I[q 2( >1X+;L\o6 H iw3    - 0G ao (CBM1  4 HRa|& 1DU eo<&0BVhz  7Mk . ?M f"t %4EVf4 B/Q  &/ JV -p0{(&1:l)(W2Z +1]w"~ B= Kf&"/<RLE="M`LMFIDw>MIWP.zQQLW| s (>Tk,F"^! 'C_| &=P!d  ((;7d  - - QD bl  1 G ] f u   - %    -    - -4 -9 - M -[ -t - - - - - - -x   r  - w w |t 7CTen01I% o y  --A)Jt1.  &E dq -&!!49AWrOz -  -K $UEz7 ( 2 @J _ -mx ~ s B88)bk  *9R g%uU" 1> G U cq  - -: AM_y">]#} g3k?! - ,6P dqy 2)A;D}@B"Fi9| -3 - +H t       !!,!B!Q!f!!!&! !""*"@"`"z"'"!""" # "#C#^#(}#"####$($B$'`$!$$"$ %%& &!)& K&W&^&o&&&6&&&&'0'@'P'_'#o'#''''((0(?(S( Z(f(~((([()<)X)s)))))') -))** *2*&K*'r*** * *** + +'+ 6+ C+Q+`+u+ + + + ++++++, -, !,-, 2,@,[, q,,,,,+,'-(-E- d- n- x- -(-- --..'.7.G.b.|......//3/'N/v/////////* 060M0j0~000 000000 1(1<1R1e1}11111112-2I2h22 2 -22 22!23 33 3)3?3U3l33 3 333 3 3$3 4424J4 Y4 f4$s44 4#44 4 4B5F5)b55%5(545'686O6 b6o6s6 -66666H6F,7 s777 77 77 778 8'8088888 88919!G9i9999 9#9 : 8:Y:u::: : ::::: -;e;-;;7; ;,; '<H<\<$n<$<+<<<< < -== 3===M=]= d=p======= ==>+>#J>n>>> >>">">>?,???9Q??? -????? ?? @@@!@ 9@C@ Z@$f@@@@ @@@A -A&A9AOA_AgAMpAEABB(B HB)iB'BBHsCCC:CE -'E 2E @E LE"XE{E1E -EEEEEFF"F+F:FJFGG4G =GJGRGZG`GGG GGGG G H H H:H KHUH!kH HHHHHH"I -#I .I 8I EISI bI oI}III I I I III%J#:J^J gJqJ*J&J(J)K!/KQK aK?oKbK>L=QL?L -L+LAMHMaMyM M -MM-M,MNN(N\O\h\z\\\ \"\\\]I] ^.^6^<^Q^ Y^e^w^^^#^^_ _&_9_V_m_$___ __`!`9`%U`{`` ````a$ aEadaya aaa a$aabb7bSb -lbwbb$b$bb c (c5cRc mczccccccd /d;dMd,iddd -dd de+eEe5be,eSeOfifffffff f gg;g LgVgjg{gg g!gggg*h%>h#dh(h(h"hhi&i=iViqiiii:jdj7kVV\Muaï%r%s H,KuI{ Yvmj;q  ͷ 7;ȸʸҸ1۸* 8A$;g`_ȺZ(+ ϻܻ    &56N  Ǽ ߼ (;Pg{  ͽڽݽ9 Vdjqx - ɾ̾߾  &:ARYu~ " - #=Pas *=P dn   #5Jfy#    -&1N bp -   -  4 BL U a n -x     $,4M)a       +;>GMTg - -.,5 -> I Vdu      /5 :DL `n   .? R^ v   ! " )3GZo/  $K<=5)&PYbk:,%'0FBb -  '4;Dcv -    -'? HR [ gsx -  "/AGMVQ ' %H$n$# -  - -%04:B0Q@ "o f~via0!LgdO ^T ^cR& .2 -nRfpp}O~U@_l^ i: q%de.vJM9M 5 g=%w}]g2- )6u\R ' T&=tyBQYxM;qX= w$ :552 WjQc>h!+7U>] *P5WPN; U E r)aO X4{~:IwPx( N:a|2hbu--]~ -_%,5.;YR&V"/w o&R R1OB }F;% JA}o 7xQrA I;MELiyw H,SZt#tE!& qDaO-:  g] ]DC\FU Ob]@K{sGL 1"R5ry463Ezv" 'N >qFN*$ |` e {tQ(_Ys4b*;"$$t) qh<3K@!@YQf/y5l!|9# pWVC[,XPMvMfopwQ =#hd0XF /|@^nL% -z$`<kiN~y\UNr e8?k3<.AD1 # ZN ?^c -'J\;w?ed e S'C ZL  A<G [C|o 0. C  s-SxxT`YBg<j= A :m 4F1MKXr >ID* ?uG{" ( l<iW\$jqEZz ~DK]%\D*Cw$ [dE`? l8_?;7dxE%IL~ G| _pnI 70.@ 7B Jv[FB~-f&r(J .5|7tH!0Oz.Xu}'0 ? dMtv6}-30pc{zBHhnR zH"f1vP - K / 0G#:S&Qw,vet]F^3p gj,bT%4m *1YMkiQ-T6zHL !E ) Skup1/gW'52$%>) , jrH{<N m?7 ml^)*;+q"kCBZ -UTNO+yV9AFMxZmz 18uZO438@u 38A 3j9,(9UN6A,W=Z8){! nPTGE Cs;T61se=# }Ygykdb`3099~< n: /u_"LKuVO2\/Ia8o}B  + ! l_>*>go96 2oPSBxicH[+I8(H(KGC3 Uq\4@D'| yR8 Sj9z`l7=7)bY#6 :P `W`mV @  S [V P^6.f=0^ri+ -lK(KshhCk{*aWs] R\JaV-m.X{JnV"? -(jrjS+vcDGB&b_2x=m> 4  5cVdA%4# bGI LEITh@f<[+ss#UWZl62 ',!e/ -J:kJ  ,   f[i'VJ&F_ (7oK>) ap<c&8 -/# F9 DmD *1+aI`nQ-$H 4 [UTXGA2QS}Ly Xe)qb|t>Hhkc?$+n/P'Y +? +J +f + n +z + + + + + + + (% N T [  c p x ~  + O   +       +      . O b u  +           .EuTco 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   K362ix"  $%@ U c (+)*$!Oq/*  '3 [ k {   +       !!)!? I?#S?w?-? ??? ??@@ @ +)@ 4@@@@@A A$A-A5A;AQA +iA +tAAA +A A AAAA A B! B-B 1B?BSB bB oB|BBB BBB BB +B CC .CM\MqMMMMM M MMM NN .N:NONUN +\N +gNrN zNNN NN +NNN NN +OO2O OO[OmOOO OOOOPP4-PbPPPPPPP.QE3QyQ Q QQ Q QQQ Q R R + R+R OUZior  &3E U cm  +<  !3GWf{ȏ׏ 1 +ALQZ3q;;Fƒ   )7=E WxΓ3#?WjzȔΔ ՔFW +w +     ȕ ֕!! ( 4+@Kl0Q;ԗ$w5PҘG#-kOjoTeěj*~pow<m?>t)t`t~0¡ԡ 6 +oA4¢#G%,XRUOQhqz +   ȥ#ڥ #29BUhq    צ * Ij p}  ˧ܧ ߧ   +%0 8EMm v ǨӨ +ۨ % 5C W es ɩ۩  - G Q +^io~ժ" 2 S ]g oy  ëӫګ  +   +' +2=V_ gq w Ǭ Ӭ %?N +ny  í٭   ,GPXk  ®Үخ߮ +    ++ 6 D Q [ hu   + ïϯد    .5 > K Yf o } °ǰϰ ް   ,9?HYl~(ʱ +4$1Y/Ѳ 0#A e"̳ +%,5K \how +Ǵ +Ҵ +ݴ  +?J[a +ju{õ ˵ص + $5(^ pz !  % +E P\cgotz   .з%B)YqL8BN{DʺukEp7M<F3VzDѽ/AF5B87: r +   Ϳ ޿ +("1Tt3  )  6 +BMV_ o }  + +     Y|p41"#Tx +0?[n +C[u*5=Zb}.*Ep +  % , 8DUel|-)A[`qw :Sm t >G)q?  2E L*X #@QZ bp=1 $0 6 CO X y! +2   1 ; I V c2p  +    %z5 + + +08DI/H@4Hf}"8XHp%#"!&HY x  $.S!s'##&#J n| 8=FN]w AFCAB?6.?#n&7,;*WaB,',T<?('%9_ t~  /6<Nk{: + * :Fc2 +   +" +-8%I/o #;Wq-  &9@IQ  +$ !2'T|&&%>Vm +3.+.$Z##%#>PXh}*,;,T'FWf0w$<Lahy ; +3L U_q%>Pf 2(31M  0AQdu+ = ^l3u    +%< Vdx (C7M{1  ) =GVq&&9J Zdu<&%7K]o   ,B`| # 4B ["i):K[4u B/Fv  &$ ?K +e0p(&1/a)}( W'Z +&Rl"s B=@[v2R&Y"<LE6=|MLMUFDw/>IW0PzQTQW|P  %D Vbr  8Qbr"! >\w  ,>Pa|! "4E\x(7    + &  +8 C K  R Q^    o + + + + + + + + + +%  -  ;  +I  T ^ t           - K ]    r +awl tj 01L~I  '.=E NXw)1.E t &  +2&E!lO +7 BLb +kKv$E-57D|     +  szB8]8 ! 3Tg*{ %U'}    ,=P Ye w + }# ':Oags3?Of!}   -A2Q)AD@5 Bv "  9  +)!4!F!3Y!!!+!!! ""0"B"\"t"""""""#&.# U#v######' $!3$U$m$~$ $$$($"%<%U%e%{%%%'%!%&"5& X'd'z' '!' '''''(6 (C(V(q((((((#(#)*)A)Y)v))))) )))*!*[)**<****++$+'5+ +]+h+{++++&+'+,(, >, K,Y,i, , ,, , , , , , , , - - #- /-<-B-K-g- +m- x-- --- ---..++.'W... . . . .(/:/ C/M/_/o/~//////0,0<0L0]0n00'000!01'1.151=1*T1111111 11 2&2.2C2U2q222222233+3F3Y3v3333 3 +34 44!+4M4T4\4 e4r44444 4 445 5 #5$05U5e5{55 5 5$55 5#5"6 16 >6BL66)66%6(74;7p777 777 +77788H,8Fu8 888 99 9$9 59C9W9i9p9y9::/:6: >:H:[:z:!::::: ;#<; `; ;;;;; < <<1<@<F< +Z<ee<-<<7= 9=,C= p===$=$=+>->6>>> E>S>f> |>>>> >>>>>>? ? /?;?O?+g?#???? ??"@"%@H@^@u@@9@@@ +@@@A%A ;AHA OA[AcAjA AA A$AAAA B&B:BUB +hBsBBBBBMBE CQCeCuC C)C'CDHD EE:*EeF +tF F F F"FF1F +GG0GBGHGPGfGoGxGGGOHhHH HHHHHHH H I"I5I GI UI cImII II!I IIIJ,J;J"MJ +pJ {J J JJ J J J J J J J K K 'K 3K%@K#fKK KK(K$K(L)-L!WLyL L?LbL>:M=yM?M +M+NA.NpNNN N +NN-N,N+O>OPOdOxO O!O ONO:PNP_P|PPP P PPQ"Q>QZQmQQ7Q QQ RR'3R[RxR RRRRR RR + SS1SNSaStSSSSS*T.TKT&kT2T#T+TU&U?UYUqU UUU(U3V:VNV aVnVVVEV!VW W"W:WMMW WWWWWX3XBX QX_XwXXX XXX XX YYY%Y>YQYcYiYpYxYYYY0Y'Z*Z:ZSZ%sZZZZZZ +[#[7=[%u[[[&[[ \\08\Ci\\\\\\ ]$"]G]O]`]r]]]]]]] ]" ^,^=^W^I_ d_r_z___ _____#`+`I` ]`j`}```$``a %a3aGaea}a%aaa abb2bIb$dbbbb bbb b$c+cIcbc{cc +ccc$c$d5dPd ldydd dddde"e@e[e veee,eee +ff 4fUfrff5f,fS gO`gggggg h#h 2hShbhh hhhhh h!hi.iFi*Zi%i#i(i(i"!jDj]jmjjjjjjj:kdl~lVmCmn6nno=,pSjpIp[q1dqq 0r:tHKu<uu +vvvvvvv vv ww&wAw \w}w www2wwx'xCx^xsxxxx%xxy*yDy-Zyyy!yyyz05z(fzzzz/z! {-{"I{ l{{{{{{{ ||*| >|0H|y|||||||||}}} }!}1}2D}xw} }}~+~*2~*]~ ~)~*~~#&+ R$s)     ,2B R _k tƀր' 3)Fp'&ԁ܁  +"-3BW `n   ӂS1K:}85R'HzÄ=J J݉Jb_)7I=;:y;<*-JXg52@Б5WGX@95JJHZ4ҞZ#~+)ɟ(#+ :D֠ߠ"3DZu%ϡ E N\ tң&,@ Vcz   Τۤߤ$K ;XJߥ4Q ;IOat }  ƨ +Ҩ$ݨ*&-<T'ԩ'"0Sk{H!  + 8DMf|%ͫ$)/:Mj6^N*>V"\yM֯a$ssnHK׵I#{mYuvϷF̸;Ӹ  "/ HTc7e*,41=*oA[$g»_*Z-$ 3@IXh x ; #,< T`ižܾ& / =JM\l ǿտۿ + $:=PYh   "/Ri { 2DVg|   8 D P\ew-#= a kx~ +  + $6FI R _ +it       +   #9I\ q}) * > J W cm    + + .<kt +    * 8E Uc v    #3LS [h y      !.!=_} / $ 1;Ri$K=56l):,I%vB"+<S +Yd  +# .8 >HQ Z +do    & +:EdtxV#@Ojp w'%$$#3W +`krv~ + +0@ >[}r27=-~U>8 W8WVn0er<4O S +#c8tWslBg\0'G=bm/x:6 \T\#B-LSsM2 =MHv;3%(w$ Z_v !Re`Hx+ BZ X!+[!+*hescw3 0i# oLTKXg_ +N;69 ^P z}"+, n( 2.C/VG9EO=Ov!1_>?p _,] C 6`G|  {89vSX(M U0 NXE : 2rHa5oVh|?BA &4~ >Lf$0547z} +]P +]F 2 +"x[i'e&("q>U9m> t`,rGQv + ' |,N34 DnE3$ igLc>tIB'^"~@! ]Y  ]w7Q-h iUA yJOyAjapmZ Dk,{Zol *#(S1 W@zo*VoELVrG J; ?=|Q  fJY@0bX% =vRIm/IjF1Y&wX$ mYi4 TsGA}*2CNRkHm!rkE^Tm A^N YI?3[' K1e,&n-wkkd6oI;0C5?HuW qSB >I dIa;udFLe[BR +zfN\[)NC ^.ku1:vKdAt*5 XsCH6vTFcx'^+f( H*N JO #QqAj;:Q &(mB +6u.j. \tpkb%Q`zFg0|8Sq w&"F)}P@ Ja2xJw<FPp#4p5 qc)KS';$'O/ tx< L tlC%B ji+ ,1lK@ f-= "& )sd+T "W=A&sj<H ?DEO$CbU +%MVJ ag<~\ 6K ? yBD"/r =[ ZTh- <@]i lc d] JU:*p4`V}Pku  V A?4 ^FPZDaswx~nD7.[7 l-1o;~C@b 12/%w: ;#Xy(+"MWUy. %nd{eIyh`h{ O 6 @gl >5 C@9VXG=:lM {pLbK :f ~tES Gn!Guj$2)<KTu*P9>ls#5E9Y[$zz[Gef jDM}u,>~c3xi9I7.z#FQSA8%1 +)/{Qag9(b;oR4Q\ #:M LP,D %$}* ._|'-h 7&8|$) _) x]q^iU)O!{+ ^MYH nR ?@ Y M^ hRJbX 7-ER _]<{TEa\5k\(! yqW3yPV5/ WZ`I 3Pf 4p7S|r~!& 3rZ ZU <-Y<L*nKq. +H e " d| NW p,:8j\zaZ0b_c0  `5R1g 6_U{ODhD 2Jc]`9vF?)8'QRKy8/ g  om%dtq6 Nf}7. u3/TY Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -272,10 +258,10 @@ %s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d +The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection +GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection (%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. @@ -298,16 +284,16 @@ %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_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' +%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' Saving '%s' failed: %sSaving ImagesSawtooth waveScalable SVG image (*.svg)ScaleScale ChannelScale ImageScale LayerScale PathScale Text LayerScale imageScale itemScale ratio X:Scale ratio Y:Scale ratio:Scale the layer or selectionScalingScaling informationScaling the image to the choosen size will make it use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).Scaling the image to the choosen size will shrink some layers completely away.Scaling...ScissorsScreenScript-Fu FoldersScriptsScroll DownScroll Down (Alt)Scroll Down (Control + Alt)Scroll Down (Control)Scroll Down (Shift + Alt)Scroll Down (Shift + Control + Alt)Scroll Down (Shift + Control)Scroll Down (Shift)Scroll LeftScroll Left (Alt)Scroll Left (Control + Alt)Scroll Left (Control)Scroll Left (Shift + Alt)Scroll Left (Shift + Control + Alt)Scroll Left (Shift + Control)Scroll Left (Shift)Scroll RightScroll Right (Alt)Scroll Right (Control + Alt)Scroll Right (Control)Scroll Right (Shift + Alt)Scroll Right (Shift + Control + Alt)Scroll Right (Shift + Control)Scroll Right (Shift)Scroll UpScroll Up (Alt)Scroll Up (Control + Alt)Scroll Up (Control)Scroll Up (Shift + Alt)Scroll Up (Shift + Control + Alt)Scroll Up (Shift + Control)Scroll Up (Shift)SelectSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Controller Event ActionSelect Environment FoldersSelect File _Type (%s)Select Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Primary Color to ModifySelect Range to ModifySelect Script-Fu FoldersSelect SourceSelect Swap FolderSelect Temp FolderSelect ThemeSelect Theme FoldersSelect Zoom RatioSelect _Bottom LayerSelect _Custom Color...Select _Next LayerSelect _Previous LayerSelect _Top LayerSelect allSelect by ColorSelect contiguous regionsSelect custom canvas padding colorSelect elliptical regionsSelect hand-drawn regionsSelect noneSelect palette fileSelect rectangular regionsSelect regions by colorSelect shapes from imageSelect swap dirSelect the number of times to replicate the selected segment.Select the number of times to replicate the selection.Select the number of uniform parts in which to split the segments in the selection.Select the number of uniform parts -in which to split the selected segment.Select transparent areasSelect web browserSelecti_on to PathSelectionSelection EditorSelection Editor MenuSelection MaskSelection Tool proceduresSelection maskSelection to Path (_Advanced)Selection to pathSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet ColormapSet Custom Canvas Padding ColorSet Image Canvas SizeSet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSet OpacitySet background colorSet foreground colorSet item linkedSet layer modeSet layer opacitySet preserve transSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the monitor's horizontal resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the monitor's vertical resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the pixel format of cursors the GIMP will use.Sets the preview size used for layers and channel previews in newly created dialogs.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can not create thumbnails if layer previews are disabled.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.Shadow typeShadowsShapeShape:Shaped (angular)Shaped (dimpled)Shaped (spherical)SharpenSharpen ChannelSharpen SelectionShearShear magnitude X:Shear magnitude Y:Shear the layer or selectionShearing InformationShearing...Short dashesShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show Layer MaskShow R_ulersShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _SelectionShow _brush outlineShow _foreground & background colorShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _brush, pattern & gradientShow active _imageShow gri_dShow help _buttonsShow image sizeShow interactive boundaryShow memory usageShow menu _mnemonics (access keys)Show paint _tool cursorShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink _WrapShrink from image borderShrink selection byShrink wrapSizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSn_ap to GuidesSna_p to GridSoft lightSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:Spherical (_decreasing)Spherical (i_ncreasing)Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' +in which to split the selected segment.Select transparent areasSelect web browserSelecti_on to PathSelectionSelection EditorSelection Editor MenuSelection MaskSelection Tool proceduresSelection maskSelection to Path (_Advanced)Selection to pathSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet ColormapSet Custom Canvas Padding ColorSet Image Canvas SizeSet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSet OpacitySet background colorSet foreground colorSet item linkedSet layer modeSet layer opacitySet preserve transSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the monitor's horizontal resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the monitor's vertical resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the pixel format of cursors the GIMP will use.Sets the preview size used for layers and channel previews in newly created dialogs.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can not create thumbnails if layer previews are disabled.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.Shadow typeShadowsShapeShape:Shaped (angular)Shaped (dimpled)Shaped (spherical)SharpenSharpen ChannelSharpen SelectionShearShear magnitude X:Shear magnitude Y:Shear the layer or selectionShearing InformationShearing...Short dashesShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show Layer MaskShow R_ulersShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _SelectionShow _brush outlineShow _foreground & background colorShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _brush, pattern & gradientShow active _imageShow gri_dShow help _buttonsShow image sizeShow interactive boundaryShow memory usageShow menu _mnemonics (access keys)Show paint _tool cursorShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink _WrapShrink from image borderShrink selection byShrink wrapSizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSn_ap to GuidesSna_p to GridSoft lightSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:Spherical (_decreasing)Spherical (i_ncreasing)Spikes:Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStock IDStro_ke PathStro_ke Path...Stroke ChannelStroke PathStroke SelectionStroke lineStroke pathStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...Stroke with a paint toolStyle of bevel around the statusbar textSubtractSubtract from the current selectionSupersamplingSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' TextText ColorText EditorText LayerText modifiedText proceduresThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The active brush. Click to open the Brush Dialog.The active gradient. @@ -330,12 +316,12 @@ The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, dialogs will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp VERSION +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: cs Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2005-01-14 17:52+0100 -Last-Translator: Miloslav Trmac -Language-Team: Czech +POT-Creation-Date: 2005-05-06 21:33+0200 +PO-Revision-Date: 2005-05-05 16:54+0200 +Last-Translator: Jakub Friedl +Language-Team: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @@ -372,20 +358,20 @@ (Nepojmenovaný buffer)(Nepojmenovaná šablona)(Mění se)(čistý)(neplatný řetězec v kódování UTF-8)(změněno)(žádný)1 vrstva1 vrstva15 stupňů %s16:1 (1600%)1:1 (100%)1:16 (6,25%)1:2 (50%)1:4 (25%)1:8 (12,5%)2:1 (200%)2D transformace...4:1 (400%)8:1 (800%)<%s><><Žádné moduly>K optimálnímu výkonu GIMPu možná bude potřeba upravit některá nastavení.GIMP - GNU program pro práci s obrázky Copyright © 1995-2004 Spencer Kimball, Peter Mattis a vývojový tým GIMP.Soubor s tipy GIMPu nebylo možné zpracovat!Váš soubor s tipy GIMPu zřejmě chybí!Soubor nazvaný '%s' již existuje._Přidat do výběru_Úhel:O GIMPuAkceAktivovat obrázek podle _oknaAktivní filtryAdaptivní převzorkováníPřidatPřidat alfa _kanálPřidat alfa kanálPřidat ukotveníPřidat kanálPřidat barvu do mapy barevPřidat vodítko: Přidat vodítkaPřidat vodorovné vodítkoPřidat ma_sku vrstvy...Přidat vrstvuPřidat masku vrstvyPřidat cestuPřidat vykresleníPřidat textovou vrstvuPřidat svislé vodítkoPřidat masku k vrstvěPřidat barvu z pozadíPřidat barvu z popředíPřidat masku vrstvyPřidání textu do obrázkuPřidá aktuální barvy do historie barevPřidat vybraný filtr do seznamu aktivních filtrů.Přidat do palety %sPřidat k aktuálnímu výběruPřidávám téma '%s' (%s) -SoučetDalší vstupní ovladačeÚprava jasu a kontrastuÚprava vyvážení barevÚprava barevných křivekÚprava úrovní barevUpravit jas a kontrastUpravit vyvážení barevÚprava barevných křivekÚprava úrovní barevNastavení odstínu / světlosti / sytostiÚprava odstínu a sytostiAutomaticky upravit úrovněNastaveníPokročilé volbyOvlivnit:Ovlivněná oblast %sVzdušný štětecVzdušný štětec s různým tlakem_Alfa do výběruSledujícíSledováníVšechny kanályVšechny filtryVšechny soubory (*.*)Všechna data obrázků a zpětných úprav, která se nevejdou do vyrovnávací paměti dlaždic, budou zapisována do odkládacího souboru. Tento soubor by se měl nacházet na místním systému souborů s dostatečným volným prostorem (několik set MB). Na systémech UNIX asi budete chtít použít systémový dočasný adresář ("/tmp" nebo "/var/tmp").Umožní vyplnit zcela transparentní oblastiUmožní vybrat zcela průhledné oblastiPovolit rozšíření %sAlfaAlfa do výběruAlfa:Obrázek zvolené velikosti bude používat více paměti, než kolik je nastaveno jako "Maximální velikost obrázku" v dialogu Nastavení (momentálně %s)._AnimaceUkotvit plovoucí výběrUkotvit plovoucí vrstvuUkotvit plovoucí výběrÚhel:Opak gumy %sVyhlazováníZobrazováníPoužít masku vrstvyPoužít _masku vrstvyAplikovat práhPoužít masku vrstvyJste si jisti, že chcete odstranit '%s' ze seznamu a z disku?Jste si jisti, že chcete odstranit šablonu '%s' ze seznamu a z disku?Podle _předvolebPožádat o potvrzení před zavřením obrázku bez uložení.Poměr stran:Poměr stran:Připojení parazitaPřipojit parazita k obrázkuPřipojení parazita k položcePřipojit parazitaAutor:AutomatickyAutomaticky následovat aktivní _obrázekAutomaticky zmenšitAutomaticky zmenšit výběrAutomaticky měnit velikost oknaAutomaticky nahrátAutomaticky detekovánoDostupné filtryDostupné typy:Vyplňování barvou pozadí_Jas-kontrast..._BufferyPozadíBarva pozadíBarva pozadí nastavena na:Pozadí: %d, %d, %dZpět (Korektivní)Založit oblast k vyplnění na všech viditelných vrstváchZaložit výběr na všech viditelných vrstváchPod kresbouKosáBilineárníČernobíleČerná:Mísení _barev koncových bodů_MíseníMíseníMísení _krytí koncových bodůMísení: Mísení: Není povoleno pro indexované obrázky.Mísení...ModráModrá:RozostřeníRozmazání nebo zaostření_Obvod...Kanál okrajeVybrat obvodVybrat obvodJas-kontrastJas-kontrast nefunguje na indexovaných vrstvách.StopaEditor stopAdresáře se stopamiRozhraní stopStopa:StopyMenu StopyPlechovkaBufferyMenu BufferyTmavnutíUseknutáPodle příponyNavrácením obrázku do stavu uloženého na disku ztratíte všechny změny včetně informací o zpětných úpravách.CMYK_Kalibrovat..._Barevná pipetaSl_oupců:_KombinaceKalibrace rozlišení monitoruNelze vrátit %s_Velikost plátna...ZrušitZrušit vodítkoNelze přidat masku vrstvy jiných rozměrů, než má daná vrstva.Nelze přidat masku do vrstvy bez alfa kanálu.Nelze přidat masku vrstvy do vrstvy, která není součástí obrázku.Nemohu pohltit tuto vrstvu, protože to není plovoucí výběr.Nemohu převést do palety s více než 256 barvami.Nemohu vytvořit novou vrstvu z plovoucího výběru, protože patří do masky výběru nebo kanálu.Nelze vytvořit adresář '%s': %sNelze vytvořit náhledNelze oříznout, protože zvolená oblast je prázdná.Nemohu expandovat ${%s}Nemohu udělat výběr plovoucí, protože vybraná oblast je prázdná.Nelze posunout výš vrstvu bez alfy.Nelze uložit. Nebylo nic vybráno.Nemohu vykreslit prázdný kanál.Nemohu vykreslit prázdnou cestu.Velikost plátnaRežim _doplňování plátna:Střed X:Střed Y:CentrovanýZměnit barvu pozadíZměnit položku mapy barevZměnit barvu popředíZměna rozlišení obrázkuZměna jednotky obrázkuZměnit velikost tiskuZměnit aktuální vrstvu nebo cestuZměnit barvu pozadí mřížkyZměnit barvu popředí mřížkyZměnit indexovanou paletuZměna perspektivy vrstvy nebo výběruZměna klávesové zkratky selhala.KanálVlastnosti kanáluNázev kanálu:Kanál nemůže být ještě níž.Kanál nemůže být ještě výš.Barva kanáluKanál je již vespod.Kanál je již nahoře.Kanál do _výběruKanál do výběruKanál do výběruKanál:KanályMenu KanályVeliko_st polí šachovnice:Vyberte styl vykresleníKruh_VymazatVymazatVymazat kanálVymazat historii vraceníVymazat všechen textVymazat chybyVymazat historii vracení...Klepnutím na "Pokračovat" přijmete výše uvedená nastavení.Kliknutím na "Pokračovat" vytvoříte váš osobní adresář GIMPu.Spusťte uživatelskou instalaci GIMPu kliknutím na "Pokračovat".Pokračujte v uživatelské instalaci kliknutím na "Pokračovat".Kliknutím spojíte toto ukotvení s vybraným koncovým bodem.Kliknutím vytvoříte nové ukotvení. (zkuste SHIFT)Kliknutím vytvoříte novou komponentu cesty.Kliknutím vytvoříte novou cestu.Vytvořte náhled kliknutímKliknutím odstraníte toto ukotvení.Kliknutím vložíte ukotvení na cestu. (zkuste SHIFT)Kliknutím změníte tento uzel na úhlový.Kliknutím otevřete cestu.Kliknutím vyberete cestu, kterou upravit.Aktualizujte náhled kliknutím -Klávesou %s vynutíte aktualizaci, i když je náhled aktuálníTažením s kliknutím změníte tvar křivky. (SHIFT: symetricky)Tažením s kliknutím přesunete ukotvení.Tažením s kliknutím přesunete ukotvení.Tažením s kliknutím přesunete komponentu. (zkuste SHIFT)Tažením s kliknutím přesunete řídicí bod. (zkuste SHIFT)Tažením s kliknutím přesunete cestu.Klepnutí: vybratKlepnutí: vybrat Táhnutí: posunOříznout výsledekSchránkaOříznout dle spodní vrstvyOříznout dle obrázkuKlonováníZavřít %sZavřít všechny odrážkyZavřít všechny odrážky?Zavřít tuto odrážku_Kopírovat cestu_BarvyBarvaVyvážení barevFiltry barevného zobrazeníBarevná pipetaInformace o barevné pipetě_Vyvážení barev..._Rozptyl barev:Vyvážení barev pracuje pouze s vrstvami v barvách RGB.Vymazání barevIndex barvy:Barva:_Mapa barev_Prostor barev:_Obarvit..._Typ vybarvení pro segment_Typ vybarvení pro výběrObarvitObarvení pracuje pouze s vrstvami v barvách RGB.Obarvit obrázekObarvit obrázekMapa barevEditor barevné mapyMenu Mapa barevSloupce:_Poznámka:KomentářKon_trast:_Změna ostrostiNastavit filtry barevného zobrazeníNastavit _rozšířená vstupní zařízení..._Nastavit mřížku...Nastavit mřížkuNastavit mřížku obrázkůNastavit klávesové zkratkyNastavit _klávesové zkratky...Nastavit vybraný filtrNastavit vybraný filtr: %sPotvrdit rozměry plátnaPotvrďte změnu velikostiPotvrdit úpravu textuPotvrzovat zavření _neuložených obrázkůKolidující klávesové zkratkyKuželový (nesymetrický)Kuželový (symetrický)Spojit vykresleníPevnýOmezeníKontextKurzory závisící na kontextu jsou žůžo. Implicitně jsou povoleny. Vyžadují ale režii, bez které se možná budete chtít obejít.PokračovatPřispěliPřevodPřevést hranuPřevést obrázek na odstíny šediPřevést obrázek na indexovanýPřevést obrázek na indexované barvyPřevést obrázek na RGBPřevést obrázekPřevádím na indexovaný (krok 2)...Převádím na indexovaný (krok 3)...Převádím na indexovaný...Změna ostrostiDruh změny ostrosti %sKopírovat pojmenovanéKopírovat _viditelnéKopíruji soubor '%s' z '%s'...Copyright:Poškozený segment %d v souboru s přechodem '%s'.Nemohu odstranit '%s': %sNemohu vytvořit dočasný soubor pro '%s': %sNelze odstranit '%s': %sNemohu najít prohlížeč nápovědy GIMPuNelze otevřít '%s' pro čtení: %sNelze otevřít '%s' pro zápis: %sNemohu otevřít miniaturu '%s': %sNemohu načíst %d bajtů ze '%s': %sNelze vyhledávat v souboru XCF: %sNemohu spustit zásuvný modul prohlížeče nápovědy GIMPu.Počet:_Ořezat vrstvu_Vytvořit nový dokVytvořit novou šablonuVytvoření nového obrázkuVytvořit novou vrstvuVytvořit novou šablonuVytvořit nové zobrazení tohoto obrázkuVytvořit nový obrázek z vybrané šablonyVytvořit novou šablonuVytvářet a upravovat obrázky a fotografieVytvořit a upravit cestyVytvořit cestu z textuVytvořit výběr z cestyVytvářím náhled...Vytvářím adresář '%s'...OřezOřezání a rozměryInformace o ořezu a rozměrech plátnaOřezat obrázekOřezat vrstvuOřezat obrázekOřez obrázku nebo nastavení rozměrů plátnaOřez: Pouze nitkový kříž_VyjmoutVyjmout po_jmenované...Kubická (nejlepší)_Aktuální stavAktuální výška:Pouze aktuální vrstvaAktuální stavAktuální šířka:KurzorRežim kurz_oru:_Vykreslování kurzoru:Typ křivkyKřivkyKřivky nemohou být upravovány v indexovaných vrstvách.VlastníVlastní barvaVlastní přechodVlastní _barva doplňování:VyjmoutVyříznout pojmenovanéAzurováAzurová:_Duplikovat stopu_Duplikovat kanál_Duplikovat přechod_Duplikovat vrstvu_Duplikovat paletu_Duplikovat cestu_Duplikovat vzorek_Duplikovat šablonu...Barva tmavé šachovnicePouze ztmaveníČárka tečka tečka...Čárka tečka...Vzorek čárkování:Přednastavení čárkování:ČárkovanáDatum:LaděníImplicitní vzhled v režimu přes celou obrazovkuImplicitní vzhled v normálním režimuImplicitní mřížkaImplicitní mřížka obrázkuImplicitní _interpolace:Implicitní _velikost náhledu vrstev a kanálů:Implicitní _práh:Odstranit ukotveníOdstranit ukotveníOdstranit mas_ku vrstvyOdstranit masku vrstvyOdstranit objektOdstranit segmentOdstranit šablonuOdstranit stopuOdstranit kanálOdstranit barvuOdstranit přechodOdstranit vrstvuOdstranit masku vrstvy_Odstranit paletuOdstranit cestuOdstranit vzorekOdstranit uložené volby...Odstranit vybraný bufferOdstranit vybranou šablonuOdstranit tento obrázekOdstranit vektoryOdstraňování "%s" selhalo: %sHusté tečkyOdbarvitOdbarvení pracuje pouze s vrstvami v barvách RGB.PopisNávrhStav zařízeníZařízeníDialogyMenu DialogyKosočtverecOdlišnostPřímé barvyZakázat masku vrstvyZakázat Rychlou maskuZahodit informace o textuZobrazováníNavigace zobrazeníZobrazovací _filtry...Procedury zobrazeníTyp zobrazení:Zobrazuji [%0.6f, %0.6f]RozpouštěníVzdálenost:Vzdálenost: %0.6fRozptylDěleníVytvořit _novou uživatelskou instalaciOpravdu chcete přenastavit všechny filtry na implicitní hodnoty?Chcete opravdu přenastavit všechny volby nástrojů na implicitní hodnoty?Chcete jej nahradit obrázkem, který ukládáte?_NeukládatDokovatelné_Historie dokumentůHistorie dokumentůDokumentyMenu Dokumenty_Zesvětlování/tmavnutíZesvětlováníZesvětlující nebo ztmavující tahyZesvětlování/tmavnutíDvojitě čárkovanáTáhnout ukotveníTáhnout ukotveníTáhnout křivkuTáhnout řídicí bodPřetáhnout cestuTáhnutí: posunKreslení peremObrazovkaZměna obrazovkyProcedury obrazovkyPustit novou vrstvuPustit novou cestuFunkce textu nejsou k dispozici kvůli nedostupnosti písem.Vypisovat události z tohoto ovladačeDuplikovat stopuDuplikovat kanálDuplikovat přechodDuplikovat vrstvuDuplikovat paletuDuplikovat cestuDuplikovat vzorekDuplikovat vybranou šablonuEEK: nemohu vrátit zpět_Exportovat cestu...Velmi ma_léChování chran_Detekce hranÚpravyUpravit vlastnosti kanáluUpravit barvy kanáluUpravit položku palety barevUpravit položku mapy barevÚpravy vlastností vrstvyUpravit masku vrstvyRežim úpravUpravit barvu paletyUpravit vlastnosti cestyUpravit atributy Rychlé maskyUpravit barvu Rychlé maskyUpravit šablonuUpravit stopuUpravit atributy kanáluUpravit barvuUpravit položku mapy barev č. %dUpravit přechodUpravit atributy vrstvyUpravit paletuUpravit atributy cestyUpravit vzorekProcedury pro úpravyUpravit vybranou šablonuVýběr elipsyPrázdný kanálPrázdná vrstvaPrázdná cestaPrázdná textová vrstvaPrázdný název proměnné v souboru prostředí %s_VylepšeníPovolit Rychlou masku_Povolit rozptyl průhlednostiPovolit tento ovladačPovolte pro zobrazování užitečného tipu GIMP při spuštěníPovolte pro zobrazování nástrojových tipů.EnormníZadejte název sloučené paletyZadejte název uložených volebZadejte jméno tohoto bufferuZadejte jméno této šablonyZadejte nový název uložených volebZadejte umístění (URI):ProstředíAdresáře s prostředímEkvalizaceEkvalizace nefunguje na indexovaných vrstvách.Gumování do pozadí nebo průhlednostiGuma_Chybová konzolaChybová konzolaMenu Chybová konzolaChyba při ukládání souboru XCF: %sChyba při zpracovávání '%s' na řádku %d: %sChyba při čtení '%s': %sChyba při čtení souboru stopy '%s': %sChyba při zápisu '%s': %sChyba při ukládání XCF: %sChyba při zapisování souboru '%s': +SoučetDalší vstupní ovladačeÚprava jasu a kontrastuÚprava vyvážení barevÚprava barevných křivekÚprava úrovní barevUpravit jas a kontrastUpravit vyvážení barevÚprava barevných křivekÚprava úrovní barevNastavení odstínu / světlosti / sytostiÚprava odstínu a sytostiAutomaticky upravit úrovněNastaveníPokročilé volbyOvlivnit:Ovlivněná oblast %sRozprašovačRozprašovač s nastavitelným tlakem_Alfa do výběruSledujícíSledováníVšechny kanályVšechny filtryVšechny soubory (*.*)Všechna data obrázků a zpětných úprav, která se nevejdou do vyrovnávací paměti dlaždic, budou zapisována do odkládacího souboru. Tento soubor by se měl nacházet na místním systému souborů s dostatečným volným prostorem (několik set MB). Na systémech UNIX asi budete chtít použít systémový dočasný adresář ("/tmp" nebo "/var/tmp").Umožní vyplnit zcela transparentní oblastiUmožní vybrat zcela průhledné oblastiPovolit rozšíření %sAlfaAlfa do výběruAlfa:Obrázek zvolené velikosti bude používat více paměti, než kolik je nastaveno jako "Maximální velikost obrázku" v dialogu Nastavení (momentálně %s)._AnimaceUkotvit plovoucí výběrUkotvit plovoucí vrstvuUkotvit plovoucí výběrÚhel:Opak gumy %sVyhlazováníVzhledPoužít masku vrstvyPoužít _masku vrstvyAplikovat práhPoužít masku vrstvyJste si jisti, že chcete odstranit '%s' ze seznamu a z disku?Jste si jisti, že chcete odstranit šablonu '%s' ze seznamu a z disku?Podle _předvolebPožádat o potvrzení před zavřením obrázku bez uložení.Poměr stran:Poměr stran:Připojení parazitaPřipojit parazita k obrázkuPřipojení parazita k položcePřipojit parazitaAutor:AutomatickyAutomaticky následovat aktivní _obrázekAutomaticky zmenšitAutomaticky zmenšit výběrAutomaticky měnit velikost oknaAutomaticky nahrátAutomaticky detekovánoDostupné filtryDostupné typy:Vyplňování barvou pozadí_Jas-kontrast..._BufferyPozadíBarva pozadíBarva pozadí nastavena na:Pozadí: %d, %d, %dZpět (Korektivní)Založit oblast k vyplnění na všech viditelných vrstváchZaložit výběr na všech viditelných vrstváchPod kresbouKosáBilineárníČernobíleČerná:Mísení _barev koncových bodů_MíseníMíseníMísení _krytí koncových bodůMísení: Mísení: Není povoleno pro indexované obrázky.Mísení...ModráModrá:RozostřeníRozmazání nebo zaostření_Obvod...Kanál okrajeVybrat obvodVybrat obvodJas-kontrastJas-kontrast nefunguje na indexovaných vrstvách.StopaEditor stopAdresáře se stopamiRozhraní stopStopa:StopyMenu StopyPlechovkaBufferyMenu BufferyTmavnutíUseknutáPodle příponyNavrácením obrázku do stavu uloženého na disku ztratíte všechny změny včetně informací o zpětných úpravách.CMYK_Kalibrovat..._Barevná pipetaSl_oupců:_KombinaceKalibrace rozlišení monitoruNelze vrátit %s_Velikost plátna...ZrušitZrušit vodítkoNelze přidat masku vrstvy jiných rozměrů, než má daná vrstva.Nelze přidat masku do vrstvy bez alfa kanálu.Nelze přidat masku vrstvy do vrstvy, která není součástí obrázku.Nemohu pohltit tuto vrstvu, protože to není plovoucí výběr.Nemohu převést do palety s více než 256 barvami.Nemohu vytvořit novou vrstvu z plovoucího výběru, protože patří do masky výběru nebo kanálu.Nelze vytvořit adresář '%s': %sNelze vytvořit náhledNelze oříznout, protože zvolená oblast je prázdná.Nemohu expandovat ${%s}Nemohu udělat výběr plovoucí, protože vybraná oblast je prázdná.Nelze posunout výš vrstvu bez alfy.Nelze uložit. Nebylo nic vybráno.Nemohu vykreslit prázdný kanál.Nemohu vykreslit prázdnou cestu.Velikost plátnaRežim _doplňování plátna:Střed X:Střed Y:CentrovanýZměnit barvu pozadíZměnit položku mapy barevZměnit barvu popředíZměna rozlišení obrázkuZměna jednotky obrázkuZměnit velikost tiskuZměnit aktuální vrstvu nebo cestuZměnit barvu pozadí mřížkyZměnit barvu popředí mřížkyZměnit indexovanou paletuZměna perspektivy vrstvy nebo výběruZměna klávesové zkratky selhala.KanálVlastnosti kanáluNázev kanálu:Kanál nemůže být ještě níž.Kanál nemůže být ještě výš.Barva kanáluKanál je již vespod.Kanál je již nahoře.Kanál do _výběruKanál do výběruKanál do výběruKanál:KanályMenu KanályVeliko_st polí šachovnice:Vyberte styl vykresleníKruh_VymazatVymazatVymazat kanálVymazat historii vraceníVymazat všechen textVymazat chybyVymazat historii vracení...Klepnutím na "Pokračovat" přijmete výše uvedená nastavení.Kliknutím na "Pokračovat" vytvoříte váš osobní adresář GIMPu.Spusťte uživatelskou instalaci GIMPu kliknutím na "Pokračovat".Pokračujte v uživatelské instalaci kliknutím na "Pokračovat".Kliknutím spojíte toto ukotvení s vybraným koncovým bodem.Kliknutím vytvoříte nové ukotvení. (zkuste SHIFT)Kliknutím vytvoříte novou komponentu cesty.Kliknutím vytvoříte novou cestu.Vytvořte náhled kliknutímKliknutím odstraníte toto ukotvení.Kliknutím vložíte ukotvení na cestu. (zkuste SHIFT)Kliknutím změníte tento uzel na úhlový.Kliknutím otevřete cestu.Kliknutím vyberete cestu, kterou upravit.Aktualizujte náhled kliknutím +Klávesou %s vynutíte aktualizaci, i když je náhled aktuálníTažením s kliknutím změníte tvar křivky. (SHIFT: symetricky)Tažením s kliknutím přesunete ukotvení.Tažením s kliknutím přesunete ukotvení.Tažením s kliknutím přesunete komponentu. (zkuste SHIFT)Tažením s kliknutím přesunete řídicí bod. (zkuste SHIFT)Tažením s kliknutím přesunete cestu.Klepnutí: vybratKlepnutí: vybrat Táhnutí: posunOříznout výsledekSchránkaOříznout dle spodní vrstvyOříznout dle obrázkuKlonováníZavřít %sZavřít všechny odrážkyZavřít všechny odrážky?Zavřít tuto odrážku_Kopírovat cestu_BarvyBarvaVyvážení barevFiltry barevného zobrazeníBarevná pipetaInformace o barevné pipetě_Vyvážení barev..._Rozptyl barev:Vyvážení barev pracuje pouze s vrstvami v barvách RGB.Vymazání barevIndex barvy:Barva:_Mapa barev_Prostor barev:_Obarvit..._Způsob vybarvení segmentu_Způsob vybarvení výběruObarvitObarvení pracuje pouze s vrstvami v barvách RGB.Obarvit obrázekObarvit obrázekMapa barevEditor barevné mapyMenu Mapa barevSloupce:_Poznámka:KomentářKon_trast:_Změna ostrostiNastavit filtry barevného zobrazeníNastavit _rozšířená vstupní zařízení..._Nastavit mřížku...Nastavit mřížkuNastavit mřížku obrázkuNastavit klávesové zkratkyNastavit _klávesové zkratky...Nastavit vybraný filtrNastavit vybraný filtr: %sPotvrdit rozměry plátnaPotvrďte změnu velikostiPotvrdit úpravu textuPotvrzovat zavření _neuložených obrázkůKolidující klávesové zkratkyKuželový (nesymetrický)Kuželový (symetrický)Spojit vykresleníPevnýOmezeníKontextKurzory závisící na kontextu jsou žůžo. Implicitně jsou povoleny. Vyžadují ale režii, bez které se možná budete chtít obejít.PokračovatPřispěliPřevodPřevést hranuPřevést obrázek na odstíny šediPřevést obrázek na indexovanýPřevést obrázek na indexované barvyPřevést obrázek na RGBPřevést obrázekPřevádím na indexovaný (krok 2)...Převádím na indexovaný (krok 3)...Převádím na indexovaný...Změna ostrostiDruh změny ostrosti %sKopírovat pojmenovanéKopírovat _viditelnéKopíruji soubor '%s' z '%s'...Copyright:Poškozený segment %d v souboru s přechodem '%s'.Nemohu odstranit '%s': %sNemohu vytvořit dočasný soubor pro '%s': %sNelze odstranit '%s': %sNemohu najít prohlížeč nápovědy GIMPuNelze otevřít '%s' pro čtení: %sNelze otevřít '%s' pro zápis: %sNemohu otevřít miniaturu '%s': %sNemohu načíst %d bajtů ze '%s': %sNelze vyhledávat v souboru XCF: %sNemohu spustit zásuvný modul prohlížeče nápovědy GIMPu.Počet:_Ořezat vrstvu_Vytvořit nový dokVytvořit novou šablonuVytvoření nového obrázkuVytvořit novou vrstvuVytvořit novou šablonuVytvořit nové zobrazení tohoto obrázkuVytvořit nový obrázek z vybrané šablonyVytvořit novou šablonuVytvářet a upravovat obrázky a fotografieVytvořit a upravit cestyVytvořit cestu z textuVytvořit výběr z cestyVytvářím náhled...Vytvářím adresář '%s'...OřezOřezání a rozměryInformace o ořezu a rozměrech plátnaOřezat obrázekOřezat vrstvuOřezat obrázekOřez obrázku nebo nastavení rozměrů plátnaOřez: Pouze nitkový kříž_VyjmoutVyjmout po_jmenované...Kubická (nejlepší)_Aktuální stavAktuální výška:Pouze aktuální vrstvaAktuální stavAktuální šířka:KurzorRežim kurz_oru:_Vykreslování kurzoru:Typ křivkyKřivkyKřivky nemohou být upravovány v indexovaných vrstvách.VlastníVlastní barvaVlastní přechodVlastní _barva doplňování:VyjmoutVyříznout pojmenovanéAzurováAzurová:_Duplikovat stopu_Duplikovat kanál_Duplikovat přechod_Duplikovat vrstvu_Duplikovat paletu_Duplikovat cestu_Duplikovat vzorek_Duplikovat šablonu...Barva tmavé šachovnicePouze ztmaveníČárka tečka tečka...Čárka tečka...Vzorek čárkování:Přednastavení čárkování:ČárkovanáDatum:LaděníImplicitní vzhled v režimu přes celou obrazovkuImplicitní vzhled v normálním režimuImplicitní mřížkaImplicitní mřížka obrázkuImplicitní _interpolace:Implicitní _velikost náhledu vrstev a kanálů:Implicitní _práh:Odstranit ukotveníOdstranit ukotveníOdstranit mas_ku vrstvyOdstranit masku vrstvyOdstranit objektOdstranit segmentOdstranit šablonuOdstranit stopuOdstranit kanálOdstranit barvuOdstranit přechodOdstranit vrstvuOdstranit masku vrstvy_Odstranit paletuOdstranit cestuOdstranit vzorekOdstranit uložené volby...Odstranit vybraný bufferOdstranit vybranou šablonuOdstranit tento obrázekOdstranit vektoryOdstraňování "%s" selhalo: %sHusté tečkyOdbarvitOdbarvení pracuje pouze s vrstvami v barvách RGB.PopisNávrhStav zařízeníZařízeníDialogyMenu DialogyKosočtverecOdlišnostPřímé barvyZakázat masku vrstvyZakázat Rychlou maskuZahodit informace o textuZobrazováníNavigace zobrazeníZobrazovací _filtry...Procedury zobrazeníTyp zobrazení:Zobrazuji [%0.6f, %0.6f]RozpouštěníVzdálenost:Vzdálenost: %0.6fRozptylDěleníVytvořit _novou uživatelskou instalaciOpravdu chcete přenastavit všechny filtry na implicitní hodnoty?Chcete opravdu přenastavit všechny volby nástrojů na implicitní hodnoty?Chcete jej nahradit obrázkem, který ukládáte?_NeukládatDokovatelné_Historie dokumentůHistorie dokumentůDokumentyMenu Dokumenty_Zesvětlování/tmavnutíZesvětlováníZesvětlující nebo ztmavující tahyZesvětlování/tmavnutíDvojitě čárkovanáTáhnout ukotveníTáhnout ukotveníTáhnout křivkuTáhnout řídicí bodPřetáhnout cestuTáhnutí: posunKreslení peremObrazovkaZměna obrazovkyProcedury obrazovkyPustit novou vrstvuPustit novou cestuFunkce textu nejsou k dispozici kvůli nedostupnosti písem.Vypisovat události z tohoto ovladačeDuplikovat stopuDuplikovat kanálDuplikovat přechodDuplikovat vrstvuDuplikovat paletuDuplikovat cestuDuplikovat vzorekDuplikovat vybranou šablonuEEK: nemohu vrátit zpět_Exportovat cestu...Velmi ma_léChování chran_Detekce hranÚpravyUpravit vlastnosti kanáluUpravit barvy kanáluUpravit položku palety barevUpravit položku mapy barevÚpravy vlastností vrstvyUpravit masku vrstvyRežim úpravUpravit barvu paletyUpravit vlastnosti cestyUpravit atributy Rychlé maskyUpravit barvu Rychlé maskyUpravit šablonuUpravit stopuUpravit atributy kanáluUpravit barvuUpravit položku mapy barev č. %dUpravit přechodUpravit atributy vrstvyUpravit paletuUpravit atributy cestyUpravit vzorekProcedury pro úpravyUpravit vybranou šablonuVýběr elipsyPrázdný kanálPrázdná vrstvaPrázdná cestaPrázdná textová vrstvaPrázdný název proměnné v souboru prostředí %s_VylepšeníPovolit Rychlou masku_Povolit rozptyl průhlednostiPovolit tento ovladačPovolte pro zobrazování užitečného tipu GIMP při spuštěníPovolte pro zobrazování nástrojových tipů.EnormníZadejte název sloučené paletyZadejte název uložených volebZadejte jméno tohoto bufferuZadejte jméno této šablonyZadejte nový název uložených volebZadejte umístění (URI):ProstředíAdresáře s prostředímEkvalizaceEkvalizace nefunguje na indexovaných vrstvách.Gumování do pozadí nebo průhlednostiGuma_Chybová konzolaChybová konzolaMenu Chybová konzolaChyba při ukládání souboru XCF: %sChyba při zpracovávání '%s' na řádku %d: %sChyba při čtení '%s': %sChyba při čtení souboru stopy '%s': %sChyba při zápisu '%s': %sChyba při ukládání XCF: %sChyba při zapisování souboru '%s': %sChyba při zápisu '%s': %sChyba při zápisu do dočasného souboru pro '%s': %s Žádný soubor nebyl vytvořen.Chyba při zápisu do dočasného souboru pro '%s': %s -Původní soubor zůstal nedotčen.ChybyUdálostVelmi vel_kéZvětšit dle potřebyExportovat cestu do SVGExportovat všechny cesty z tohoto obrázkuExportovat aktivní cestuMíra:Rozšířená vstupní zařízeníPříponyVyplňování barvou popředíPopředí do pozadí (HSV odstín po směru hodinových ručiček)Popředí do pozadí (HSV proti směru hodinových ručiček)Popředí do pozadí (HSV)Popředí do pozadí (RGB)Popředí do průhlednostiPopředí do průhlednostiPopředí/pozadíBarva popředí/pozadí_Přizpůsobit plátno vrstvámDoběhNemohu importovat přechody z '%s': %sNemohu importovat cesty z '%s': %sFatální chyba zpracování souboru stopy '%s': Bajtů = 0.Fatální chyba zpracování souboru stopy '%s': Soubor je zřejmě useknut.Fatální chyba zpracování souboru stopy '%s': Soubor je poškozen.Fatální chyba zpracování souboru stopy '%s': Výška = 0.Fatální chyba zpracování souboru stopy '%s': Není to soubor stopy GIMPu.Fatální chyba zpracování souboru stopy '%s': Neznámý tvar stopy GIMPu.Fatální chyba zpracování souboru stopy '%s': Neznámá verze stopy GIMPu.Fatální chyba zpracování souboru stopy '%s': Neznámá hloubka %d.Fatální chyba zpracování souboru stopy '%s': Neznámá verze %d.Fatální chyba zpracování souboru stopy '%s': Nepodporovaná hloubka stopy %d +Původní soubor zůstal nedotčen.ChybyUdálostVelmi vel_kéZvětšit dle potřebyExportovat cestu do SVGExportovat všechny cesty z tohoto obrázkuExportovat aktivní cestuMíra:Rozšířená vstupní zařízeníPříponyVyplňování barvou popředíPopředí do pozadí (HSV odstín po směru hodinových ručiček)Popředí do pozadí (HSV proti směru hodinových ručiček)Popředí do pozadí (HSV)Popředí do pozadí (RGB)Popředí do průhlednostiPopředí do průhlednostiPopředí/pozadíBarva popředí/pozadíUvolnění plovoucího výběruUpevnění plovoucího výběruPlovoucí výběr do vrstvy_Přizpůsobit plátno vrstvámDoběhNemohu importovat přechody z '%s': %sNemohu importovat cesty z '%s': %sBarevnýFatální chyba zpracování souboru stopy '%s': Bajtů = 0.Fatální chyba zpracování souboru stopy '%s': Soubor je zřejmě useknut.Fatální chyba zpracování souboru stopy '%s': Soubor je poškozen.Fatální chyba zpracování souboru stopy '%s': Výška = 0.Fatální chyba zpracování souboru stopy '%s': Není to soubor stopy GIMPu.Fatální chyba zpracování souboru stopy '%s': Neznámý tvar stopy GIMPu.Fatální chyba zpracování souboru stopy '%s': Neznámá verze stopy GIMPu.Fatální chyba zpracování souboru stopy '%s': Neznámá hloubka %d.Fatální chyba zpracování souboru stopy '%s': Neznámá verze %d.Fatální chyba zpracování souboru stopy '%s': Nepodporovaná hloubka stopy %d Stopy GIMPu musí být GRAY nebo RGBA.Fatální chyba zpracování souboru stopy '%s': Šířka = 0.Fatální chyba zpracování souboru přechodu '%s': Soubor je poškozen.Fatální chyba zpracování souboru přechodu '%s': Není to soubor přechodu pro GIMPFatální chyba zpracovávání souboru palety '%s': Chybí kouzelná hlavička.Fatální chyba zpracovávání souboru palety '%s': Chybí kouzelná hlavička. Nepotřebuje tento soubor převod z DOSu?Fatální chyba zpracovávání souboru palety '%s': Chyba čtení na řádku %d.Fatální chyba zpracování v souboru vzorku '%s': Nemohu načíst %d bajtů: %sFatální chyba zpracování v souboru vzorku '%s': Neznámá verze formátu vzorku %d.Fatální chyba zpracování v souboru vzorku '%s': Nepodporovaná hloubka vzorku %d. -Vzorky GIMPu musí být GRAY nebo RGB.Zao_blení...Zaoblit kanálZaoblit výběrZaoblit výběr oSoubor_Dialog pro otevření souboruPráce se souboryTyp souboruSoubor existujeSoubor je zkrácenVyplnit kanálKrytí vyplňování:Typ vyplňování %sVyplnit podobné barvyVyplnit průhledné oblastiVyplnit celý výběrVyplnit barvou pozadíVyplnit barvou po_zadíVyplnit barvou popředíVyplnit _vzorkemVyplnit vzorkemVyplnit průhlednostíVyplnit bílouVyplnit barvou po_předíVyplnit barvou po_zadíVyplňování barevným přechodemVyplňování barvou nebo vzorkemDo bloku_FiltryKonečná, sloučená vrstva:Hledání spojitých oblastíHledání podobných barevPřizpůsobit obrázek oknuPřizpůsobit obrázek oknuPřizpůsobit obrázek oknuPřizpůsobit velikosti oknaPevný poměr stranPevná velikostZploštit obrázekPřeklopeníPřeklopit kanálPřeklopit vrstvuPřeklopit cestuPřeklopit textovou vrstvuTyp převrácení %sPřeklopit _vodorovněPřeklopit _svislePřeklopit obrázekPřeklopení vrstvy nebo výběruPřeklopit...Překlápím...Plovoucí výběrPlovoucí výběrPlovoucí vrstvaPlovoucí výběr +Vzorky GIMPu musí být GRAY nebo RGB.Pr_olnout...Prolnout kanálProlnout výběrProlnout okrajeProlnout výběr oSoubor_Dialog pro otevření souboruPráce se souboryTyp souboruSoubor existujeSoubor je zkrácenVyplnit kanálKrytí vyplňování:Typ vyplňování %sVyplnit podobné barvyVyplnit průhledné oblastiVyplnit celý výběrVyplnit barvou pozadíVyplnit barvou po_zadíVyplnit barvou popředíVyplnit _vzorkemVyplnit vzorkemVyplnit průhlednostíVyplnit bílouVyplnit barvou po_předíVyplnit barvou po_zadíVyplňování barevným přechodemVyplňování barvou nebo vzorkemDo bloku_FiltryKonečná, sloučená vrstva:Hledání spojitých oblastíHledání podobných barevPřizpůsobit obrázek oknuPřizpůsobit obrázek oknuPřizpůsobit obrázek oknuPřizpůsobit velikosti oknaPevný poměr stranPevná velikostZploštit obrázekPřeklopeníPřeklopit kanálPřeklopit vrstvuPřeklopit cestuPřeklopit textovou vrstvuTyp převrácení %sPřeklopit _vodorovněPřeklopit _svislePřeklopit obrázekPřeklopení vrstvy nebo výběruPřeklopit...Překlápím...Plovoucí výběrPlovoucí výběrPlovoucí vrstvaPlovoucí výběr (%s)Plovoucí výběr do vrstvyPlovoucí výběr do vrstvyPlovoucí výběryFloydův-Steinbergův rozptyl (běžný)Floydův-Steinbergův rozptyl (snížený odběr barev)AktivaceAdresářAdresářeAdresáře písemPísmo UI:Písmo:PísmaMenu PísmaPro řádnou instalaci GIMPu je potřeba vytvořit adresář s názvem %s.Vnutit použití auto-hinteruPopředíBarvy popředí a pozadí. Černý a bílý čtverec obnovuje barvy. Šipky prohazují barvy. Dvojitým klepnutím otevřete dialog pro výběr barev.Barva popředíBarva popředí nastavena na:Popředí: %d, %d, %dDopředu (Tradiční)Z c_estyVolný výběrVolný výběrVolná rukaZ _tématuZe systému oken (nyní %d × %d dpi)Zleva dopravaZprava dolevaZ výběruZ tématuPři_bližný výběrPřes _celou obrazovkuPřibližný výběrGIMPRozšíření GIMPuZpráva GIMPuGIMP: vyladění výkonuZásuvný modul GIMPuSpouštím GIMPTextový editor pro GIMPGIMP: Tip dneUživatelská instalace GIMPuObrázek GIMP XCFGIMP nemohl inicializovat grafické uživatelské rozhraní. -Přesvědčte se, že máte správně nastaveno zobrazovací prostředí.Prohlížeč nápovědy GIMPuGIMP není správně nainstalován pro aktuálního uživatele. Uživatelská +Přesvědčte se, že máte správně nastaveno zobrazovací prostředí.Prohlížeč nápovědy GIMPuGIMP není pro aktuálního uživatele správně nainstalován. Uživatelská instalace byla přeskočena, protože byl použit přepínač '--no-interface'. -Uživatelskou instalaci provedete spuštěním GIMP bez přepínače '--no-interface'.GIMP používá k ukládání dat obrázků omezené množství paměti, tak zvanou "vyrovnávací paměť dlaždic". Měli byste ji nastavit tak, aby se vešla do paměti. Počítejte také s pamětí používanou ostatními běžící procesy.GIMP používá doplňující soubor gtkrc, takže můžete nastavit vzhled odlišný od ostatních aplikací GTK.GIMP verzeGIMP bude uživatele varovat při pokusu vytvořit obrázek, který by zabral více paměti než zde určená velikost.GamaVšeobecnéNastavuje minimální počet barev systému alokovaných pro GIMP, obecně důležité jen pro osmibitové displeje.Generovat optimální paletuRozlišení monitoru získatGigantickéProcedury GimprcEfekty se s_klemPřechodEditor přechodůMenu Editor přechodůAdresáře s přechodyBarva levého koncového bodu segmentu přechoduBarva pravého koncového bodu segmentu přechoduRozhraní přechoduSoubor s přechodem '%s' je poškozen: Segmenty nepokrývají rozsah 0-1.Přechod:PřechodyMenu PřechodyExtrakce zrnitostiSloučení zrnitostiŠedáOdstíny šediZelenáZelená:MřížkaProstor mezi řádky mřížkyZvětšit kanálZvětšit výběrZvětšit výběr oVodítkoPřichytávání k vodítkům a mřížceProcedury průvodceHSVHSV (%0.3f, %0.3f, %0.3f)HSV (odstín p_roti směru hodinových ručiček)HSV (odstín p_o směru hodinových ručiček)Notace HTML:_Výška:_Používaný prohlížeč nápovědy:Poloha řídicího bodu: %0.6fOstré hranyOstré světloTvrdostTvrdost:VýškaVýška:NápovědaProhlížeč nápovědySystém nápovědyProhlížeč nápovědy se nespouštíProhlížeč nápovědy nenalezenPomocné proceduryHex:SvětlaNápověda pro _doky:Nápověda pro _nástroje:HintingHinting mění obrys fontu pro vytvoření ostré bitmapy v malých velikostech_HistogramHistogramMěřítko histogramuHistorieVodorovněVodorovný posun první čáry mřížky; může to být záporné číslo.Vodorovné rozestupy čar mřížky.Kolik názvů nedávno otevřených souborů udržovat v menu Soubor.OdstínOdstín-sytostOdstín-sytost pracuje pouze s vrstvami v barvách RGB.Odstín-_sytostOdstín:ObrovskéIkona _a text_Obrázek_Importovat cestu..._Interpolace:I_nterval:IkonaIkona a popisIkona a textJsou-li k dispozici, používají se nápovědy z písma, ale možná radši vždy používáte automatický hinterJe-li povoleno, nástroj přesunu mění aktivní vrstvu nebo cestu, když je vybrána vrstva nebo cesta. To bylo ve starších verzích implicitní chování.Pokud obrázek neuložíte, změny za poslední %s budou ztraceny.Pokud nyní ukončíte GIMP, tyto změny budou ztraceny.Neplatný název proměnné v souboru prostředí %s: %sObrázekObrázek + mřížkaEditor obrázkůInformace o obrázkuMenu ObrázekVelikost obrázkuFormát stavové lišty obrázkuŠablony obrázkůMiniatury obrázkůFormát titulku a stavové lišty obrázkuFormát titulku obrázkuVzhled okna obrázkuOkna obrázkuObrázek neobsahuje viditelné vrstvySoubor obrázkuMaska obrázkuRozlišení obrázku je mimo rozsah, používám místo něj implicitní rozlišení.Velikost obrázkuZdroj obrázkuTyp obrázkuObrázkyMenu ObrázkyVolby importuImport paletyImportovat cestyImportovat cesty z SVGImport nové paletyImportovat paletuImportovat cestyImportovaná cesta_Inkoust_InvertovatIn_vertovat maskuPostupnýOdsazení:Odsazení prvního řádkuIndex:IndexovanáIndexovaná barvaPřevod indexované barvyVrstvy s indexovanými barvami jsou vždy škálovány bez interpolace. Zvolený typ interpolace bude mít vliv jen na škálování kanálů a masek.Informační okno_Počáteční zvětšení:Implicitní stav masky vrstvy:Inicializuji zásuvného modulyInicializuji zásuvný modul: '%s' -InkoustInline pixbufVstupní ovladačeVstupní zařízeníVstupní úrovněVložit ukotveníNainstalovat soukromou barevnou mapu; může být užitečné na osmibitových (256 barev) displejích.Instalace selhala. Spojte se se správcem systému.Instalace úspěšná. Pokračujte kliknutím na "Pokračovat".Rychlá aktualizace_Inteligentní nůžkyIntenzita: %0.3f Krytí: %0.3fRozhraníVnitřní procedura GIMPuVnitřní proceduryInterpolace:PrůnikPrůnik s aktuálním výběremPrůsečíky (nitkové kříže)Průsečíky (body)Neplatné UTF-8Neplatná data v kódování UTF-8 v souboru '%s'.Neplatný řetězec v UTF-8 v souboru XCFNeplatný řetězec v kódování UTF-8 v souboru se stopou '%s'.Neplatný řetězec v kódování UTF-8 v souboru s přechodem '%s'.Neplatný řetězec v kódování UTF-8 v souboru s paletou '%s'Neplatný řetězec v kódování UTF-8 v souboru se vzorkem '%s'.Neplatná posloupnost znaků v URINeplatná zkratka.Neplatná šířka nebo výška. Obě musí být kladné.InvertovatInvertovat kanálInvertovat výběrInvertování nefunguje na indexovaných vrstvách.Invertovat výběrOpravdu to chcete udělat?Zřejmě jste dříve používali GIMP 2.0.Vlastnosti položkyViditelnost položkyZarovnat:Zachovat průhlednostUdržovat nahořePonechat poměr stran %sPevný poměr stran %sPonechat výšku %sZachovat průhlednostPonechat šířku %sKlávesa dolůKlávesa dolů (Alt)Klávesa dolů (Control + Alt)Klávesa dolů (Control)Klávesa dolů (Shift + Alt)Klávesa dolů (Shift + Control + Alt)Klávesa dolů (Shift + Control)Klávesa dolů (Shift)Klávesa dolevaKlávesa doleva (Alt)Klávesa doleva (Control + Alt)Klávesa doleva (Control)Klávesa doleva (Shift + Alt)Klávesa doleva (Shift + Control + Alt)Klávesa doleva (Shift + Control)Klávesa doleva (Shift)Klávesa dopravaKlávesa doprava (Alt)Klávesa doprava (Control + Alt)Klávesa doprava (Control)Klávesa doprava (Shift + Alt)Klávesa doprava (Shift + Control + Alt)Klávesa doprava (Shift + Control)Klávesa doprava (Shift)Klávesa nahoruKlávesa nahoru (Alt)Klávesa nahoru (Control + Alt)Klávesa nahoru (Control)Klávesa nahoru (Shift + Alt)Klávesa nahoru (Shift + Control + Alt)Klávesa nahoru (Shift + Control)Klávesa nahoru (Shift)Klávesové zkratky je možné v GIMPu dynamicky měnit. menurc je výpis vašeho nastavení, aby bylo uloženo pro příští sezení. Chcete-li, můžete jej upravovat, ale je mnohem jednodušší definovat klávesy za běhu GIMPu. Odstranění tohoto souboru obnoví implicitní zkratky.KlávesniceUdálosti klávesniceKlávesové zkratkyZleva dopravaBarva _levého koncového bodu...Na šířkuVelkáVelké (256x256)Větší náhledyPoslední chyba:VrstvaVrstva '%s' nemá alfu. Vrstva byla umístěna nad ni.Vlastností vrstvyRozměry _hranic vrstvy...Typ vyplňování vrstvyMaska vrstvy do výběruVrstva výběruVelikost vrstvy_Režim vrstvy_Název vrstvy:Vrstva nemůže být ještě níž.Vrstva nemůže být ještě výš.Vrstva je již vespod.Vrstva je již nahoře.Velikost vrstvy dle obrázkuVrstvu _dospodVelikost vrstvy _dle obrázkuVrstvu na_horu_Alfa kanál vrstvyVrstvyMenu VrstvyVolby sloučení vrstvyBarva levého koncového boduZarovnaný dolevaDélka:Nechat GIMP pokusit se obnovit vaše poslední uložené sezení při každém spuštění.ÚrovněÚrovně nemohou být upravovány v indexovaných vrstvách.Barva světlé šachovnicePouze zesvětleníČáraRozestup -řádků:Šířka čáry:_Styl řádku:Styl čáry používaný pro mřížku.LineárníSvázaná položkaNačístNačíst křivkyNačíst úrovněNačíst pravou barvu _zNačíst nastavení křivek ze souboruNačíst nastavení úrovní ze souboruNačíst text ze souboruNačítám náhled...Umístění:LogaritmickýDlouhé čárkyHledám datové souboryKanál nížKanál dospodKanál do_spodVrstvu nížVrstvu dospodSnížit cestuSnížit cestu dolůSnížit cestu _dolůKanál nížKanál dospodVrstvu nížVrstvu dospodSnížit cestuSnížit cestu dolů_Lupa_HlavníPře_sunout na obrazovku..._MapaPurpurováPurpurová:LupaZ_průhlednitSpravovat zásuvné moduly_Rychlost běhu čar:Krytí masky:Maskovat _vybrané oblastiMaskovat _nevybrané oblastiMatice:Největší hloubka:Maximální _velikost souboru pro náhledy:Maximální velikost _nového obrázku:Maximální odlišnost barevMaximální _paměť vracení:Průměr:MěřidloMěření úhlů a vzdálenostíMěření vzdáleností a úhlůZměřte čáry a zadejte jejich délky:Medián:StředníStřední čárkySloučit _dolůSloučit dolůSloučit vrstvySloučit paletySloučit viditelné vrstvySloučit viditelné cestySloučit _viditelné vrstvy...Sloučit _viditelné vrstvy...Sloučit _viditelné cestySloučit vrstvySloučit paletySloučit vektoryProcedury zprávZpráva se opakuje %dkrát.Zpráva se opakuje jednou.Zprávy jsou přesměrovány na stderr.Střední tónyPřevést nastavení uživateleMinimální počet _úrovní zpětných úprav:RůznéOstráRežimRežim:Upravit vybranou barvuUpravit úrovně barev ve vybrané oblastiUpravit všechny barvyUpravit prostor mezi řádkyAdresáře s modulySprávce modulůCesta k modulůmModulyKurzory myšiKolečko myšiUdálosti kolečka myšiPřesunPřesunout ukotveníPřesunout kanálOdstranit plovoucí výběrPřesunout vodítkoPřesunout vodítko: Přemístit vrstvuPřesunout masku vrstvyPřesunout cestuPřesunout výběrPřesunout textovou vrstvuNástroj přesunuPřesunout položkuPřesun vrstev a výběrůPřesunout výběrPřesunout aktuální vrstvuPřesunout aktuální cestuPosunout vybraný filtr nížePosunout vybraný filtr výšePřesunout na obrazovku...Přesun: NásobeníPočet bar_ev:_Navigace_Navigační oknoVelikost _navigačního náhledu:NázevNázev:NavigaceNový kanálBarva nového kanáluVolby nového kanáluNová barva z po_zadíNová barva z po_předíNový obrázekNová vrstvaNová cestaVolby nové cestyNová šablonaNová stopaNový kanálNový kanál s posledními hodnotamiNový kanál...Nová barva z pozadíNová barva z popředíNový přechodNový importNová vrstvaNová vrstva s posledními hodnotamiNová vrstva...Nová paletaNová cesta s posledními hodnotamiNová cesta...Nový vzorekNové vektoryNejsou dostupné žádné stopy pro použití s tímto nástrojem.Není vybran žádný filtrV '%s' nebyl nalezen lineáční přechodJiž není k dispoziciV '%s' nebyla nalezena žádná cestaV bufferu nebyla nalezena žádná cestaNejsou k dispozici žádné vzorky pro tuto operaci.Žádný výběrPro tah není výběr.Žádné miniaturyNezarovnánoNicŽádná (nejrychlejší)NormálníBěžné (128x128)Normální tečkyNormální oknoNení běžný souborNedostatek viditelných vrstev pro sloučení. Musí být alespoň dvě.Nedostatek viditelných cest pro sloučení. Musí být alespoň dvě.Počet užívaných _procesorů:Počet řádků mřížkyPočet vrstev:O_ther...PosunKanál posunuObrazovka posunuVrstva posunuMaska vrstvy posunuPosun o x/_2, y/2Posun:Na diskuNa víceprocesorových strojích, byl-li GIMP přeložen s --enable-mp, toto nastavuje, kolik procesorů by GIMP měl používat zároveň.Pouze v pamětiOtevřít jako v_rstvu...KrytíKrytí:OtevřítOtevřít obrázekOtevřít obrázek jako vrstvuOtevřít umístěníOtevřít textový soubor (UTF-8)Otevřít _umístění...Ot_evřít nedávnýDialog Otevřít obrázekOtevřít dialog výběru stopyOtevřít dialog výběru písmaOtevřít dialog výběru přechoduOtevřít dialog výběru paletyOtevřít dialog výběru vzorkuOtevřít vybranou položkuOtevírání '%s' selhalo: +Uživatelskou instalaci provedete spuštěním GIMPu bez přepínače '--no-interface'.GIMP používá k ukládání dat obrázků omezené množství paměti, tak zvanou "vyrovnávací paměť dlaždic". Měli byste ji nastavit tak, aby se vešla do paměti. Počítejte také s pamětí používanou ostatními běžící procesy.GIMP používá doplňující soubor gtkrc, takže můžete nastavit vzhled odlišný od ostatních aplikací GTK.GIMP verzeGIMP bude uživatele varovat při pokusu vytvořit obrázek, který by zabral více paměti než zde určená velikost.GamaVšeobecnéNastavuje minimální počet barev systému alokovaných pro GIMP, obecně důležité jen pro osmibitové displeje.Generovat optimální paletuZískat rozlišení monitoruGigantickéProcedury GimprcEfekty se s_klemPřechodEditor přechodůMenu Editor přechodůAdresáře s přechodyBarva levého koncového bodu segmentu přechoduBarva pravého koncového bodu segmentu přechoduRozhraní přechoduSoubor s přechodem '%s' je poškozen: Segmenty nepokrývají rozsah 0-1.Přechod:PřechodyMenu PřechodyExtrakce zrnitostiSloučení zrnitostiŠedáOdstíny šediZelenáZelená:MřížkaProstor mezi řádky mřížkyZvětšit kanálZvětšit výběrZvětšit výběr oVodítkoPřichytávání k vodítkům a mřížceProcedury průvodceHSVHSV (%0.3f, %0.3f, %0.3f)HSV (odstín p_roti směru hodinových ručiček)HSV (odstín p_o směru hodinových ručiček)Notace HTML:_Výška:_Používaný prohlížeč nápovědy:Poloha řídicího bodu: %0.6fOstré hranyOstré světloTvrdostTvrdost:VýškaVýška:NápovědaProhlížeč nápovědySystém nápovědyProhlížeč nápovědy se nespouštíProhlížeč nápovědy nenalezenPomocné proceduryHex:SvětlaNápověda pro _doky:Nápověda pro _nástroje:HintingHinting mění obrys fontu pro vytvoření ostré bitmapy v malých velikostech_HistogramHistogramMěřítko histogramuHistorieVodorovněVodorovný posun první čáry mřížky; může to být záporné číslo.Vodorovné rozestupy čar mřížky.Kolik názvů nedávno otevřených souborů udržovat v menu Soubor.OdstínOdstín-sytostOdstín-sytost pracuje pouze s vrstvami v barvách RGB.Odstín-_sytostOdstín:ObrovskéIkona _a text_Obrázek_Importovat cestu..._Interpolace:I_nterval:IkonaIkona a popisIkona a textJsou-li k dispozici, používají se nápovědy z písma, ale možná radši vždy používáte automatický hinterJe-li povoleno, nástroj přesunu mění aktivní vrstvu nebo cestu, když je vybrána vrstva nebo cesta. To bylo ve starších verzích implicitní chování.Pokud obrázek neuložíte, změny za poslední %s budou ztraceny.Pokud nyní ukončíte GIMP, tyto změny budou ztraceny.Neplatný název proměnné v souboru prostředí %s: %sObrázekObrázek + mřížkaEditor obrázkůInformace o obrázkuMenu ObrázekVelikost obrázkuFormát stavové lišty obrázkuŠablony obrázkůMiniatury obrázkůFormát titulku a stavové lišty obrázkuFormát titulku obrázkuVzhled okna obrázkuOkna obrázkuObrázek neobsahuje viditelné vrstvySoubor obrázkuMaska obrázkuRozlišení obrázku je mimo rozsah, používám místo něj implicitní rozlišení.Velikost obrázkuZdroj obrázkuTyp obrázkuObrázkyMenu ObrázkyVolby importuImport paletyImportovat cestyImportovat cesty z SVGImport nové paletyImportovat paletuImportovat cestyImportovaná cesta_Inkoust_InvertovatIn_vertovat maskuPostupnýOdsazení:Odsazení prvního řádkuIndex:IndexovanáIndexovaná barvaPřevod indexované barvyVrstvy s indexovanými barvami jsou vždy škálovány bez interpolace. Zvolený typ interpolace bude mít vliv jen na škálování kanálů a masek.Informační okno_Počáteční přiblížení:Implicitní stav masky vrstvy:Inicializuji zásuvného modulyInicializuji zásuvný modul: '%s' +InkoustInline pixbufVstupní ovladačeVstupní zařízeníVstupní úrovněVložit ukotveníNainstalovat soukromou barevnou mapu; může být užitečné na osmibitových (256 barev) displejích.Instalace selhala. Spojte se se správcem systému.Instalace úspěšná. Pokračujte kliknutím na "Pokračovat".Okamžitá aktualizace_Inteligentní nůžkyIntenzita: %0.3f Krytí: %0.3fRozhraníVnitřní procedura GIMPuVnitřní proceduryInterpolace:PrůnikPrůnik s aktuálním výběremPrůsečíky (nitkové kříže)Průsečíky (body)Neplatné UTF-8Neplatná data v kódování UTF-8 v souboru '%s'.Neplatný řetězec v UTF-8 v souboru XCFNeplatný řetězec v kódování UTF-8 v souboru se stopou '%s'.Neplatný řetězec v kódování UTF-8 v souboru s přechodem '%s'.Neplatný řetězec v kódování UTF-8 v souboru s paletou '%s'Neplatný řetězec v kódování UTF-8 v souboru se vzorkem '%s'.Neplatná posloupnost znaků v URINeplatná zkratka.Neplatná šířka nebo výška. Obě musí být kladné.InvertovatInvertovat kanálInvertovat výběrInvertování nefunguje na indexovaných vrstvách.Invertovat výběrOpravdu to chcete udělat?Zřejmě jste dříve používali GIMP 2.0.Vlastnosti položkyViditelnost položkyZarovnat:Zachovat průhlednostUdržovat nahořePonechat poměr stran %sPevný poměr stran %sPonechat výšku %sZachovat průhlednostPonechat šířku %sKlávesa dolůKlávesa dolů (Alt)Klávesa dolů (Control + Alt)Klávesa dolů (Control)Klávesa dolů (Shift + Alt)Klávesa dolů (Shift + Control + Alt)Klávesa dolů (Shift + Control)Klávesa dolů (Shift)Klávesa dolevaKlávesa doleva (Alt)Klávesa doleva (Control + Alt)Klávesa doleva (Control)Klávesa doleva (Shift + Alt)Klávesa doleva (Shift + Control + Alt)Klávesa doleva (Shift + Control)Klávesa doleva (Shift)Klávesa dopravaKlávesa doprava (Alt)Klávesa doprava (Control + Alt)Klávesa doprava (Control)Klávesa doprava (Shift + Alt)Klávesa doprava (Shift + Control + Alt)Klávesa doprava (Shift + Control)Klávesa doprava (Shift)Klávesa nahoruKlávesa nahoru (Alt)Klávesa nahoru (Control + Alt)Klávesa nahoru (Control)Klávesa nahoru (Shift + Alt)Klávesa nahoru (Shift + Control + Alt)Klávesa nahoru (Shift + Control)Klávesa nahoru (Shift)Klávesové zkratky je možné v GIMPu dynamicky měnit. menurc je výpis vašeho nastavení, aby bylo uloženo pro příští sezení. Chcete-li, můžete jej upravovat, ale je mnohem jednodušší definovat klávesy za běhu GIMPu. Odstranění tohoto souboru obnoví implicitní zkratky.KlávesniceUdálosti klávesniceKlávesové zkratkyZleva dopravaBarva _levého koncového bodu...Na šířkuVelkáVelké (256x256)Větší náhledyPoslední chyba:VrstvaVrstva '%s' nemá alfu. Vrstva byla umístěna nad ni.Vlastností vrstvyRozměry _hranic vrstvy...Typ vyplňování vrstvyMaska vrstvy do výběruVrstva výběruVelikost vrstvy_Režim vrstvy_Název vrstvy:Vrstva nemůže být ještě níž.Vrstva nemůže být ještě výš.Vrstva je již vespod.Vrstva je již nahoře.Velikost vrstvy dle obrázkuVrstvu _dospodVelikost vrstvy _dle obrázkuVrstvu na_horu_Alfa kanál vrstvyVrstvyMenu VrstvyVolby sloučení vrstvyBarva levého koncového boduZarovnaný dolevaDélka:Nechat GIMP pokusit se obnovit vaše poslední uložené sezení při každém spuštění.ÚrovněÚrovně nemohou být upravovány v indexovaných vrstvách.Barva světlé šachovnicePouze zesvětleníČáraRozestup +řádků:Šířka čáry:_Styl mřížky:Styl čáry používaný pro mřížku.LineárníSvázaná položkaNačístNačíst křivkyNačíst úrovněNačíst pravou barvu _zNačíst nastavení křivek ze souboruNačíst nastavení úrovní ze souboruNačíst text ze souboruNačítám náhled...Umístění:LogaritmickýDlouhé čárkyHledám datové souboryKanál nížKanál dospodKanál do_spodVrstvu nížVrstvu dospodCestu nížCestu dospodCestu do_spodKanál nížKanál dospodVrstvu nížVrstvu dospodCestu nížCestu dospod_Lupa_HlavníPře_sunout na obrazovku..._MapaPurpurováPurpurová:LupaZ_průhlednitSpravovat zásuvné moduly_Rychlost běhu čar:Krytí masky:Maskovat _vybrané oblastiMaskovat _nevybrané oblastiMatice:Největší hloubka:Maximální _velikost souboru pro náhledy:Maximální velikost _nového obrázku:Maximální odlišnost barevMaximální _paměť vracení:Průměr:MěřidloMěření úhlů a vzdálenostíMěření vzdáleností a úhlůZměřte čáry a zadejte jejich délky:Medián:StředníStřední čárkySloučit _dolůSloučit dolůSloučit vrstvySloučit paletySloučit viditelné vrstvySloučit viditelné cestySloučit _viditelné vrstvy...Sloučit _viditelné vrstvy...Sloučit _viditelné cestySloučit vrstvySloučit paletySloučit vektoryProcedury zprávZpráva se opakuje %dkrát.Zpráva se opakuje jednou.Zprávy jsou přesměrovány na stderr.Střední tónyPřevést nastavení uživateleMinimální počet _kroků zpět:RůznéOstráRežimRežim:Upravit vybranou barvuUpravit úrovně barev ve vybrané oblastiUpravit všechny barvyUpravit prostor mezi řádkyAdresáře s modulySprávce modulůCesta k modulůmModulyKurzory myšiKolečko myšiUdálosti kolečka myšiPřesunPřesunout ukotveníPřesunout kanálOdstranit plovoucí výběrPřesunout vodítkoPřesunout vodítko: Přemístit vrstvuPřesunout masku vrstvyPřesunout cestuPřesunout výběrPřesunout textovou vrstvuNástroj přesunuPřesunout položkuPřesun vrstev a výběrůPřesunout výběrPřesunout aktuální vrstvuPřesunout aktuální cestuPosunout vybraný filtr nížePosunout vybraný filtr výšePřesunout na obrazovku...Přesun: NásobeníPočet bar_ev:_Navigace_Navigační oknoVelikost _navigačního náhledu:NázevNázev:NavigaceNový kanálBarva nového kanáluVolby nového kanáluNová barva z po_zadíNová barva z po_předíNový obrázekNová vrstvaNová cestaVolby nové cestyNová šablonaNová stopaNový kanálNový kanál s posledními hodnotamiNový kanál...Nová barva z pozadíNová barva z popředíNový přechodNový importNová vrstvaNová vrstva s posledními hodnotamiNová vrstva...Nová paletaNová cesta s posledními hodnotamiNová cesta...Nový vzorekNové vektoryNejsou dostupné žádné stopy pro použití s tímto nástrojem.Není vybran žádný filtrV '%s' nebyl nalezen lineáční přechodJiž není k dispoziciV '%s' nebyla nalezena žádná cestaV bufferu nebyla nalezena žádná cestaNejsou k dispozici žádné vzorky pro tuto operaci.Žádný výběrPro tah není výběr.Žádné miniaturyNezarovnánoNicŽádná (nejrychlejší)NormálníBěžné (128x128)Normální tečkyNormální oknoNení běžný souborNedostatek viditelných vrstev pro sloučení. Musí být alespoň dvě.Nedostatek viditelných cest pro sloučení. Musí být alespoň dvě.Počet užívaných _procesorů:Počet řádků mřížkyPočet vrstev:O_ther...PosunKanál posunuObrazovka posunuVrstva posunuMaska vrstvy posunuPosun o x/_2, y/2Posun:Na diskuNa víceprocesorových strojích, byl-li GIMP přeložen s --enable-mp, toto nastavuje, kolik procesorů by GIMP měl používat zároveň.Pouze v pamětiOtevřít jako v_rstvu...KrytíKrytí:OtevřítOtevřít obrázekOtevřít obrázek jako vrstvuOtevřít umístěníOtevřít textový soubor (UTF-8)Otevřít _umístění...Ot_evřít nedávnýDialog Otevřít obrázekOtevřít dialog výběru stopyOtevřít dialog výběru písmaOtevřít dialog výběru přechoduOtevřít dialog výběru paletyOtevřít dialog výběru vzorkuOtevřít vybranou položkuOtevírání '%s' selhalo: %sOtevírání '%s' selhalo: %sVolby: X počátek:Y počátek:Původní šířka:Jiný (%s) ...ObrysVýstupní úrovněPřekrytíChyba volání PDB pro proceduru '%s': @@ -395,23 +381,23 @@ VložitVložit buffer _doVložit buffer jako _novýVložit _cestuVložit _doVložit jako _novéVložit vybraný bufferVložit vybraný buffer jako nový obrázekVložit vybraný buffer do výběruVložená vrstvaCestaVlastností cestyNázev cesty:_Nástroj pro cestuCesta nemůže být ještě níž.Cesta nemůže být ještě výš.Cesta je již vespod.Cesta je již nahoře.Cesta do _výběruCesta do výběruCesta do výběru %s Sjednocení %s Rozdíl -%s PrůnikCesta do výběruCestyMenu CestyVzorekAdresáře se vzorkyRozhraní vzorkůVyplňování vzorkemZdroj vzorkuVzorkyMenu Vzorky_TužkaTužkaProcenta šířky stopyProcento:Osobní adresář GIMPPerspektivaInformace o transformaci perspektivyPerspektiva...Režim výběru %sVyberte vrstvu nebo vodítkoVyberte cestuVyberte černý bodNasátí barvy z obrázkuVyberte šedý bodJen vybratVyberte bílý bodVelikosti v pixelech:Hodnoty pixelůpixelůPixelů:Přesvědčte se prosím, že jsou správně nainstalovány soubory XML menu.Počkejte prosím, než se vytvoří váš osobní adresář GIMPu...Prosím čekejte...Zásuvný modulProstředí zásuvných modulůAdresáře se zásuvnými modulyZásuvný modul nemohl otevřít obrázekZásuvný modul nemohl uložit obrázekModul spadl: "%s" +%s PrůnikCesta do výběruCestyMenu CestyVzorekAdresáře se vzorkyRozhraní vzorkůVyplňování vzorkemZdroj vzorkuVzorkyMenu Vzorky_TužkaTužkaProcenta šířky stopyProcento:Osobní adresář pro GIMPPerspektivaInformace o transformaci perspektivyPerspektiva...Režim výběru %sVyberte vrstvu nebo vodítkoVyberte cestuVyberte černý bodNasátí barvy z obrázkuVyberte šedý bodJen vybratVyberte bílý bodVelikosti v pixelech:Hodnoty pixelůpixelůPixelů:Přesvědčte se prosím, že jsou správně nainstalovány soubory XML menu.Počkejte prosím, než se vytvoří váš osobní adresář GIMPu...Prosím čekejte...Zásuvný modulProstředí zásuvných modulůAdresáře se zásuvnými modulyZásuvný modul nemohl otevřít obrázekZásuvný modul nemohl uložit obrázekModul spadl: "%s" (%s) Během svého ukončení mohl modul narušit vnitřní stav GIMPu. K opětovnému dosažení bezpečného stavu je vhodné uložit obrázky a restartovat GIMP.Zásuvný modul navrátil stav ÚSPĚCH, ale nevrátil žádný obrázekZásuvné modulyZásuvný modulZásuvné moduly a rozšíření jsou vnější programy spouštěné GIMPem, které poskytují doplňujícími funkce. Tyto programy jsou vyhledávány za běhu a informace o jejich funkci a časech změn jsou uloženy do tohoto souboru. Tento soubor je navržen pro čtení pouze GIMPem a neměl by být měněn.MnohoúhelníkNa výškuPoloha: %0.6fUmístěnýPosterizacePosterizace (redukce počtu barev)Ú_rovně posterizace:Posterizace nefunguje na indexovaných vrstvách.PředvolbyZachovat svět_lostCitlivost na tlakTlak:NáhledNáhled je zastaralýNáhled:NáhledyVelikost tiskuVelikost tisku:Problémy při zpracovávání parazita textu pro vrstvu '%s': %s Některé vlastnosti textu jsou možná špatně. Pokud nechcete upravovat vrstvu textu, nemusíte se tím zabývat.Procedurální databázeProcedurální databázePrůběhPseudo barvyÚčel:KvalitaDotazHledám nové zásuvné modulyHledám zásuvný modul: '%s' -Rychlé načteníRychlá maskaAtributy Rychlé maskyMenu Rychlá maskaRychlé uloženíRychlá maskaUkončit GIMPRGB barvyRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB barvaRGB barvy - prázdnýRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Zprava dolevaZnovu z_obrazit "%s"Pře_nastavit volby nástrojůO_bnovit kanálObnovit bar_vuN_avrátit rozsahBarvy _pravého koncového bodu...RadiálníPoloměr:Kanál výšKanál nahoruKanál na_horuVrstvu výšVrstvu nahoruZvýšit cestuZvýšit cestu nahoruZvýšit cestu na_horuKanál výšKanál nahoruVrstvu výšVrstvu nahoruZvýšit cestuZvýšit cestu nahoruVyzvednout zobrazení tohoto obrázkuZvýšit okno, je-li již otevřenoPřeběhPřeběh:Znovu zobrazit posledníPře_centrovat středové body ve výběruPře_centrovat středový bod segmentuPřerozdělit _řídicí body v segmentuPřerozdělit _řídicí body ve výběru_Přejmenovat uložené možnostiZ_opakovat "%s"Na_vrátit...Čtu soubor palety '%s': Chybí komponenta GREEN na řádku %d.Čtu soubor palety '%s': Neplatný počet sloupců na řádku %d. Používám implicitní hodnotu.Čtu soubor palety '%s': Chybí komponenta BLUE na řádku %d.Čtu soubor palety '%s': Chybí komponenta RED na řádku %d.Čtu soubor palety '%s': Hodnota GRB mimo rozsah na řádku %d.PřipravenOpravdu vymazat historii vracení obrázku?Změna přiřazení zkratky způsobí, že bude odebrána z "%s".Znovu vytvořit _náhledZnovu vytvořit náhledVýběr obdélníkuČervenáČervená:ZnovuRedukce obrázku na pevně daný počet barevRedukce obrázku do dvou barev pomocí prahuAktualizovat stopyObnovit přechodyAktualizovat paletyAktualizovat vzorkyRegistrujícíZnovu načíst _aktuální témaZnovu načíst _všechny náhledyZnovu načíst všechny náhledyZapamatovat si aktuální nástroj, vzorek, barvu a stopu mezi sezeními GIMP.Vzdálený obrázekOdstranit kanálOdstranit visící p_oložkyOdstranit plovoucí výběrOdstranit vodítkoOdstranit vrstvuOdstranění parazita z obrázkuOdstranění parazita z položkyOdstranit cestuOdstranit _položkuOdstranit visící položkyOdstranit plovoucí výběrOdstranit parazitaOdstranit vybranou položkuOdstranit vybraný filtr ze seznamu aktivních filtrů.Odstraňování zkratky selhalo.Přejmenovat kanálPřejmenovat vrstvuPřejmenování cestyPřejmenovat uložené volby nástrojůPřejmenovat textovou vrstvuPřejmenovat položkuVykreslitPřerovnat kanálPřerovnat vrstvuPřerovnat cestuOpakovat posledníOpakování:Nahradit aktuální výběrReplikovatReplikovat segment přechoduReplikovat výběr přechoduReplikovat segmentReplikovat výběrZměnit umístění kanáluZměnit umístění vrstvyZměnit umístění vektorůZnovu načíst seznam písemPřenastavit volby nástrojůPřenastavit _všechny volby nástrojů...Přenastavit všechny filtryPřenastavit všechny filtry...Přenastavit všechny volby nástrojůPřenastavit vybraný filtr na implicitní hodnotyPřenastavit na implicitní hodnotyVynulovat pořadí a viditelnost nástrojůRozměry plátnaZměnit velikost kanáluZměnit velikost obrázkuZměnit velikost vrstvyZměnit velikost cestyZměnit velikost textové vrstvyZměnit velikost obrázkuZměnit velikost položkyMěnit velikost okna dle _zvětšeníMěnit velikost okna dle změny veliko_sti obrázkuMěním velikost...Změna rozlišeníRozlišení:Spotřeba zdrojůKonfigurace zdrojůObnovit volby z...Obnovit uložené klávesové zkratky při každém spuštění GIMP.Omezit úpravy na mnohoúhelníkyObrátitNavrátitNavrátit '%s' na '%s'?Navrátit obrázekNavrácení selhalo. S tímto obrázkem není spojen žádný název souboru.Vrácení se k '%s' selhalo: +Rychlé načteníRychlá maskaAtributy Rychlé maskyMenu Rychlá maskaRychlé uloženíRychlá maskaUkončit GIMPRGB barvyRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB barvaRGB barvy - prázdnýRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Zprava dolevaZnovu z_obrazit "%s"Pře_nastavit volby nástrojůO_bnovit kanálObnovit bar_vuN_avrátit rozsahBarva _pravého koncového bodu...RadiálníPoloměr:Kanál výšKanál nahoruKanál na_horuVrstvu výšVrstvu nahoruCestu výšCestu nahoruCestu na_horuKanál výšKanál nahoruVrstvu výšVrstvu nahoruCestu výšCestu nahoruVyzvednout zobrazení tohoto obrázkuZvýšit okno, je-li již otevřenoPřeběhPřeběh:Znovu zobrazit posledníVy_centrovat středové body ve výběruVy_centrovat středový bod segmentuPřerozdělit _řídicí body v segmentuPřerozdělit _řídicí body ve výběru_Přejmenovat uložené možnostiZ_opakovat "%s"Na_vrátit...Čtu soubor palety '%s': Chybí komponenta GREEN na řádku %d.Čtu soubor palety '%s': Neplatný počet sloupců na řádku %d. Používám implicitní hodnotu.Čtu soubor palety '%s': Chybí komponenta BLUE na řádku %d.Čtu soubor palety '%s': Chybí komponenta RED na řádku %d.Čtu soubor palety '%s': Hodnota GRB mimo rozsah na řádku %d.PřipravenOpravdu vymazat historii vracení obrázku?Změna přiřazení zkratky způsobí, že bude odebrána z "%s".Znovu vytvořit _náhledZnovu vytvořit náhledVýběr obdélníkuČervenáČervená:ZnovuRedukce obrázku na pevně daný počet barevRedukce obrázku do dvou barev pomocí prahuAktualizovat stopyObnovit přechodyAktualizovat paletyAktualizovat vzorkyRegistrujícíZnovu načíst _aktuální témaZnovu načíst _všechny náhledyZnovu načíst všechny náhledyZapamatovat si aktuální nástroj, vzorek, barvu a stopu mezi sezeními GIMP.Vzdálený obrázekOdstranit kanálOdstranit visící p_oložkyOdstranit plovoucí výběrOdstranit vodítkoOdstranit vrstvuOdstranění parazita z obrázkuOdstranění parazita z položkyOdstranit cestuOdstranit _položkuOdstranit visící položkyOdstranit plovoucí výběrOdstranit položkuOdstranit parazitaOdstranit vybranou položkuOdstranit vybraný filtr ze seznamu aktivních filtrů.Odstraňování zkratky selhalo.Přejmenovat kanálPřejmenovat vrstvuPřejmenování cestyPřejmenovat uložené volby nástrojůPřejmenovat textovou vrstvuPřejmenovat položkuVykreslitPřerovnat kanálPřerovnat vrstvuPřerovnat cestuOpakovat posledníOpakování:Nahradit aktuální výběrReplikovatReplikovat segment přechoduReplikovat výběr přechoduReplikovat segmentReplikovat výběrZměnit umístění kanáluZměnit umístění vrstvyZměnit umístění vektorůZnovu načíst seznam písemPřenastavit volby nástrojůPřenastavit _všechny volby nástrojů...Přenastavit všechny filtryPřenastavit všechny filtry...Přenastavit všechny volby nástrojůPřenastavit vybraný filtr na implicitní hodnotyPřenastavit na implicitní hodnotyVynulovat pořadí a viditelnost nástrojůRozměry plátnaZměnit velikost kanáluZměnit velikost obrázkuZměnit velikost vrstvyZměnit velikost cestyZměnit velikost textové vrstvyZměnit velikost obrázkuZměnit velikost položkyMěnit velikost okna dle _přiblíženíMěnit velikost okna dle změny veliko_sti obrázkuMěním velikost...Změna rozlišeníRozlišení:Spotřeba zdrojůKonfigurace zdrojůObnovit volby z...Obnovit uložené klávesové zkratky při každém spuštění GIMP.Omezit úpravy na mnohoúhelníkyObrátitNavrátitNavrátit '%s' na '%s'?Navrátit obrázekNavrácení selhalo. S tímto obrázkem není spojen žádný název souboru.Vrácení se k '%s' selhalo: -%sBarva pravého koncového boduZarovnaný dopravaRotovatRotovat o 90 stupňů do_levaRotovat o 90 stupňů do_pravaRotovat kanálRotovat vrstvuRotovat cestuRotovat textovou vrstvuRotovat o _180 stupňůRotovat obrázekRotace vrstvy nebo výběruRotuji...Informace o rotaciKulatá_NaklonitZobrazovat _mřížkuZ_menšit...P_rohodit BarvyUl_ožit pravou barvu doPrůměrný vzorekUkázka sloučeníSyt.:SytostUložitUložit '%s' jako POV-RayUložit křivkyZapsat záznam chyb do souboruZapsat obrázekUložit nastavení vstupních zařízení _nyníUložit klávesové zkratky _okamžitěZapsat úrovněUložit volby nástrojůUložit polohy oken _okamžitěUložit vš_echny chyby do souboru...Uložit vý_běr do souboru...Uložit _jako...Uložit _kopii...Zapíše kopii obrázkuUložit všechny chybyUložit jako _POV-Ray...Uložit jako _šablonu...Uložit změněné klávesové zkratky ukončení GIMP.Uložit nastavení křivek do souboruUložit stav zařízeníUložit přechod jako POV-RayUložit nastavení úrovní do souboruUložit volby do...Uložit výběrUložit výběr do kanáluUložit před zavřením změny v obrázku '%s'?Uložit pozice a velikosti hlavních dialogů při ukončení GIMP.Uložit do _kanáluUložené volbyUkládám '%s' +%sBarva pravého koncového boduZarovnaný dopravaRotovatRotovat o 90 stupňů do_levaRotovat o 90 stupňů do_pravaRotovat kanálRotovat vrstvuRotovat cestuRotovat textovou vrstvuRotovat o _180 stupňůRotovat obrázekRotace vrstvy nebo výběruRotuji...Informace o rotaciKulatá_NaklonitZobrazovat _mřížkuZ_menšit..._HrotyP_rohodit BarvyUl_ožit pravou barvu doPrůměrný vzorekSloučený vzorekSyt.:SytostUložitUložit '%s' jako POV-RayUložit křivkyZapsat záznam chyb do souboruZapsat obrázekUložit nastavení vstupních zařízení _nyníUložit klávesové zkratky _okamžitěZapsat úrovněUložit volby nástrojůUložit polohy oken _okamžitěUložit vš_echny chyby do souboru...Uložit vý_běr do souboru...Uložit _jako...Uložit _kopii...Zapíše kopii obrázkuUložit všechny chybyUložit jako _POV-Ray...Uložit jako _šablonu...Uložit změněné klávesové zkratky ukončení GIMP.Uložit nastavení křivek do souboruUložit stav zařízeníUložit přechod jako POV-RayUložit nastavení úrovní do souboruUložit volby do...Uložit výběrUložit výběr do kanáluUložit před zavřením změny v obrázku '%s'?Uložit pozice a velikosti hlavních dialogů při ukončení GIMP.Uložit do _kanáluUložené volbyUkládám '%s' Ukládání '%s' selhalo: -%sUkládání obrázkůPilová vlnaŠkálovatelný obrázek SVG (*.svg)ŠkálaVelikost kanáluVelikost obrázkuVelikost vrstvyŠkálovat cestuVelikost textové vrstvyVelikost obrázkuVelikost položkyPoměr zvětšení X:Poměr zvětšení Y:Zvětšení:Škálování vrstvy nebo výběruZměna velikostiInformace o škálováníZměna měřítka obrázku na zvolenou velikost způsobí, že bude používat více paměti, než kolik je nastaveno jako "Maximální velikost obrázku" v dialogu Nastavení (momentálně %s).Zvolená velikost obrázku zmenší některé vrstvy natolik, že zmizí.Zvětšuji...NůžkyObrazAdresáře Script-FuSkriptyPosun dolůPosun dolů (Alt)Posun dolů (Control + Alt)Posun dolů (Control)Posun dolů (Shift + Alt)Posun dolů (Shift + Control + Alt)Posun dolů (Shift + Control)Posun dolů (Shift)Posun dolevaPosun doleva (Alt)Posun doleva (Control + Alt)Posun doleva (Control)Posun doleva (Shift + Alt)Posun doleva (Shift + Control + Alt)Posun doleva (Shift + Control)Posun doleva (Shift)Posun dopravaPosun doprava (Alt)Posun doprava (Control + Alt)Posun doprava (Control)Posun doprava (Shift + Alt)Posun doprava (Shift + Control + Alt)Posun doprava (Shift + Control)Posun doprava (Shift)Posun nahoruPosun nahoru (Alt)Posun nahoru (Control + Alt)Posun nahoru (Control)Posun nahoru (Shift + Alt)Posun nahoru (Shift + Control + Alt)Posun nahoru (Shift + Control)Posun nahoru (Shift)VybratVybrat všeZvolte adresář stopVýběr dle barvyVyberte barvuZvolte akci při události ovladačeZvolte adresáře prostředíZvolte _typ souboru (%s)Zvolte adresáře písemZvolte adresář přechodůZvolte adresář modulůVybrat nicZvolte adresář paletZvolte adresář vzorkůZvolte adresář zásuvných modulůVyberte primární barvu pro úpravyVyberte rozsah pro úpravuZvolte adresáře Script-FuVybrat zdrojZvolte odkládací adresářZvolte dočasný adresářZvolte témaZvolte adresář tématVyberte zvětšeníVybrat ne_jnižší vrstvuVybrat _vlastní barvu...Vybrat _následující vrstvuVybrat _předchozí vrstvuVybrat nej_vyšší vrstvuVybrat všeVýběr dle barvyVýběr spojitých oblastíVyberte vlastní barvu doplňování plátnaVýběr eliptických oblastíRuční výběr oblastíVybrat nicZvolte soubor paletyVýběr obdélníkovité oblastiVýběr oblastí podle barvyVýběr tvarů z obrázkuZvolte odkládací adresářVyberte kolikrát chcete +%sUkládání obrázkůPilová vlnaŠkálovatelný obrázek SVG (*.svg)ŠkálaVelikost kanáluVelikost obrázkuVelikost vrstvyŠkálovat cestuVelikost textové vrstvyVelikost obrázkuVelikost položkyPoměr zvětšení X:Poměr zvětšení Y:Zvětšení:Škálování vrstvy nebo výběruZměna velikostiInformace o škálováníZměna měřítka obrázku na zvolenou velikost způsobí, že bude používat více paměti, než kolik je nastaveno jako "Maximální velikost obrázku" v dialogu Nastavení (momentálně %s).Zvolená velikost obrázku zmenší některé vrstvy natolik, že zmizí.Zvětšuji...NůžkyObrazAdresáře Script-FuSkriptyPosun dolůPosun dolů (Alt)Posun dolů (Control + Alt)Posun dolů (Control)Posun dolů (Shift + Alt)Posun dolů (Shift + Control + Alt)Posun dolů (Shift + Control)Posun dolů (Shift)Posun dolevaPosun doleva (Alt)Posun doleva (Control + Alt)Posun doleva (Control)Posun doleva (Shift + Alt)Posun doleva (Shift + Control + Alt)Posun doleva (Shift + Control)Posun doleva (Shift)Posun dopravaPosun doprava (Alt)Posun doprava (Control + Alt)Posun doprava (Control)Posun doprava (Shift + Alt)Posun doprava (Shift + Control + Alt)Posun doprava (Shift + Control)Posun doprava (Shift)Posun nahoruPosun nahoru (Alt)Posun nahoru (Control + Alt)Posun nahoru (Control)Posun nahoru (Shift + Alt)Posun nahoru (Shift + Control + Alt)Posun nahoru (Shift + Control)Posun nahoru (Shift)VybratVybrat všeZvolte adresář stopVýběr dle barvyVyberte barvuZvolte akci při události ovladačeZvolte adresáře prostředíZvolte _typ souboru (%s)Zvolte adresáře písemZvolte adresář přechodůZvolte adresář modulůVybrat nicZvolte adresář paletZvolte adresář vzorkůZvolte adresář zásuvných modulůVyberte primární barvu pro úpravyVyberte rozsah pro úpravuZvolte adresáře Script-FuVybrat zdrojZvolte odkládací adresářZvolte dočasný adresářZvolte témaZvolte adresář tématVyberte přiblíženíVybrat ne_jnižší vrstvuVybrat _vlastní barvu...Vybrat _následující vrstvuVybrat _předchozí vrstvuVybrat nej_vyšší vrstvuVybrat všeVýběr dle barvyVýběr spojitých oblastíVyberte vlastní barvu doplňování plátnaVýběr eliptických oblastíRuční výběr oblastíVybrat nicZvolte soubor paletyVýběr obdélníkovité oblastiVýběr oblastí podle barvyVýběr tvarů z obrázkuZvolte odkládací adresářVyberte kolikrát chcete replikovat zvolený segment.Vyberte kolikrát chcete replikovat výběr.Vyberte počet stejných částí, na které chcete rozdělit segmenty ve výběru.Vyberte počet stejných částí, na které -chcete rozdělit zvolený segment.Zvolit průhledné oblastiVybrat WWW prohlížečVý_běr do cestyVýběrEditor výběruMenu Editoru výběruMaska výběruProcedury nástrojů pro výběrMaska výběruVýběr do cesty (_pokročilé)Výběr do cestyVýběr: Výběr: PŘIDÁNÍVýběr: PRŮNIKVýběr: PŘEPSÁNÍVýběr: ODEBRÁNÍCitlivostNastavit barvu doplnění plátnaNastavit barvu kanáluNastavit krytí kanáluNastavit mapu barevNastavit vlastní barvu doplnění plátnaNastavení velikosti plátna obrázkuNastavit rozlišení tisku obrázkuNastavit položku exkluzivně viditelnouNastavit položku exkluzivně viditelnouNastavení rozměrů hranic vrstvyNastavit název z _textuNastavit krytíNastavit barvu pozadíNastavit barvu popředíNastavit spojení položkyNastavit režim vrstvyNastavit krytí vrstvyNastavit Zachovat změnyNastavuje horní limit paměti používané v pro udržování operací na zásobníku zpětných úprav jednoho obrázku. Bez ohledu na toto nastavení je možné vrátit zpět alespoň tolik operací, kolik je nastaveno.Nastavují prohlížeč používaný systémem nápovědy.Nastavuje barvu doplnění plátna používanou, je-li režim doplnění nastaven na vlastní barvu.Nastaví externí WWW prohlížeč, který používat. Může to být absolutní cesta nebo název spustitelného souboru hledaného v PATH uživatele. Pokud příkaz obsahuje '%s', bude nahrazeno URL, jinak bude URL připojeno k příkazu, oddělené mezerou.Nastavuje úroveň interpolace používanou pro změnu velikosti a jiné transformace.Nastavuje způsob, kterým se v obrázcích zobrazuje průhlednost.Nastavuje minimální počet operací, které lze vzít zpět. Více úrovní zpětných úprav se udržuje, dokud není překročen limit undo-size.Nastavuje režim kurzoru, který bude GIMP používat.Nastaví vodorovné rozlišení monitoru v bodech na palec. Je-li nastaveno na 0, vynutí získání informací o vodorovném a svislém rozlišení z X serveru.Nastaví svislé rozlišení monitoru v bodech na palec. Je-li nastaveno na 0, vynutí získání informací o vodorovném a svislém rozlišení z X serveru.Nastaví formát pixelu kurzoru, který bude GIMP používat.Nastavuje velikost náhledu pro vrstvy a kanály v nově vytvářených dialozích.Nastavuje velikost šachovnice používané pro zobrazení průhlednosti.Nastavuje velikost navigačního náhledu dostupného v pravém dolním rohu okna obrázku.Nastavuje velikost náhledů v historii vracení.Nastavuje velikost miniatury zobrazované v dialogu Otevřít. Všimněte si, že GIMP nemůže vytvářet miniatury, jsou-li zakázány náhledy vrstev.Nastavuje umístění odkládacího souboru. gimp používá schéma alokace paměti založené na dlaždicích. Odkládací soubor se používá pro rychlé a snadné odkládání dlaždic na disk a zpět. Uvědomte si, že odkládací soubor může snadno být hodně velký, používá-li se GIMP s velkými obrázky. Dále, je-li odkládací soubor vytvořený v adresáři připojeném přes NFS, může být vše strašně pomalé. Z těchto důvodů může být vhodné umístit váš odkládací soubor do "/tmp".Nastavuje adresář pro dočasný úložný prostor. Při běhu GIMPu se zde budou objevovat soubory. Většina souborů zmizí, když GIMP skončí, ale některé soubory pravděpodobně zůstanou, takže je dobré, když tento adresář není sdílen jinými uživateli.Nastavuje text, který se objeví ve stavových lištách okna obrázku.Nastavuje text, který se objeví v nadpisech okna obrázku.Nastavuje, jestli má GIMP vytvářet náhledy vrstev a kanálů. Je hezké mít náhledy v dialogu vrstev a kanálů, ale mohou program při práci s velkými obrázky zpomalovat.Typ stínuStínyTvarTvar:Pronikající (úhlový)Pronikající (důlkový)Pronikající (kulový)ZaostřeníZaostřit kanálZaostřit výběrNaklonitZvětšení X naklonění:Zvětšení Y naklonění:Naklonění vrstvy nebo výběruInformace o nakloněníNakláním...Krátké čárkyKlávesová zkratkaZkratku "%s" již používá "%s" ze skupiny "%s".Zobrazit masku vrstvyZobrazovat p_ravítkaZobrazovat s_tavovou lištuZobrazovat _posuvné pruhyZobrazovat _vodítkaZobrazovat _hranici vrstvyZobrazovat lištu s _menuZobrazovat _výběrZobrazovat obrys _stopyZobrazovat barvu _popředí a pozadíZobrazovat _vodítkaZobrazovat _hranici vrstvyZobrazovat lištu s _menuZobrazovat p_ravítkaZobrazovat aktivní _stopu, vzorek a přechodZobrazovat aktivní _obrázekZobrazovat _mřížkuZobrazovat _tlačítka nápovědyZobrazovat velikost obrázkuZobrazit interaktivní hraniciZobrazit spotřebu pamětiZobrazovat _mnemoniky menu (klávesové zkratky)Zobrazovat kurzor kreslicího _nástrojeZobrazovat _výběrZobrazovat s_tavovou lištuZobrazovat _posuvné lištyZobrazit tip při příštím spuštění GIMPuZobrazovat tipy při _spuštěníZobrazovat _tipy nástrojůZobrazovat procento zvětšeníZobrazovat poměr zvětšeníZmenšit kanálZmenšit výběrZmenšit podle _okrajůZmenšit dle hranic obrázkuZmenšit výběr oZmenšit podle okrajůVelikostVelikost v paměti:_Velikost miniatur:Velikost:Přeskakuji '%s': špatná verze protokolu GIMP.MaláMenší náhledyPlynuláVyhlazování hranŠmouhaPoskvrnění obrázku_Chytat na vodítka_Chytat k mřížceMírné světloPevnáZdrojRozestupRozestup:Řídké tečkySpeciální souborUrčuje, jak se má kreslit oblast okolo obrázku.Rychlost běžících čar v obvodu výběru. Tato hodnota je v milisekundách (menší čas znamená rychlejší běh).Rychlost:Sférická (_sestupná)Sférická (_vzestupná)Spirála (ve směru hodinových ručiček)Spirála (ve směru hodinových ručiček)RozdělitRozdělit segment přechodu stejnoměrněRozdělit segmenty přechodu stejnoměrněRozdělit segment stejnoměrněRozdělit segment _stejnoměrně...Rozdělit segment ve _středním boděRozdělit segmenty stejnoměrněRozdělit segmenty _stejnoměrně...Rozdělit segmenty ve _středních bodechČtvercový_Stav a text_ZásobníkStandardníSpouštím rozšířeníSpouštím rozšíření: '%s' +chcete rozdělit zvolený segment.Zvolit průhledné oblastiVybrat WWW prohlížečVý_běr do cestyVýběrEditor výběruMenu Editoru výběruMaska výběruProcedury nástrojů pro výběrMaska výběruVýběr do cesty (_pokročilé)Výběr do cestyVýběr: Výběr: PŘIDÁNÍVýběr: PRŮNIKVýběr: PŘEPSÁNÍVýběr: ODEBRÁNÍCitlivostNastavit barvu doplnění plátnaNastavit barvu kanáluNastavit krytí kanáluNastavit mapu barevNastavit vlastní barvu doplnění plátnaNastavení velikosti plátna obrázkuNastavit rozlišení tisku obrázkuNastavit položku exkluzivně viditelnouNastavit položku exkluzivně viditelnouNastavení rozměrů hranic vrstvyNastavit název z _textuNastavit krytíNastavit barvu pozadíNastavit barvu popředíNastavit spojení položkyNastavit režim vrstvyNastavit krytí vrstvyNastavit Zachovat změnyNastavuje horní limit paměti používané v pro udržování operací na zásobníku zpětných úprav jednoho obrázku. Bez ohledu na toto nastavení je možné vrátit zpět alespoň tolik operací, kolik je nastaveno.Nastavují prohlížeč používaný systémem nápovědy.Nastavuje barvu doplnění plátna používanou, je-li režim doplnění nastaven na vlastní barvu.Nastaví externí WWW prohlížeč, který používat. Může to být absolutní cesta nebo název spustitelného souboru hledaného v PATH uživatele. Pokud příkaz obsahuje '%s', bude nahrazeno URL, jinak bude URL připojeno k příkazu, oddělené mezerou.Nastavuje úroveň interpolace používanou pro změnu velikosti a jiné transformace.Nastavuje způsob, kterým se v obrázcích zobrazuje průhlednost.Nastavuje minimální počet operací, které lze vzít zpět. Více úrovní zpětných úprav se udržuje, dokud není překročen limit undo-size.Nastavuje režim kurzoru, který bude GIMP používat.Nastaví vodorovné rozlišení monitoru v bodech na palec. Je-li nastaveno na 0, vynutí získání informací o vodorovném a svislém rozlišení z X serveru.Nastaví svislé rozlišení monitoru v bodech na palec. Je-li nastaveno na 0, vynutí získání informací o vodorovném a svislém rozlišení z X serveru.Nastaví formát pixelu kurzoru, který bude GIMP používat.Nastavuje velikost náhledu pro vrstvy a kanály v nově vytvářených dialozích.Nastavuje velikost šachovnice používané pro zobrazení průhlednosti.Nastavuje velikost navigačního náhledu dostupného v pravém dolním rohu okna obrázku.Nastavuje velikost náhledů v historii vracení.Nastavuje velikost miniatury zobrazované v dialogu Otevřít. Všimněte si, že GIMP nemůže vytvářet miniatury, jsou-li zakázány náhledy vrstev.Nastavuje umístění odkládacího souboru. gimp používá schéma alokace paměti založené na dlaždicích. Odkládací soubor se používá pro rychlé a snadné odkládání dlaždic na disk a zpět. Uvědomte si, že odkládací soubor může snadno být hodně velký, používá-li se GIMP s velkými obrázky. Dále, je-li odkládací soubor vytvořený v adresáři připojeném přes NFS, může být vše strašně pomalé. Z těchto důvodů může být vhodné umístit váš odkládací soubor do "/tmp".Nastavuje adresář pro dočasný úložný prostor. Při běhu GIMPu se zde budou objevovat soubory. Většina souborů zmizí, když GIMP skončí, ale některé soubory pravděpodobně zůstanou, takže je dobré, když tento adresář není sdílen jinými uživateli.Nastavuje text, který se objeví ve stavových lištách okna obrázku.Nastavuje text, který se objeví v nadpisech okna obrázku.Nastavuje, jestli má GIMP vytvářet náhledy vrstev a kanálů. Je hezké mít náhledy v dialogu vrstev a kanálů, ale mohou program při práci s velkými obrázky zpomalovat.Typ stínuStínyTvarTvar:Pronikající (úhlový)Pronikající (důlkový)Pronikající (kulový)ZaostřeníZaostřit kanálZaostřit výběrNaklonitZvětšení X naklonění:Zvětšení Y naklonění:Naklonění vrstvy nebo výběruInformace o nakloněníNakláním...Krátké čárkyKlávesová zkratkaZkratku "%s" již používá "%s" ze skupiny "%s".Zobrazit masku vrstvyZobrazovat p_ravítkaZobrazovat s_tavovou lištuZobrazovat _posuvné pruhyZobrazovat _vodítkaZobrazovat _hranici vrstvyZobrazovat lištu s _menuZobrazovat _výběrZobrazovat obrys _stopyZobrazovat barvu _popředí a pozadíZobrazovat _vodítkaZobrazovat _hranici vrstvyZobrazovat lištu s _menuZobrazovat p_ravítkaZobrazovat aktivní _stopu, vzorek a přechodZobrazovat aktivní _obrázekZobrazovat _mřížkuZobrazovat _tlačítka nápovědyZobrazovat velikost obrázkuZobrazit interaktivní hraniciZobrazit spotřebu pamětiZobrazovat _mnemoniky menu (klávesové zkratky)Zobrazovat kurzor kreslicího _nástrojeZobrazovat _výběrZobrazovat s_tavovou lištuZobrazovat _posuvné lištyZobrazit tip při příštím spuštění GIMPuZobrazovat tipy při _spuštěníZobrazovat _tipy nástrojůZobrazovat procento přiblíženíZobrazovat poměr přiblíženíZmenšit kanálZmenšit výběrZmenšit podle _okrajůZmenšit dle hranic obrázkuZmenšit výběr oZmenšit podle okrajůVelikostVelikost v paměti:_Velikost miniatur:Velikost:Přeskakuji '%s': špatná verze protokolu GIMP.MaláMenší náhledyPlynuláVyhlazování hranŠmouhaPoskvrnění obrázku_Chytat na vodítka_Chytat k mřížceMírné světloPlnáZdrojRozestupRozestup:Řídké tečkySpeciální souborUrčuje, jak se má kreslit oblast okolo obrázku.Rychlost běžících čar v obvodu výběru. Tato hodnota je v milisekundách (menší čas znamená rychlejší běh).Rychlost:Sférická (_sestupná)Sférická (_vzestupná)Hroty:Spirála (ve směru hodinových ručiček)Spirála (ve směru hodinových ručiček)RozdělitRozdělit segment přechodu stejnoměrněRozdělit segmenty přechodu stejnoměrněRozdělit segment stejnoměrněRozdělit segment _stejnoměrně...Rozdělit segment ve _středním boděRozdělit segmenty stejnoměrněRozdělit segmenty _stejnoměrně...Rozdělit segmenty ve _středních bodechČtvercový_Stav a text_ZásobníkStandardníSpouštím rozšířeníSpouštím rozšíření: '%s' Stav:Statické barvyStatické šediStav a popisStav a textRozptyl:TečkováníStandardní ID_Vykreslit cestuVyk_reslit cestu...Vykreslit kanálVykreslit cestuVykreslit výběrVykreslit úsečkuVykreslit cestuVykreslit cestu s posledními hodnotamiVykreslit cestu...Vykreslit výběr s posledními hodnotamiVykreslit výběr...Vykreslit pomocí kreslicího nástrojeStyl rámu okolo textu stavové lištyRozdílUbrat z aktuálního výběruPřevzorkováníOdkládací adresář:_NástrojeTe_xtNástroj _textDočasný adresář:ŠablonyMenu ŠablonyPomocná proceduraUkončuji zásuvný modul: '%s' TextBarva textuTextový editorTextová vrstvaText změněnProcedury textůGIMPZásuvný modul prohlížeče nápovědy GIMPu zřejmě ve vaší instalaci chybí.Aktivní stopa. Dialog stop otevřete klepnutím.Aktivní přechod. @@ -425,15 +411,15 @@ Můžete vrstvu upravovat nebo vytvořit novou vrstvu textu z atributů jejího textu.Název adresáře s uživatelským nastavením GIMPu nelze převést do UTF-8: %s -Pravděpodobně váš systém souborů ukládá soubory v kódování jiném než UTF-8 a neřekli jste o tom GLib. Nastavte prosím proměnnou prostředí G_FILENAME_ENCODING.sesionrc se používá pro uložené, která okna dialogů byla otevřena, když jste naposledy ukončili GIMP. Můžete GIMP nastavit, aby tyto dialogy znovu otevřel na uložených pozicích.Miniatura v dialogu Otevřít bude automaticky aktualizována, pokud soubor, jehož miniatura se tvoří, je menší než zde nastavená velikost.Vyrovnávací paměť dlaždic se používá pro zajištění toho, že GIMP nebude neustále přehazovat dlaždice mezi pamětí a diskem. Vyšší nastavení této hodnoty způsobí, že GIMP bude používat méně odkládacího prostoru, ale více paměti. Naopak menší velikost vyrovnávací paměti způsobí, že GIMP bude používat více odkládacího prostoru a méně paměti.Jednotka používaná pro zobrazování souřadnic mimo režim bod na bod.unitrc se používá pro ukládání databáze uživatelských jednotek. Můžete definovat vlastní jednotky a používat je stejně jako vestavěné palce, milimetry, body a piky. Tento soubor je přepsán pokaždé, když ukončíte GIMP.Svislé rozlišení obrázku.Nápověda typu okna, která je nastavena na dokovacích oknech. Může to mít vliv na to, jak váš správce oken dekoruje dokovací okna a jak s nimi pracuje.Nápověda typu okna, která je nastavena na nástrojích. Může to mít vliv na to, jak váš správce oken dekoruje okno nástrojů a jak s ním pracuje.TémaAdresáře s tématyTémataV %d obrázcích jsou neuložené změny:Ke sloučení dolů není dostatek viditelných vrstev.Mezi použitím paměti a rychlostí si vždy musíte vybrat. GIMP většinou dává přednosti rychlostí před pamětí. Je-li paměť velký problém, zkuste povolit toto nastavení.Není žádná aktivní vrstva nebo kanál, odkud kopírovat.Není žádná aktivní vrstva nebo kanál, odkud vyjmout.Není žádná aktivní vrstva nebo kanál, kam vykreslovatNení žádná aktivní vrstva nebo kanál, kam vykreslovat.V jednom obrázku jsou neuložené změny:Měl existovat soubor s názvem '%s'. Zkontrolujte prosím svou instalaci.Při zpracovávání vašeho souboru '%s' došlo k chybě. Budou použity implicitní hodnoty. Byla vytvořena záloha vaší konfigurace v '%s'.Tento soubor obsahuje soubor standardních velikostí médií, které slouží jako šablony obrázků.V tomto adresáři se hledají šablony obrázků.V tomto adresáři se hledají uživatelem instalovaná témata.Tento adresář se používá k ukládání písem, která chcete vidět jen v GIMPu. Při hledání písem GIMP tento adresář použije navíc k systémové instalaci písem GIMPu. Použijte to jen, pokud opravdu chcete mít písma jen pro GIMP, jinak je umístěte do svého globálního adresáře písem.Tento adresář se používá pro ukládání souborů parametrů pro nástroj Křivky.Tento adresář se používá pro ukládání souborů parametrů pro nástroj Úrovně.Tento adresář je používán pro ukládání voleb nástrojů.Tento adresář se používá k ukládání uživatelem vytvořených a nainstalovaných skriptů. Při hledání skriptů GIMP tento adresář použije navíc k systémovému adresáři skriptů GIMPu.Tento adresář se používá k ukládání uživatelem vytvořených, dočasných nebo jinak systémem nepodporovaných modulů DLL. Při hledání modulů, které načíst při inicializaci, GIMP tento adresář použije navíc k systémovému adresáři modulů GIMPu.Tento adresář se používá k ukládání uživatelem vytvořených, dočasných nebo jinak systémem nepodporovaných dodatků k prostředí zásuvných modulů. Při hledání souborů úprav prostředí zásuvných modulů GIMP tento adresář použije navíc k systémovému adresáři prosředí GIMPu.Tento adresář se používá k ukládání uživatelem vytvořených, dočasných nebo jinak systémem nepodporovaných zásuvných modulů. Při hledání zásuvných modulů GIMP tento adresář použije navíc k systémovému adresáři modulů GIMPu.Tento adresář se používá pro ukládání uživatelem definovaných stop. Při hledání stop GIMP tento adresář použije navíc k systémovým stopám GIMPu.Tento adresář se používá k ukládání uživatelem definovaných přechodů. Při hledání přechodů GIMP tento adresář použije navíc k systémovým přechodům GIMPu.Tento adresář se používá k ukládání uživatelem definovaných palet. Při hledání palet GIMP tento adresář použije navíc k systémovým paletám GIMPu.Tento adresář se používá k ukládání uživatelem definovaných vzorků. Při hledání vzorků GIMP tento adresář použije navíc k systémovým vzorkům GIMPu.Tento adresář se používá k dočasnému ukládání bufferů pro vracení, čímž se ušetří paměť. Pokud je GIMP nenormálně ukončen, mohou zde zbýt soubory ve formě: gimp<#>.<#>. Ty jsou mezi GIMP sezeními zbytečné a mohou být odstraněny jako smetí.Tento adresář bude obsahovat několik důležitých souborů. Kliknutím na jeden ze souborů nebo adresářů ve stromu získáte více informací o zvolené položce.Toto je vzdálenost v pixelech, kde se aktivuje přichytávání k vodítkům a mřížce.Tento program je šířen v naději, že bude užitečný, avšak BEZ JAKÉKOLI ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo VHODNOSTI PRO URČITÝ ÚČEL. Další podrobnosti hledejte v GNU General Public License.Tento program je free software; můžete jej šířit a měnit za podmínek GNU General Public License publikované Free Software Foundation; buď verze 2 této licence, nebo (podle vašeho uvážení) jakékoli novější.Toto textové vstupní pole je omezeno na %d znaků.Tento nástroj nemá volby.Toto okno má otevřeno %d odrážek. Zavření okna také zavře všechny jeho odrážky.PráhPráh nefunguje na indexovaných vrstvách.Práh:Miniatura %d z %d_Velikost vyrovnávací paměti dlaždic:Velikost vyrovnávací paměti dlaždic:Sklon:DrobnéTitulek a stavDo _cestyKlávesovou zkratku upravte kliknutím na odpovídající řádek a stisknutím nové klávesové zkratky nebo ji vymažte stisknutím Backspace._HračkyPřepnout Rychlou masku_Přepnout Rychlou maskuPříliš mnoho chybových zpráv!Volby nástrojůMenu Volby nástrojůPřepínač nástrojů %s_Volby nástrojůIkona nástrojeIkona nástroje s nitkovým křížem_NástrojeNástrojeMenu NástrojeNástrojeMenu NástrojeNástroje jako přibližný výběr a plechovka hledají oblasti algoritmem semínkového vyplňování. Semínkové vyplňování začne na původně vybraném pixelu a pokračuje ve všech směrech, dokud není rozdíl intenzity pixelu od originálu větší než zadaný limit. Tato hodnota představuje implicitní limit.Prů_hlednostPřenést alfu do maskyTransformaceTransformovat kanálSměr transformaceTransformovat vrstvuTransformovat cestuTransformovat textovou vrstvuProcedury transformačních nástrojůTransformovat vrstvuTransformovat cestuTransformovat výběrTransformaceProcedury transformaceTransformuji...PřeložiliPrůhlednost_Typ průhlednosti:Trojúhelníková vlnaPravé barvyTypTyp %sStiskněte novou klávesovou zkratkuStiskněte novou klávesovou zkratku nebo ji vymažte stisknutím BackspaceNelze přidat masku vrstvy, protože vrstva již masku má.Nemohu vyříznout nebo kopírovat, protože zvolená oblast je prázdná.Nemohu otevřít testovací odkládací soubor. Abyste předešli ztrátě dat, zkontrolujte prosím umístění a oprávnění odkládacího adresáře definovaného ve vašich Předvolbách (momentálně "%s").Nemohu otevřít odkládací soubor. Gimpu došla paměť a nemůže použít odkládací soubor. Některé části vašich obrázků mohou být poškozeny. Zkuste uložit svou práci pod jinými názvy souborů, spustit Gimp znovu a zkontrolovat nastavení odkládacího adresáře ve vašich Předvolbách.Nemohu spustit zpětné volání %s. Příslušný zásuvný modul možná spadl.NedefinovánoZpětHistorie vracení_Historie vraceníJednotkyNeznámýNeznámý typ souboruNeznámý typ souboru palety: +Pravděpodobně váš systém souborů ukládá soubory v kódování jiném než UTF-8 a neřekli jste o tom GLib. Nastavte prosím proměnnou prostředí G_FILENAME_ENCODING.sesionrc se používá pro uložené, která okna dialogů byla otevřena, když jste naposledy ukončili GIMP. Můžete GIMP nastavit, aby tyto dialogy znovu otevřel na uložených pozicích.Miniatura v dialogu Otevřít bude automaticky aktualizována, pokud soubor, jehož miniatura se tvoří, je menší než zde nastavená velikost.Vyrovnávací paměť dlaždic se používá pro zajištění toho, že GIMP nebude neustále přehazovat dlaždice mezi pamětí a diskem. Vyšší nastavení této hodnoty způsobí, že GIMP bude používat méně odkládacího prostoru, ale více paměti. Naopak menší velikost vyrovnávací paměti způsobí, že GIMP bude používat více odkládacího prostoru a méně paměti.Jednotka používaná pro zobrazování souřadnic mimo režim bod na bod.unitrc se používá pro ukládání databáze uživatelských jednotek. Můžete definovat vlastní jednotky a používat je stejně jako vestavěné palce, milimetry, body a piky. Tento soubor je přepsán pokaždé, když ukončíte GIMP.Svislé rozlišení obrázku.Nápověda typu okna, která je nastavena na dokovacích oknech. Může to mít vliv na to, jak váš správce oken dekoruje dokovací okna a jak s nimi pracuje.Nápověda typu okna, která je nastavena na nástrojích. Může to mít vliv na to, jak váš správce oken dekoruje okno nástrojů a jak s ním pracuje.TémaAdresáře s tématyTémataV %d obrázcích jsou neuložené změny:Ke sloučení dolů není dostatek viditelných vrstev.Mezi použitím paměti a rychlostí si vždy musíte vybrat. GIMP většinou dává přednosti rychlostí před pamětí. Je-li paměť velký problém, zkuste povolit toto nastavení.Není žádná aktivní vrstva nebo kanál, odkud kopírovat.Není žádná aktivní vrstva nebo kanál, odkud vyjmout.Není žádná aktivní vrstva nebo kanál, kam vykreslovatNení žádná aktivní vrstva nebo kanál, kam vykreslovat.V jednom obrázku jsou neuložené změny:Měl existovat soubor s názvem '%s'. Zkontrolujte prosím svou instalaci.Při zpracovávání vašeho souboru '%s' došlo k chybě. Budou použity implicitní hodnoty. Byla vytvořena záloha vaší konfigurace v '%s'.Tento soubor obsahuje soubor standardních velikostí médií, které slouží jako šablony obrázků.V tomto adresáři se hledají šablony obrázků.V tomto adresáři se hledají uživatelem instalovaná témata.Tento adresář se používá k ukládání písem, která chcete vidět jen v GIMPu. Při hledání písem GIMP tento adresář použije navíc k systémové instalaci písem GIMPu. Použijte to jen, pokud opravdu chcete mít písma jen pro GIMP, jinak je umístěte do svého globálního adresáře písem.Tento adresář se používá pro ukládání souborů parametrů pro nástroj Křivky.Tento adresář se používá pro ukládání souborů parametrů pro nástroj Úrovně.Tento adresář je používán pro ukládání voleb nástrojů.Tento adresář se používá k ukládání uživatelem vytvořených a nainstalovaných skriptů. Při hledání skriptů GIMP tento adresář použije navíc k systémovému adresáři skriptů GIMPu.Tento adresář se používá k ukládání uživatelem vytvořených, dočasných nebo jinak systémem nepodporovaných modulů DLL. Při hledání modulů, které načíst při inicializaci, GIMP tento adresář použije navíc k systémovému adresáři modulů GIMPu.Tento adresář se používá k ukládání uživatelem vytvořených, dočasných nebo jinak systémem nepodporovaných dodatků k prostředí zásuvných modulů. Při hledání souborů úprav prostředí zásuvných modulů GIMP tento adresář použije navíc k systémovému adresáři prosředí GIMPu.Tento adresář se používá k ukládání uživatelem vytvořených, dočasných nebo jinak systémem nepodporovaných zásuvných modulů. Při hledání zásuvných modulů GIMP tento adresář použije navíc k systémovému adresáři modulů GIMPu.Tento adresář se používá pro ukládání uživatelem definovaných stop. Při hledání stop GIMP tento adresář použije navíc k systémovým stopám GIMPu.Tento adresář se používá k ukládání uživatelem definovaných přechodů. Při hledání přechodů GIMP tento adresář použije navíc k systémovým přechodům GIMPu.Tento adresář se používá k ukládání uživatelem definovaných palet. Při hledání palet GIMP tento adresář použije navíc k systémovým paletám GIMPu.Tento adresář se používá k ukládání uživatelem definovaných vzorků. Při hledání vzorků GIMP tento adresář použije navíc k systémovým vzorkům GIMPu.Tento adresář se používá k dočasnému ukládání bufferů pro vracení, čímž se ušetří paměť. Pokud je GIMP nenormálně ukončen, mohou zde zbýt soubory ve formě: gimp<#>.<#>. Ty jsou mezi GIMP sezeními zbytečné a mohou být odstraněny jako smetí.Tento adresář bude obsahovat několik důležitých souborů. Kliknutím na jeden ze souborů nebo adresářů ve stromu získáte více informací o zvolené položce.Toto je vzdálenost v pixelech, kde se aktivuje přichytávání k vodítkům a mřížce.Tento program je šířen v naději, že bude užitečný, avšak BEZ JAKÉKOLI ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo VHODNOSTI PRO URČITÝ ÚČEL. Další podrobnosti hledejte v GNU General Public License.Tento program je free software; můžete jej šířit a měnit za podmínek GNU General Public License publikované Free Software Foundation; buď verze 2 této licence, nebo (podle vašeho uvážení) jakékoli novější.Toto textové vstupní pole je omezeno na %d znaků.Tento nástroj nemá volby.Toto okno má otevřeno %d odrážek. Zavření okna také zavře všechny jeho odrážky.PráhPráh nefunguje na indexovaných vrstvách.Práh:Miniatura %d z %d_Velikost vyrovnávací paměti dlaždic:Velikost vyrovnávací paměti dlaždic:Sklon:DrobnéTitulek a stavDo _cestyKlávesovou zkratku upravte kliknutím na odpovídající řádek a stisknutím nové klávesové zkratky nebo ji vymažte stisknutím Backspace._HračkyPřepnout Rychlou masku_Přepnout Rychlou maskuPříliš mnoho chybových zpráv!Volby nástrojůMenu Volby nástrojůPřepínač nástrojů %s_Volby nástrojůIkona nástrojeIkona nástroje s nitkovým křížem_Panel nástrojůPanel nástrojůMenu NástrojeNástrojeMenu NástrojeNástroje jako přibližný výběr a plechovka hledají oblasti algoritmem semínkového vyplňování. Semínkové vyplňování začne na původně vybraném pixelu a pokračuje ve všech směrech, dokud není rozdíl intenzity pixelu od originálu větší než zadaný limit. Tato hodnota představuje implicitní limit.Prů_hlednostPřenést alfu do maskyTransformaceTransformovat kanálSměr transformaceTransformovat vrstvuTransformovat cestuTransformovat textovou vrstvuProcedury transformačních nástrojůTransformovat vrstvuTransformovat cestuTransformovat výběrTransformaceProcedury transformaceTransformuji...PřeložiliPrůhlednost_Typ průhlednosti:Trojúhelníková vlnaPravé barvyTypTyp %sStiskněte novou klávesovou zkratkuStiskněte novou klávesovou zkratku nebo ji vymažte stisknutím BackspaceNelze přidat masku vrstvy, protože vrstva již masku má.Nemohu vyříznout nebo kopírovat, protože zvolená oblast je prázdná.Nemohu otevřít testovací odkládací soubor. Abyste předešli ztrátě dat, zkontrolujte prosím umístění a oprávnění odkládacího adresáře definovaného ve vašich Předvolbách (momentálně "%s").Nemohu otevřít odkládací soubor. Gimpu došla paměť a nemůže použít odkládací soubor. Některé části vašich obrázků mohou být poškozeny. Zkuste uložit svou práci pod jinými názvy souborů, spustit Gimp znovu a zkontrolovat nastavení odkládacího adresáře ve vašich Předvolbách.Nemohu spustit zpětné volání %s. Příslušný zásuvný modul možná spadl.NedefinovánoZpětHistorie vracení_Historie vraceníJednotkyNeznámýNeznámý typ souboruNeznámý typ souboru palety: %sUvolnitBeze jménaBez názvuPoužívat implicitně "_Bod na bod"Používat dynamické _klávesové zkratkyPoužít místo toho _WWW prohlížečPři zmenšení výběru použít všechny viditelné vrstvyPoužít černobílou (1bitovou) paletuPoužít barvu z přechoduPoužít vlastní paletuPoužít informační oknoPoužít paletu optimalizovanou pro WWWProtokol o uživatelské instalaciUživatelské rozhraníOkno nástrojůJasHodnota:Změna vektorůVerzi %s pro vás napsaliVerze:SvisleSvislý posun první čáry mřížky; může to být záporné číslo.Svislé rozestupy čar mřížky.Velmi velkéVelmi maléZobrazitZobrazit jako _mřížkuZobrazit jako _seznamZobrazit jako mřížkuZobrazit jako seznamTřída vizuálu:Hloubla vizuálu:Varování: Nemohu načíst data: %sVarování: Nemohu uložit data: %sWWW prohlížečWWW prohlížečVítá vás -uživatelská instalace GIMPu %d.%dKdyž je povoleno, dialog automaticky sleduje obrázek, na kterém pracujete.Je-li povoleno, bude GIMP v menu zobrazovat mnemoniky.Je-li povoleno, budou všechny nástroje kreslení zobrazovat náhled obrysu aktuální stopy.Je-li povoleno, stane se obrázek aktivním, když je aktivováno jeho okno obrázku . To je užitečné pro správce oken používající "aktivaci kliknutím".Je-li povoleno, dialogy budou zobrazovat tlačíko nápovědy, které dává přistup k odpovídající stránce nápovědy. Bez tohoto tlačítka se stránka nápovědy dá otevřít stisknutím F1.Je-li povoleno, mohou být menu oddělena.Je-li povoleno, stisknutí F1 otevře prohlížeč nápovědy.Je-li povoleno, nebude GIMP ukládat, nebyl-li obrázek od svého otevření změněn.Je-li povoleno, bude GIMP používat pro každý pohled na obrázek jiné informační okno.Je-li povoleno, posílají se X serveru dotazy na aktuální pozici myši při každé události pohybu místo spoléhání se na hint pozice. To znamená, že kreslení s velkými stopami by mělo být přesnější, ale možná pomalejší. Na některých X serverech zapnutí této volby zvráceně vede k rychlejšímu kreslení.Je-li povoleno, nebude nad obrázkem zobrazován kurzor při používání kreslicího nástroje.Je-li povoleno, je mřížka implicitně viditelná. Může být také přepnuto příkazem "Zobrazení->Zobrazovat mřížku".Je-li povoleno, jsou vodítka implicitně viditelná. Může být také přepnuto příkazem "Zobrazení->Zobrazovat vodítka".Je-li povoleno, bude okno obrázku automaticky měnit svou velikost při zvětšování a zmenšování obrázků.Je-li povoleno, bude okno obrázku automaticky měnit svou velikost, kdykoli se změní fyzická velikost obrázku.Je-li povoleno, je hranice vrstvy implicitně viditelná. Může být také přepnuto příkazem "Zobrazení->Zobrazovat hranici vrstvy".Je-li povoleno, je lišta s menu implicitně viditelná. Může být také přepnuto příkazem "Zobrazení->Zobrazovat lištu s menu".Je-li povoleno, jsou pravítka implicitně viditelná. Může být také přepnuto příkazem "Zobrazení->Zobrazovat pravítka".Je-li povoleno, jsou posuvné pruhy implicitně viditelné. Může být také přepnuto příkazem "Zobrazení->Zobrazovat posuvné pruhy".Je-li povoleno, bude vybraná stopa používána pro všechny nástroje.Je-li povoleno, bude vybraný přechod používána pro všechny nástroje.Je-li povoleno, bude vybraný vzorek používána pro všechny nástroje.Je-li povoleno, je výběr implicitně viditelný. Může být také přepnuto příkazem "Zobrazení->Zobrazovat výběr".Je-li povoleno, je stavová lišta implicitně viditelná. Může být také přepnuto příkazem "Zobrazení->Zobrazovat stavovou lištu".Je-li povoleno, zajistí, že každý pixel obrázku bude mapován na pixel na obrazovce.Je-li povoleno, zajistí, že po otevření souboru bude vidět celý obrázek, jinak bude zobrazen s měřítkem 1:1.Je-li povoleno, můžete měnit klávesové zkratky položek menu stisknutím kombinace kláves, když je položka menu zvýrazněna.BíláVyvážení bílé pracuje pouze s vrstvami v barvách RGB.ŠířkaŠířka:Správa okenNápovědy správce okenPolohy okenZapisuji '%s' +uživatelská instalace GIMPu %d.%dKdyž je povoleno, dialog automaticky sleduje obrázek, na kterém pracujete.Je-li povoleno, bude GIMP v menu zobrazovat mnemoniky.Je-li povoleno, budou všechny nástroje kreslení zobrazovat náhled obrysu aktuální stopy.Je-li povoleno, stane se obrázek aktivním, když je aktivováno jeho okno obrázku . To je užitečné pro správce oken používající "aktivaci kliknutím".Je-li povoleno, dialogy budou zobrazovat tlačíko nápovědy, které dává přistup k odpovídající stránce nápovědy. Bez tohoto tlačítka se stránka nápovědy dá otevřít stisknutím F1.Je-li povoleno, mohou být menu oddělena.Je-li povoleno, stisknutí F1 otevře prohlížeč nápovědy.Je-li povoleno, nebude GIMP ukládat, nebyl-li obrázek od svého otevření změněn.Je-li povoleno, bude GIMP používat pro každý pohled na obrázek jiné informační okno.Je-li povoleno, posílají se X serveru dotazy na aktuální pozici myši při každé události pohybu místo spoléhání se na hint pozice. To znamená, že kreslení s velkými stopami by mělo být přesnější, ale možná pomalejší. Na některých X serverech zapnutí této volby zvráceně vede k rychlejšímu kreslení.Je-li povoleno, nebude nad obrázkem zobrazován kurzor při používání kreslicího nástroje.Je-li povoleno, je mřížka implicitně viditelná. Může být také přepnuto příkazem "Zobrazení->Zobrazovat mřížku".Je-li povoleno, jsou vodítka implicitně viditelná. Může být také přepnuto příkazem "Zobrazení->Zobrazovat vodítka".Je-li povoleno, bude okno obrázku automaticky měnit svou velikost při přibližování a oddalování obrázků.Je-li povoleno, bude okno obrázku automaticky měnit svou velikost, kdykoli se změní fyzická velikost obrázku.Je-li povoleno, je hranice vrstvy implicitně viditelná. Může být také přepnuto příkazem "Zobrazení->Zobrazovat hranici vrstvy".Je-li povoleno, je lišta s menu implicitně viditelná. Může být také přepnuto příkazem "Zobrazení->Zobrazovat lištu s menu".Je-li povoleno, jsou pravítka implicitně viditelná. Může být také přepnuto příkazem "Zobrazení->Zobrazovat pravítka".Je-li povoleno, jsou posuvné pruhy implicitně viditelné. Může být také přepnuto příkazem "Zobrazení->Zobrazovat posuvné pruhy".Je-li povoleno, bude vybraná stopa používána pro všechny nástroje.Je-li povoleno, bude vybraný přechod používána pro všechny nástroje.Je-li povoleno, bude vybraný vzorek používána pro všechny nástroje.Je-li povoleno, je výběr implicitně viditelný. Může být také přepnuto příkazem "Zobrazení->Zobrazovat výběr".Je-li povoleno, je stavová lišta implicitně viditelná. Může být také přepnuto příkazem "Zobrazení->Zobrazovat stavovou lištu".Je-li povoleno, zajistí, že každý pixel obrázku bude mapován na pixel na obrazovce.Je-li povoleno, zajistí, že po otevření souboru bude vidět celý obrázek, jinak bude zobrazen s měřítkem 1:1.Je-li povoleno, můžete měnit klávesové zkratky položek menu stisknutím kombinace kláves, když je položka menu zvýrazněna.BíláVyvážení bílé pracuje pouze s vrstvami v barvách RGB.ŠířkaŠířka:Správa okenNápovědy správce okenPolohy okenZapisuji '%s' Xchyba XCF: nalezena nepodporovaná verze %d XCF souboruVarování XCF: soubor formátu XCF verze 0 nezapisoval korektně indexovanou barevnou mapu. -Bude nahrazena barevnou mapou s odstíny šedi.YŽlutáŽlutá:Pokoušíte se vytvořit obrázek o velikosti %s.Sem můžete upustit ukotvitelné dialogy.Kopii GNU General Public License byste měli získat s tímto programem; pokud tomu tak není, napište Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Aby se následující změny projevily, musíte restartovat GIMP:Vaše instalace GIMPu není úplná:Vaše nastavení vstupních zařízení vráceno na implicitní hodnoty, až příště spustíte GIMP.Vaše klávesové zkratky budou vráceny na implicitní hodnoty, až příště spustíte GIMP.Vaše nastavení oken bude vráceno na implicitní hodnoty, až příště spustíte GIMP.Chování zvětšování a změny velikostiPřiblížit 1:1Zvětšit všePřiblížitVzdálitZvětšeníZvětšení:Zvětšit _vše_PřiblížitVz_dálitZvětšit všePoměr zvětšení: %d:1Změnit měřítko obrázku při změně veliosti oknaPřiblížitPřiblížení nebo vzdáleníVzdálitZvětšení:[ Základní obrázek ]O _aplikaciZísk_at_Přidat barvu z pozadí_Přidat barvu z popředí_Přidat odrážku_Přidat do výběru_Pokročilé možnosti_Vzdušný štětec_Vše_Ukotvit vrstvu_Vyhlazování_Libovolná rotace..._Umění_Poměr stran_Automaticky_BBarva po_zadíBarva po_zadí:_Černá (úplná průhlednost)Funkce _mísení pro segmentFunkce _mísení pro výběr_Rozostření_Jas:_Stopa_Stopy_Stopy, vzorky a přechody_Plechovka_BufferPodle _barvy_Podle barvy výběru_CStyl za_končení:_Kanály_Vymazat chybyVy_mazat historii vracení_Klonovat_Zavřít_Zavřít odrážku_MrakyNástroje _barev_Barvy_Nastavit barvu a krytí..._Kontext_Kontextová nápověda_KopírovatKo_pírovat pojmenované..._Vytvořit obrázek ze šablony..._Ořezání a rozměry_Ořezat obrázek_Zakřivená_Křivky...Barva _tmavé šachovnice_Implicitní Barvy_Odstranit stopu_Odstranit buffer_Odstranit kanál_Odstranit barvu_Odstranit přechod..._Odstranit obrázek_Odstranit vrstvu_Odstranit paletu_Odstranit cestu_Odstranit vzorek..._Odstranit uložené možnosti_Odstranit segment_Odstranit výběr_Odstranit šablonu_Odbarvit_Odpojit odrážku_Stav zařízení_DialogyZa_hodit změnyZahodit informace o _textu_Zkreslení_Bod na bod_Duplikovat_Upravit_Upravit stopu..._Upravit atributy kanálu..._Upravit barvu..._Upravit přechod..._Upravit atributy vrstvy..._Upravit paletu..._Upravit atributy cesty..._Upravit vzorek..._Upravit šablonu...Výběr _elipsy_Povolit náhledy vrstev a kanálů_Enormní_Ekvalizovat_GumaBarva po_předí_Soubor_Vyplnit s_Přizpůsobit obrázek oknuZ_ploštit obrázekPře_klopení_Překlopit segment_Překlopit výběr_Plovoucí_Písmo_PísmaBarva po_předí:_Volný výběr_G_Obecné_Gigantické_Přechod_Přechody_Odstíny šediKopie vrstvy v _odstínech šediZ_většit..._Vodítka_Tvrdost_Nápověda_Vodorovně:_Odstín:_Obrovské_Ikona_Ikona:_Obrázek_Obrázky_Importovat_Importovat paletu..._Indexovaná..._Informační okno_Průnik s výběrem_Invertovat_Styl spojení:_Velké_Vrstva_Vrstvy_Vrstvy, kanály a cesty_Levý koncový bodPravého koncového bodu _levého souseda_Úrovně...Barva _světlé šachovniceEfekty se _světlemSvět_lost:_Styl čáry_Lineární_Spojené_Načíst levou barvu zKanál _nížVrstvu _níž_Snížit cestu_M_Ručně_Mapa_MaskaMaska do _výběruMa_ximální počet barev:_Měřidlo_Střední_Sloučit palety..._Sloučit importované cesty_Převést uživatelská nastavení z GIMP 2.0_RůznéLimit _ostrosti:_RežimSprávce _modulů_Přesun_Jméno:_Příroda_Nová stopa_Nový kanál_Nový kanál..._Nová položka..._Nový přechod_Nová vrstva_Nová vrstva..._Nová paleta_Nová cesta_Nová cesta..._Nový vzorek_Nová šablona..._Nový pohled_Nové..._Následující tip_Šum_Nic_Posun..._Krytí_Otevřít obrázek_Otevřít..._Barva doplnění_Kreslicí nástroj:_Štětec_PaletaV_ložit_Vložit bufferVlo_žit pojmenované..._Cesty_Vzorek_Perspektiva_Posterizovat..._Předvolby_NáhledVelikost _náhledu_Předchozí tip_Velikost tisku..._Vlastnosti_Rychlá maska aktivníU_končit_R_RGB_PrůměrKanál _výšVrstvu _výš_Zvýšit cestuPohledy _výšZ_výšit nebo otevřít obrázek_Změnit přiřazení zkratkyVýběr _obdélníkuZn_ovuZn_ovu %s_Aktualizovat stopy_Obnovit přechody_Aktualizovat palety_Aktualizovat vzorky_Odstranit z konečné palety nepoužité barvy_Vykreslení_Nahradit_Replikovat segment..._Replikovat výběr..._Znovu načíst seznam písem_Přenastavit pořadí a viditelnost_Obnovit uložené nastavení vstupních zařízení na implicitní hodnotyObnovit uložené klávesové zkratky na _implicitní hodnoty_Obnovit uložené polohy oken na implicitní hodnoty_Obnovit možnosti z_Pravý koncový bodLevého koncového bodu _pravého souseda_Rotovat_Sytost:_Uložit_Uložit levou barvu do_Uložit možnosti do_Uložit nastavení vstupních zařízení při skončení_Uložit klávesové zkratky při ukončeníUkládat polohy oken při _skončení_Škála_Velikost obrázku...Změnit _velikost vrstvy..._Změnit měřítko importovaných cest, aby se vešly do obrázku_Vybrat_Výběr_Editor výběruNástroje pro _výběr_Tvar_ZaostřitZobrazovat _výběr obrázku_Zobrazovat mezi nástroji_Sinusoidní_Malé_ŠmouhaVzdálenost _přichytávání:_Vykreslit výběr_Vykreslit výběr..._Ubrat z výběruStyl _odrážky_Šablona:_Šablony_Text_Práh..._Drobné_Tip dne_Nástroj_Nástroje_Přenést alfa kanál vrstvy_TransformovatNástroje _transformaceVr_átit_Zpět %s_Svisle:_Zobrazení_Viditelné_WWWPoužívaný _WWW prohlížeč:_Bílá (úplné krytí)_Vyvážení bílé_Šířka:Pokračovat od _druhého konceRozlišení _X:_X:_Rozš._YRozlišení _Y:_Y:_Zvětšení_Zvětšení (%s)barevkopiedpiočekávána hodnota 'yes' nebo 'no' pro prvek typu boolean %s, obdržena hodnota '%s'fatální chyba zpracováníodstíny šediodstíny šedi - prázdnýpalecpalcůindexovanýindexovaný - prázdnýneplatný řetězec v kódování UTF-8neplatná hodnota '%ld' pro typ ikonyneplatná hodnota '%ld' pro prvek %sneplatná hodnota '%s' pro typ ikonyneplatná hodnota '%s' pro prvek %smilimetrmilimetrůminutun/aprocentpikapikpixelpixelůpixelů/%apixelů/%sbodbodůsekundutips-locale:csStanislav Brabec +Bude nahrazena barevnou mapou s odstíny šedi.YŽlutáŽlutá:Pokoušíte se vytvořit obrázek o velikosti %s.Sem můžete upustit ukotvitelné dialogy.Kopii GNU General Public License byste měli získat s tímto programem; pokud tomu tak není, napište Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Aby se následující změny projevily, musíte restartovat GIMP:Vaše instalace GIMPu není úplná:Vaše nastavení vstupních zařízení vráceno na implicitní hodnoty, až příště spustíte GIMP.Vaše klávesové zkratky budou vráceny na implicitní hodnoty, až příště spustíte GIMP.Vaše nastavení oken bude vráceno na implicitní hodnoty, až příště spustíte GIMP.Chování přibližování a změny velikostiPřiblížit 1:1Zvětšit všePřiblížitOddálitPřiblíženíPřiblížení:Zvětšit _vše_PřiblížitOd_dálitZvětšit všePoměr přiblížení: %d:1Změnit přiblížení obrázku při změně velikosti oknaPřiblížitPřiblížení nebo oddáleníOddálitPřiblížení:[ Základní obrázek ]O _aplikaciZísk_at_Přidat barvu z pozadí_Přidat barvu z popředí_Přidat odrážku_Přidat do výběru_Pokročilé možnosti_Rozprašovač_Vše_Ukotvit vrstvu_Vyhlazování_Libovolná rotace..._Umění_Poměr stran_Automaticky_BBarvy po_zadíBarva po_zadí:_Černá (úplná průhlednost)Způsob _mísení v segmentuZpůsob _mísení ve výběru_Rozostření_Jas:_Stopa_Stopy_Stopy, vzorky a přechody_Plechovka_BufferPodle _barvy_Podle barvy výběru_CStyl za_končení:_Kanály_Vymazat chybyVy_mazat historii vracení_Klonovat_Zavřít_Zavřít odrážku_MrakyNástroje _barev_Barvy_Nastavit barvu a krytí..._Kontext_Kontextová nápověda_KopírovatKo_pírovat pojmenované..._Vytvořit obrázek ze šablony..._Ořezání a rozměry_Ořezat obrázek_Zakřivená_Křivky...Barva _tmavé šachovnice_Implicitní Barvy_Odstranit stopu_Odstranit buffer_Odstranit kanál_Odstranit barvu_Odstranit přechod..._Odstranit obrázek_Odstranit vrstvu_Odstranit paletu_Odstranit cestu_Odstranit vzorek..._Odstranit uložené možnosti_Odstranit segment_Odstranit výběr_Odstranit šablonu_Odbarvit_Odpojit odrážku_Stav zařízení_DialogyZa_hodit změnyZahodit informace o _textu_Zkreslení_Bod na bod_Duplikovat_Upravit_Upravit stopu..._Upravit atributy kanálu..._Upravit barvu..._Upravit přechod..._Upravit atributy vrstvy..._Upravit paletu..._Upravit atributy cesty..._Upravit vzorek..._Upravit šablonu...Výběr _elipsy_Povolit náhledy vrstev a kanálů_Enormní_Ekvalizovat_GumaBarvy po_předí_Soubor_Vyplnit s_Přizpůsobit obrázek oknuZ_ploštit obrázekPře_klopení_Překlopit segment_Překlopit výběr_Plovoucí_Písmo_PísmaBarva po_předí:_Volný výběr_G_Obecné_Gigantické_Přechod_Přechody_Odstíny šediKopie vrstvy v _odstínech šediZ_většit..._Vodítka_Tvrdost_Nápověda_Vodorovně:_Odstín:_Obrovské_Ikona_Ikona:_Obrázek_Obrázky_Importovat_Importovat paletu..._Indexovaná..._Informační okno_Průnik s výběrem_Invertovat_Styl spojení:_Velké_Vrstva_Vrstvy_Vrstvy, kanály a cesty_Levého koncového boduPravého koncového bodu _levého souseda_Úrovně...Barva _světlé šachovniceEfekty se _světlemSvět_lost:_Styl čáry_Lineární_Spojené_Načíst levou barvu zKanál _nížVrstvu _nížCestu _níž_M_Ručně_Mapa_MaskaMaska do _výběruMa_ximální počet barev:_Měřidlo_Střední_Sloučit palety..._Sloučit importované cesty_Převést uživatelská nastavení z GIMP 2.0_RůznéLimit _ostrosti:_RežimSprávce _modulů_Přesun_Jméno:_Příroda_Nová stopa_Nový kanál_Nový kanál..._Nová položka..._Nový přechod_Nová vrstva_Nová vrstva..._Nová paleta_Nová cesta_Nová cesta..._Nový vzorek_Nová šablona..._Nový pohled_Nový..._Následující tip_Šum_Nic_Posun..._Krytí_Otevřít obrázek_Otevřít..._Barva doplnění_Kreslicí nástroj:_Štětec_PaletaV_ložit_Vložit bufferVlo_žit pojmenované..._Cesty_Vzorek_Perspektiva_Posterizovat..._Předvolby_NáhledVelikost _náhledu_Předchozí tip_Velikost tisku..._Vlastnosti_Rychlá maska aktivníU_končit_R_RGB_PrůměrKanál _výšVrstvu _výšCestu _výšPohledy _výšZ_výšit nebo otevřít obrázek_Změnit přiřazení zkratkyVýběr _obdélníkuZn_ovuZn_ovu %s_Aktualizovat stopy_Obnovit přechody_Aktualizovat palety_Aktualizovat vzorky_Odstranit z konečné palety nepoužité barvy_Vykreslení_Nahradit_Replikovat segment..._Replikovat výběr..._Znovu načíst seznam písem_Přenastavit pořadí a viditelnost_Obnovit uložené nastavení vstupních zařízení na implicitní hodnotyObnovit uložené klávesové zkratky na _implicitní hodnoty_Obnovit uložené polohy oken na implicitní hodnoty_Obnovit možnosti z_Pravého koncového boduLevého koncového bodu _pravého souseda_Rotovat_Sytost:_Uložit_Uložit levou barvu do_Uložit možnosti do_Uložit nastavení vstupních zařízení při skončení_Uložit klávesové zkratky při ukončeníUkládat polohy oken při _skončení_Škála_Velikost obrázku...Změnit _velikost vrstvy..._Změnit měřítko importovaných cest, aby se vešly do obrázku_Vybrat_Výběr_Editor výběruNástroje pro _výběr_Tvar_ZaostřitZobrazovat _výběr obrázku_Zobrazovat mezi nástroji_Sinusoidní_Malé_ŠmouhaVzdálenost _přichytávání:_Vykreslit výběr_Vykreslit výběr..._Ubrat z výběruStyl _odrážky_Šablona:_Šablony_Text_Práh..._Drobné_Tip dne_Nástroj_Nástroje_Přenést alfa kanál vrstvy_TransformovatNástroje _transformaceVr_átit_Zpět %s_Svisle:_Zobrazení_Viditelné_WWWPoužívaný _WWW prohlížeč:_Bílá (úplné krytí)_Vyvážení bílé_Šířka:Pokračovat od _druhého konceRozlišení _X:_X:_Rozš._YRozlišení _Y:_Y:_Přiblížení_Přiblížení (%s)barevkopiedpiočekávána hodnota 'yes' nebo 'no' pro prvek typu boolean %s, obdržena hodnota '%s'fatální chyba zpracováníodstíny šediodstíny šedi - prázdnýpalecpalcůindexovanýindexovaný - prázdnýneplatný řetězec v kódování UTF-8neplatná hodnota '%ld' pro typ ikonyneplatná hodnota '%ld' pro prvek %sneplatná hodnota '%s' pro typ ikonyneplatná hodnota '%s' pro prvek %smilimetrmilimetrůminutun/aprocentpikapikpixelpixelůpixelů/%apixelů/%sbodbodůsekundutips-locale:csStanislav Brabec Michal Bukovjan Miloslav Trmačhodnota pro prvek %s není platný řetězec v kódování UTF-8při zpracování prvku '%s': %s \ No newline at end of file diff -uraN gimp-2.2.6/po/cs.po gimp-2.2.7/po/cs.po --- gimp-2.2.6/po/cs.po 2005-01-22 17:32:57.000000000 +0100 +++ gimp-2.2.7/po/cs.po 2005-05-08 12:01:58.000000000 +0200 @@ -1,18 +1,18 @@ -# Czech translation of GIMP. -# Copyright (C) 2001,2003 Free Software Foundation, Inc. +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # Copyright (C) 2003, 2004 Miloslav Trmac # Stanislav Brabec , 1998-2001. -# Michal Bukovjan , 2002,2003. +# Michal Bukovjan , 2002, 2003. # Miloslav Trmac , 2003, 2004. +# Jakub Friedl , 2005. # msgid "" msgstr "" -"Project-Id-Version: gimp VERSION\n" +"Project-Id-Version: cs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-01-22 17:32+0100\n" -"PO-Revision-Date: 2005-01-14 17:52+0100\n" -"Last-Translator: Miloslav Trmac \n" -"Language-Team: Czech \n" +"POT-Creation-Date: 2005-05-06 21:33+0200\n" +"PO-Revision-Date: 2005-05-05 16:54+0200\n" +"Last-Translator: Jakub Friedl \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -21,18 +21,18 @@ msgid "(This console window will close in ten seconds)\n" msgstr "(Toto okno konzoly se zavře během deseti sekund)\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 není správně nainstalován pro aktuálního uživatele. Uživatelská\n" +"GIMP není pro aktuálního uživatele správně nainstalován. Uživatelská\n" "instalace byla přeskočena, protože byl použit přepínač '--no-interface'.\n" -"Uživatelskou instalaci provedete spuštěním GIMP bez přepínače '--no-" +"Uživatelskou instalaci provedete spuštěním GIMPu bez přepínače '--no-" "interface'." -#: 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 " @@ -43,7 +43,7 @@ "zkontrolujte prosím umístění a oprávnění odkládacího adresáře definovaného " "ve vašich Předvolbách (momentálně \"%s\")." -#: 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 "Otevírání '%s' selhalo: %s" @@ -232,147 +232,147 @@ "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/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 "Stopy" -#: app/actions/actions.c:96 app/dialogs/dialogs.c:150 +#: app/actions/actions.c:97 app/dialogs/dialogs.c:150 msgid "Buffers" msgstr "Buffery" -#: app/actions/actions.c:99 app/dialogs/dialogs.c:163 +#: app/actions/actions.c:100 app/dialogs/dialogs.c:163 msgid "Channels" msgstr "Kanály" -#: app/actions/actions.c:102 +#: app/actions/actions.c:103 msgid "Colormap Editor" msgstr "Editor barevné mapy" -#: 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 "Ladění" -#: app/actions/actions.c:111 +#: app/actions/actions.c:112 msgid "Dialogs" msgstr "Dialogy" -#: app/actions/actions.c:114 +#: app/actions/actions.c:115 msgid "Dockable" msgstr "Dokovatelné" -#: app/actions/actions.c:117 app/dialogs/dialogs.c:152 +#: app/actions/actions.c:118 app/dialogs/dialogs.c:152 msgid "Document History" msgstr "Historie dokumentů" -#: 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 "Obrazovka" -#: 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 "Úpravy" -#: app/actions/actions.c:126 app/dialogs/dialogs.c:131 +#: app/actions/actions.c:127 app/dialogs/dialogs.c:131 msgid "Error Console" msgstr "Chybová konzola" -#: app/actions/actions.c:129 +#: app/actions/actions.c:130 msgid "File" msgstr "Soubor" #. initialize the list of gimp fonts -#: app/actions/actions.c:132 app/core/gimp.c:872 app/dialogs/dialogs.c:146 +#: 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 "Písma" -#: app/actions/actions.c:135 app/dialogs/dialogs.c:205 +#: app/actions/actions.c:136 app/dialogs/dialogs.c:205 msgid "Gradient Editor" msgstr "Editor přechodů" #. initialize the list of gimp gradients -#: app/actions/actions.c:138 app/core/gimp.c:868 app/dialogs/dialogs.c:142 +#: 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 "Přechody" -#: app/actions/actions.c:141 +#: app/actions/actions.c:142 msgid "Help" msgstr "Nápověda" -#: 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 "Obrázek" #. 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 "Obrázky" -#: app/actions/actions.c:150 app/dialogs/dialogs.c:159 +#: app/actions/actions.c:151 app/dialogs/dialogs.c:159 msgid "Layers" msgstr "Vrstvy" -#: app/actions/actions.c:153 app/dialogs/dialogs.c:209 +#: app/actions/actions.c:154 app/dialogs/dialogs.c:209 msgid "Palette Editor" msgstr "Editor palety" #. initialize the list of gimp palettes -#: app/actions/actions.c:156 app/core/gimp.c:864 app/dialogs/dialogs.c:144 +#: 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 "Palety" #. initialize the list of gimp patterns -#: app/actions/actions.c:159 app/core/gimp.c:860 app/dialogs/dialogs.c:140 +#: 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 "Vzorky" -#: 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 "Zásuvné moduly" -#: app/actions/actions.c:165 +#: app/actions/actions.c:166 msgid "QuickMask" msgstr "Rychlá maska" -#: app/actions/actions.c:168 +#: app/actions/actions.c:169 msgid "Select" msgstr "Vybrat" #. 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 "Šablony" -#: app/actions/actions.c:174 +#: app/actions/actions.c:175 msgid "Text Editor" msgstr "Textový editor" -#: 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 "Volby nástrojů" -#: app/actions/actions.c:180 app/dialogs/dialogs.c:148 +#: app/actions/actions.c:181 app/dialogs/dialogs.c:148 msgid "Tools" msgstr "Nástroje" -#: 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 "Cesty" -#: app/actions/actions.c:186 +#: app/actions/actions.c:187 msgid "View" msgstr "Zobrazit" @@ -496,7 +496,7 @@ msgid "_Delete Channel" msgstr "_Odstranit kanál" -#: 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 "Odstranit kanál" @@ -700,9 +700,8 @@ msgstr "_Průměr" #: app/actions/context-actions.c:59 -#, fuzzy msgid "S_pikes" -msgstr "pixelů" +msgstr "_Hroty" #: app/actions/context-actions.c:60 msgid "_Hardness" @@ -724,10 +723,10 @@ msgid "S_wap Colors" msgstr "P_rohodit Barvy" -#: 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 "Bez názvu" @@ -762,7 +761,7 @@ #: app/actions/dialogs-actions.c:57 msgid "Tool_box" -msgstr "_Nástroje" +msgstr "_Panel nástrojů" #: app/actions/dialogs-actions.c:65 msgid "Tool _Options" @@ -1030,7 +1029,7 @@ #: app/actions/documents-commands.c:251 app/actions/file-commands.c:170 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 -#: app/dialogs/file-open-location-dialog.c:193 +#: app/dialogs/file-open-location-dialog.c:195 #: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 #: app/widgets/gimptoolbox-dnd.c:125 #, c-format @@ -1329,7 +1328,7 @@ msgid "_Quit" msgstr "U_končit" -#: 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" @@ -1438,7 +1437,7 @@ #: app/actions/gradient-editor-actions.c:68 msgid "R_ight Endpoint's Color..." -msgstr "Barvy _pravého koncového bodu..." +msgstr "Barva _pravého koncového bodu..." #: app/actions/gradient-editor-actions.c:108 msgid "Ble_nd Endpoints' Colors" @@ -1454,17 +1453,17 @@ #: app/actions/gradient-editor-actions.c:148 msgid "_Right Endpoint" -msgstr "_Pravý koncový bod" +msgstr "_Pravého koncového bodu" #: app/actions/gradient-editor-actions.c:153 #: app/actions/gradient-editor-actions.c:201 msgid "_FG Color" -msgstr "Barva po_předí" +msgstr "Barvy po_předí" #: app/actions/gradient-editor-actions.c:158 #: app/actions/gradient-editor-actions.c:206 msgid "_BG Color" -msgstr "Barva po_zadí" +msgstr "Barvy po_zadí" #: app/actions/gradient-editor-actions.c:191 msgid "_Right Neighbor's Left Endpoint" @@ -1472,7 +1471,7 @@ #: app/actions/gradient-editor-actions.c:196 msgid "_Left Endpoint" -msgstr "_Levý koncový bod" +msgstr "_Levého koncového bodu" #: app/actions/gradient-editor-actions.c:245 msgid "_Linear" @@ -1523,13 +1522,13 @@ #: app/actions/gradient-editor-actions.c:307 msgid "Zoom Out" -msgstr "Vzdálit" +msgstr "Oddálit" #: 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 "Vzdálit" +msgstr "Oddálit" #: app/actions/gradient-editor-actions.c:313 msgid "Zoom All" @@ -1542,11 +1541,11 @@ #: app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" -msgstr "Funkce _mísení pro segment" +msgstr "Způsob _mísení v segmentu" #: app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" -msgstr "_Typ vybarvení pro segment" +msgstr "_Způsob vybarvení segmentu" #: app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" @@ -1570,7 +1569,7 @@ #: app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" -msgstr "Pře_centrovat středový bod segmentu" +msgstr "Vy_centrovat středový bod segmentu" #: app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" @@ -1578,11 +1577,11 @@ #: app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" -msgstr "Funkce _mísení pro výběr" +msgstr "Způsob _mísení ve výběru" #: app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" -msgstr "_Typ vybarvení pro výběr" +msgstr "_Způsob vybarvení výběru" #: app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" @@ -1606,7 +1605,7 @@ #: app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" -msgstr "Pře_centrovat středové body ve výběru" +msgstr "Vy_centrovat středové body ve výběru" #: app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" @@ -1795,7 +1794,7 @@ #: app/actions/image-actions.c:65 app/actions/image-actions.c:70 msgid "_New..." -msgstr "_Nové..." +msgstr "_Nový..." #: app/actions/image-actions.c:75 msgid "Can_vas Size..." @@ -1983,7 +1982,7 @@ msgid "_Delete Layer" msgstr "_Odstranit vrstvu" -#: 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 "Odstranit vrstvu" @@ -2196,7 +2195,7 @@ #: app/actions/palette-editor-actions.c:83 app/actions/view-actions.c:209 msgid "Zoom _Out" -msgstr "Vz_dálit" +msgstr "Od_dálit" #: app/actions/palette-editor-actions.c:89 msgid "Zoom _All" @@ -2506,7 +2505,7 @@ #: app/actions/select-actions.c:73 msgid "Fea_ther..." -msgstr "Zao_blení..." +msgstr "Pr_olnout..." #: app/actions/select-actions.c:78 msgid "_Sharpen" @@ -2550,11 +2549,11 @@ #: app/actions/select-commands.c:136 app/core/gimpselection.c:201 msgid "Feather Selection" -msgstr "Zaoblit výběr" +msgstr "Prolnout výběr" #: app/actions/select-commands.c:140 msgid "Feather selection by" -msgstr "Zaoblit výběr o" +msgstr "Prolnout výběr o" #: app/actions/select-commands.c:171 app/core/gimpselection.c:208 msgid "Shrink Selection" @@ -2875,35 +2874,35 @@ #: app/actions/vectors-actions.c:88 msgid "_Raise Path" -msgstr "_Zvýšit cestu" +msgstr "Cestu _výš" #: app/actions/vectors-actions.c:89 msgid "Raise path" -msgstr "Zvýšit cestu" +msgstr "Cestu výš" #: app/actions/vectors-actions.c:94 msgid "Raise Path to _Top" -msgstr "Zvýšit cestu na_horu" +msgstr "Cestu na_horu" #: app/actions/vectors-actions.c:95 msgid "Raise path to top" -msgstr "Zvýšit cestu nahoru" +msgstr "Cestu nahoru" #: app/actions/vectors-actions.c:100 msgid "_Lower Path" -msgstr "_Snížit cestu" +msgstr "Cestu _níž" #: app/actions/vectors-actions.c:101 msgid "Lower path" -msgstr "Snížit cestu" +msgstr "Cestu níž" #: app/actions/vectors-actions.c:106 msgid "Lower Path to _Bottom" -msgstr "Snížit cestu _dolů" +msgstr "Cestu do_spod" #: app/actions/vectors-actions.c:107 msgid "Lower path to bottom" -msgstr "Snížit cestu dolů" +msgstr "Cestu dospod" #: app/actions/vectors-actions.c:112 msgid "Stro_ke Path..." @@ -2941,7 +2940,7 @@ msgid "Path to Sele_ction" msgstr "Cesta do _výběru" -#: 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 "Cesta do výběru" @@ -2990,7 +2989,7 @@ msgid "Path to Selection" msgstr "Cesta do výběru" -#: 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 "Vykreslit cestu" @@ -3001,7 +3000,7 @@ #: app/actions/view-actions.c:64 msgid "_Zoom" -msgstr "_Zvětšení" +msgstr "_Přiblížení" #: app/actions/view-actions.c:65 msgid "_Padding Color" @@ -3171,7 +3170,7 @@ #: app/actions/view-actions.c:601 #, c-format msgid "_Zoom (%s)" -msgstr "_Zvětšení (%s)" +msgstr "_Přiblížení (%s)" #: app/actions/view-commands.c:572 msgid "Set Canvas Padding Color" @@ -3620,7 +3619,7 @@ "zooming into and out of images." msgstr "" "Je-li povoleno, bude okno obrázku automaticky měnit svou velikost při " -"zvětšování a zmenšování obrázků." +"přibližování a oddalování obrázků." #: app/config/gimprc-blurbs.h:262 msgid "Let GIMP try to restore your last saved session on each startup." @@ -4086,7 +4085,7 @@ #: app/core/core-enums.c:414 app/core/core-enums.c:469 msgid "Solid" -msgstr "Pevná" +msgstr "Plná" #: app/core/core-enums.c:441 msgid "Stroke line" @@ -4252,252 +4251,253 @@ msgid "Backward (corrective)" msgstr "Zpět (Korektivní)" -#: 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 "Velikost obrázku" -#: app/core/core-enums.c:1031 +#: app/core/core-enums.c:1032 msgid "Resize image" msgstr "Změnit velikost obrázku" -#: app/core/core-enums.c:1032 +#: app/core/core-enums.c:1033 msgid "Flip image" msgstr "Překlopit obrázek" -#: app/core/core-enums.c:1033 +#: app/core/core-enums.c:1034 msgid "Rotate image" msgstr "Rotovat obrázek" -#: app/core/core-enums.c:1034 +#: app/core/core-enums.c:1035 msgid "Crop image" msgstr "Ořezat obrázek" -#: app/core/core-enums.c:1035 +#: app/core/core-enums.c:1036 msgid "Convert image" msgstr "Převést obrázek" -#: app/core/core-enums.c:1036 +#: app/core/core-enums.c:1037 +msgid "Remove item" +msgstr "Odstranit položku" + +#: app/core/core-enums.c:1038 msgid "Merge layers" msgstr "Sloučit vrstvy" -#: app/core/core-enums.c:1037 +#: app/core/core-enums.c:1039 msgid "Merge vectors" msgstr "Sloučit vektory" -#: 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 "Rychlá maska" -#: 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 "Mřížka" -#: 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 "Vodítko" -#: 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 "Změna obrazovky" -#: 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 "Maska výběru" -#: 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 "Viditelnost položky" -#: app/core/core-enums.c:1045 +#: app/core/core-enums.c:1047 msgid "Linked item" msgstr "Svázaná položka" -#: app/core/core-enums.c:1046 +#: app/core/core-enums.c:1048 msgid "Item properties" msgstr "Vlastnosti položky" -#: 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 "Přesunout položku" -#: app/core/core-enums.c:1048 +#: app/core/core-enums.c:1050 msgid "Scale item" msgstr "Velikost položky" -#: app/core/core-enums.c:1049 +#: app/core/core-enums.c:1051 msgid "Resize item" msgstr "Změnit velikost položky" -#: 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 "Přidat masku vrstvy" -#: app/core/core-enums.c:1051 +#: app/core/core-enums.c:1053 msgid "Apply layer mask" msgstr "Použít masku vrstvy" -#: app/core/core-enums.c:1052 +#: app/core/core-enums.c:1054 msgid "Floating selection to layer" msgstr "Plovoucí výběr do vrstvy" -#: app/core/core-enums.c:1053 +#: app/core/core-enums.c:1055 msgid "Float selection" msgstr "Plovoucí výběr" -#: app/core/core-enums.c:1054 +#: app/core/core-enums.c:1056 msgid "Anchor floating selection" msgstr "Ukotvit plovoucí výběr" -#: app/core/core-enums.c:1055 +#: app/core/core-enums.c:1057 msgid "Remove floating selection" msgstr "Odstranit plovoucí výběr" -#: 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 "Vložit" -#: 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 "Vyjmout" -#: 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/core-enums.c:1061 app/core/core-enums.c:1101 #: app/core/gimpdrawable-transform.c:867 msgid "Transform" msgstr "Transformace" -#: 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 "Kreslení" -#: 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 "Připojit parazita" -#: 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 "Odstranit parazita" -#: app/core/core-enums.c:1063 +#: app/core/core-enums.c:1065 msgid "Import paths" msgstr "Importovat cesty" -#: 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 "Zásuvný modul" -#: app/core/core-enums.c:1065 +#: app/core/core-enums.c:1067 msgid "Image type" msgstr "Typ obrázku" -#: app/core/core-enums.c:1066 +#: app/core/core-enums.c:1068 msgid "Image size" msgstr "Velikost obrázku" -#: app/core/core-enums.c:1067 +#: app/core/core-enums.c:1069 msgid "Resolution change" msgstr "Změna rozlišení" -#: app/core/core-enums.c:1070 +#: app/core/core-enums.c:1072 msgid "Change indexed palette" msgstr "Změnit indexovanou paletu" -#: app/core/core-enums.c:1074 +#: app/core/core-enums.c:1076 msgid "Rename item" msgstr "Přejmenovat položku" -#: app/core/core-enums.c:1077 +#: app/core/core-enums.c:1079 msgid "Set item linked" msgstr "Nastavit spojení položky" -#: app/core/core-enums.c:1078 +#: app/core/core-enums.c:1080 msgid "New layer" msgstr "Nová vrstva" -#: app/core/core-enums.c:1081 +#: app/core/core-enums.c:1083 msgid "Delete layer mask" msgstr "Odstranit masku vrstvy" -#: app/core/core-enums.c:1082 +#: app/core/core-enums.c:1084 msgid "Reposition layer" msgstr "Změnit umístění vrstvy" -#: app/core/core-enums.c:1083 +#: app/core/core-enums.c:1085 msgid "Set layer mode" msgstr "Nastavit režim vrstvy" -#: app/core/core-enums.c:1084 +#: app/core/core-enums.c:1086 msgid "Set layer opacity" msgstr "Nastavit krytí vrstvy" -#: app/core/core-enums.c:1085 +#: app/core/core-enums.c:1087 msgid "Set preserve trans" msgstr "Nastavit Zachovat změny" -#: app/core/core-enums.c:1087 +#: app/core/core-enums.c:1089 msgid "Text modified" msgstr "Text změněn" -#: app/core/core-enums.c:1088 +#: app/core/core-enums.c:1090 msgid "New channel" msgstr "Nový kanál" -#: app/core/core-enums.c:1090 +#: app/core/core-enums.c:1092 msgid "Reposition channel" msgstr "Změnit umístění kanálu" -#: app/core/core-enums.c:1091 +#: app/core/core-enums.c:1093 msgid "Channel color" msgstr "Barva kanálu" -#: app/core/core-enums.c:1092 +#: app/core/core-enums.c:1094 msgid "New vectors" msgstr "Nové vektory" -#: app/core/core-enums.c:1093 +#: app/core/core-enums.c:1095 msgid "Delete vectors" msgstr "Odstranit vektory" -#: app/core/core-enums.c:1094 +#: app/core/core-enums.c:1096 msgid "Vectors mod" msgstr "Změna vektorů" -#: app/core/core-enums.c:1095 +#: app/core/core-enums.c:1097 msgid "Reposition vectors" msgstr "Změnit umístění vektorů" -#: app/core/core-enums.c:1096 -#, fuzzy +#: app/core/core-enums.c:1098 msgid "FS to layer" -msgstr "výběr do vrstvy" +msgstr "Plovoucí výběr do vrstvy" -#: app/core/core-enums.c:1097 -#, fuzzy +#: app/core/core-enums.c:1099 msgid "FS rigor" -msgstr "upevnění výběru" +msgstr "Upevnění plovoucího výběru" -#: app/core/core-enums.c:1098 -#, fuzzy +#: app/core/core-enums.c:1100 msgid "FS relax" -msgstr "uvolnění výběru" +msgstr "Uvolnění plovoucího výběru" -#: 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 "Inkoust" -#: app/core/core-enums.c:1104 +#: app/core/core-enums.c:1106 msgid "EEK: can't undo" msgstr "EEK: nemohu vrátit zpět" @@ -4699,7 +4699,7 @@ #: app/core/gimpchannel.c:310 msgid "Feather Channel" -msgstr "Zaoblit kanál" +msgstr "Prolnout kanál" #: app/core/gimpchannel.c:311 msgid "Sharpen Channel" @@ -4951,23 +4951,23 @@ msgid "Add Color to Colormap" msgstr "Přidat barvu do mapy barev" -#: app/core/gimpimage-convert.c:788 +#: app/core/gimpimage-convert.c:789 msgid "Convert Image to RGB" msgstr "Převést obrázek na RGB" -#: app/core/gimpimage-convert.c:792 +#: app/core/gimpimage-convert.c:793 msgid "Convert Image to Grayscale" msgstr "Převést obrázek na odstíny šedi" -#: app/core/gimpimage-convert.c:796 +#: app/core/gimpimage-convert.c:797 msgid "Convert Image to Indexed" msgstr "Převést obrázek na indexovaný" -#: app/core/gimpimage-convert.c:875 +#: app/core/gimpimage-convert.c:879 msgid "Converting to indexed (stage 2)..." msgstr "Převádím na indexovaný (krok 2)..." -#: app/core/gimpimage-convert.c:919 +#: app/core/gimpimage-convert.c:923 msgid "Converting to indexed (stage 3)..." msgstr "Převádím na indexovaný (krok 3)..." @@ -5036,150 +5036,150 @@ msgid "Can't undo %s" msgstr "Nelze vrátit %s" -#: app/core/gimpimage.c:1357 +#: app/core/gimpimage.c:1359 msgid "Change Image Resolution" msgstr "Změna rozlišení obrázku" -#: app/core/gimpimage.c:1397 +#: app/core/gimpimage.c:1399 msgid "Change Image Unit" msgstr "Změna jednotky obrázku" -#: app/core/gimpimage.c:2177 +#: app/core/gimpimage.c:2179 msgid "Attach Parasite to Image" msgstr "Připojit parazita k obrázku" -#: app/core/gimpimage.c:2210 +#: app/core/gimpimage.c:2212 msgid "Remove Parasite from Image" msgstr "Odstranění parazita z obrázku" -#: app/core/gimpimage.c:2678 +#: app/core/gimpimage.c:2680 msgid "Add Layer" msgstr "Přidat vrstvu" -#: app/core/gimpimage.c:2745 +#: app/core/gimpimage.c:2744 app/core/gimpimage.c:2757 msgid "Remove Layer" msgstr "Odstranit vrstvu" -#: app/core/gimpimage.c:2816 +#: app/core/gimpimage.c:2831 msgid "Layer cannot be raised higher." msgstr "Vrstva nemůže být ještě výš." -#: 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 "Nelze posunout výš vrstvu bez alfy." -#: app/core/gimpimage.c:2827 +#: app/core/gimpimage.c:2842 msgid "Raise Layer" msgstr "Vrstvu výš" -#: app/core/gimpimage.c:2844 +#: app/core/gimpimage.c:2859 msgid "Layer cannot be lowered more." msgstr "Vrstva nemůže být ještě níž." -#: app/core/gimpimage.c:2849 +#: app/core/gimpimage.c:2864 msgid "Lower Layer" msgstr "Vrstvu níž" -#: app/core/gimpimage.c:2866 +#: app/core/gimpimage.c:2881 msgid "Layer is already on top." msgstr "Vrstva je již nahoře." -#: app/core/gimpimage.c:2877 +#: app/core/gimpimage.c:2892 msgid "Raise Layer to Top" msgstr "Vrstvu nahoru" -#: app/core/gimpimage.c:2897 +#: app/core/gimpimage.c:2912 msgid "Layer is already on the bottom." msgstr "Vrstva je již vespod." -#: app/core/gimpimage.c:2902 +#: app/core/gimpimage.c:2917 msgid "Lower Layer to Bottom" msgstr "Vrstvu dospod" -#: app/core/gimpimage.c:2941 +#: app/core/gimpimage.c:2956 #, c-format msgid "Layer '%s' has no alpha. Layer was placed above it." msgstr "Vrstva '%s' nemá alfu. Vrstva byla umístěna nad ni." -#: app/core/gimpimage.c:2993 +#: app/core/gimpimage.c:3008 msgid "Add Channel" msgstr "Přidat kanál" -#: app/core/gimpimage.c:3038 +#: app/core/gimpimage.c:3052 app/core/gimpimage.c:3063 msgid "Remove Channel" msgstr "Odstranit kanál" -#: app/core/gimpimage.c:3082 +#: app/core/gimpimage.c:3110 msgid "Channel cannot be raised higher." msgstr "Kanál nemůže být ještě výš." -#: app/core/gimpimage.c:3087 +#: app/core/gimpimage.c:3115 msgid "Raise Channel" msgstr "Kanál výš" -#: app/core/gimpimage.c:3104 +#: app/core/gimpimage.c:3132 msgid "Channel is already on top." msgstr "Kanál je již nahoře." -#: app/core/gimpimage.c:3109 +#: app/core/gimpimage.c:3137 msgid "Raise Channel to Top" msgstr "Kanál nahoru" -#: app/core/gimpimage.c:3126 +#: app/core/gimpimage.c:3154 msgid "Channel cannot be lowered more." msgstr "Kanál nemůže být ještě níž." -#: app/core/gimpimage.c:3131 +#: app/core/gimpimage.c:3159 msgid "Lower Channel" msgstr "Kanál níž" -#: app/core/gimpimage.c:3151 +#: app/core/gimpimage.c:3179 msgid "Channel is already on the bottom." msgstr "Kanál je již vespod." -#: app/core/gimpimage.c:3156 +#: app/core/gimpimage.c:3184 msgid "Lower Channel to Bottom" msgstr "Kanál dospod" -#: app/core/gimpimage.c:3231 +#: app/core/gimpimage.c:3259 msgid "Add Path" msgstr "Přidat cestu" -#: app/core/gimpimage.c:3276 +#: app/core/gimpimage.c:3304 msgid "Remove Path" msgstr "Odstranit cestu" -#: app/core/gimpimage.c:3320 +#: app/core/gimpimage.c:3348 msgid "Path cannot be raised higher." msgstr "Cesta nemůže být ještě výš." -#: app/core/gimpimage.c:3325 +#: app/core/gimpimage.c:3353 msgid "Raise Path" -msgstr "Zvýšit cestu" +msgstr "Cestu výš" -#: app/core/gimpimage.c:3342 +#: app/core/gimpimage.c:3370 msgid "Path is already on top." msgstr "Cesta je již nahoře." -#: app/core/gimpimage.c:3347 +#: app/core/gimpimage.c:3375 msgid "Raise Path to Top" -msgstr "Zvýšit cestu nahoru" +msgstr "Cestu nahoru" -#: app/core/gimpimage.c:3364 +#: app/core/gimpimage.c:3392 msgid "Path cannot be lowered more." msgstr "Cesta nemůže být ještě níž." -#: app/core/gimpimage.c:3369 +#: app/core/gimpimage.c:3397 msgid "Lower Path" -msgstr "Snížit cestu" +msgstr "Cestu níž" -#: app/core/gimpimage.c:3389 +#: app/core/gimpimage.c:3417 msgid "Path is already on the bottom." msgstr "Cesta je již vespod." -#: app/core/gimpimage.c:3394 +#: app/core/gimpimage.c:3422 msgid "Lower Path to Bottom" -msgstr "Snížit cestu dolů" +msgstr "Cestu dospod" #: app/core/gimpimagefile.c:568 msgid "Remote image" @@ -5618,7 +5618,7 @@ msgid "Converting to indexed..." msgstr "Převádím na indexovaný..." -#: app/dialogs/convert-dialog.c:382 +#: app/dialogs/convert-dialog.c:384 msgid "Cannot convert to a palette with more than 256 colors." msgstr "Nemohu převést do palety s více než 256 barvami." @@ -5690,20 +5690,20 @@ msgid "Enter location (URI):" msgstr "Zadejte umístění (URI):" -#: app/dialogs/file-save-dialog.c:184 +#: app/dialogs/file-save-dialog.c:185 msgid "File exists" msgstr "Soubor existuje" -#: app/dialogs/file-save-dialog.c:189 +#: app/dialogs/file-save-dialog.c:190 msgid "_Replace" msgstr "_Nahradit" -#: app/dialogs/file-save-dialog.c:199 +#: app/dialogs/file-save-dialog.c:200 #, c-format msgid "A file named '%s' already exists." msgstr "Soubor nazvaný '%s' již existuje." -#: app/dialogs/file-save-dialog.c:204 +#: app/dialogs/file-save-dialog.c:205 msgid "Do you want to replace it with the image you are saving?" msgstr "Chcete jej nahradit obrázkem, který ukládáte?" @@ -5713,7 +5713,7 @@ #: app/dialogs/grid-dialog.c:82 msgid "Configure Image Grid" -msgstr "Nastavit mřížku obrázků" +msgstr "Nastavit mřížku obrázku" #: app/dialogs/image-merge-layers-dialog.c:60 msgid "Merge Layers" @@ -6398,13 +6398,13 @@ #: app/dialogs/preferences-dialog.c:1653 app/dialogs/preferences-dialog.c:1656 msgid "Toolbox" -msgstr "Nástroje" +msgstr "Panel nástrojů" #. Appearance #: app/dialogs/preferences-dialog.c:1663 app/dialogs/preferences-dialog.c:1760 #: app/widgets/gimpgrideditor.c:206 msgid "Appearance" -msgstr "Zobrazování" +msgstr "Vzhled" #: app/dialogs/preferences-dialog.c:1667 msgid "Show _foreground & background color" @@ -6433,11 +6433,11 @@ #. Zoom & Resize Behavior #: app/dialogs/preferences-dialog.c:1710 msgid "Zoom & Resize Behavior" -msgstr "Chování zvětšování a změny velikosti" +msgstr "Chování přibližování a změny velikosti" #: app/dialogs/preferences-dialog.c:1714 msgid "Resize window on _zoom" -msgstr "Měnit velikost okna dle _zvětšení" +msgstr "Měnit velikost okna dle _přiblížení" #: app/dialogs/preferences-dialog.c:1717 msgid "Resize window on image _size change" @@ -6449,7 +6449,7 @@ #: app/dialogs/preferences-dialog.c:1725 msgid "Initial zoom _ratio:" -msgstr "_Počáteční zvětšení:" +msgstr "_Počáteční přiblížení:" #. Mouse Cursors #: app/dialogs/preferences-dialog.c:1729 @@ -6498,11 +6498,11 @@ #: app/dialogs/preferences-dialog.c:1806 msgid "Show zoom percentage" -msgstr "Zobrazovat procento zvětšení" +msgstr "Zobrazovat procento přiblížení" #: app/dialogs/preferences-dialog.c:1807 msgid "Show zoom ratio" -msgstr "Zobrazovat poměr zvětšení" +msgstr "Zobrazovat poměr přiblížení" #: app/dialogs/preferences-dialog.c:1808 msgid "Show image size" @@ -6534,7 +6534,7 @@ #: app/dialogs/preferences-dialog.c:1928 msgid "Get Monitor Resolution" -msgstr "Rozlišení monitoru získat" +msgstr "Získat rozlišení monitoru" #: app/dialogs/preferences-dialog.c:1970 #, c-format @@ -6634,7 +6634,7 @@ #: app/dialogs/preferences-dialog.c:2199 msgid "Minimal number of _undo levels:" -msgstr "Minimální počet _úrovní zpětných úprav:" +msgstr "Minimální počet _kroků zpět:" #: app/dialogs/preferences-dialog.c:2202 msgid "Maximum undo _memory:" @@ -7221,7 +7221,7 @@ #: app/dialogs/user-install-dialog.c:851 msgid "Personal GIMP Folder" -msgstr "Osobní adresář GIMP" +msgstr "Osobní adresář pro GIMP" #: app/dialogs/user-install-dialog.c:852 msgid "Click \"Continue\" to create your personal GIMP folder." @@ -7378,7 +7378,7 @@ #: app/display/gimpdisplayshell.c:943 msgid "Zoom image when window size changes" -msgstr "Změnit měřítko obrázku při změně veliosti okna" +msgstr "Změnit přiblížení obrázku při změně velikosti okna" #: app/display/gimpdisplayshell.c:963 msgid "Toggle Quick Mask" @@ -7444,21 +7444,21 @@ msgid "Layer Select" msgstr "Vrstva výběru" -#: app/display/gimpdisplayshell-scale.c:537 +#: app/display/gimpdisplayshell-scale.c:541 msgid "Zoom Ratio" -msgstr "Zvětšení" +msgstr "Přiblížení" -#: app/display/gimpdisplayshell-scale.c:539 +#: app/display/gimpdisplayshell-scale.c:543 msgid "Select Zoom Ratio" -msgstr "Vyberte zvětšení" +msgstr "Vyberte přiblížení" -#: app/display/gimpdisplayshell-scale.c:574 +#: app/display/gimpdisplayshell-scale.c:578 msgid "Zoom Ratio:" -msgstr "Zvětšení:" +msgstr "Přiblížení:" -#: app/display/gimpdisplayshell-scale.c:601 +#: app/display/gimpdisplayshell-scale.c:605 msgid "Zoom:" -msgstr "Zvětšení:" +msgstr "Přiblížení:" #: app/display/gimpdisplayshell-title.c:234 msgid "RGB-empty" @@ -7505,7 +7505,7 @@ msgid "Style of bevel around the statusbar text" msgstr "Styl rámu okolo textu stavové lišty" -#: app/display/gimpstatusbar.c:218 +#: app/display/gimpstatusbar.c:229 msgid "Cancel" msgstr "Zrušit" @@ -7558,7 +7558,7 @@ #: app/paint/gimpairbrush.c:69 app/tools/gimpairbrushtool.c:55 msgid "Airbrush" -msgstr "Vzdušný štětec" +msgstr "Rozprašovač" #: app/paint/gimpbrushcore.c:369 msgid "No brushes available for use with this tool." @@ -7693,11 +7693,11 @@ msgid "Blending..." msgstr "Mísení..." -#: 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 "(neplatný řetězec v kódování UTF-8)" -#: 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 "" @@ -7963,7 +7963,7 @@ "Příliš žluťoučký kůň\n" "úpěl ďábelské kódy." -#: 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 "Přidat textovou vrstvu" @@ -8094,17 +8094,17 @@ msgid "Grid line spacing" msgstr "Prostor mezi řádky mřížky" -#: app/tools/gimp-tools.c:283 +#: app/tools/gimp-tools.c:284 msgid "This tool has no options." msgstr "Tento nástroj nemá volby." #: app/tools/gimpairbrushtool.c:56 msgid "Airbrush with variable pressure" -msgstr "Vzdušný štětec s různým tlakem" +msgstr "Rozprašovač s nastavitelným tlakem" #: app/tools/gimpairbrushtool.c:57 msgid "_Airbrush" -msgstr "_Vzdušný štětec" +msgstr "_Rozprašovač" #: app/tools/gimpairbrushtool.c:123 app/tools/gimpconvolvetool.c:211 #: app/tools/gimpsmudgetool.c:123 @@ -8123,7 +8123,7 @@ msgid "Shape:" msgstr "Tvar:" -#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:417 +#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:419 msgid "Repeat:" msgstr "Opakování:" @@ -8225,7 +8225,7 @@ #: app/tools/gimpcolorpickeroptions.c:179 app/tools/gimpselectionoptions.c:454 #: app/tools/gimpselectionoptions.c:502 msgid "Sample merged" -msgstr "Ukázka sloučení" +msgstr "Sloučený vzorek" #: app/tools/gimpbucketfilltool.c:92 msgid "Fill with a color or pattern" @@ -8255,11 +8255,11 @@ msgid "_Clone" msgstr "_Klonovat" -#: app/tools/gimpclonetool.c:266 +#: app/tools/gimpclonetool.c:288 msgid "Source" msgstr "Zdroj" -#: app/tools/gimpclonetool.c:275 +#: app/tools/gimpclonetool.c:297 msgid "Alignment" msgstr "Sledování" @@ -8799,7 +8799,7 @@ #: app/tools/gimpmagnifytool.c:96 msgid "Zoom in & out" -msgstr "Přiblížení nebo vzdálení" +msgstr "Přiblížení nebo oddálení" #: app/tools/gimpmagnifytool.c:97 msgid "M_agnify" @@ -8896,7 +8896,7 @@ msgid "Brush:" msgstr "Stopa:" -#: 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 "Přechod:" @@ -8928,11 +8928,11 @@ msgid "Fade out" msgstr "Doběh" -#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:403 +#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:404 msgid "Length:" msgstr "Délka:" -#: app/tools/gimppaintoptions-gui.c:367 +#: app/tools/gimppaintoptions-gui.c:368 msgid "Use color from gradient" msgstr "Použít barvu z přechodu" @@ -8992,23 +8992,23 @@ msgid "_Rect Select" msgstr "Výběr _obdélníku" -#: app/tools/gimprectselecttool.c:224 +#: app/tools/gimprectselecttool.c:226 msgid "Selection: ADD" msgstr "Výběr: PŘIDÁNÍ" -#: app/tools/gimprectselecttool.c:227 +#: app/tools/gimprectselecttool.c:229 msgid "Selection: SUBTRACT" msgstr "Výběr: ODEBRÁNÍ" -#: app/tools/gimprectselecttool.c:230 +#: app/tools/gimprectselecttool.c:232 msgid "Selection: INTERSECT" msgstr "Výběr: PRŮNIK" -#: app/tools/gimprectselecttool.c:233 +#: app/tools/gimprectselecttool.c:235 msgid "Selection: REPLACE" msgstr "Výběr: PŘEPSÁNÍ" -#: app/tools/gimprectselecttool.c:468 +#: app/tools/gimprectselecttool.c:414 msgid "Selection: " msgstr "Výběr: " @@ -9093,9 +9093,8 @@ msgstr "Vyhlazování" #: app/tools/gimpselectionoptions.c:399 -#, fuzzy msgid "Feather edges" -msgstr "Zaoblení hran" +msgstr "Prolnout okraje" #: app/tools/gimpselectionoptions.c:425 msgid "Show interactive boundary" @@ -9203,23 +9202,23 @@ msgid "Create path from text" msgstr "Vytvořit cestu z textu" -#: app/tools/gimptexttool.c:143 +#: app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "Přidání textu do obrázku" -#: 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 "Textový editor pro GIMP" -#: app/tools/gimptexttool.c:842 app/tools/gimptexttool.c:845 +#: app/tools/gimptexttool.c:854 app/tools/gimptexttool.c:857 msgid "Confirm Text Editing" msgstr "Potvrdit úpravu textu" -#: app/tools/gimptexttool.c:866 +#: app/tools/gimptexttool.c:878 msgid "" "The layer you selected is a text layer but it has been modified using other " "tools. Editing the layer with the text tool will discard these " @@ -9408,7 +9407,7 @@ msgid "Click-Drag to move the anchor around." msgstr "Tažením s kliknutím přesunete ukotvení." -#: app/tools/gimpvectortool.c:1211 +#: app/tools/gimpvectortool.c:1211 app/tools/gimpvectortool.c:1218 msgid "Click-Drag to move the anchors around." msgstr "Tažením s kliknutím přesunete ukotvení." @@ -9416,43 +9415,43 @@ msgid "Click-Drag to move the handle around. (try SHIFT)" msgstr "Tažením s kliknutím přesunete řídicí bod. (zkuste SHIFT)" -#: app/tools/gimpvectortool.c:1217 +#: app/tools/gimpvectortool.c:1220 msgid "Click-Drag to change the shape of the curve. (SHIFT: symmetrical)" msgstr "Tažením s kliknutím změníte tvar křivky. (SHIFT: symetricky)" -#: app/tools/gimpvectortool.c:1221 +#: app/tools/gimpvectortool.c:1224 msgid "Click-Drag to move the component around. (try SHIFT)" msgstr "Tažením s kliknutím přesunete komponentu. (zkuste SHIFT)" -#: app/tools/gimpvectortool.c:1225 +#: app/tools/gimpvectortool.c:1228 msgid "Click-Drag to move the path around." msgstr "Tažením s kliknutím přesunete cestu." -#: app/tools/gimpvectortool.c:1228 +#: app/tools/gimpvectortool.c:1231 msgid "Click to insert an anchor on the path. (try SHIFT)" msgstr "Kliknutím vložíte ukotvení na cestu. (zkuste SHIFT)" -#: app/tools/gimpvectortool.c:1231 +#: app/tools/gimpvectortool.c:1234 msgid "Click to delete this anchor." msgstr "Kliknutím odstraníte toto ukotvení." -#: app/tools/gimpvectortool.c:1234 +#: app/tools/gimpvectortool.c:1237 msgid "Click to connect this anchor with the selected endpoint." msgstr "Kliknutím spojíte toto ukotvení s vybraným koncovým bodem." -#: app/tools/gimpvectortool.c:1238 +#: app/tools/gimpvectortool.c:1241 msgid "Click to open up the path." msgstr "Kliknutím otevřete cestu." -#: app/tools/gimpvectortool.c:1241 +#: app/tools/gimpvectortool.c:1244 msgid "Click to make this node angular." msgstr "Kliknutím změníte tento uzel na úhlový." -#: app/tools/gimpvectortool.c:1751 +#: app/tools/gimpvectortool.c:1761 msgid "Delete Anchors" msgstr "Odstranit ukotvení" -#: app/tools/gimpvectortool.c:1918 +#: app/tools/gimpvectortool.c:1928 msgid "There is no active layer or channel to stroke to" msgstr "Není žádná aktivní vrstva nebo kanál, kam vykreslovat" @@ -9562,9 +9561,8 @@ msgstr "Neplatná zkratka." #: app/widgets/gimpbrusheditor.c:168 -#, fuzzy msgid "Spikes:" -msgstr "Velikost:" +msgstr "Hroty:" #: app/widgets/gimpbrusheditor.c:181 msgid "Hardness:" @@ -10104,12 +10102,12 @@ #: app/widgets/gimpgradienteditor.c:362 msgid "Instant update" -msgstr "Rychlá aktualizace" +msgstr "Okamžitá aktualizace" #: app/widgets/gimpgradienteditor.c:619 #, c-format msgid "Zoom factor: %d:1" -msgstr "Poměr zvětšení: %d:1" +msgstr "Poměr přiblížení: %d:1" #: app/widgets/gimpgradienteditor.c:622 #, c-format @@ -10189,7 +10187,7 @@ #: app/widgets/gimpgrideditor.c:219 msgid "Line _Style:" -msgstr "_Styl řádku:" +msgstr "_Styl mřížky:" #: app/widgets/gimpgrideditor.c:223 msgid "Change grid foreground color" @@ -10299,12 +10297,12 @@ msgid "Empty Layer" msgstr "Prázdná vrstva" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:462 #, c-format msgid "Message repeated %d times." msgstr "Zpráva se opakuje %dkrát." -#: app/widgets/gimpmessagebox.c:462 +#: app/widgets/gimpmessagebox.c:464 msgid "Message repeated once." msgstr "Zpráva se opakuje jednou." @@ -10321,7 +10319,7 @@ msgid "This text input field is limited to %d characters." msgstr "Toto textové vstupní pole je omezeno na %d znaků." -#: 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" @@ -10332,7 +10330,7 @@ "\n" "%s" -#: app/widgets/gimpselectiondata.c:321 +#: app/widgets/gimpselectiondata.c:323 msgid "Invalid UTF-8" msgstr "Neplatné UTF-8" @@ -10674,7 +10672,7 @@ #: app/widgets/widgets-enums.c:172 msgid "Fancy" -msgstr "" +msgstr "Barevný" #: app/widgets/widgets-enums.c:199 msgid "GIMP help browser" @@ -10782,86 +10780,3 @@ #: data/misc/gimp.desktop.in.in.h:2 msgid "Image Editor" msgstr "Editor obrázků" - -#~ msgid "Keep aspect ratio" -#~ msgstr "Zachovat poměr stran" - -#~ msgid "Transformations do not work on layers that contain layer masks." -#~ msgstr "Transformace nefunguje na vrstvách, které obsahují masky." - -#~ msgid "Main Keyboard" -#~ msgstr "Hlavní klávesnice" - -#~ msgid "Main Mouse Wheel" -#~ msgstr "Kolečko hlavní myši" - -#~ msgid "Resize Error: Both width and height must be greater than zero." -#~ msgstr "Chyba rozměrů plátna: Jak šířka tak výška musí být větší než nula." - -#~ msgid "Scale Error: Both width and height must be greater than zero." -#~ msgstr "Chyba velikosti: Jak šířka tak výška musí být větší než nula." - -#~ msgid "C_enter" -#~ msgstr "_Střed" - -#~ msgid "_Show Image Menu" -#~ msgstr "Zobrazit _menu obrázku" - -#~ msgid "Scale Layer Options" -#~ msgstr "Volby škálování vrstvy" - -#~ msgid "Scale Image Options" -#~ msgstr "Volby škálování obrázku" - -#~ msgid "Pixel Dimensions" -#~ msgstr "Velikosti v pixelech" - -#~ msgid "Layer Boundary Size" -#~ msgstr "Rozměry hranice vrstvy" - -#~ msgid "New width:" -#~ msgstr "Nová šířka:" - -#~ msgid "New height:" -#~ msgstr "Nová výška:" - -#~ msgid "X ratio:" -#~ msgstr "Poměr X:" - -#~ msgid "Y ratio:" -#~ msgstr "Poměr Y:" - -#~ msgid "Constrain aspect ratio" -#~ msgstr "Omezení poměru stran" - -#~ msgid "Print Size & Display Unit" -#~ msgstr "Tisková velikost a jednotky zobrazování" - -#~ msgid "X resolution:" -#~ msgstr "Rozlišení X:" - -#~ msgid "Y resolution:" -#~ msgstr "Rozlišení Y:" - -#~ msgid "New path" -#~ msgstr "Nová cesta" - -#~ msgid "No preview available" -#~ msgstr "Náhled není k dispozici" - -#~ msgid "Stroke Options" -#~ msgstr "Možnosti vykreslení" - -#~ msgid "" -#~ "Save all errors\n" -#~ "%s Save selection" -#~ msgstr "" -#~ "Uložit všechny chyby\n" -#~ "%s Uložit výběr" - -#~ msgid "" -#~ "New color from FG\n" -#~ "%s from BG" -#~ msgstr "" -#~ "Nová barva z popředí\n" -#~ "%s z pozadí" diff -uraN gimp-2.2.6/po/de.gmo gimp-2.2.7/po/de.gmo --- gimp-2.2.6/po/de.gmo 2005-02-12 14:38:00.000000000 +0100 +++ gimp-2.2.7/po/de.gmo 2005-05-08 12:15:21.000000000 +0200 @@ -209,35 +209,36 @@ HhShdhlh{hhhh#hi!i8iGi\ixii#iiijj*jGj^j$|jjj jjjk&k!@kbk~k kkkkk$kl 8lFl"dllllll'm$7m \m}m"m"mmmnn$8n]nxnnnn"n6n"/oRoroo"ooo"oGp9gpZpUp Rqsqqq q q qq q,q$r 5r?rTrgryrr#rrrr# s/sIs`s|sssssst+tAt"[t~t28u`kuu\Rw@ww3xxy3azOzPzh6{4{{%|S~B>E tā ߁ "2M ` k yQق.D[q(Ãك6Ogx„݄!*A#Vz!ʅ$=Tem9 #5N c q~ EˈԈ( ,4a#~ $ډ# #/@HQ"p   Ŋӊ - 0@Si$y+݋'& ?K `m - ̌  -  (8H`Q3>.%3Tn\TI!;]!;]%q}. T<Ɩ`   <'d2[fu^ܚ_;2\Λ+\ʜ0'EX4YӞX-D˟[5#&DWj= ɨ2@_W 6ê  8T]d -u -3&>'e ˬެ$5E Zday ۮ'?Thǯޯ"! 2> O -]hl+tLYPGg   ȴ ݴ+"E&h='͵ $%;a~ "ݶM$= -b -mxз/3!U -f.qS+n UMD_yKlfhFy_Cd_h2!?#c0&%LK*2vkW^m!  - $ ;G W es1    <Zn   %8"U"x !  !/8"Il t!  !@RZb|*$>cu + 0@Si$y+݋'& BN cp + ό  - ' 4@Vm,(U \ i s -  - -  / -2 = IV eq     -  +9 N[mt{; % 2> FRiy  "23fu    # 5A P^ o}   -     -!3LS [hw  -@[w ;; CMd|(,-0Ib<  -%%9)_ -, -)? [g n|  -     $ -.!9[k } - " +/58GK -Q\ciGm( -  '3'[&& - - #)/7WF9[|r17<-~T>7 W7WVn/er;3N S +#c7tVrlAg[0'G=bl/w:5 \T\~"B-LSsM1 =MHv;2%(w$ Y_v!Re_Gx* BZ W +[!+)hesbw2 0i" nLSKXg_ N:58 ^O z}"++ n'1.C.VF9EN<Nv 1_>>o^+\ B 6_G{ {89uSX'M T/ MXD 9 2rHa4oVh|?B@ &3~ =Lf$0547y| +  !+;K`T3>.(3Wn\WI!>`!>`%t.T?ɖc #<*g2[fx^ߚ_>2\ћ.\͜0*E[4Y֞X0DΟ^8&)äDZj@ ̨2@_Z 6ƪ  ;W`g +x +6&A'h ά'8H ]ga| ޮ*BWkʯ"$ 5A R +`ko+wLYPJg!   ˴  ++"H&k='е'%>d "M$@ +e +p{ӷ/3$X +i.tS+n#XMG_yKofh"I|_Fd_ k2 $?&f0&(OK-2ykW^p!   ' >J Z hv1    !?]q   (;"X"{ !  +! $2;"Lo w!  $CU]e-$Afx +  * 7CYp,+X _ l v +  + +#2 +5 @ LY ht     +# .< Q^pw~; ( 5A IUl|  "26ix    & 8D Sa r   +    +$6OV ^kz  "0C^z ;> FPg(,-0Le<  +%%<)b +,  +!,B ^j q  +    ' +1!<^n  + ".28;JN +T_flGp( + '6'^&& + +&,2:WI9[|r17<-~T>7 W7WVn/er;3N S +#c7tVrlAg[0'G=bl/w:5 \T\~"B-LSsM1 =MHv;2%(w$ Y_v!Re_Gx* BZ W +[!+)hesbw2 0i" nLSKXg_ N:58 ^O z}"++ n'1.C.VF9EN<Nv 1_>>o^+\ B 6_G{ {89uSX'M T/ MXD 9 2rHa4oVh|?B@ &3~ =Lf$0547y| ]O ]E 2 "w[i'e%("q>U9m= t_,qFPv &  |+N34 CnE2# ifLc=tIB']"}@! ]X  ]v7P-g hUA xJOxAjapmY Dj,{Zol *#(S0 W@zn*VoDLUqF J: >=|Q  fJY@0bX$ =uQHm/IjE0Y&vW$lYh4 TsG@}*1CMQjHm!rkE^Sl A]M YH?3Z& ~J1e,%n,wkjc5oI:/B5?GuW qSA >I dHa;udFKeZBR @@ -344,7 +345,7 @@ 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-01-04 16:59+0100 +PO-Revision-Date: 2005-04-29 12:35+0200 Last-Translator: Sven Neumann Language-Team: German MIME-Version: 1.0 @@ -427,7 +428,7 @@ Segmente in der Auswahl aufgeteilt werden sollen.Geben Sie an, in wieviele Abschnitte das ausgewählte Segment aufgeteilt werden soll.Transparente Bereiche auswählenInternet-Browser wählenP_fad aus AuswahlAuswahlAuswahleditorAuswahleditorAuswahlmaskeAuswahlwerkzeug ProzedurenAuswahlmaskePfad aus Auswahl %s Erweiterte EinstellungenPfad aus AuswahlAuswahl: Auswahl: HinzufügenAuswahl: SchneidenAuswahl: ErsetzenAuswahl: AbziehenEmpfindlichkeitFarbe des Leinwandrahmens festlegenFarbe für Kanal setzenTransparenz des Kanals setzenFarbtabelle festlegenFarbe des Leinwandrahmens festlegenLeinwandgröße festlegenBildauflösung ändernObjekt exklusiv verknüpfenObjekt exklusiv sichtbar machenEbenengröße festlegenName aus _Text setzenEbenentransparenz ändernHintergrundfarbe ersetzenVordergrundfarbe ersetzenObjekt verknüpfenEbenenmodus festlegenEbenentransparenz ändern»Transparenz beibehalten« setzenLegt die maximale Speichergröße des Journals pro Bild fest. Von dieser Einstellung ist auch abhängig wie viele der eingestellten Journaleinträge rückgängig gemacht werden können.Legt den vom Hilfesystem verwendeten Browser fest.Legt die Farbe des Leinwandrahmens fest, falls der Rahmenmodus »Benutzerdefinierte Farbe« ist.Legt den zu benutzenden externen Internet-Browser fest. Dies kann ein absoluter Pfad oder der Name einer ausführbaren Datei innerhalb der gesetzten Umgebungsvariable »PATH« sein. Wenn der Befehl das Element »%s« enthält, wird dieses durch die tatsächliche Internet-Adresse ersetzt - andernfalls wird die Adresse mit einem vorrangehenden Leerzeichen direkt hinter den Befehl gesetzt.Legt den zum Skalieren und für andere Transformationen verwendeten Interpolationsgrad fest.Legt fest, auf welche Art Transparenz in Bildern angezeigt wird.Legt die minimale Anzahl an Einträgen im Journal fest. Weiterhin werden solange Journaleinträge erstellt bis das festgelegte Limit erreicht ist.Legt den von GIMP zu verwendenden Zeigermodus fest.Legt die horizontale Bildschirmauflösung in Punkten pro Zoll fest. Wenn der Wert auf Null gesetzt wird, werden die Informationen des X-Servers sowohl für horizontale als auch für vertikale Auflösung verwendet.Legt die vertikale Bildschirmauflösung in Punkten pro Zoll fest. Wenn der Wert auf Null gesetzt wird, werden die Informationen des X-Servers sowohl für horizontale als auch für vertikale Auflösung verwendet.Legt den von GIMP zu verwendenden Zeigermodus fest.Legt die Größe der Ebenen- und Kanalvorschau für neu erstellte Dialoge fest.Legt die Größe des zum Anzeigen von Transparenz verwendeten Schachbretts fest.Legt die Größe der in der unteren rechten Ecke des Bildfensters verfügbaren Navigationsvorschau fest.Legt die Größe der Vorschaubilder im Journal fest.Legt die Abmessungen der Vorschaubilder im Bild-öffnen-Dialog fest. Bitte beachten Sie, dass The Gimp keine Vorschaubilder erstellen kann, wenn die Ebenevorschau deaktiviert ist.Legt den Ort der Auslagerungsdatei fest. The Gimp verwendet ein blockorientiertes Speicherzugriffssystem. Die Auslagerungsdatei wird verwendet, um einzelne Speicherblöcke schnell und einfach auf die Festplatte auszulagern. Beachten Sie, dass diese Ausölagerungsdatei sehr groß werden kann, wenn Sie mit The Gimp große Bilder bearbeiten. Weiterhin kann das Programm sehr langsam reagieren, wenn Sie die Auslagerungsdatei innerhalb eines Netzwerkverzeichnisses erstellen. Für diesen Fall ist eine Auslagerung in den Ordner »/tmp« zu empfehlen.Legt das Verzeichnis für den temporären Speicher fest. Während der Benutzung von The Gimp werden hier verschiedene Ablaufdateien abgelegt. Die meisten Dateien verschwinden nach dem Beenden von The Gimp, da jedoch einige Dateien verbleiben könnten, sollte dieses Verzeichnis nur für Sie und nicht für andere Benutzer zugänglich sein.Legt den in Statusleisten der Bildfenster anzuzeigenden Text fest.Legt den Titelleisten der Bildfenster anzuzeigenden Text fest.Legt fest, ob The Gimp Vorschaubilder von Ebenen und Kanälen anlegt. Vorschaubilder im Ebenen- und Kanäle-Dialog kann die Übersicht erhöhen, führt aber auch dazu, dass das System beim Bearbeiten sehr großer Bilder langsamer reagiert.SchattentypSchattenFormForm:Formangepaßt (winklig)Formangepaßt (dimpled)Formangepaßt (sphärisch)SchärfenKanal schärfenAuswahl schärfenSchereScherneigung X:Scherneigung Y:Ebene oder Auswahl scherenScherinformationenScheren...Kurze StricheTastenkürzelDas Tastenkürzel »%s« wird bereits von »%s« aus der Gruppe »%s« verwendet.Ebenenmaske anzeigen_Lineale anzeigen_Statusleiste anzeigen_Scrollbalken anzeigen_Hilfslinien anzeigen_Ebenenrahmen anzeigenMenüleis_te anzeigen_Auswahl anzeigenPinsel_umriss anzeigenVordergrund & Hintergrundfarbe _anzeigen_Hilfslinien anzeigen_Ebenenrahmen anzeigen_Menüleiste anzeigen_Lineale anzeigenausgewählten _Pinsel, Muster und Farbverlauf anzeigenAktuelles Bild anzeigen_Gitter anzeigenHilfe_knopf anzeigenBildgröße anzeigenInteraktive Begrenzung anzeigenSpeicherverbrauch anzeigenMenü _Mnemonics anzeigenZeiger des Mal_werkzeugs anzeigenAuswahl anzeigenS_tatusleiste anzeigenRoll_balken anzeigenTipps beim nächsten Start anzeigenTipps beim _Start anzeigen_Minihilfen anzeigenBildgröße in Prozent anzeigenMaßstab als Verhältnis anzeigenKanal verkleinernAuswahl verkleinernFenster an_passenVerkleinere vom BildrandAuswahl verkleinern umFenster anpassenGrößeGröße im Speicher:Größe der _Vorschaubilder:Größe:»%s« wird übersprungen: falsche GIMP-Protokollversion.KleinKleinere VorschaubilderWeichKanten glättenVerschmierenBild verschmieren_Magnetische HilfslinienMagnetis_ches GitterWeiche KantenDurchgezogenQuelleAbstandAbstand:Wenig PunkteBesondere DateiLegt fest, wie der Bereich um das Bild herum dargestellt werden soll.Geschwindigkeit der laufenden Ameisen im Auswahl-Umruss. Dieser Wert wird in Millisekunden angegeben (kleiner Wert bedeutet schnelleres Laufen).Geschwindigkeit:Sphärisch (_abnehmend)Sphärisch (_zunehmend)Spitzen:Spirale (rechtsdrehend)Spirale (rechtsdrehend)TeilenFarbverlauf-Segment gleichmäßig teilenFarbverlauf-Segmente gleichmäßig aufteilenSegment gleichmäßig teilenSegment _gleichmäßig aufteilen...Segment _mittig teilenSegmente gleichmäßig aufteilenSegmente _gleichmäßig aufteilen...Segment an _Mittelpunkten aufteilenQuadratischSt_atus und Text_StapelStandardErweiterungen werden gestartetErweiterung »%s« wird gestartet -Status:Feste FarbenFestes GrauStatus & Beschr.Status & TextStd.-Abweichung:GetüpfeltStock-IDPfad _nachziehenPfad _nachziehen...Kanal nachzeichnenPfad nachziehenAuswahl nachziehenNachzieheinstellungenPfad nachziehenPfad mit aktuellen Werten nachziehenPfad nachziehen...Auswahl mit den aktuellen Werten nachziehenAuswahl nachziehenMit Hilfe eines Malwerkzeugs nachziehenRandstil des Textes in der StatuszeileSubtraktionVon Auswahl abziehenHochrechnungAuslagerungsordner:_WerkzeugeTe_xtTe_xt-WerkzeugTemporärer Ordner:VorlagenVorlagenmenüVorläufige ProzedurPlugin wird abgebrochen: »%s« +Status:Feste FarbenFestes GrauStatus & Beschr.Status & TextStd.-Abweichung:GetüpfeltStock-ID_Pfad nachziehen_Pfad nachziehen...Kanal nachzeichnenPfad nachziehenAuswahl nachziehenNachzieheinstellungenPfad nachziehenPfad mit aktuellen Werten nachziehenPfad nachziehen...Auswahl mit den aktuellen Werten nachziehenAuswahl nachziehen...Mit Hilfe eines Malwerkzeugs nachziehenRandstil des Textes in der StatuszeileSubtraktionVon Auswahl abziehenHochrechnungAuslagerungsordner:_WerkzeugeTe_xtTe_xt-WerkzeugTemporärer Ordner:VorlagenVorlagenmenüVorläufige ProzedurPlugin wird abgebrochen: »%s« TextText-FarbeText EditorTextebeneText verändertText ProzedurenThe GIMPDer Plugin »Hilfe-Browser von The-Gimp« scheint in Ihrer Installation nicht vorhanden zu sein.Der aktive Pinsel. Klick öffnet die Pinselauswahl.Der aktive Farbverlauf. Klick öffnet die Farbverlaufsauswahl.Das aktive Bild. @@ -449,7 +450,7 @@ GIMP %d.%d BenutzerinstallationLegt fest, ob der Dialog automatisch dem Bild folgt, an dem Sie im Moment arbeiten.GIMP zeigt »Mnemonics«, wenn eingestellt.Wenn diese Option ausgewählt ist, werden alle Malwerkzeuge eine Vorschau der aktuellen Pinselkontur anzeigen.Wenn dieses Option ausgewählt ist, wird ein Bild zum aktiven Bild sobald dessen Fenster den Fokus erhält. Diese Funktion ist sinnvoll für Fenster-Manager die »Fokus durch anklicken« verwenden.Wenn diese Option ausgewählt ist, steht Ihnen bei jedem Dialog eine Hilfeknopf zur Verfügung über den Sie die dazugehörige Hilfeseite erreichen. Ohne diesen Knopf können Sie die Hilfe immer auch über die Taste F1 erreichen.Wenn diese Option ausgewählt ist, können einzelne Menüs abgerissen werden.Wenn diese Option ausgewählt ist, wird beim Drücken der Taste F1 der Hilfe-Browser geöffnet.Wenn diese Option ausgewählt ist, wird The Gimp keine Bilder speichern, die seit ihres Öffnens nicht verändert wurden.Legt fest, ob GIMP ein anderes Info-Fenster pro Bildansicht verwenden soll.Wenn diese Option ausgewählt ist, wird die Position des Mauszeigers bei jeder Mausbewegung vom X-Server erfragt, anstatt diese nur durch Positionsbezug zu berechnen. Dies bedeutet, dass das Malen mit großen Pinseln genauer ist, aber auch langsamer sein kann.Seltsamerweise führt diese Option aber bei manchen X-Servern dazu, dass das Malen schneller geht.Wenn diese Option ausgewählt ist, wird der Zeiger des aktuellen Malwerkzeuges über dem Bild angezeigt.Legt fest, ob das Gitter per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Gitter anzeigen«-Befehls beeinflusst werden.Legt fest, ob die Hilfslinien per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Hilfslinien anzeigen«-Befehls beeinflusst werden.Wenn diese Option ausgewählt ist, wird sich die Größe des Bildfensters automatisch anpassen, wenn Sie in ein Bild hinein oder hinaus zoomen.Wenn diese Option ausgewählt ist, wird sich die Größe des Bildfensters jedesmal anpassen, wenn sich die physikalische Größe des Bildes ändert.Legt fest, ob der Ebenenrahmen per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Ebenenrahmen anzeigen«-Befehls beeinflusst werden.Legt fest, ob die Menüleiste per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Menüleiste anzeigen«-Befehls beeinflusst werden.Legt fest, ob die Lineale per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Lineale anzeigen«-Befehls beeinflusst werden.Legt fest, ob die Rollbalken per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Rollbalken anzeigen«-Befehls beeinflusst werden.Wenn diese Option ausgewählt ist, wird der ausgewählte Pinsel bei allen Werkzeugen verwendet.Wenn diese Option ausgewählt ist, wird der ausgewählte Farbverlauf bei allen Werkzeugen verwendet.Wenn diese Option ausgewählt ist, wird das ausgewählte Muster bei allen Werkzeugen verwendet.Legt fest, ob die Auswahl per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Auswahl anzeigen«-Befehls beeinflusst werden.Legt fest, ob die Statusleiste per Vorgabe angezeigt werden soll. Dies kann auch mit Hilfe des »Ansicht->Statusleiste anzeigen«-Befehls beeinflusst werden.Falls dies aktiviert ist, wird sichergestellt, dass jedes Pixel ein Bildes auf je ein Pixel auf dem Bildschirm abgebildet wird.Legt fest, ob sichergestellt werden soll, dass nach dem Öffnen einer Datei das gesamte Bild sichtbar sein soll. Andernfalls wird es im Maßstab 1:1 angezeigt.Wenn Sie diese Option auswählen, haben Sie die Möglichkeit Tastenkürzel zu vergeben, indem Sie in einem Menü eine Tastenkombination drücken, sobald der gewünschte Menüeintrag hervorgehoben ist.WeißDer Weißabgleich funktioniert nur bei RGB Ebenen.BreiteBreite:FensterverwaltungFensterverwaltungs-HintsFensterpositionen»%s« wird geschrieben XXCF Fehler: nicht unterstützte XCF-Dateiversion %d aufgetretenXCF Warnung: Version 0 des XCF-Dateiformats hat indizierte Farbpaletten falsch gespeichert. -Farben wurden durch Graustufen ersetzt.YGelbGelb:Sie versuchen ein Bild der Größe %s anzulegen.Hier können Dialoge angedockt werden.Sie sollten eine Kopie der GNU General Public License zusammen mit diesem Programm erhalten haben. Falls nicht, schreiben Sie an die Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Sie müssen GIMP neu starten, damit die folgenden Änderungen aktiv werden:Ihre Installation von The Gimp ist unvollständig:Die Einstellungen für Eingabegeräte werden beim nächsten Start von GIMP auf Vorgabewerte zurückgesetzt.Die Tastenkürzel werden beim nächsten Start von GIMP auf Vorgabewerte zurückgesetzt.Die Fenstereinstellungen werden beim nächsten Start von GIMP auf Vorgabewerte zurückgesetzt.Verhalten bei GrößenänderungenMaßstab 1:1Alles anzeigenHineinzoomenHerauszoomenSkalierungsverhältnisSkalierung:_Alles anzeigenHin_einzoomenHera_uszoomenAlles anzeigenMaßstab: %d:1Bild zoomen, wenn die Fenstergröße sich ändertHineinzoomenVergrößern / VerkleinernHerauszoomenMaßstab:[ Basisbild ]_Über_Holen_Hintergrundfarbe hinzufügen_Vordergrundfarbe hinzufügenReiter _hinzufügenZur Auswahl _hinzufügen_Erweiterte EinstellungenS_prühpistole_AllesEbene _verankern_Kantenglättung_Beliebig drehen..._KünstlerischP_erspektive_Automatisch_BVG/HG Farbe_Hintergrundfarbe:_Schwarz (volle Transparenz)Farb_verlaufsfunktion für SegmentFarb_verlaufsfunktion für Auswahl_Weichzeichnen_Helligkeit:_Pinsel_Pinsel_Pinsel, Muster und Farbverläufe_FüllenA_blagenNach _Farbe_Nach Farbe auswählen_C_Aufsatzstil:_KanäleFehler _löschenListe _alter Operationen entfernen_Klonen_SchließenReiter s_chließen_Wolken_Farben_FarbenFarbe und Deckkraft _festlegen..._Kontext_Kontexthilfe_KopierenIn Ablage _kopierenB_ild aus Vorlage erstellen..._Zuschneiden / Größe ändernBild _zuschneiden_Kurven_Kurven_Dunkle Schachbrett-Farbe_VorgabefarbenPinsel _löschenAblage _löschenKanal _löschenFarbe _löschenFarbverlauf _löschen...Bild _löschenEbene _löschenFarbpalette _löschenPfad _löschenMuster _löschen...Gespeicherte Einstellungen _löschenSegment _löschenAuswahl _löschenVorlage _löschenSättigung ent_fernenReiter _lösen_Gerätestatus_DialogeÄnderungen _verwerfenTe_xtinformationen verwerfenVer_zerren_Punkt für Punkt_Duplizieren_BearbeitenPinsel _bearbeiten...Kanalei_genschaften...Farbe _bearbeiten...Farbverlauf _bearbeiten...Ebenenei_genschaften...Farbpalette _bearbeiten...Pfadei_genschaften...Muster _bearbeiten...Vorlage _bearbeiten..._Elliptische Auswahl_Vorschau von Ebenen und Kanälen aktivieren_Enorm_Egalisieren_RadiererVG/HG Farbe_Datei_Füllung:_Fenster an Bild anpassenBild z_usammenfügenSp_iegelnSegment sp_iegelnAuswahl sp_iegeln_Schwebend_Schrift_Schriften_Vordergrundfarbe:_Freie Auswahl_G_Generisch_GigantischFar_bverlaufFa_rbverläufe_Graustufen_Graustufen-Kopie der EbeneVer_größern..._Hilfslinie_Härte_Hilfe_Horizontal:_Farbton:_Riesig_Symbol_Symbol:_Bild_Bilder_ImportierenFarbpalette _importieren..._Indiziert_Info-FensterSchnittmenge _bilden_Invertieren_Verbindungsstil:_Groß_Ebene_Ebenen_Ebenen, Kanäle und PfadeFarbe des linken EndpunktesLinke Farbe laden von/Rechtem Endpunkt des _linken Nachbars_WerteH_elle Schachbrett-Farbe_Licht-Effekte_Helligkeit:Linien_stil_Linear_VerknüpftLinke Farbe l_aden vonKanal a_bsenkenEbene a_bsenkenPfad a_bsenken_M_Manuell_Abbilden_Maske_Auswahl aus MaskeMaximale Anzahl der Farben:_Maßband_MittelFarbpaletten _vereinen..._Importieren Pfade zusammenführen_Benutzereinstellunge aus The Gimp 2.0 übernehmen_Verschiedenes_Gehrung-Limit:_Modus_Modulverwaltung_Verschieben_Name:_Natur_Neuer Pinsel_Neuer Kanal_Neuer Kanal..._Neuer Eintrag..._Neuer Farbverlauf_Neue Ebene_Neue Ebene..._Neue Farbpalette_Neuer Pfad_Neuer Pfad..._Neues Muster_Neue Vorlage..._Neue Ansicht_Neu..._Nächster Tipp_RauschenA_ufheben_Versatz_DeckkraftBild ö_ffnenÖ_ffnen...Benutzerdefinierte _Rahmenfarbe_Malwerkzeuge_Pinsel_PaletteE_infügenAblage e_infügenAus Ablage e_infügen..._Pfade_MusterP_erspektive_Posterisieren_Einstellungen_VorschauVorschau_größe_Vorheriger Tipp_Druckgröße..._Eigenschaften_Schnelle Maske aktiv_Beenden_R_RGB_RadiusKanal _anhebenEbene an_hebenPfad _anhebenAnsichten an_hebenBild öffnen oder _anheben_Tastenkürzel neu zuweisen_Rechteckige Auswahl_Wiederholen_Wiederholen: %sPinsel n_eu ladenFarbverläufe n_eu ladenFarbpaletten n_eu ladenMuster n_eu ladenNicht verwendete Farben aus endgültiger Palette _entfernen_Render_ErsetzenSegment duplizieren...Auswahl _duplizieren...Schriften _neu einlesenOrdnung & Sichtbarkeit _wiederherstellenGerätestatus _jetzt auf Vorgabewerte setzenTastenkürzel auf Vorgabewerte _zurücksetzenFensterpositionen _jetzt auf Vorgabewerte setzenEinstellungen l_aden ausFarbe des rechten EndpunktesRechte Farbe laden von/Linkem Endpunkt des _rechten Nachbars_Drehen_Sättigung:_SpeichernLinke Farbe _speichern inEinstellungen _speichern alsGerätestatus beim Beenden _speichernTastenkürzel beim Beenden _speichernFensterpositionen beim Beenden _speichern_SkalierenBild _skalierenEbene _skalieren...Importierte Pfade auf Bildgröße _skalieren_AuswahlA_uswahlAuswahl_editor_Auswahlwerkzeuge_FormSch_ärfen_Bildauswahl anzeigenIm Werkzeugkasten _anzeigen_Sinusartig_KleinVersch_mieren_Reichweite des Magneten:Auswahl _nachziehenAuswahl _nachziehenVon Auswahl ab_ziehenReiter_stil_Vorlagen:_Vorlagennur _Text_Schwellwert_Winzig_Tipp des Tages_Werkzeug_Werkzeuge_Alphakanal der Ebene übernehmen_Transformation_Transformationen_Rückgängig_Rückgängig: %s_Vertikal:An_sicht_Sichtbar_WebZu verwendender _Internet-Browser:_Weiß (volle Deckkraft)_Weißabgleich_Breite:_Falten_X Auflösung:_X:_Xtns_Y_Y Auflösung:_Y:_Zoom_Zoom (%s)FarbenKopieDPI»yes« oder »no« für boolesches Symbol %s erwartet, »%s« erhaltenSchwerwiegender Fehler bei SyntaxanalyseGraustufenGraustufen leerZollZollindiziertindiziert leerungültiger UTF-8 Textungültiger Wert »%ld« für Symboltypungültiger Wert »%ld« für Symbol %sungültiger Wert »%s« für Symboltypungültiger Wert »%s« für Symbol %sMillimeterMillimeterMinuten.v.ProzentPicaPicaPixelPixelPixel/%aPixel/%sPunktPunktSekundetips-locale:deDaniel Egger +Farben wurden durch Graustufen ersetzt.YGelbGelb:Sie versuchen ein Bild der Größe %s anzulegen.Hier können Dialoge angedockt werden.Sie sollten eine Kopie der GNU General Public License zusammen mit diesem Programm erhalten haben. Falls nicht, schreiben Sie an die Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Sie müssen GIMP neu starten, damit die folgenden Änderungen aktiv werden:Ihre Installation von The Gimp ist unvollständig:Die Einstellungen für Eingabegeräte werden beim nächsten Start von GIMP auf Vorgabewerte zurückgesetzt.Die Tastenkürzel werden beim nächsten Start von GIMP auf Vorgabewerte zurückgesetzt.Die Fenstereinstellungen werden beim nächsten Start von GIMP auf Vorgabewerte zurückgesetzt.Verhalten bei GrößenänderungenMaßstab 1:1Alles anzeigenHineinzoomenHerauszoomenSkalierungsverhältnisSkalierung:_Alles anzeigenHin_einzoomenHera_uszoomenAlles anzeigenMaßstab: %d:1Bild zoomen, wenn die Fenstergröße sich ändertHineinzoomenVergrößern / VerkleinernHerauszoomenMaßstab:[ Basisbild ]_Über_Holen_Hintergrundfarbe hinzufügen_Vordergrundfarbe hinzufügenReiter _hinzufügenZur Auswahl _hinzufügen_Erweiterte EinstellungenS_prühpistole_AllesEbene _verankern_Kantenglättung_Beliebig drehen..._KünstlerischP_erspektive_Automatisch_BVG/HG Farbe_Hintergrundfarbe:_Schwarz (volle Transparenz)Farb_verlaufsfunktion für SegmentFarb_verlaufsfunktion für Auswahl_Weichzeichnen_Helligkeit:_Pinsel_Pinsel_Pinsel, Muster und Farbverläufe_FüllenA_blagenNach _Farbe_Nach Farbe auswählen_C_Aufsatzstil:_KanäleFehler _löschenListe _alter Operationen entfernen_Klonen_SchließenReiter s_chließen_Wolken_Farben_FarbenFarbe und Deckkraft _festlegen..._Kontext_Kontexthilfe_KopierenIn Ablage _kopierenB_ild aus Vorlage erstellen..._Zuschneiden / Größe ändernBild _zuschneiden_Kurven_Kurven_Dunkle Schachbrett-Farbe_VorgabefarbenPinsel _löschenAblage _löschenKanal _löschenFarbe _löschenFarbverlauf _löschen...Bild _löschenEbene _löschenFarbpalette _löschenPfad _löschenMuster _löschen...Gespeicherte Einstellungen _löschenSegment _löschenAuswahl _löschenVorlage _löschenSättigung ent_fernenReiter _lösen_Gerätestatus_DialogeÄnderungen _verwerfenTe_xtinformationen verwerfenVer_zerren_Punkt für Punkt_DuplizierenBearbeite_nPinsel _bearbeiten...Kanalei_genschaften...Farbe _bearbeiten...Farbverlauf _bearbeiten...Ebenenei_genschaften...Farbpalette _bearbeiten...Pfadei_genschaften...Muster _bearbeiten...Vorlage _bearbeiten..._Elliptische Auswahl_Vorschau von Ebenen und Kanälen aktivieren_Enorm_Egalisieren_RadiererVG/HG Farbe_Datei_Füllung:_Fenster an Bild anpassenBild z_usammenfügenSp_iegelnSegment sp_iegelnAuswahl sp_iegeln_Schwebend_Schrift_Schriften_Vordergrundfarbe:_Freie Auswahl_G_Generisch_GigantischFar_bverlaufFa_rbverläufe_Graustufen_Graustufen-Kopie der EbeneVer_größern..._Hilfslinie_Härte_Hilfe_Horizontal:_Farbton:_Riesig_Symbol_Symbol:_Bild_Bilder_ImportierenFarbpalette _importieren...I_ndiziert_Info-FensterSchnittmenge _bilden_Invertieren_Verbindungsstil:_Groß_Ebene_Ebenen_Ebenen, Kanäle und PfadeFarbe des linken EndpunktesLinke Farbe laden von/Rechtem Endpunkt des _linken Nachbars_WerteH_elle Schachbrett-Farbe_Licht-Effekte_Helligkeit:Linien_stil_Linear_VerknüpftLinke Farbe l_aden vonKanal a_bsenkenEbene a_bsenkenPfad a_bsenken_M_Manuell_Abbilden_Maske_Auswahl aus MaskeMaximale Anzahl der Farben:_Maßband_MittelFarbpaletten _vereinen..._Importieren Pfade zusammenführen_Benutzereinstellunge aus The Gimp 2.0 übernehmen_Verschiedenes_Gehrung-Limit:_Modus_Modulverwaltung_Verschieben_Name:_Natur_Neuer Pinsel_Neuer Kanal_Neuer Kanal..._Neuer Eintrag..._Neuer Farbverlauf_Neue Ebene_Neue Ebene..._Neue Farbpalette_Neuer Pfad_Neuer Pfad..._Neues Muster_Neue Vorlage..._Neue Ansicht_Neu..._Nächster Tipp_RauschenA_ufheben_Versatz_DeckkraftBild ö_ffnenÖ_ffnen...Benutzerdefinierte _Rahmenfarbe_Malwerkzeuge_Pinsel_PaletteE_infügenAblage e_infügenAus Ablage e_infügen..._Pfade_MusterP_erspektive_Posterisieren_Einstellungen_VorschauVorschau_größe_Vorheriger Tipp_Druckgröße..._Eigenschaften_Schnelle Maske aktiv_Beenden_R_RGB_RadiusKanal _anhebenEbene an_hebenPfad _anhebenAnsichten an_hebenBild öffnen oder _anheben_Tastenkürzel neu zuweisen_Rechteckige Auswahl_Wiederholen_Wiederholen: %sPinsel n_eu ladenFarbverläufe n_eu ladenFarbpaletten n_eu ladenMuster n_eu ladenNicht verwendete Farben aus endgültiger Palette _entfernen_Render_ErsetzenSegment duplizieren...Auswahl _duplizieren...Schriften _neu einlesenOrdnung & Sichtbarkeit _wiederherstellenGerätestatus _jetzt auf Vorgabewerte setzenTastenkürzel auf Vorgabewerte _zurücksetzenFensterpositionen _jetzt auf Vorgabewerte setzenEinstellungen l_aden ausFarbe des rechten EndpunktesRechte Farbe laden von/Linkem Endpunkt des _rechten Nachbars_Drehen_Sättigung:_SpeichernLinke Farbe _speichern inEinstellungen _speichern alsGerätestatus beim Beenden _speichernTastenkürzel beim Beenden _speichernFensterpositionen beim Beenden _speichern_SkalierenBild _skalierenEbene _skalieren...Importierte Pfade auf Bildgröße _skalieren_AuswahlA_uswahlAuswahl_editor_Auswahlwerkzeuge_FormSch_ärfen_Bildauswahl anzeigenIm Werkzeugkasten _anzeigen_Sinusartig_KleinVersch_mieren_Reichweite des Magneten:Auswahl nach_ziehenAuswahl nach_ziehenVon Auswahl ab_ziehenReiter_stil_Vorlagen:_Vorlagennur _Text_Schwellwert_Winzig_Tipp des Tages_Werkzeug_Werkzeuge_Alphakanal der Ebene übernehmen_Transformation_Transformationen_Rückgängig_Rückgängig: %s_Vertikal:An_sicht_Sichtbar_WebZu verwendender _Internet-Browser:_Weiß (volle Deckkraft)_Weißabgleich_Breite:_Falten_X Auflösung:_X:_Xtns_Y_Y Auflösung:_Y:_Zoom_Zoom (%s)FarbenKopieDPI»yes« oder »no« für boolesches Symbol %s erwartet, »%s« erhaltenSchwerwiegender Fehler bei SyntaxanalyseGraustufenGraustufen leerZollZollindiziertindiziert leerungültiger UTF-8 Textungültiger Wert »%ld« für Symboltypungültiger Wert »%ld« für Symbol %sungültiger Wert »%s« für Symboltypungültiger Wert »%s« für Symbol %sMillimeterMillimeterMinuten.v.ProzentPicaPicaPixelPixelPixel/%aPixel/%sPunktPunktSekundetips-locale:deDaniel Egger Michael Natterer Sven Neumann Christian Neumair diff -uraN gimp-2.2.6/po/de.po gimp-2.2.7/po/de.po --- gimp-2.2.6/po/de.po 2005-02-08 14:42:51.000000000 +0100 +++ gimp-2.2.7/po/de.po 2005-05-03 13:30:54.000000000 +0200 @@ -14,7 +14,7 @@ "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-01-04 16:59+0100\n" +"PO-Revision-Date: 2005-04-29 12:35+0200\n" "Last-Translator: Sven Neumann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -1127,7 +1127,7 @@ #: app/actions/edit-actions.c:61 msgid "_Edit" -msgstr "_Bearbeiten" +msgstr "Bearbeite_n" #: app/actions/edit-actions.c:62 msgid "_Buffer" @@ -1862,7 +1862,7 @@ #: app/actions/image-actions.c:133 msgid "_Indexed..." -msgstr "_Indiziert" +msgstr "I_ndiziert" #: app/actions/image-commands.c:192 msgid "Set Image Canvas Size" @@ -2561,15 +2561,15 @@ #: app/actions/select-actions.c:104 msgid "_Stroke Selection..." -msgstr "Auswahl _nachziehen" +msgstr "Auswahl nach_ziehen" #: app/actions/select-actions.c:105 msgid "Stroke selection..." -msgstr "Auswahl nachziehen" +msgstr "Auswahl nachziehen..." #: app/actions/select-actions.c:110 msgid "_Stroke Selection" -msgstr "Auswahl _nachziehen" +msgstr "Auswahl nach_ziehen" #: app/actions/select-actions.c:111 msgid "Stroke selection with last values" @@ -2937,7 +2937,7 @@ #: app/actions/vectors-actions.c:112 msgid "Stro_ke Path..." -msgstr "Pfad _nachziehen..." +msgstr "_Pfad nachziehen..." #: app/actions/vectors-actions.c:113 msgid "Stroke path..." @@ -2945,7 +2945,7 @@ #: app/actions/vectors-actions.c:118 msgid "Stro_ke Path" -msgstr "Pfad _nachziehen" +msgstr "_Pfad nachziehen" #: app/actions/vectors-actions.c:119 msgid "Stroke path with last values" diff -uraN gimp-2.2.6/po/ko.gmo gimp-2.2.7/po/ko.gmo --- gimp-2.2.6/po/ko.gmo 2005-01-22 17:33:15.000000000 +0100 +++ gimp-2.2.7/po/ko.gmo 2005-04-29 13:45:47.000000000 +0200 @@ -1,116 +1,286 @@ -',Oii&iGi9&jG`jAjNji9k<kkk@Ll2l;lPlOMm2m9m- -n98n;rn7n n nn - oo$o -pKKp.p1ppqq -(q 3q -?qJq _qiqxq -qqqqq*q6r>r[rsr|rrrrrr s s4sNs -jsus}ssss s ss1t3uRuXukuruu u -uuuAuJv<Yvvvvvvvvv -ww4w&Kw$rwwwwww"w wwwwwxx(x/4L_x  ΋ދ   -"-*>.i#"!&@ gs,#  '#KhFюTmt  ۏ , 2$>=c6<ؐA7W9cɑ9-Bg=f>OCJғg ̔ ٔ -DTo͕  -  )7 S_o ɖ -ϖOږ -*5ʗ  ! 0= U bou!c z%r!8AScx&' ؜  # (5DV\t Ý͝ԝ ܝ  - -H ^hx -H!ԞB9=1L~ -`017 -I -T_v Р -ޠH2 9ET cp ¡ʡ  *DZv z 36ע '?S$b ţ (+0)\*!/Ӥ -**U-^  Ϧۦ3&6 N [hŧާ .@6w-~ ܨ   * AO gs -© ک -"?\d -k v ͪ !'$=bt -ͫ -ث  %C_f -o z ɬ ڬ,(?)\ʭBݭA bix <KS -\g~"! 3 =GW ftV|+Ӱ((".Q gs% -˱ֱޱ -+ 4B V `n tѲ - -  .5 R^ s! ٳ?(7?Sc4?t}- ƶ ֶ#- 2 >HPgp*> GT]cy  !ĸ   &2 -EPb~ !!ֹ# 9)Uc=<=4 r~(, -J N[ j w ;ż  ) CQ a o{ ƽ +HO ^ k x Ⱦ6 &73k Ϳ߿  $ -*5: O[ -r }46EI  - -)29K -S^s  '>]t -H`=y6SJB   (4M_s)NK,=x*:?e`294/!Q !)9KQn   &6EVo+   8$v] !$<Xs $- 6BS#\  - -17!5YH;!6*B~ 5R1040e1C S,2 AAbA* +~&)G2 -= W-a -   *<P`o -;;U  !3:B3KF' GKSQ$5PG6-~joej~XpoHw<0?m>tta`7AGMTf w6o,3#;_G(p -    = ^kru     (> V -cnt -} -5  $2 Gh -   .4/Q2K7EV?fjC>yBg4AU!dw=;1VC82 8 ER -al}    .DZs   a75)m  3Q bp  +6Ni #1(Fo  /%, -2R - - - - - - - - - ; EN C    + 3 : N _ q x  5 .    - + 2 @;  |         E Rf w -   %<WCW]JQ@l/J'z9)@6G:~:-" 3 =K_s* 0-,Zqy   =DGAFI<+W.V8 *B4mzE;cBZV=8 %#>ET [i < %;9u  "  # -;F Mv[)-/-]C -)L4('(6/2 b5 & +> 1j  0 # - ! 7!A!#^!!!0! ! !! ""O!" q" {"" " -"""%"" ##2#F#d#u##### #;#)$ 0$ :$H$P$ d$ n$|$$$$$$$ $ % %P% j%x% % %+%%%% && &-&<&P&Y&o&&D&&& -'1'8'M'b'z' '''''' ( -( &( -4(?(6W(6(#((1(6,)&c))):)) ) *D*'S* {* ******+)+G+Z^+P+ -,,),D,L,6a,5,,,- "-0-3A-Wu-X-]&.\.N.N0//[0ib0P01S1]2Ya2~2 :3 H3V3 h3v33333334&4 C4d4?k444 4 455+5<5Z5!n5 55#55555 5 66 6X%6~66v77 7 7 77 7778 8(8C8X8p8 99; ;;#<*<m1<<<<< <=.4=1c========> >>!>2> D>*N>y>>>>>>>>>>? &?0?`7?????C?@g.@@ @?@@ @ A A Ah$AGA AAAB B3B*GBrBB BB]B C)C:CTCkCCCCCC CC D D D4D -OD+ZDD!DD D DD=D<5E rEEEEEEE EF9F8OFCFIFCG@ZG-GJGH H )HA7HyH>HI IIIIJ !JU+JJJ$JJJ3J0-K/^K,K*K KK L"L7LC?LLHLLLL -MM M &M4MPMXM_M~M!MM$MM!M N -'N2N49NnNNNNNNNNNNOO.OBO`O{O#O%O OOOPPP5(P^PsP PPPPP PPPP Q &Q4Q$LQ!qQQ QQ -QQQ Q Q -RR *R/8RhR,R.R4R+SDSKSaShSySFSCS$T+T@TPT!hTTTTDU TU -^UiUzU$U!U#UV V8VOV ^VhVwV V VwVEWt]W W%WX X!2X-TX4XX XXXY Y!Y 7YAYRYpYwY YYY Y0Y-Y"Z9Z @ZNZ UZ cZmZ tZZZ -ZZ ZZ ZZ [)[0[W8[#[ [[[1[7\S\_.] ] ]3] ^ ^ ^ _"_G2_ z__ _!_ __``` ``a a)a HaUaYa -ja ua!aaaaaaa! b-b>b-]bbbb+b+b! -c!,cNcO_cucN%dMtdYd e*e1e 9e1CeKue e%eQeCfTfefyf fff9fg,gGg'_ggggggggh"h @h Nh\h.zh hhhhhi -+i6i GiUiIli i iiOi5jTjlj sjj jjj j j jjkkk -k;kZk kkykkCk!kl!-lOlMfllll lmm/mJm!_m mmmmm m mmm -nn-nBn`n unnnn&n&no 1o ?oMobowooo!ooopK4pApVpVqpqwqqqqqqqqr! r.rCr^r'vr rr!rsDsgt/tZuAvTv5w>;whzwBw8&x_zN{{B{ | ||} }})} =}$J}o}}}}}}}~/5~e~}~~~~~~~5~,3 KX r ;''9!Qs ΁ ց  '?Fa q{  ̂IU4CB΃K]rdV̆B#fl +958$9]Hmi5׍9 0GFxF5<<#+OO ݕ0PS@B+י D  -R] -o zȚښ  (6 GUp w  -NWg * 7EZah   9 %9ACH]^w34@h^T6]ouqzlYݤu_եIWOFo8Q*q| - -Cũ   -DJ߫* -I Tbi p~Ǭܬ - : FTWl ­ έڭ  -   - +< ?M^s  - ƮҮ֮ٮݮJJex ǯ  " /< @ J T^e l v  Q%-+_wISf<dk`[T'k;6dTTO%sxl=cw<8#0%nL[rtpyLF (eHJD9Ej2uOkO,X7GHdg9<W }g_H)y rh0'BRP6%K;7bk/@!oz?aO2|A-bC\ -)m:gM1i .,6q&;gYlt$: = -N)*$#sD:@^`RU8c@%%P]+ |VTbVH* Fls"fu| KKz52S/$c4?MtZX[C 9M`ZrWjh~E+ -0 qP{3it ZjCU!/A#}BCXq^Qn}- .} &YTq I@R aGvG -+{.y?0 /*sv]>dU436h!MqL!ZD  -QDS7~XA?5,lx[p3|Ii>8=uRz#LNW,o~4xA Um4`d"=h3KM'(AyeUZ"FX>ib^2 I,IzPz~\r9PBfKB:o8Vpc5f!EEo -s&g *n6b^1NS~nJj3w{{O'>x1cu e<Wf_C&jo|")) :_wtx7{Qm$ka;a1EhiG5mwpN(e($vvG]Q+\&Wm1\D?@v']JJHB._[\rY0l#J`e82NR=5-".VLFuY<S9yaQ*];p7> (4}Vn/^YF +] K &k6G9G$AlNi<gk@2Q;PO2a9-9;67r  + + +  +/ +GRZb~0 + +2=DLT c q } + +   KL.1!3Ugn} +   +(3H [et +}* 66m#7Vk# + #,L` h r 13(.AH +)0 ? +LWhzAJ(<; x  .AJas  +&$<ah n x"   +$/>Oc7w    m-   + C7b=@6dP3<1#n!  !*BXp,Gai | !,AV_ h v  .5-5c78) +,4a}2 !O=A%&41Q#  .> +MX` ft 0   % / <Id+   + )3$Sx %8H"]  bk|  ""+Ngp +  +), 6!P#r#!%.!P Wct#-%,Rh~  + + + ,3B G Ubr  +- "/?V Zdio " 2 > LY`f%l! & '5DW iw     0Khz + +-   $ +, 7DWj   !:??z8  +5 +DOU +k v + +   > [|$ 4A P]bz - C +Q\ +t    $ 2 +>I*Z!.$#-"Qt&  ,#Cgn }''%BXtFT*1 7DZ m  +  ,;M_ eqz ($0=36q1<?AW79c 0o9B=f[>CJEg  &4IN` p z   (;N`w 9 P d x    +     +     + + +/ +: +V + ^ +j +z + + + + + + +( > D K  S ` h n  +t O   +       +      . ? R e  +t             +5uDc_ zKQrY&/?T&e' B   & 4@ EOU\a s  /8N e +oz    + !8H@ +  +H! +B,os1  +  !`-C(1l0   + + .>On ( + +H +/ : +GR Yet      18 @Ng  #9U Yg y  K36"Yh"~  $0 E S t(+)*!?a/s* '# K [ k t  +        !!,! C!d!!!!!!! ! "'" 8"B"R"l""!"""" ""#$#9#X#q#-#$$$$$ $%%% (%4%3:%n%%%% % +% % %%&-&M&f&z&& &&& &&&''@'Y'-`'' '' ' ' ''' ' +( ( ('(>(](|(( ( ( (( (() )() +>)I)^) t)) )) +)))))** ***0*H* ^*l*** +*#***+++%+B++_+++ + + ++ + +++,,5, J,W, f,t,,,",,,, -)-/-4-:-$P-u---- -- - --- - .. +1. <. +I.T. d.n.}. . ....../0/B/I/R/ e/q//// +/ ///// 0 0 0)0 :0 G0 Q0]0z000 0 +0 00 0 01 1 )1 51,A1n1!1111)1 2"2 :2 H2T2Y2h2o2 2 22B2A223P3e3 w3333 333333p44444 +44 444 4 +55<5"[5!~5!5555 6 6 6)696H6 P6^6Vf6+6 6(67""7E7 [7 g7s77%7 +7 7777 8 +8&8 58C8 L8Z8 n8 x8888 8 8 88&8,9 H9U9Z9 +j9 +u999999:4:L:^: +d:o:w: +: ::: :::: :: ;!;@; O;]; s;;;; ;;; ;;;;<?@<<<<<<<<4===-= ??? +.? 9?#C?g?-z? ??? ???@@ +@ $@0@@@@ AAA%A+AAA +YA +dAoAA +A A AAAA A A!AB !B/BCB RB _BlBBB BBB BB +BB C C,C ACMC +`CkC}CCCC C!CC!D#0DTD jD +wD9DUD=E<PE=EE"E?E4FFF WFcFgFlF(qF,FFFFF + GG,GAGJUG GGGG G G H$H >H JHXHpH HHH;HHI %I 2I>IXI jI vII I I III IIJ#J5JIJ\JmJJJJJJJ+J)KAKaKhK wK K KK K KK#K LL !L-LBLYL6qLLLLL L7L.MLMaMqMxMMM M MMM MN N*N?NEN +LN +WNbN jNwNN NN +NNN NN +NO"O ?OKO]OxOO OOOOOP4PRPoPPPPPP.PE#QiQ zQ QQ Q QQQ Q Q R +RR ,R +8RCRRR aRnRRRRNDS +SSSSS SSSTT#2TVTtT TTTTT#TU4U HUUUhUUU$UUU VV*VDVXV!pVVVV +VVV VW#W>WUWiWW WWWWWXX 7XEXXX kXxXXXXXXX +YY#Y"=Y`YzY YYYYYZ=Z6NZSZJZ$[=[P[ c[m[~[[[[[[ [\\,\?\ S\_\x\\ \\\\\]1]I] ]]i]~]]]]]])^N^_K`=e``*'aRaa3bTb?#c`cc2ccyd)f4,g/agg LhXh`hfhmh~hhhhhhhhhi *i 6iCiLi \iiiyi ii iii#i jj $j 2j&?jfj +yjjjjj"jjkk.k?k^ktkkkkk kkk lll$l9l+?lklqll ll ll l +lllll l l8 +mvCmmmmm m nn n!9n[nsnnnnnnooo#o7oQo Xo eo qo oooo ooo oo o o p&p!5pWpkp(pp#p p ppp +q q q$q3qGqbq +gq rq +~q qqqKq1q7.r1fr5rHrAsYs;s! tBt u%u  vw}w*@xBkyyzz6{{ {{){5{4|1|0}0G}1x}(}C}~S~,~2 LAmA*ȁ Ã614G͈2!N; - +‹͋ o& ڌ  !:C KX +^<i  ˎՎ /IYh| ďя +3%;Y;ѐsFz ˒ В ݒ ,3;Db3#ϓ .H^m| FĔ  ++ +6A F T b o | !! ܕ +K 0lQ$+5PPGט-OMjoexjޛ~IpȜo9w<!?^>tݞtR`ǟ(208iov 6oegn4v#ϢG%XU_O%.6 +? J V` is|# ȥѥץ %7 IS X ft  æަ  $18A `m u   ˧ҧ +٧ ! *8>Ml { + ʨ٨   ' 7DWm}  ǩЩ   +#2N]oĪ֪    #- 3?Tc iw  ǫ ѫ +۫ + + % +8>DJQX`h {  ìʬѬ٬ +"-@ O [gow   ­ǭͭ 5 U bpv +  î Ѯ +߮     ) :D LV] +cn w   įү    # 1? NZmsv{   Ͱ   2(Dmu~4ر1 /?o ʲв# :Y`p" +ȳٳ #+;Mb +{ + + ƴ̴Ӵ + +)/8=Rhw  +̵ӵص5ܵ $.>CJ R`!u  ٶ + #(.4 ; EOU\ cq./з2oQK7 EE?f˺j2>yܻBV4AμUdf=˽; 1ECw82 '4 +; FSZ am} + ʿ ׿ $:.Cr        +. +9 D Q ] j v a7)3# +; FT$[  $ 0DX$s  "Ca +6!<W s}#(=R(r 8B I We/y%22:6>Rfm;EUCq + + 2:.Ap  +&1 8BTj5z.   + +9D!Km@v   $5 JEX   +   &0 CP  +%-SkrWW]3J@l/'9)@F6::-4bs   1$In * $03-d ,))@H O]p   = DIGGFIe<+'.@Vo8*4*z_E; B\ZV8Q   %6Hds +  <L]l t;-A _i}   "" )A!\~/'8N +al sv!)2-\-990XC +'L2('(963/j 5IX`x+1L0d# - EO#l0   $E_q  O FPa{   +.CUg  %& ESl3!<M^r#*Nl ;! ( 2@ HU i s } #8Nho w  CP>M   +* >K\ t D.!s    &$Kfu 2@Xm " ":K `n  +  +6 +)'=e6}#16&R)y:  D*V  '<SiZPJ Q[j. 6+5b  " /<'Rz<3 A WKXA]>\\NVN@{[iPSe]Y~q   .@G f t ) A [ y       +& + C +d + +k +?v + + + +   ; I ] n         $ !8  Z  g t    # #   &2  Y c j  q      X  " /EX i w 8  #0B Tb iw # `nmp (.?1nm!2BYm~ *)@D#^  % &.5 =G^4r1 #&%L`SCAg^ ?0 8E ]k   h7]>:Gy  %FZ*n 0  ]*        !!9!T!k!! +! +!!! !!! !!"," +""+"#!##E#L#]# n# |##[#=#<5$ r$$$$$$$$ % %)% <%I%9Y%8%C%I&CZ&@&-& 'J"'m' t' 'A' ''6'0(E(Z(b( s((((((((()$) ;)\)w)))))) )** 0*:*J*d*x*!**** ** ++1+P+i+>x+ ,,,,, --!-2-G- Y-Uc----#.(.9.J._.3u.0./., +/*7/b/./// // 0'0 <0J0CR00H00 01 1 1'171W1^1o1 v1 1!1$1$11282@2 +G2R2q2!2%22$23!3%63\3!m33$33!3 +3 44 +/4 :4 +D4O4V44n4444!455--5 [5|5#55555>596A6 H6V6n66666$6$7-7L7`7t77#7%7$7 88 38T8[8o8v8~85888 89 9#9*9 ;9G9Z9a9 y999999 9 9 : $: 2:@: Z:h::$:!::: :;;*;(B;k;r;z; +;;;;; ; < +<< 6< D< +R<%]< <<<<< <<= '=5= Q= +_= +j=/u==<==,>.F>4u> >+>> >? +? ?'? 8? +F?Q?Fq?C?"?@.@ =@K@R@g@w@!@@@@@AA A +AAA A BB0BEB^B$|B!B#B$B C'C?CWCnC }C CCC C C CwCEMD +DtD E%ECEaEsE!E-E4E F F .F8FLFgF xFFF FFFFF G"G,2G_GxGG!G2G.H1HIH PH^HmH0H-H,H) I5IPI@gIII II I II JJ J +*J5JAgMgggg h#h 4h,Ah nh|hhhh$hhi+iv|h|B}a}8~?N[Bς " 5BV jw$ʃރ   +%:Uqτ! ">Y4nх*5"`/̆ :RgxƇۇ75?u|  Ȉ߈&-4; C Q;_"*>RZs''9!Qs  +ËՋ  "2 A OYuČ܌(8(S|$2! +0 ;I[ jt  ŽЎ&S-IUˏI!CkBVIK֑"7)E7*VqBȗ -A HV=]+ǚ95ћ89@?zHm5900jFF5)__#Nrr00sScB+ӫh hDr +¬Ԭ +  .|< ǭۭ(0K]u ®֮ ݮj +Va   ܰ  $+ ?Mah   +!FѱNWg]] > KYn*   %!.%P9v! Ҷ$ E]w C· +# +.9@Um$&.*]Y?^V3Ի@^IT6`4ouq{lZu`IXOFo9Q+q}B + + C d  + 4DLJq$_ZAS + (/ 6DS +f +q |/ +  +!!Acu + + + +&1 4BQo   ) + +*;SV +ju + + + +$ +  +5@*[  +  !6K `&; Sav + + +6Ki+' < J X +fq"   + +); +>Iau*  +    ,: I Wev + +  + 9,K x  + +2G +J +U `n + +2& 8 +Yd +y  + +1@Rav  + +   $ ;I[!t + +  -? +Wbe +mx!  ):$Y~9 +  "3%V@|96.F,[ +  +*) 0Qc9 + + +#4Fa +r} +  '5FX +j +u% +  +  5S kw  +  +J6Qd (# : [ huy }      Q%6\[|r17=-~U>7 W8WVn/er;4N S +#c7tVrlAg[0'G=bm/X w:5 \T\~"B-LSsM1 =MHv;3%(w$ Y_v !Re_Gx+ BZ X +[!+)hescw2 0i" nLSKXg_ N;58 ^O z}"++ n'1.C.VF9EO<Nv 1_>>p^+\ B 6_G{ {89uSX(M T/ MXD 9 2rHa5oVh|?B@ &3~ =Lf$0547z| +]O ]E 2 +"w[i'e%("q>U9m= t`,qFPv '  |,N34 CnE2# ifLc>tIB'^"~@! ] ]w7Q-h iUA +yJOxAjapmY Dj,{Zol *#(S0 W@zo*VoDLUqF J: ?=|Q  fJY@0bX$ =uRHm/IjE0Y&vW$lYh4 TsG@}*2CNQjHm!rkE^Tl A]M YI?3[& K1e,%n-wkkc6oI:/C5?HuW qSA >I dHa;udFKeZBR +zeM\Z)NB ]-ku1:vJdAs*4 XsCH6vTFbx'^*e' G*N JO #QpAi;9P &(mB +5u.j.\spkb$Q`yFg0|8Sq w&"F(}O@ J`2xJv<FPo"4o5 qc(JR&;#&O/ tx; K tkC$A ji+ +0lK@ f-< "% )sc+S !V<@&sj<H ?DEO$CbU +%MVI `g<~[ 6K + > yBD!/r =Z ZTh, ;@\i lc d] IU9)p3`U}Pku  U A>3 ^FPZCaswx}nD7.[6 l,1n:~C?b 12/%w: ;#Wy(*"MWUy- %md{dIyg`h{ N 6 ?gk =4 B@9VXG=:lM +{pKaJ :f ~tDR Gm!Gti$2)<KTt*P8>lr#5E9Y[$zy[Gdf jDM}u,>}c2xi8I7-z#EPSA8%1 +)/zQaf9(b;oQ4Q\ #:L LP,D %$}) ._|'-h 6&8|#( _) x]p^hU)O!z* ^LYH nR ?? Y L] hRIbW 6,EQ ^\<{SEa\4k[' yqW3xPV5. WZ`H 3Pf 4p7R|r~!& 3rY ZT <-X~<L*nKq. +G e ! d{ NV p,:8j\zaZ0a_c0  `5R1g 6_T{ODgC 2Jb]`9vF?)8'QRKy7. g  om%dtq6 Nf}7. u3/TX Invalid option "%s" Usage: %s [option ... ] [file ... ] + --batch-interpreter + The procedure to process batch commands with. --debug-handlers Enable non-fatal debugging signal handlers. --display Use the designated X display. --dump-gimprc Output a gimprc file with default settings. @@ -132,57 +302,76 @@ -i, --no-interface Run without a user interface. -s, --no-splash Do not show the startup window. -v, --version Output version information. -%d Layers%d layers%d x %d pixels%g x %g %s%s Channel Copy%s Channel to Selection%s Message%s copy%s mask%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) -(Unnamed Buffer)(Unnamed Template)(invalid UTF-8 string)(none)1 Layer1 layer<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!About The GIMPActive FiltersAdd Alpha ChannelAdd AnchorAdd ChannelAdd GuidesAdd Horizontal GuideAdd LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to the current selectionAdding theme '%s' (%s) -AdditionAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAffect:Affected Area %sAirbrushAirbrush with variable pressureAlignedAlignmentAll ChannelsAll image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:Anchor Floating SelectionAngle:AntialiasingAppearanceApply Layer MaskApply ThresholdAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?Ask for confirmation before closing an image without saving.Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAuthor:AutoAutoloadAvailable FiltersAvailable Types:BackgroundBackground color set to:Background: %d, %d, %dBase filled area on all visible layersBase selection on all visible layersBehindBevelBlack:BlendBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBorder ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.Brush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtCMYKC_olumns:Calibrate Monitor ResolutionCan't undo %sCancelCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCenter X:CenteredChange Background ColorChange Foreground ColorChange Image ResolutionChange Image UnitChange perspective of the layer or selectionChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel to SelectionChannel:ChannelsChannels MenuChoose Stroke StyleClearClear ChannelClick "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClipped to bottom layerClipped to imageCloneClose this TabColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor balance operates only on RGB color layers.Color:Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColumns:Con_trast:Configure Color Display FiltersConfigure GridConfigure Image GridConfirm Image SizeConfirm Text EditingConnect StrokesConstantConstraintsContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCount:Create New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop or Resize an imageCrop: Crosshair onlyCubic (Best)Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCutCut NamedCyanCyan:DashedDate:Default Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDelete AnchorDelete Layer MaskDelete SegmentDelete TemplateDelete saved options...Delete the selected templateDelete this imageDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogs MenuDifferenceDirect ColorDiscard Text InformationDisplayDisplay NavigationDisplay proceduresDisplaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo you really want to reset all tool options to default values?Document HistoryDocumentsDocuments MenuDodgeDodge or Burn strokesDodge/BurnDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Duplicate the selected templateEEK: can't undoEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Layer AttributesEdit ModeEdit Palette ColorEdit Path AttributesEdit TemplateEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': +%d Layers%d dpi%d dpi, %s%d layers%d minutes%d seconds%d x %d dpi%d x %d dpi, %s%d x %d pixels%g x %g %s%p%s Channel Copy%s Channel to Selection%s Message%s copy%s mask%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) +(Unnamed Buffer)(Unnamed Template)(Varies)(clean)(invalid UTF-8 string)(modified)(none)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program +Copyright (C) 1995-2004 +Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAdaptive supersamplingAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) +AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:Center Y:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview +%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsExpanded as necessaryExport Path to SVGExposure:Extended Input DevicesFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG/BGFG/BG ColorFailed to import paths from '%s': %sFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. +The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d +GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Feather ChannelFeather SelectionFeather selection byFile OperationsFill ChannelFill Opacity:Fill Type %sFill with BG ColorFill with FG ColorFill with PatternFill with TransparencyFill with WhiteFill with a color gradientFill with a color or patternFilledFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip the layer or selectionFlipping...Float SelectionFloating Selection to LayerFloating selectionsFocusFolderFoldersFont FoldersFont UIFontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.ForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground color set to:Foreground: %d, %d, %dFree SelectFreehandFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP is not properly installed for the current user. +GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection +(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. +Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Get Monitor ResolutionGiganticGimprc proceduresGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)Handle position: %0.6fHardnessHardness:HeightHeight:Help BrowserHelp SystemHelp proceduresHex:HighlightsHinting alters the font outline to produce a crisp bitmap at small sizesHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue:HugeI_mageI_nterval:IconIf available, hints from the font are used but you may prefer to always use the automatic hinterIllegal variable name in environment file %s: %sImageImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage maskImage resolution is out of bounds, using the default resolution instead.ImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImported PathIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInput DevicesInput LevelsInsert AnchorInstallation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateInterfaceInternal GIMP procedureInternal ProceduresInterpolation:Intersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Justify:Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.Keyboard ShortcutsLandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer Fill TypeLayer Mask to SelectionLayer SelectLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.LineLine _Style:Line style used for the grid.LinearLoadLoad CurvesLoad LevelsLoading preview ...Location:LogarithmicLooking for data filesLower ChannelLower Channel to BottomLower LayerLower Layer to BottomLower PathLower Path to BottomMagentaMagenta:MagnifyManage Loadable ModulesMask Opacity:Matrix:Max Depth:Maximum color differenceMean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMessage proceduresMessage repeated %d times.Message repeated once.MidtonesMiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModulesMoveMove AnchorsMove ChannelMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove layers & selectionsMove the selected filter downMove the selected filter upMove: MultiplyNavigationNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew Path OptionsNew TemplateNo brushes available for use with this tool.No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selection to stroke.NoneNone (Fastest)NormalNormal (128x128)Not a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOpacityOpacity:Open ImageOpen Text File (UTF-8)Open the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the pattern selection dialogOpening '%s' failed: +To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: -Origin X:Original Width:Other (%s) ...Output LevelsOverlayPDB calling error for procedure '%s': +Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': Argument #%d type mismatch (expected %s, got %s)PDB calling error: -procedure '%s' not foundPack my box with -five dozen liquor jugs.PaintPaint Options Shared Between ToolsPaint Tool proceduresPaint Tool:Paint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:PalettesPalettes MenuParasite proceduresParasitesParsing '%s' -PastePasted LayerPathPath AttributesPath cannot be lowered more.Path cannot be raised higher.Path to SelectionPathsPaths MenuPatternPattern FoldersPattern UIPatternsPatterns MenuPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick colors from the imagePixelsPixels:Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" +procedure '%s' not foundP_atternsPack my box with +five dozen liquor jugs.PaintPaint Options Shared Between ToolsPaint Tool proceduresPaint Tool:Paint _ModePaint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPal_ettesPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:Palette _filePalettesPalettes MenuParasite proceduresParasitesParsing '%s' +PastePaste Buffer _IntoPaste Buffer as _NewPaste Pat_hPaste _IntoPaste as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPathPath AttributesPath Name:Path _ToolPath cannot be lowered more.Path cannot be raised higher.Path is already on the bottom.Path is already on top.Path to Sele_ctionPath to SelectionPath to Selection +%s Add +%s Subtract +%s IntersectPath to selectionPathsPaths MenuPatternPattern FoldersPattern UIPattern fillPattern sourcePatternsPatterns MenuPe_ncilPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick a layer or guidePick a pathPick black pointPick colors from the imagePick gray pointPick onlyPick white pointPixel dimensions:Pixel valuesPixelsPixels:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" (%s) -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPosterizePosterize (Reduce Number of Colors)Posterize does not operate on indexed layers.PreferencesPressure:PreviewPreview is out of datePreviewsProblems parsing the text parasite for layer '%s': +The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': %s -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QueryQuerying new Plug-insQuerying plug-in: '%s' -QuickMaskRGBRGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)R_e-show "%s"RadialRadius:Raise ChannelRaise Channel to TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise this image's displaysRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_peat "%s"Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.Rect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRegisteredReload C_urrent ThemeRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove the selected filter from the list of active filters.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRender StrokeReorder ChannelReorder LayerRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReset Tool OptionsReset the selected filter to default valuesResizeResize ChannelResize ImageResize LayerResize PathResizing...Resolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.ReverseRevertRevert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: +Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' +Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove 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 ColorRotateRotate ChannelRotate LayerRotate PathRotate Text LayerRotate the layer or selectionRotating...Rotation InformationRoundSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave LevelsSave Tool OptionsSave a Copy of the ImageSave changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave levels settings to fileSave options to...Save the positions and sizes of the main dialogs when the GIMP exits.Saved OptionsSaving '%s' +%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' Saving '%s' failed: -%sScaleScale ChannelScale ImageScale LayerScale PathScale the layer or selectionScalingScaling...ScissorsScreenScript-Fu FoldersScriptsSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Environment FoldersSelect Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Primary Color to ModifySelect Range to ModifySelect Script-Fu FoldersSelect SourceSelect ThemeSelect Theme FoldersSelect Zoom RatioSelect by ColorSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect rectangular regionsSelect regions by colorSelect shapes from imageSelect the number of times +%sSaving ImagesSawtooth waveScalable SVG image (*.svg)ScaleScale ChannelScale ImageScale LayerScale PathScale Text LayerScale imageScale itemScale ratio X:Scale ratio Y:Scale ratio:Scale the layer or selectionScalingScaling informationScaling the image to the choosen size will make it use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).Scaling the image to the choosen size will shrink some layers completely away.Scaling...ScissorsScreenScript-Fu FoldersScriptsScroll DownScroll Down (Alt)Scroll Down (Control + Alt)Scroll Down (Control)Scroll Down (Shift + Alt)Scroll Down (Shift + Control + Alt)Scroll Down (Shift + Control)Scroll Down (Shift)Scroll LeftScroll Left (Alt)Scroll Left (Control + Alt)Scroll Left (Control)Scroll Left (Shift + Alt)Scroll Left (Shift + Control + Alt)Scroll Left (Shift + Control)Scroll Left (Shift)Scroll RightScroll Right (Alt)Scroll Right (Control + Alt)Scroll Right (Control)Scroll Right (Shift + Alt)Scroll Right (Shift + Control + Alt)Scroll Right (Shift + Control)Scroll Right (Shift)Scroll UpScroll Up (Alt)Scroll Up (Control + Alt)Scroll Up (Control)Scroll Up (Shift + Alt)Scroll Up (Shift + Control + Alt)Scroll Up (Shift + Control)Scroll Up (Shift)SelectSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Controller Event ActionSelect Environment FoldersSelect File _Type (%s)Select Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Primary Color to ModifySelect Range to ModifySelect Script-Fu FoldersSelect SourceSelect Swap FolderSelect Temp FolderSelect ThemeSelect Theme FoldersSelect Zoom RatioSelect _Bottom LayerSelect _Custom Color...Select _Next LayerSelect _Previous LayerSelect _Top LayerSelect allSelect by ColorSelect contiguous regionsSelect custom canvas padding colorSelect elliptical regionsSelect hand-drawn regionsSelect noneSelect palette fileSelect rectangular regionsSelect regions by colorSelect shapes from imageSelect swap dirSelect the number of times to replicate the selected segment.Select the number of times to replicate the selection.Select the number of uniform parts in which to split the segments in the selection.Select the number of uniform parts -in which to split the selected segment.SelectionSelection EditorSelection MaskSelection Tool proceduresSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet Image Canvas SizeSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.ShadowsShapeShape:SharpenSharpen ChannelSharpen SelectionShearShear the layer or selectionShearing InformationShearing...Show S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow memory usageShow tip next time GIMP startsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink from image borderShrink selection bySizeSize:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSolidSourceSpacingSpacing:Special FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStd Dev:StipplesStroke PathStroke SelectionSubtractSubtract from the current selectionSupersamplingTemplatesTemplates MenuTemporary ProcedureTextText ColorText LayerText proceduresThe GIMPThe active brush. +in which to split the selected segment.Select transparent areasSelect web browserSelecti_on to PathSelectionSelection EditorSelection Editor MenuSelection MaskSelection Tool proceduresSelection maskSelection to Path (_Advanced)Selection to pathSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet ColormapSet Custom Canvas Padding ColorSet Image Canvas SizeSet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSet OpacitySet background colorSet foreground colorSet item linkedSet layer modeSet layer opacitySet preserve transSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the monitor's horizontal resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the monitor's vertical resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the pixel format of cursors the GIMP will use.Sets the preview size used for layers and channel previews in newly created dialogs.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can not create thumbnails if layer previews are disabled.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.Shadow typeShadowsShapeShape:Shaped (angular)Shaped (dimpled)Shaped (spherical)SharpenSharpen ChannelSharpen SelectionShearShear magnitude X:Shear magnitude Y:Shear the layer or selectionShearing InformationShearing...Short dashesShortcutShow Layer MaskShow R_ulersShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _SelectionShow _brush outlineShow _foreground & background colorShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _brush, pattern & gradientShow active _imageShow gri_dShow help _buttonsShow image sizeShow interactive boundaryShow memory usageShow menu _mnemonics (access keys)Show paint _tool cursorShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink _WrapShrink from image borderShrink selection byShrink wrapSizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSn_ap to GuidesSna_p to GridSoft lightSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:Spherical (_decreasing)Spherical (i_ncreasing)Spikes:Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' +State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStock IDStro_ke PathStro_ke Path...Stroke ChannelStroke PathStroke SelectionStroke lineStroke pathStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...Stroke with a paint toolStyle of bevel around the statusbar textSubtractSubtract from the current selectionSupersamplingSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' +TextText ColorText EditorText LayerText modifiedText proceduresThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The active brush. Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The filename '%s' couldn't be converted to a valid URI: +Click to open the Gradient Dialog.The active image. +Click to open the Image Dialog.The active pattern. +Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. +Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: -You can edit the layer or create a new text layer from its text attributes.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTilt:TinyTitle & StatusTool OptionsTool Options MenuTool Toggle %sToolbox MenuToolsTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Tool proceduresTransformationTransforming...Translation byTransparencyTrue ColorTypeType %sUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").UndefinedUndoUndo HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse all visible layers when shrinking the selectionUser Installation LogUser InterfaceValueValue:Version %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Web BrowserWhen enabled the dialog automatically follows the image you are working on.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWidthWidth:Window ManagementWindow PositionsWriting '%s' -XCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format +%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. + +You can edit the layer or create a new text layer from its text attributes.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s + +Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.This window has %d tabs open. Closing the window will also close all its tabs.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo edit a shortcut key, click on the corresponding row and type a new accelerator, or press backspace to clear.To_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: +%sUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _dynamic keyboard shortcutsUse _web browser insteadUse all visible layers when shrinking the selectionUse black and white (1-bit) paletteUse color from gradientUse custom paletteUse info windowUse web-optimized paletteUser Installation LogUser InterfaceUtility windowValueValue:Vectors modVersion %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListView as gridView as listVisual class:Visual depth:Warning: Failed to load data: + +%sWarning: Failed to save data: + +%sWeb BrowserWeb browserWelcome to +The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, dialogs will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' +XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format did not save indexed colormaps correctly. -Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_Brush_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Pattern_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: HEAD +Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-01-20 19:30+0900 +POT-Creation-Date: 2005-04-22 03:29+0900 +PO-Revision-Date: 2005-04-26 22:15+0200 Last-Translator: Dongsu Jang Language-Team: Korean MIME-Version: 1.0 @@ -193,6 +382,8 @@ 사용법: %s [선택사항 ... ] [파일 ... ] + --batch-interpreter <프로시져> + 일괄처리 명령을 처리할 프로시져. --debug-handlers 디버깅을 위한 시그널 처리기 사용. --display 지정된 X display 사용. --dump-gimprc 기본 설정으로 gimprc 파일 출력. @@ -214,53 +405,72 @@ -i, --no-interface 사용자 인터페이스없이 실행. -s, --no-splash 시작 창을 표시 안함. -v, --version 버전 정보 출력. -%d 레이어%d 레이어%d x %d 픽셀%g x %g %s채널 %s 복사채널 %s을(를) 선택으로%s 메시지%s 복사%s 마스크%s%s클릭: 선택 확장%s%s끌기: 이동 & 압축(%0.3f, %0.3f, %0.3f)(없음)(10초 후에 이 콘솔 창을 닫습니다) -(이름없는 버퍼)(이름없는 템플릿)(잘못된 UTF-8 문자열)(없음)1 레이어1 레이어<%s><<부적합>><모듈 없음>김프가 최적의 성능을 발휘하려면, 몇가지 설정을 조절해야 합니다.김프 팁 파일을 해석할 수 없습니다!김프 팁 파일이 없습니다!김프 정보활성 필터알파 채널 더하기고정점 더하기채널 더하기안내선 더하기가로 안내선 더하기레이어 더하기레이어 마스크 더하기경로 더하기획 더하기텍스트 레이어 더하기새로 안내선 더하기레이어에 마스크 더하기이미지에 텍스트 더하기현재 색상을 색상 이력에 더하기선택한 필터를 활성 필터 목록에 더하기.현재 선택에 더하기테마 '%s' (%s) 더하기 -더하기명도 대비 조절색상 균형 조절색상 곡선 조절색상 레벨 조절명도와 대비를 조절합니다색상 균형 조정색상 곡선 조절색상 레벨 조절색상(Hue)과 채도(Saturation) 조절레벨 자동 조절조절영향:영향을 받는 영역 %s에어브러시압력 감지 에어브러시정렬됨정렬모든 채널타일 캐시에 맞지 않는 모든 이미지와 취소 데이터는 스왑 파일에 기록합니다. 이 파일은 공간이 충분한(수 백 MB) 로컬 유닉스 파일시스템에 위치해야하며, 보통은 시스템 전역 임시 디렉토리("/tmp"나 "/var/tmp")를 사용하면 됩니다.완전 투명 영역 채우기 허용완전히 투명한 영역을 선택할 수 있음알파알파를 선택으로알파:떠있는 선택 고정각도:부드럽게 하기외양레이어 마스크 적용임계값 적용정말 '%s'을(를) 목록과 디스크에서 지웁니까?정말 템플릿 '%s'을(를) 목록과 디스크에서 지웁니까?이미지를 저장하지 않고 닫을 때 다시 확인합니다.기생 덧붙이기이미지에 기생 덧붙이기항목에 기생 덧붙이기작성:자동자동으로 읽기가용한 필터가용한 유형:배경배경색 지정:배경: %d, %d, %d모든 보이는 레이어에서 기본 채움 영역모든 보이는 레이어에서 기본 선택뒤로비스듬하게(Bevel)검정색:혼합혼합: 혼합: 인덱스된 이미지에는 사용할 수 없습니다.혼합 중...파랑파랑:흐릿하게흐릿하게 혹은 선명하게채널 경계선테두리 선택테두리 선택 량명도-대비명도-대비는 인덱스된 레이어에 동작하지 않습니다.브러시 편집기브러시 폴더브러시 UI브러시:브러시브러시 메뉴영역 채우기버퍼버퍼 메뉴태우기정확하게(Butt)CMYK열(_O):모니터 해상도 측정%s을(를) 취소할 수 없습니다취소지정한 레이어와 크기가 다른 레이어 마크스를 더할 수 없습니다.알파 채널이 없는 레이어에는 레이어 마스크를 더할 수 없습니다.이미지의 일부가 아닌 레이어에는 레이어 마스크를 더할 수 없습니다.떠있는 선택이 아니므로, 레이어를 고정할 수 없습니다.256색 이상을 가진 색상표로 변환할 수 없습니다.레이어 마스크나 채널에 속해 있는 떠있는 선택은 새 레이어로 만들 수 없습니다.폴더 '%s'을(를) 만들 수 없습니다: %s미리보기를 만들 수 없습니다선택이 비어있으므로, 잘라낼 수 없습니다.${%s}을(를) 확장할 수 없습니다.선택된 영역이 비어있으므로, 띄울 수 없습니다.알파가 없는 레이어를 올릴 수 없습니다.저장할 수 없습니다. 선택한 것이 없습니다.빈 채널에는 따라 그리기를 할 수 없습니다.빈 경로를 따라 그릴 수 없습니다.캔버스 크기X 중앙:중앙 정렬배경색 바꾸기전경색 바꾸기이미지 해상도 바꾸기이미지 단위 바꾸기레이어나 선택의 원근법 바꾸기채널채널 속성채널 이름:채널을 더 아래로 내릴 수 없습니다.채널을 더 위로 올릴 수 없습니다.채널을 선택으로채널:채널채널 메뉴따라 그리기 형식깨끗이채널 지움위의 설정을 사용하려면 "계속"을 누르십시오.사용자 김프 폴더를 만들려면 "계속"을 누르십시오.김프 사용자 설치를 시작하려면 "계속"을 누르십시오.클릭으로 이 고정점을 선택한 끝 점과 연결하십시오.클릭으로 새 고정점을 만드십시오. (SHIFT도 해보십시오)클릭으로 경로의 새 구성 요소를 만드십시오.클릭으로 새 경로를 만드십시오.클릭으로 이 고정점을 지우십시오.클릭으로 경로에 새 고정점을 삽입하십시오. (SHIFT도 해보십시오)클릭으로 이 노드를 뾰족하게 만드십시오.클릭으로 경로를 시작하십시오.클릭으로 편집할 경로를 선택하십시오.미리보기를 갱신하려면 누르세요 -%s 미리보기가 최신이더라도 강제로 갱신하려면 누르세요클릭-끌기로 고선의 모양을 바꾸십시오. (SHIFT: 대칭)클릭-끌기로 고정점을 주위로 이동하십시오.클릭-끌기로 여러 고정점을 주위로 이동하십시오.클릭-끌기로 구성 요소를 주위로 이동하십시오. (SHIFT도 해보십시오)클릭-끌기로 조절점을 주위로 이동하십시오. (SHIFT도 해보십시오)클릭-끌기로 경로를 주위로 이동하십시오.클릭: 선택클릭: 선택 끌기: 이동맨 아래 레이어에 맞게 절단이미지에 맞게 절단도장이 탭 닫기색상색상 균형화면 색상 표시 필터색상 추출색상 추출 정보색상 균형은 RGB 색상 레이어에만 동작합니다.색상:구획의 배색 유형(_T)선택의 배색 유형(_T)컬러화(Colorize)컬러화는 RGB 색상 레이어에서만 동작합니다.이미지 컬러화이미지 컬러화(Colorize)색상표열:대비(_T):화면 색상 표시 필터 설정모눈 설정이미지 모눈 설정이미지 크기 확인텍스트 편집 확인획 연결상수제약 조건상황에 맞는 커서는 멋진 기능입니다. 기본으로 선택되어 있지만, 성능을 감소 시킵니다.계속공헌한 사람들변환모서리 변환이미지를 그레이스케일로 변환이미지를 인덱스된 색상으로 변환이미지를 인덱스된 색상으로 변환이미지를 RGB로 변환흐리게 선명하게컨벌브 유형 %s이름붙여 복사파일 '%s'을(를) '%s'(으)로부터 복사하고 있습니다...저작권:그라디언트 파일 '%2$s'의 %1$d번째 조각이 손상되었습니다.'%s'을(를) 만들 수 없습니다: %s임시 파일 '%s' 만들기 실패: %s'%s'을(를) 지울 수 없습니다: %s읽기 모드로 '%s'을(를) 열 수 없습니다. %s'%s'을(를) 쓰기 모드로 열기 실패: %s썸네일 '%s' 열기 실패: %s%d바이트를 '%s'에서 읽을 수 없습니다: %sXCF 파일 탐색 오류: %s총계:새 템플릿 만들기새 이미지 만들기새 레이어 만들기새 템플릿 만들기이 이미지를 새 창으로 보여주기선택한 템플릿에서 새 이미지 만들기새 템플릿 만들기이미지나 사진을 만들고 편집합니다경로를 만들고 편집합니다폴더 '%s'을(를) 만들고 있습니다...자르기자르기 & 크기 바꾸기자르기 & 크기 바꾸기 정보이미지 자르기레이어 자르기이미지를 자르거나 크기를 바꿉니다자르기: 십자형3차곡선 (품질위주)곡선 종류:곡선곡선 조절은 인덱스된 색상 레이어에서 동작하지 않습니다.사용자잘라내기이름붙여 잘라내기청록색청록색:파선날짜:전체 화면 상태의 기본 모양보통 상태의 기본 모양기본 모눈기본 이미지 모눈:고정점 지우기레이어 마스크 지우기구획 지우기템플릿 지우기저장된 선택사항 지우기...선택한 템플릿 지우기이 이미지 지우기무채화무채화는 RGB 색상 레이어에서만 동작합니다.설명디자인장치 상태장치:대화상자 메뉴차이점직접 색상텍스 정보 버리기표시화면 표시 네비게이션Display 프로시져표시 중 [%0.6f, %0.6f]분해거리:거리: %0.6f디더링나누기정말 모든 도구 선택사항을 기본 값으로 초기화 하겠습니까?문서 이력문서문서 메뉴피하기피하기 또는 태우기 따라 그리기피하기/태우기고정점 끌기여러 고정점 끌기곡선 끌기조절점 끌기경로 끌기끌기: 이동잉크로 그리기DrawableDrawable 프로시져새 레이어 끌어서-놓기새 경로 끌어서-놓기글꼴이 없으므로, 텍스 기능은 사용할 수 없습니다.선택한 템플릿 복제헉! 실행 취소할 수 없습니다편집채널 속성 편집채널 색상 편집색상표 항목 편집레이어 속성 편집편집 모드색상표 색상 편집경로 속성 편집템플릿 편집프로시져 편집선택한 템플릿 편집타원 선택빈 채널빈 레이어빈 경로빈 텍스트 레이어환경 파일 %s에 빈 변수 이름이 있습니다.시작할 때 간단한 김프 팁을 보여줍니다.풍선도움말을 보여줍니다.더 거대하게합친 색상표의 이름을 입력하십시오.저장된 선택사항의 이름을 입력하십시오버퍼의 이름을 입력하십시오템플릿의 이름을 입력하십시오저장된 선택사항의 새 이름을 입력하십시오환경환경 폴더평탄화균등화는 인덱스된 레이어에서 동작하지 않습니다.배경색 또는 투명하게 지우기지우개오류 콘솔오류 콘솔 메뉴XCF 파일 저장 오류: %s'%s'의 %d행 해석 오류: %s'%s' 읽기 오류: %s'%s' 쓰기 오류: %sXCF 쓰기 오류: %s파일 '%s' 쓰기 오류: +%d 레이어%d dpi%d dpi, %s%d 레이어%d 분%d 초%d x %d dpi%d x %d dpi, %s%d x %d 픽셀%g x %g %s%p채널 %s 복사채널 %s을(를) 선택으로%s 메시지%s 복사%s 마스크%s%s클릭: 선택 확장%s%s끌기: 이동 & 압축(%0.3f, %0.3f, %0.3f)(없음)(10초 후에 이 콘솔 창을 닫습니다) +(이름없는 버퍼)(이름없는 템플릿)(다양)(깨끗)(잘못된 UTF-8 문자열)(변경됨)(없음)1 레이어1 레이어15도 %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D 변형...4:1 (400%)8:1 (800%)<%s><<부적합>><모듈 없음>김프가 최적의 성능을 발휘하려면, 몇가지 설정을 조절해야 합니다.The GIMP - GNU Image Manipulation Program +Copyright (C) 1995-2004 +Spencer Kimball, Peter Mattis and the GIMP Development Team.김프 팁 파일을 해석할 수 없습니다!김프 팁 파일이 없습니다!이름이 '%s'인 파일이 이미 존재합니다.선택에 더하기(_D)각도(_N)김프 정보액션포커스된 이미지 활성화(_F)활성 필터적응형 슈퍼샘플링더하기알파 채널 더하기(_H)알파 채널 더하기고정점 더하기채널 더하기색상을 색상표에 더하기(_A)안내선 더하기안내선 더하기가로 안내선 더하기레이어 마스크 더하기(_Y)...레이어 더하기레이어 마스크 더하기경로 더하기획 더하기텍스트 레이어 더하기새로 안내선 더하기레이어에 마스크 더하기배경에서 색상 더하기전경에서 색상 더하기레이어 마스크 더하기이미지에 텍스트 더하기현재 색상을 색상 이력에 더하기선택한 필터를 활성 필터 목록에 더하기.색상표에 더하기 %s현재 선택에 더하기테마 '%s' (%s) 더하기 +더하기추가적인 입력 제어기명도 대비 조절색상 균형 조절색상 곡선 조절색상 레벨 조절명도와 대비를 조절합니다색상 균형 조정색상 곡선 조절색상 레벨 조절색상 / 명도 / 채도 조절색상(Hue)과 채도(Saturation) 조절레벨 자동 조절조절고급 선택사항영향:영향을 받는 영역 %s에어브러시압력 감지 에어브러시알파를 선택으로(_P)정렬됨정렬모든 채널모든 파일모든 파일 (*.*)타일 캐시에 맞지 않는 모든 이미지와 취소 데이터는 스왑 파일에 기록합니다. 이 파일은 공간이 충분한(수 백 MB) 로컬 유닉스 파일시스템에 위치해야하며, 보통은 시스템 전역 임시 디렉토리("/tmp"나 "/var/tmp")를 사용하면 됩니다.완전 투명 영역 채우기 허용완전히 투명한 영역을 선택할 수 있음확대 허용 %s알파알파를 선택으로알파:선택한 크기의 이미지는 기본 설정 대화 상자에서 설정한 "최대 이미지 크기"(현재 %s)보다 많은 메모리를 요구합니다.에니메이션(_I)떠있는 선택 고정떠있는 레이어 고정떠있는 선택 고정각도:지우기 복구 %s부드럽게 하기외양레이어 마스크 적용레이어 마스크 적용(_M)임계값 적용레이어 마스크 적용정말 '%s'을(를) 목록과 디스크에서 지웁니까?정말 템플릿 '%s'을(를) 목록과 디스크에서 지웁니까?기본 설정을 따름(_P)이미지를 저장하지 않고 닫을 때 다시 확인합니다.종횡비:종횡비:기생 덧붙이기이미지에 기생 덧붙이기항목에 기생 덧붙이기기생 덧붙이기작성:자동자동으로 현재 이미지 따라가기(_F)자동 줄이기선택 자동 줄임확대시 창 크기 조정자동으로 읽기자동 감지가용한 필터가용한 유형:배경색으로 채우기명도-대비(_R)...버퍼(_U)배경배경색배경색 지정:배경색: %d, %d, %d후진 (교정)모든 보이는 레이어에서 기본 채움 영역모든 보이는 레이어에서 기본 선택뒤로비스듬하게(Bevel)중복 선형흑백검정색:끝점의 색상 혼합(_N)혼합(_D)혼합끝점의 불투명도 혼합(_Y)혼합: 혼합: 인덱스된 이미지에는 사용할 수 없습니다.혼합 중...파랑파랑:흐릿하게흐릿하게 혹은 선명하게테두리(_R)...채널 경계선테두리 선택테두리 선택 량명도-대비명도-대비는 인덱스된 레이어에 동작하지 않습니다.브러시브러시 편집기브러시 폴더브러시 UI브러시:브러시브러시 메뉴영역 채우기버퍼버퍼 메뉴태우기정확하게(Butt)확장자로이미지를 디스크에 있는 상태로 복원하면, 실행 취소 정보를 포함해서, 모든 바꾼 내용을 잃게 됩니다.CMYK측정(_A)...색상 추출(_O)열(_O):결합(_O)모니터 해상도 측정%s을(를) 취소할 수 없습니다캔버스 크기(_V)...취소안내선 취소지정한 레이어와 크기가 다른 레이어 마크스를 더할 수 없습니다.알파 채널이 없는 레이어에는 레이어 마스크를 더할 수 없습니다.이미지의 일부가 아닌 레이어에는 레이어 마스크를 더할 수 없습니다.떠있는 선택이 아니므로, 레이어를 고정할 수 없습니다.256색 이상을 가진 색상표로 변환할 수 없습니다.레이어 마스크나 채널에 속해 있는 떠있는 선택은 새 레이어로 만들 수 없습니다.폴더 '%s'을(를) 만들 수 없습니다: %s미리보기를 만들 수 없습니다선택이 비어있으므로, 잘라낼 수 없습니다.${%s}을(를) 확장할 수 없습니다.선택된 영역이 비어있으므로, 띄울 수 없습니다.알파가 없는 레이어를 올릴 수 없습니다.저장할 수 없습니다. 선택한 것이 없습니다.빈 채널에는 따라 그리기를 할 수 없습니다.빈 경로를 따라 그릴 수 없습니다.캔버스 크기캔버스 메우기 방법(_P):X 중앙:X 중앙:중앙 정렬배경색 바꾸기색상표 항목 바꾸기전경색 바꾸기이미지 해상도 바꾸기이미지 단위 바꾸기인쇄 크기 바꾸기현재 레이어나 경로 바꾸기모눈의 배경색 바꾸기모눈의 전경색 바꾸기인덱스된 색상표 바꾸기레이어나 선택의 원근법 바꾸기단축키 변경 실패.채널채널 속성채널 이름:채널을 더 아래로 내릴 수 없습니다.채널을 더 위로 올릴 수 없습니다.채널 색상채널은 이미 맨 아래에 있습니다.채널은 이미 맨 위에 있습니다.채널을 선택으로(_C)채널을 선택으로채널을 선택으로채널:채널채널 메뉴격자 크기(_S):따라 그리기 형태원지우기(_E)지우기채널 지움실행 취소 이력모든 텍스트 지우기오류 지우기실행 취소 이력...위의 설정을 사용하려면 "계속"을 누르십시오.사용자 김프 폴더를 만들려면 "계속"을 누르십시오.김프 사용자 설치를 시작하려면 "계속"을 누르십시오.김프 사용자 설치를 시작하려면 "계속"을 누르십시오.클릭으로 이 고정점을 선택한 끝 점과 연결하십시오.클릭으로 새 고정점을 만드십시오. (SHIFT도 해보십시오)클릭으로 경로의 새 구성 요소를 만드십시오.클릭으로 새 경로를 만드십시오.누르면 미리보기를 만듭니다.클릭으로 이 고정점을 지우십시오.클릭으로 경로에 새 고정점을 삽입하십시오. (SHIFT도 해보십시오)클릭으로 이 노드를 뾰족하게 만드십시오.클릭으로 경로를 시작하십시오.클릭으로 편집할 경로를 선택하십시오.미리보기를 갱신하려면 누르세요 +%s 미리보기가 최신이더라도 강제로 갱신하려면 누르세요클릭-끌기로 고선의 모양을 바꾸십시오. (SHIFT: 대칭)클릭-끌기로 고정점을 주위로 이동하십시오.클릭-끌기로 여러 고정점을 주위로 이동하십시오.클릭-끌기로 구성 요소를 주위로 이동하십시오. (SHIFT도 해보십시오)클릭-끌기로 조절점을 주위로 이동하십시오. (SHIFT도 해보십시오)클릭-끌기로 경로를 주위로 이동하십시오.클릭: 선택클릭: 선택 끌기: 이동결과 절단클립보드맨 아래 레이어에 맞게 절단이미지에 맞게 절단도장%s을(를) 닫습니까?모든 탭 닫기모든 탭을 닫을까요?이 탭 닫기경로 복사(_P)색상(_R)색상색상 균형화면 색상 표시 필터색상 추출색상 추출 정보색상 균형(_B)...색상 디더링(_D):색상 균형은 RGB 색상 레이어에만 동작합니다.색상 지우기색상 색인:색상:색상표(_M)색상공간(_S):컬러화(_Z)...구획의 배색 유형(_T)선택의 배색 유형(_T)컬러화(Colorize)컬러화는 RGB 색상 레이어에서만 동작합니다.이미지 컬러화이미지 컬러화(Colorize)색상표색상표 편집기색상표 메뉴열:설명(_N):설명대비(_T):컨벌브(_V)화면 색상 표시 필터 설정확장 입력 장치 설정(_X)...모눈 설정(_R)...모눈 설정이미지 모눈 설정키보드 단축키 설정키보드 단축키 설정(_K)...선택한 필터 설정선택한 필터 설정: %s이미지 크기 확인배율 조정 확인텍스트 편집 확인저장안한 이미지를 닫을 때 확인(_V)단축키 충돌원뿔형 (비대칭)원뿔형 (대칭)획 연결상수제약 조건문맥상황에 맞는 커서는 멋진 기능입니다. 기본으로 선택되어 있지만, 성능을 감소 시킵니다.계속공헌한 사람들변환모서리 변환이미지를 그레이스케일로 변환이미지를 인덱스된 색상으로 변환이미지를 인덱스된 색상으로 변환이미지를 RGB로 변환이미지 변환이미지를 인덱스된 색상으로 변환(2단계)...이미지를 인덱스된 색상으로 변환(3단계)...이미지를 인덱스된 색상으로 변환...흐리게 선명하게컨벌브 유형 %s이름붙여 복사보이는대로 복사(_V)파일 '%s'을(를) '%s'(으)로부터 복사하고 있습니다...저작권:그라디언트 파일 '%2$s'의 %1$d번째 조각이 손상되었습니다.'%s'을(를) 만들 수 없습니다: %s임시 파일 '%s' 만들기 실패: %s'%s'을(를) 지울 수 없습니다: %s김프 도움말 브라우저를 찾을 수 없습니다.읽기 모드로 '%s'을(를) 열 수 없습니다. %s'%s'을(를) 쓰기 모드로 열기 실패: %s썸네일 '%s' 열기 실패: %s%d바이트를 '%s'에서 읽을 수 없습니다: %sXCF 파일 탐색 오류: %s김프 도움말 브라우저 플러그인을 시작할 수 없습니다.총계:레이어 자르기(_O)새 독 만들기(_K)새 템플릿 만들기새 이미지 만들기새 레이어 만들기새 템플릿 만들기이 이미지를 새 창으로 보여주기선택한 템플릿에서 새 이미지 만들기새 템플릿 만들기이미지나 사진을 만들고 편집합니다경로를 만들고 편집합니다텍스트에서 경로 만들기경로에서 선택 만들기미리보기 만드는 중 ...폴더 '%s'을(를) 만들고 있습니다...자르기자르기 & 크기 바꾸기자르기 & 크기 바꾸기 정보이미지 자르기레이어 자르기이미지 자르기이미지를 자르거나 크기를 바꿉니다자르기: 십자형잘라내기(_T)이름붙여 잘라내기(_T)...3차곡선 (품질위주)현재 상태(_S)현재 높이:현재 레이어만현재 상태현재 너비:커서커서 모드(_M):커서 렌더링(_N):곡선 유형곡선곡선 조절은 인덱스된 색상 레이어에서 동작하지 않습니다.사용자사용자 색상사용자 그라디언트사용자 메우기 색상(_A):잘라내기이름붙여 잘라내기청록색청록색:브러시 복제(_U)채널 복제(_U)그라디언트 복제(_U)레이어 복제(_U)색상표 복제(_U)경로 복제(_U)무늬 복제(_U)템플릿 복제(_U)...격자의 어두운 색상어둡게만이점 쇄선...일점 쇄선...파선 무늬:파선 견본:파선날짜:디버그전체 화면 상태의 기본 모양보통 상태의 기본 모양기본 모눈기본 이미지 모눈:기본 보간법(_I):기본 레이어와 채널 미리보기 크기(_L):기본 임계값(_Threshold):고정점 지우기고정점 지우기레이어 마스크 지우기(_K)레이어 마스크 지우기객체 지우기구획 지우기템플릿 지우기브러시 지우기채널 지우기색상 지우기그라디언트 지우기레이어 지우기레이어 마스크 지우기색상표 지우기경로 지우기무늬 지우기저장된 선택사항 지우기...선택한 버퍼를 지우기선택한 템플릿 지우기이 이미지 지우기벡터 지우기"%s" 삭제 실패: %s조밀한 점선무채화무채화는 RGB 색상 레이어에서만 동작합니다.설명디자인장치 상태장치:대화상자대화상자 메뉴마름모차이점직접 색상레이어 마스크 사용안함퀵마스크 사용 안함텍스트 정보 버리기표시화면 표시 네비게이션화면 표시 필터(_F)...Display 프로시져화면 표시 형식:표시 중 [%0.6f, %0.6f]분해거리:거리: %0.6f디더링나누기깨끗한 사용자 설치(_F)정말 모든 필터를 기본 값으로 초기화 하겠습니까?정말 모든 도구 선택사항을 기본 값으로 초기화 하겠습니까?지금 저장하는 이미지로 바꾸기를 원하십니까?저장 안함(_N)Dockable문서 이력(_Y)문서 이력문서문서 메뉴피하기/태우기(_G)피하기피하기 또는 태우기 따라 그리기피하기/태우기이점쇄선고정점 끌기여러 고정점 끌기곡선 끌기조절점 끌기경로 끌기끌기: 이동잉크로 그리기DrawableDrawable 모드Drawable 프로시져새 레이어 끌어서-놓기새 경로 끌어서-놓기글꼴이 없으므로, 텍스 기능은 사용할 수 없습니다.이 제어기의 이벤트 덤프브러시 복제채널 복제그라디언트 복제레이어 복제색상표 복제경로 복제무늬 복제선택한 템플릿 복제헉! 실행 취소할 수 없습니다경로 내보내기(_X)...더 작게(_X)모서리 동작경계선 검출(_T)편집채널 속성 편집채널 색상 편집색상표 항목 편집색상표 항목 편집레이어 속성 편집레이어 마스크 더하기편집 모드색상표 색상 편집경로 속성 편집퀵마스크 속성 편집퀵마스크 색상 편집템플릿 편집브러시 편집채널 속성 편집색상 편집색상표 항목 편집 항목 #%d그라디언트 편집레이어 속성 편집색상표 편집경로 속성 편집무늬 편집프로시져 편집선택한 템플릿 편집타원 선택빈 채널빈 레이어빈 경로빈 텍스트 레이어환경 파일 %s에 빈 변수 이름이 있습니다.강화(_H)퀵마스크 사용투명도를 디더링해서 표현(_T)이 제어기 사용함시작할 때 간단한 김프 팁을 보여줍니다.풍선도움말을 보여줍니다.더 거대하게합친 색상표의 이름을 입력하십시오.저장된 선택사항의 이름을 입력하십시오버퍼의 이름을 입력하십시오템플릿의 이름을 입력하십시오저장된 선택사항의 새 이름을 입력하십시오위치 입력(URI):환경환경 폴더평탄화균등화는 인덱스된 레이어에서 동작하지 않습니다.배경색 또는 투명색으로 지우기지우개오류 콘솔(_N)오류 콘솔오류 콘솔 메뉴XCF 파일 저장 오류: %s'%s'의 %d행 해석 오류: %s'%s' 읽기 오류: %s브러시 파일 '%s' 읽기 오류: %s'%s' 쓰기 오류: %sXCF 쓰기 오류: %s파일 '%s' 쓰기 오류: %s'%s' 쓰기 오류: %s임시 파일 '%s'에 쓰기 실패: %s 아무 파일도 만들어 지지 않았습니다.임시 파일 '%s' 쓰기 오류: %s -원래 파일은 바뀌지 않았습니다.오류필요에 따라 확장SVG로 경로 내보내기노출:확장 입력 장치전경색을 배경색으로 (HSV 시계방향 색상)전경색을 배경색으로 (HSV 시계반대방향)전경을 배경으로 (HSV)전경을 배경으로 (RGB)전경색을 투명하게전경/배경전경/배경색'%s'에서 경로를 들여올 수 없습니다: %s브러시 파일 '%s'에 치명적인 해석 오류: 파일이 잘린 것 같습니다. 브러시 파일 '%s'에 치명적인 해석 오류: 파일 손상된 것 같습니다.브러시 파일 '%s'에 치명적인 해석 오류: 김프 브러시 파일이 아닙니다.브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 김프 브러시 버전.브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 심도 %d.브러시 파일 '%s'에 쳐명적인 해석 오류: 알 수 없는 버전 %d. 브러시 파일 '%s'에 치명적인 해석 오류: 지원되지 않는 심도 %d - 김프 브러시는 GRAY나 RGBA여야 합니다.그라디언트 파일 '%s'에 치명적인 해석 오류: 파일이 손상되었습니다.그라디언트 파일 '%s'에 치명적인 해석 오류: 김프 그라디언트 파일이 아닙니다.무늬 파일 '%s'에 치명적인 해석 오류: 매직 헤더가 없습니다.색상표 파일 '%s'에 치명적 해석 오류: 매직 해더가 없습니다. +원래 파일은 바뀌지 않았습니다.오류이벤트더 크게(_T)필요에 따라 확장경로를 SVG로 내보내기이 이미지의 모든 경로를 내보내기현재 경로 내보내기노출:확장 입력 장치확장자전경색으로 채우기전경색을 배경색으로 (HSV 시계방향 색상)전경색을 배경색으로 (HSV 시계반대방향)전경을 배경으로 (HSV)전경을 배경으로 (RGB)전경색을 투명하게전경을 투명으로전경/배경전경/배경색FS 관대함FS 엄격함FS를 레이어으로캔버스를 레이어에 맞추기(_I)패이드 아웃'%s'에서 그라디언트를 들여올 수 없습니다: %s'%s'에서 경로를 들여올 수 없습니다: %s깜찍하게 브러시 파일 '%s'에 치명적인 해석 오류: 크기 = 0.브러시 파일 '%s'에 치명적인 해석 오류: 파일이 잘린 것 같습니다. 브러시 파일 '%s'에 치명적인 해석 오류: 파일 손상된 것 같습니다. 브러시 파일 '%s'에 치명적인 해석 오류: 높이 = 0.브러시 파일 '%s'에 치명적인 해석 오류: 김프 브러시 파일이 아닙니다.브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 김프 브러시 모양.브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 김프 브러시 버전.브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 심도 %d.브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 버전 %d. 브러시 파일 '%s'에 치명적인 해석 오류: 지원되지 않는 심도 %d + 김프 브러시는 GRAY나 RGBA여야 합니다.브러시 파일 '%s'에 치명적인 해석 오류: 너비 = 0.그라디언트 파일 '%s'에 치명적인 해석 오류: 파일이 손상되었습니다.그라디언트 파일 '%s'에 치명적인 해석 오류: 김프 그라디언트 파일이 아닙니다.무늬 파일 '%s'에 치명적인 해석 오류: 매직 헤더가 없습니다.색상표 파일 '%s'에 치명적 해석 오류: 매직 해더가 없습니다. 이 파일을 DOS 형식에서 변환할 필요가 있습니까?색상표 파일 '%s'에 치명적 해석 오류: %d번째 줄에서 읽기 오류.무늬 파일 '%s'에 치명적인 해석 오류: %d 바이트를 읽을 수 없습니다: %s무늬 파일 '%s'에 치명적인 해석 오류: 알 수 없는 무늬 형식 버전 %d.무늬 파일 '%s'에 치명적인 해석 오류: 지원하지 않는 심도 %d. -김프 무늬는 GRAY나 RGB여야 합니다.채널 페더선택 페더선택 페더 량파일 동작채널 채우기불투명 채우기:채우기 유형 %s배경색으로 채우기전경색으로 채우기무늬로 채우기투명하게 채우기흰색으로 채우기그라디언트로 채우기색상이나 무늬로 채우기채움합쳐진 마지막 레이어는 다음과 같아야 합니다:연속된 영역 찾기비슷한 색상 찾기이미지 배경으로 합치기뒤집기채널 뒤집기레이어 뒤집기경로 뒤집기텍스트 레이어 뒤집기뒤집기 유형 %s레이어 혹은 선택 뒤집기뒤집기...선택 띄우기떠있는 선택을 레이어으로떠있는 선택초점폴더폴더글꼴 폴더글꼴 UI글꼴글꼴 메뉴김프를 제대로 설치하려면, '%s'라는 폴더를 만들어야 합니다.전경전경색과 배경색. 작은 검정색과 흰색의 정사각형들은 전경색과 배경색을 초기화 합니다. 화살표는 전경색과 배경색을 맞바꿉니다. 색 선택 대화상자를 열려면 더블 클릭 하십시오.전경색 지정:전경: %d, %d, %d자유 선택자유롭게퍼지 선택김프김프 확장김프 메시지김프 성능 세부 조정김프 플러그인김프 시작김프 텍스트 편집기오늘의 김프 팁김프 사용자 설치김프가 그래픽 사용자 인터페이스를 초기화 하지 못했습니다. -출력 환경이 제대로 설정되어 있는지 확인하십시오.김프가 현재 사용자에 맞게 설치되지 않았습니다. +김프 무늬는 GRAY나 RGB여야 합니다.페더(_T)...채널 페더선택 페더가장자리 페더선택 페더 량파일파일 열기 대화상자(_D)파일 동작파일 유형파일이 존재합니다파일이 잘렸습니다채널 채우기채우기 불투명도:채우기 유형 %s비슷한 색상 채우기투명한 영역 채우기전체 선택 채우기배경색으로 채우기배경색으로 채우기(_G)전경색으로 채우기무늬로 채우기(_A)무늬로 채우기투명하게 채우기흰색으로 채우기전경색으로 채우기(_F)배경색으로 채움(_B)그라디언트로 채우기색상이나 무늬로 채우기채움필터(_R)합쳐진 마지막 레이어는 다음과 같아야 합니다:연속된 영역 찾기비슷한 색상 찾기이미지를 창에 맞춤이미지를 창 안에 맞춤이미지를 창에 맞춤창에 맞게고정된 종횡비고정된 크기이미지 합치기뒤집기채널 뒤집기레이어 뒤집기경로 뒤집기텍스트 레이어 뒤집기뒤집기 유형 %s가로로 뒤집기(_H)세로로 뒤집기(_V)이미지 뒤집기레이어 혹은 선택 뒤집기뒤집기...뒤집기...선택 띄우기선택 띄우기떠있는 레이어떠있는 선택 +(%s)떠있는 선택을 레이어으로떠있는 선택을 레이어으로떠있는 선택Folyd-Steinberg (표준)Folyd-Steinberg (색상 번짐 감소)포커스폴더폴더글꼴 폴더글꼴 UI글꼴:글꼴글꼴 메뉴김프를 제대로 설치하려면, '%s'라는 폴더를 만들어야 합니다.항상 자동-힌팅 사용전경전경색과 배경색. 작은 검정색과 흰색의 정사각형들은 전경색과 배경색을 초기화 합니다. 화살표는 전경색과 배경색을 맞바꿉니다. 색 선택 대화상자를 열려면 더블 클릭 하십시오.전경색전경색 지정:전경색: %d, %d, %d전진 (전통적)경로에서(_O)자유 선택자유 선택자유롭게테마에서(_T)윈도 시스템의 해상도 얻기(현재 %d x %d dpi)왼쪽에서 오른쪽으로오른쪽에서 왼쪽으로선택에서테마에서퍼지 선택(_Z)전체 화면(_E)퍼지 선택김프김프 확장김프 메시지김프 성능 세부 조정김프 플러그인김프 시작김프 텍스트 편집기오늘의 김프 팁김프 사용자 설치김프 XCF 이미지김프가 그래픽 사용자 인터페이스를 초기화 하지 못했습니다. +출력 환경이 제대로 설정되어 있는지 확인하십시오.김프 도움말 브라우저김프가 현재 사용자에 맞게 설치되지 않았습니다. '--no-interface' 플래그 때문에 사용자 설치를 건너뛰었습니다. -사용자 설치를 하려면 '--no-interface' 플래그 없이 김프를 실행하십시오.김프는 이미지 데이터를 저장하기 위해 "타일 캐시"를 통해 제한된 양의 메모리만 사용합니다. 메모리에 맞게 이 크기를 조절해 주십시오. 실행하고 있는 다른 프로그램이 쓸 메모리도 고려하십시오.김프는 부가적인 gtkrc 파일을 사용하므로 다른 GTK 어플리케이션과 다르게 보이도록 설정 할 수 있습니다.김프 버전이미지를 만들 때 여기에 지정된 크기 이상의 메모리를 요구하면 김프가 사용자에게 경고를 합니다.감마일반보통 8비트 출력 장치에만 적용되며, 김프가 할당할 시스템 색상 수를 지정합니다.모니터 해상도 얻기아주 거대하게Gimprc 프로시져그라디언트 편집기그라디언트 편집기 메뉴그라디언트 폴더그라디언트 구획의 왼쪽 끝점 색상그라디언트 구획의 오른쪽 끝점 색상그라디언트 UI그라디언트:그라디언트그라디언트 메뉴회색그레이스케일초록초록:모눈채널 늘이기선택 늘이기선택 증가 량안내선안내선과 모눈으로 당겨 맞추기안내선 프로시져HSVHSV (%0.3f, %0.3f, %0.3f)조절점 위치: %0.6f경도경도:높이높이:도움말 브라우저도움말 시스템도움말 프로시져16진수:강조힌팅은 글꼴 윤곽을 변형하여 작은 크기에서 깔끔한 비트맵을 만듭니다.히스토그램히스토그램 배율이력가로첫 모눈 선의 가로 위치; 이 값은 음수여도 됩니다.모눈 선의 가로 간격.파일 메뉴에 유지할 최근에 열었던 이미지 파일 이름의 갯수를 지정하십시오.색상색상-채도색상-채도는 RGB 색상 레이어에서만 동작합니다.색상:거대하게이미지(_M)간격(_N):아이콘가능하다면, 글꼴의 힌트가 사용되지만 항상 자동 힌팅을 사용할 수 있습니다.환경 파일 %s에 부적절한 변수 이름 %s이(가) 있습니다.이미지이미지 정보이미지 메뉴이미지 크기이미지 상태표시줄 형식이미지 템플릿이미지 제목과 상태표시줄 형식이미지 제목 형식이미지 창 모양이미지 창이미지 마스크이미지 해상도가 범위를 넘었으므로, 기본 해상도를 대신 사용합니다.이미지이미지 메뉴가져오기 선택사항색상표 가져오기경로 가져오기SVG에서 경로 가져오기새 색상표 가져오기경로 가져오기마스크 만전(_V)증가들여쓰기:첫 줄 들여쓰기색인:인덱스됨인덱스된 색상인덱스된 색상 변환정보 창레이어 마스크를 초기화 합니다:플러그인 초기화 중플러그인 초기화 중: "%s" -잉크입력 장치입력 레벨고정점 삽입설치 실패. 시스템 관리자에게 문의하십시오.설치 성공. 계속하려면 "계속"을 누르십시오.즉시 갱신인터페이스김프 내부 프로시져내부 프로시져보간:현재 선택과 교차하기교차 (십자가)교차 (점)잘못된 UTF-8파일 '%s'에 잘못된 UTF-8 데이터가 있습니다.XCF 파일에 잘못된 UTF-8 문자열이 있습니다.브러시 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다.그라디언트 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다.색상표 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다.무늬 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다.URI의 글자 배열이 잘못되었습니다너비나 높이가 잘못되었습니다. 둘 다 양수여야 합니다.반전채널 반전선택 반전반전은 인덱스된 레이어에서 동작하지 않습니다.정렬:김프는 단축키를 동적으로 재정의할 수 있습니다. 사용자가 설정한 것을 다음 세션에도 쓸 수 있도록 menurc에 저장합니다. 이 파일을 직접 편집해도 되지만, 김프를 사용하는 것이 더 쉽습니다. 이 파일을 지우면 기본 단축키로 복원됩니다.키보드 단축키가로 방향크게크게 (256x256)더 큰 미리보기마지막 오류:레이어레이어 '%s'에는 알파가 없습니다. 레이어를 그 위에 놓았습니다.레이어 속성레이어 채우기 유형/레이어 마스크를 선택으로레이어 선택레이어 이름(_N):레이어를 더 아래로 내릴 수 없습니다.레이어를 더 위로 올릴 수 없습니다.레이어가 이미 맨 아래에 있습니다.레이어는 이미 맨 위에 있습니다.레이어를 이미지 크기에 맞추기레이어레이어 메뉴레이어 합치기 선택사항왼쪽 끝점 색상길이:김프를 시작할 때 최근 저장된 세션을 복원합니다.레벨레벨 조절은 인덱스된 레이어에서 동작하지 않습니다.선형선 형태(_S):모눈이 사용할 선 형태.선형읽기곡선 읽기레벨 읽기미리보기 읽는 중 ...위치:대수데이타 파일을 찾는 중채널 내리기채널을 맨 아래로 내리기레이어 내리기레이어를 맨 아래로 내리기경로 내리기경로를 맨 아래로 내리기자홍색자홍색:확대필요에 따라 읽어올 모듈을 관리합니다마스크 불투명도:행렬:최대 깊이:최대 색상 차이평균:측정거리와 각도를 측정거리와 각도를 측정중간:중간아래로 합치기레이어 합치기색상표 합치기보이는 레이어 합치기보이는 경로 합치기메시지 프로시져메시지를 %d번 반복합니다.메시지를 한 번 반복합니다.중간톤기타뾰족하게(Miter)모드모드:선택한 색상 변경선택한 범위의 색상 레벨을 변경합니다.모든 색상 변경줄 간격 고치기모듈 폴더모듈 관리기모듈이동여러 고정점 이동채널 이동안내선 이동레이어 이동레이어 마스크 이동경로 이동선택 이동레이어 선택 이동선택한 필터를 아래로 이동선택한 필터를 위로 이동이동: 곱하기네비게이션새 채널새 채널 색상새 채널 선택사항새 이미지새 레이어새 경로새 경로 선택사항새 템플릿이 도구에 맞는 브러시가 없습니다.더 이상 가용하지 않음'%s'에서 경로를 찾을 수 없습니다버퍼에서 경로를 찾을 수 없습니다이 작업을 할 수 있는 무늬가 없습니다.따라 그리기할 선택이 없습니다.없음안함 (속도위주)보통보통 (128x128)비정상적인 파일입니다합치려면 두 개 이상의 보이는 레이어가 필요합니다.합치려면 두 개 이상의 보이는 경로가 필요합니다.옵셋채널 상대 위치옵셋 Drawable레이어 상대 위치레이어 마스크 상대 위치옵셋:디스크에만프로세서가 여러개인 시스템에서, 김프를 --enable-mp를 사용해서 컴파일 했다면 김프가 동시에 사용할 CPU 수를 지정합니다.메모리에만불투명불투명:이미지 열기텍스트 파일 열기 (UTF-8)브러시 선택 대화상자 표시글꼴 선택 대화상자 표시그라디언트 대화상자 표시무늬 대화상자 표시'%s' 열기 실패: +사용자 설치를 하려면 '--no-interface' 플래그 없이 김프를 실행하십시오.김프는 이미지 데이터를 저장하기 위해 "타일 캐시"를 통해 제한된 양의 메모리만 사용합니다. 메모리에 맞게 이 크기를 조절해 주십시오. 실행하고 있는 다른 프로그램이 쓸 메모리도 고려하십시오.김프는 부가적인 gtkrc 파일을 사용하므로 다른 GTK 어플리케이션과 다르게 보이도록 설정 할 수 있습니다.김프 버전이미지를 만들 때 여기에 지정된 크기 이상의 메모리를 요구하면 김프가 사용자에게 경고를 합니다.감마일반보통 8비트 출력 장치에만 적용되며, 김프가 할당할 시스템 색상 수를 지정합니다.최적 색상표 생성모니터 해상도 얻기아주 거대하게Gimprc 프로시져유리 효과(_S)그라디언트그라디언트 편집기그라디언트 편집기 메뉴그라디언트 폴더그라디언트 구획의 왼쪽 끝점 색상그라디언트 구획의 오른쪽 끝점 색상그라디언트 UI그라디언트 파일 '%s'이(가) 손상되었습니다: 세그먼트가 0-1 범위에 있지 않습니다.그라디언트:그라디언트그라디언트 메뉴질감 드러내기질감 합치기회색그레이스케일초록초록:모눈모눈 줄 간격채널 늘이기선택 늘이기선택 증가 량안내선안내선과 모눈으로 당겨 맞추기안내선 프로시져HSVHSV (%0.3f, %0.3f, %0.3f)HSV (시계반대방향 색상)(_C)HSV (시계방향 색상)(_H)HTML 형식:높이(_E):사용할 도움말 브라우저(_E):조절점 위치: %0.6f가장자리 딱딱하게강한 조명경도경도:높이높이:도움말도움말 브라우저도움말 시스템도움말 브라우저를 시작할 수 없습니다도움말 브라우저를 찾을 수 없습니다도움말 프로시져16진수:강조독(Dock)의 창 유형 힌트(_D):도구상자의 창 유형 힌트(_T):힌팅힌팅은 글꼴 윤곽을 변형하여 작은 크기에서 깔끔한 비트맵을 만듭니다.히스토그램(_M)히스토그램히스토그램 배율이력가로첫 모눈 선의 가로 위치; 이 값은 음수여도 됩니다.모눈 선의 가로 간격.파일 메뉴에 유지할 최근에 열었던 이미지 파일 이름의 갯수를 지정하십시오.색상색상-채도색상-채도는 RGB 색상 레이어에서만 동작합니다.색상-채도(_S)...색상:거대하게아이콘과 글자(_C)이미지(_M)경로 가져오기(_M)...보간(_N):간격(_N):아이콘아이콘 & 설명아이콘 & 글자가능하다면, 글꼴의 힌트가 사용되지만 항상 자동 힌팅을 사용할 수 있습니다.선택하면, 이동 도구는 레이어나 경로를 선택할 때 활성 레이어나 경로를 바꿉니다. 예전 버전에서는 기본 동작이었습니다.이미지를 저정하지 않으면, 마지막 %s 부터의 바뀐내용을 잃게 됩니다.지금 김프를 마치면, 이 내용들을 잃게 됩니다.환경 파일 %s에 부적절한 변수 이름 %s이(가) 있습니다.이미지이미지 + 모눈색상표 편집기이미지 정보이미지 메뉴이미지 크기이미지 상태표시줄 형식이미지 템플릿이미지 마스크이미지 제목과 상태표시줄 형식이미지 제목 형식이미지 창 모양이미지 창이미지에 보이는 레이어가 없습니다이미지 파일이미지 마스크이미지 해상도가 범위를 넘었으므로, 기본 해상도를 대신 사용합니다.이미지 크기이미지 소스이미지 유형이미지이미지 메뉴가져오기 선택사항색상표 가져오기경로 가져오기SVG에서 경로 가져오기새 색상표 가져오기색상표 가져오기경로 가져오기경로 가져오기잉크(_K)반전(_V)마스크 만전(_V)증가들여쓰기:첫 줄 들여쓰기색인:인덱스됨인덱스된 색상인덱스된 색상 변환인덱스된 색상 레이어는 보간없이 크기를 조정합니다. 선택한 보간법은 채널과 마스크에만 적용됩니다.정보 창초기 확대 배율(_R):레이어 마스크를 초기화 합니다:플러그인 초기화 중플러그인 초기화 중: "%s" +잉크인라인 pixbuf입력 제어기입력 장치입력 레벨고정점 삽입사설 컬러맵을 설치하십시오; 8비트(256색) 디스플레이에 유용합니다.설치 실패. 시스템 관리자에게 문의하십시오.설치 성공. 계속하려면 "계속"을 누르십시오.즉시 갱신똑똑한 가위(_S)강도: %0.3f 불투명도: %0.3f인터페이스김프 내부 프로시져내부 프로시져보간:교집합현재 선택과 교차하기교차 (십자가)교차 (점)잘못된 UTF-8파일 '%s'에 잘못된 UTF-8 데이터가 있습니다.XCF 파일에 잘못된 UTF-8 문자열이 있습니다.브러시 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다.그라디언트 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다.색상표 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다.무늬 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다.URI의 글자 배열이 잘못되었습니다잘못된 단축키.너비나 높이가 잘못되었습니다. 둘 다 양수여야 합니다.반전채널 반전선택 반전반전은 인덱스된 레이어에서 동작하지 않습니다.선택 반전정말 이거 맞아요?김프 2.0을 이전에 사용했던 것 같습니다.항목 등록 정보항목 표시 여부정렬:투명도 유지위에 유지종횡비 유지 %s종횡비 유지 %s높이 유지 %s투명도 유지너비 유지 %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)김프는 단축키를 동적으로 재정의할 수 있습니다. 사용자가 설정한 것을 다음 세션에도 쓸 수 있도록 menurc에 저장합니다. 이 파일을 직접 편집해도 되지만, 김프를 사용하는 것이 더 쉽습니다. 이 파일을 지우면 기본 단축키로 복원됩니다.키보드키보드 이벤트키보드 단축키LTR왼쪽 끝점의 색상(_E)...가로 방향크게크게 (256x256)더 큰 미리보기마지막 오류:레이어레이어 '%s'에는 알파가 없습니다. 레이어를 그 위에 놓았습니다.레이어 속성레이어 경계 크기(_O)...레이어 채우기 유형레이어 마스크를 선택으로레이어 선택레이어 크기레이어 모드(_M)레이어 이름(_N):레이어를 더 아래로 내릴 수 없습니다.레이어를 더 위로 올릴 수 없습니다.레이어가 이미 맨 아래에 있습니다.레이어는 이미 맨 위에 있습니다.레이어를 이미지 크기에 맞추기레이어를 맨 아래로(_B)레이어를 이미지 크기에 맞추기(_I)레이어를 맨 위로(_T)레이어의 알파 채널(_A)레이어레이어 메뉴레이어 합치기 선택사항왼쪽 끝점 색상왼쪽 정렬길이:김프를 시작할 때 최근 저장된 세션을 복원합니다.레벨레벨 조절은 인덱스된 레이어에서 동작하지 않습니다.격자의 밝은 색상밝게만선형줄 +간격:선 너비:선 형태(_S):모눈이 사용할 선 형태.선형연결된 항목읽기곡선 읽기레벨 읽기오른쪽 색상 불러오기(_O)곡선 설정을 파일에서 읽음레벨 설정을 파일에서 읽음파일에서 텍스트 읽기미리보기 읽는 중 ...위치:대수긴 파선데이타 파일을 찾는 중채널 내리기채널을 맨 아래로 내리기채널을 맨 아래로 내리기(_B)레이어 내리기레이어를 맨 아래로 내리기경로 내리기경로를 맨 아래로 내리기경로를 맨 아래로 내리기(_B)채널 내리기채널을 맨 아래로 내리기레이어 내리기레이어를 맨 아래로 내리기경로 내리기경로를 맨 아래로 내리기확대(_A)마스터(_A)화면으로 이동(_O)...지도(_P)자홍색자홍색:확대투명으로 만듦(_T)필요에 따라 읽어올 모듈을 관리합니다선택 점선 속도(_A):마스크 불투명도:선택한 영역 마스크(_S)선택안한 영역 마스크(_U)행렬:최대 깊이:썸네일을 위한 최대 파일 크기(_F):새 이미지 최대 크기(_N):최대 색상 차이최대 실행 취소 메모리(_M):평균:측정거리와 각도를 측정거리와 각도를 측정실제로 측정한 눈금자를 길이를 입력하십시오:중간:중간보통 파선아래로 합치기(_W)아래로 합치기레이어 합치기색상표 합치기보이는 레이어 합치기보이는 경로 합치기보이는 레이어 합치기(_L)...보이는 레이어 합치기(_V)...보이는 경로 합치기(_V)레이어 합치기색상표 합치기벡터 합치기메시지 프로시져메시지를 %d번 반복합니다.메시지를 한 번 반복합니다.메시지를 stderr로 보냅니다.중간톤사용자 설정 옮겨오기최소 실행 취소 횟수(_U):기타뾰족하게(Miter)모드모드:선택한 색상 변경선택한 범위의 색상 레벨을 변경합니다.모든 색상 변경줄 간격 고치기모듈 폴더모듈 관리기모듈 경로모듈마우스 커서Mouse WheelMouse Wheel Events이동여러 고정점 이동채널 이동떠있는 선택 이동안내선 이동안내선 이동레이어 이동레이어 마스크 이동경로 이동선택 이동텍스트 레이어 이동이동 도구항목 이동레이어 & 선택 이동선택 이동현재 레이어 이동현재 경로 이동선택한 필터를 아래로 이동선택한 필터를 위로 이동화면으로 이동...이동: 곱하기색상 수(_U):네비게이션(_V)네비게이션 창(_V)네비게이터 미리보기 크기(_V):이름이름:네비게이션새 채널새 채널 색상새 채널 선택사항배경에서 새 색상(_B)전경에서 새 색상(_F)새 이미지새 레이어새 경로새 경로 선택사항새 템플릿새 브러시새 채널최근 값으로 새 채널 만들기새 채널...배경에서 새 색상전경에서 새 색상새 그라디언트새로 가져오기새 레이어최근 값으로 새 레이어새 레이어...새 색상표최근 값으로 새 경로새 경로...새 무늬새 벡터이 도구에 맞는 브러시가 없습니다.선택한 필터 없음'%s'에서 선형 그라디언트를 찾을 수 없습니다더 이상 가용하지 않음'%s'에서 경로를 찾을 수 없습니다버퍼에서 경로를 찾을 수 없습니다이 작업을 할 수 있는 무늬가 없습니다.선택 없음따라 그리기할 선택이 없습니다.썸네일 없음정렬 안됨없음안함 (속도위주)보통보통 (128x128)보통 점선보통 창비정상적인 파일입니다합치려면 두 개 이상의 보이는 레이어가 필요합니다.합치려면 두 개 이상의 보이는 경로가 필요합니다.사용할 프로세서 갯수(_P):모눈 줄 수레이어 수:기타(_T)...옵셋채널 상대 위치옵셋 Drawable레이어 상대 위치레이어 마스크 상대 위치(x/_2),(y/2) 만큼의 옵셋옵셋:디스크에만프로세서가 여러개인 시스템에서, 김프를 --enable-mp를 사용해서 컴파일 했다면 김프가 동시에 사용할 CPU 수를 지정합니다.메모리에만레이어로 열기(_E)...불투명불투명:열기이미지 열기이미지를 레이어로 열기위치 열기텍스트 파일 열기 (UTF-8)위치 열기(_L)...최근 파일 열기(_R)이미지 열기 대화상자브러시 선택 대화상자 표시글꼴 선택 대화상자 표시그라디언트 대화상자 표시색상표 선택 대화상자 표시무늬 대화상자 표시선택된 항목 열기'%s' 열기 실패: %s'%s' 열기 실패: %s선택사항: -시작 X:원래 너비:기타 (%s) ...출력 레벨씌우기프로시져 '%s'의 PDB 호출 오류: +시작 X:시작 Y:원래 너비:기타 (%s) ...아웃라인출력 레벨씌우기프로시져 '%s'의 PDB 호출 오류: 인자 #%d 형이 일치하지 않습니다 (%s이(가) 맞지만, %s입니다)PDB 호출 오류: -프로시져 '%s'을(를) 찾을 수 없습니다.Pack my box with +프로시져 '%s'을(를) 찾을 수 없습니다.무늬(_A)Pack my box with five dozen liquor jugs 무궁화 꽃이 피었습니다. -아름답고 고운 우리 말 우리 글!페인트그리기 도구 공통 선택사항 그리기 도구 프로시져그리기 도구:퍼지 브러시 따라 그리기가장자리가 딱딱한 픽셀로 그리기무늬나 이미지 영역을 사용하여 칠하기페인트브러시색상표색상표 편집기색상표 편집기 메뉴색상표 폴더색상표 UI색상표 이름(_N):색상표색상표 메뉴기생(Parasite) 프로시져기생'%s' 해석 중 -붙여 넣기붙여 넣은 레이어경로경로 속성경로를 더 아래로 내릴 수 없습니다.경로를 더 위로 올릴 수 없습니다.경로를 선택으로경로경로 메뉴무늬무늬 폴더무늬 UI무늬무늬 메뉴연필브러시 너비의 백분율백분율:사용자 김프 폴더원근법원근법 변형 정보원근법...추출 모드 %s이미지에서 색상 추출픽셀픽셀:사용자 김프 폴더를 만드는 중입니다. 잠시만 기다려 주십시오...잠시만 기다려 주십시오...플러그인플러그인 환경플러그인 폴더플러그인이 이미지를 열 수 없습니다플러그인이 이미지를 저장할 수 없습니다플러그인 비정상 종료: "%s" +아름답고 고운 우리 말 우리 글!페인트그리기 도구 공통 선택사항 그리기 도구 프로시져그리기 도구:칠하기 모드(_M)퍼지 브러시 따라 그리기가장자리가 딱딱한 픽셀로 그리기무늬나 이미지 영역을 사용하여 칠하기페인트브러시색상표(_E)색상표색상표 편집기색상표 편집기 메뉴색상표 폴더색상표 UI색상표 이름(_N):색상표 파일(_F)색상표색상표 메뉴기생(Parasite) 프로시져기생'%s' 해석 중 +붙여 넣기버퍼를 달리 붙여 넣기(_I)버퍼를 새 이미지로 붙여 넣기(_N)경로 붙여 넣기(_H)다르게 붙여 넣기(_I)새로 붙여 넣기(_N)선택한 버퍼를 붙여 넣기선택한 버퍼를 새 이미지로 붙여 넣기선택한 버퍼를 선택으로 붙여 넣기붙여 넣은 레이어경로경로 속성경로 이름:경로 도구(_T)경로를 더 아래로 내릴 수 없습니다.경로를 더 위로 올릴 수 없습니다.경로가 이미 맨 아래에 있습니다.경로는 이미 맨 위에 있습니다.경로를 선택으로(_C)경로를 선택으로경로를 선택으로 +%s 더하기 +%s 빼기 +%s 교차하기경로를 선택으로경로경로 메뉴무늬무늬 폴더무늬 UI무늬로 채우기무늬 소스무늬무늬 메뉴연필(_N)연필브러시 너비의 백분율백분율:사용자 김프 폴더원근법원근법 변형 정보원근법...추출 모드 %s레이어나 안내선 고르기경로 고르기검정색 점 고르기이미지에서 색상 추출회색 점 고르기추출만흰색 점 고르기픽셀 크기:픽셀 값픽셀픽셀:메뉴 XML 파일이 제대로 설치되었는지 확인하십시오.사용자 김프 폴더를 만드는 중입니다. 잠시만 기다려 주십시오...잠시만 기다려 주십시오...플러그인플러그인 환경플러그인 폴더플러그인이 이미지를 열 수 없습니다플러그인이 이미지를 저장할 수 없습니다플러그인 비정상 종료: "%s" (%s) 비정상 종료한 플러그인이 김프의 내부 상태에 영향을 주었을 수 있습니다. -이미지를 저장하고 김프를 재시작하는 것이 안전합니다.플러그인이 SUCCESS를 반환했지만 아무런 이미지도 반환되지 않았습니다.플러그인플러그인플러그인과 확장은 김프가 부가적인 기능을 제공하기 위해 실행하는 외부 프로그램입니다. 이 프로그램들은 실행 중에 기능에 대한 정보와 수정 시각을 파일에 캐싱합니다. 이 파일은 김프가 읽기 위한 것이며, 편집하면 안됩니다.다각형세로 방향위치: %0.6f포스터화포스터화(색상 수 줄이기)포스터화는 인덱스된 레이어에서 동작하지 않습니다.기본 설정압력:미리보기오래된 미리보기 입니다.미리보기레이어 '%s'의 텍스트 기생(parasite) 해석 오류: +이미지를 저장하고 김프를 재시작하는 것이 안전합니다.플러그인이 SUCCESS를 반환했지만 아무런 이미지도 반환되지 않았습니다.플러그인플러그인플러그인과 확장은 김프가 부가적인 기능을 제공하기 위해 실행하는 외부 프로그램입니다. 이 프로그램들은 실행 중에 기능에 대한 정보와 수정 시각을 파일에 캐싱합니다. 이 파일은 김프가 읽기 위한 것이며, 편집하면 안됩니다.다각형세로 방향위치: %0.6f위치함포스터화포스터화(색상 수 줄이기)포스터화 단계(_L):포스터화는 인덱스된 레이어에서 동작하지 않습니다.기본 설정명도 유지(_L)압력 감도압력:미리보기오래된 미리보기 입니다.미리보기:미리보기인쇄 크기인쇄 크기:레이어 '%s'의 텍스트 기생(parasite) 해석 오류: %s -일분 텍스트 등록정보가 틀릴 수 있습니다. 텍스트 레이어를 수정하지 않는다면, 이 문제에 대해 걱정할 필요가 없습니다.절차 데이터베이스프로시져 데이터베이스진행의사 색상목적:질의새 플러그인 조회 중플러그인 조회 중: '%s' -퀵마스크RGBRGB (%d, %d, %d)RGB 색상RGB-비었음RGBA (%0.3f, %0.3f, %0.3f, %0.3f)"%s" 다시 표시원형반경:채널 올리기채널을 맨 위로 올리기레이어 올리기레이어를 맨 위로 올리기경로 올리기경로를 맨 위로 올리기이 이미지의 디스플레이를 올리기비율감도:마지막 다시 표시선택의 중점을 다시 가운데로(_C)구획의 중점을 다시 가운데로(_C)구획의 조절점 재배치(_H)선택의 조절점 재배치(_H)"%s" 반복(_P):색상표 파일 '%s' 읽는 중: %d번째 줄에 GREEN 성분이 없습니다.색상표 파일 '%s' 읽는 중: %d번째 줄의 열의 갯수가 잘못되었니다. 기본 값을 사용합니다.색상표 파일 '%s' 읽는 중: %d번째 줄에 BLUE 성분이 없습니다.색상표 파일 '%s' 읽는 중: %d번째 줄에 RED 성분이 없습니다.색상표 파일 '%s' 읽는 중: %d번째 줄의 RGB값이 범위를 벗어났습니다.사각 선택빨강빨강:재실행이미지의 색상을 고정된 수로 줄이기이미지를 임계값을 기준으로 두 개의 색상으로 줄입니다등록됨현재 테마 다시 불러오기(_U)현재 도구, 무늬, 색상, 브러시를 김프 세션 간에 기억합니다.원격 이미지채널 지우기안내선 지우기레이어 지우기이미지에서 기생 지우기항목의 기생 지우기경로 지우기선택한 필터를 현재 필터 목록에서 지우기.채널 이름 바꾸기레이어 이름 바꾸기경로 이름 바꾸기저장된 선택사항 이름 바꾸기따라 그리기 Render채널 순서 조정레이어 순서 조정마지막 반복반복:현재 선택 바꾸기복제그라디언트 구획 복제그라디언트 선택 복제구획 복제선택 복제도구 선택사항 초기화선택한 필터를 기본 값으로 초기화크기조정채널 크기 조정이미지 크기 조정레이어 크기 바꾸기경로 크기 조정크기 바꾸는 중...해상도:자원 소비량자원 설정선택사항 복원...김프를 시작할 때 저장된 키보드 단축키를 복원합니다.반대로원래대로이미지 원상 복구원상 복구 실패. 이 이미지와 연관된 파일 이름이 없습니다.'%s' 원상 복구 실패: +일분 텍스트 등록정보가 틀릴 수 있습니다. 텍스트 레이어를 수정하지 않는다면, 이 문제에 대해 걱정할 필요가 없습니다.절차 데이터베이스프로시져 데이터베이스진행의사 색상목적:품질질의새 플러그인 조회 중플러그인 조회 중: '%s' +퀵마스크 불러오기퀵마스크퀵마스크 속성퀵마스크 메뉴퀵마스크 저장퀵마스크김프를 마치겠습니까?RGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB 색상RGB-비었음RGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTL"%s" 다시 표시도구 선택사항 초기화(_E)채널 초기화(_E)색상 초기화(_E)범위 초기화(_E)오른쪽 끝점의 색상(_I)...원형반경:채널 올리기채널을 맨 위로 올리기채널을 맨 위로 올리기(_T)레이어 올리기레이어를 맨 위로 올리기경로 올리기경로를 맨 위로 올리기경로를 맨 위로 올리기(_T)채널 올리기채널을 맨 위로 올리기레이어 올리기레이어를 맨 위로 올리기경로 올리기경로를 맨 위로 올리기이 이미지의 디스플레이를 올리기이미 열려 있으면 창을 올리기비율감도:마지막 다시 표시선택의 중점을 다시 가운데로(_C)구획의 중점을 다시 가운데로(_C)구획의 조절점 재배치(_H)선택의 조절점 재배치(_H)선택사항 이름 바꾸기(_N)"%s" 반복(_P):원래대로(_V)...색상표 파일 '%s' 읽는 중: %d번째 줄에 GREEN 성분이 없습니다.색상표 파일 '%s' 읽는 중: %d번째 줄의 열의 갯수가 잘못되었니다. 기본 값을 사용합니다.색상표 파일 '%s' 읽는 중: %d번째 줄에 BLUE 성분이 없습니다.색상표 파일 '%s' 읽는 중: %d번째 줄에 RED 성분이 없습니다.색상표 파일 '%s' 읽는 중: %d번째 줄의 RGB값이 범위를 벗어났습니다.준비정말로 이미지의 실행 취소 이력을 지우겠습니까?단축키를 새로 할당하면 "%s"에서 지워집니다.미리보기 다시 만들기(_P)미리보기 다시 만들기(_P)사각 선택빨강빨강:재실행이미지의 색상을 고정된 수로 줄이기이미지를 임계값을 기준으로 두 개의 색상으로 줄입니다브러시 새로 고치기그라디언트 새로 고치기색상표 다시 읽기무늬 새로 고치기등록됨현재 테마 다시 불러오기(_U)모든 미리보기 다시 읽기(_A)모든 미리보기 다시 읽기(_A)현재 도구, 무늬, 색상, 브러시를 김프 세션 간에 기억합니다.원격 이미지채널 지우기원본이 없는 항목 지우기(_N)떠있는 선택 지우기안내선 지우기레이어 지우기이미지에서 기생 지우기항목의 기생 지우기경로 지우기항목 지우기(_E)원본이 없는 항목 지우기떠있는 선택 지우기항목 지우기기생 지우기선택된 항목 지우기선택한 필터를 현재 필터 목록에서 지우기.단축키를 지우지 못했습니다.채널 이름 바꾸기레이어 이름 바꾸기경로 이름 바꾸기저장된 선택사항 이름 바꾸기텍스트 레이어 이름 바꾸기항목 이름 바꾸기따라 그리기 Render채널 순서 조정레이어 순서 조정경로 순서 조정마지막 반복반복:현재 선택 바꾸기복제그라디언트 구획 복제그라디언트 선택 복제구획 복제선택 복제채널 위치 조정레이어 위치 조정벡터 위치 조정글꼴 목록 새로 고치기도구 선택사항 초기화모든 도구 선택사항 초기화(_A)...모든 필터 초기화모든 필터 초기화(_A)...모든 도구 선택사항 초기화선택한 필터를 기본 값으로 초기화기본 값으로 초기화도구 순서와 표시 여부 초기화크기조정채널 크기 조정이미지 크기 조정레이어 크기 바꾸기경로 크기 조정텍스트 레이어 크기 바꾸기이미지 크기 조정항목 크기 조정확대시 창 크기 조정(_Z)이미지 크기 바꿀 때 창 크기 조정(_S)크기 바꾸는 중...해상도 바꾸기해상도:자원 소비량자원 설정선택사항 복원...김프를 시작할 때 저장된 키보드 단축키를 복원합니다.다각형으로 편집 제한반대로복원'%s'을(를) '%s'(으)로 복원하시겠습니까?이미지 복원복원 실패. 이 이미지와 연관된 파일 이름이 없습니다.'%s' 복원 실패: -%s오른쪽 끝점 색상회전채널 회전레이어 회전경로 회전텍스트 레이어 회전레이어나 선택 회전회전...회전 정보둥글게채도:채도저장'%s'을(를) POV-Ray로 저장곡선 저장파일에 오류 기록 저장이미지 저장레벨 저장도구 선택사항 저장이미지의 사본을 저장김프를 마칠 때 바꾼 키보드 단축키를 저장합니다.곡선 설정을 파일에 저장장치 상태 저장레벨 설정을 파일에 저장선택사항 저장...김프를 마칠 때 주 대화상자의 위치와 크기를 저장합니다.저장된 선택사항'%s' 저장 중 +%s오른쪽 끝점 색상오른쪽 정렬회전시계반대방향으로 90도 회전(_W)시계방향으로 90도 회전(_C)채널 회전레이어 회전경로 회전텍스트 레이어 회전_180도 회전이미지 회전레이어나 선택 회전회전...회전 정보둥글게기울이기(_H)모눈 표시(_H)줄이기(_H)....Spikes(_P)색상 바꾸기(_W)오른쪽 색상 저장(_V)샘플 평균샘플 머지채도:채도저장'%s'을(를) POV-Ray로 저장곡선 저장파일에 오류 기록 저장이미지 저장입력 장치 설정 지금 저장(_N)키보드 단축키 지금 저장(_N)레벨 저장도구 선택사항 저장창 위치 지금 저장(_N)모든 오류를 파일에 저장(_A)...선택을 파일에 저장(_S)...다른 이름으로 저장(_A)...사본 저장(_Y)...이미지의 사본을 저장모든 오류 저장_POV-Ray로 저장...템플릿으로 저장(_T)...김프를 마칠 때 바꾼 키보드 단축키를 저장합니다.곡선 설정을 파일에 저장장치 상태 저장그라디언트를 POV-Ray로 저장레벨 설정을 파일에 저장선택사항 저장...선택 저장선택을 채널로 저장닫기 전에 이미지 '%s'의 바뀐 점을 저장할까요?김프를 마칠 때 주 대화상자의 위치와 크기를 저장합니다.채널로 저장(_C)저장된 선택사항'%s' 저장 중 '%s' 저장 실패: -%s배율 조정채널 배율 조정이미지 배율 조정레이어 배율 바꾸기경로 배율 조정레이어나 선택 배율 조정크기 조정배율 조정 중...가위화면Script-Fu 폴더스크립트전체 선택브러시 폴더 선택색상으로 선택색상 선택환경 폴더 선택글꼴 폴더 선택그라디언트 폴더 선택모듈 폴더 선택선택 없음색상표 폴더 선택무늬 폴더 선택플러그인 폴더 선택변경할 원색을 선택하십시오변경할 범위를 선택하십시오Script-Fu 폴더 선택원본 선택테마 선택테마 폴더 선택확대 배율 선택색상으로 선택연속적인 영역 선택타원형으로 영역 선택손으로 그려서 영역 선택사각 영역 선택색상으로 영역 선택이미지에서 모양 선택선택한 구획을 복제하려면 +%s이미지 저장톱니파형크기가 자유로운 SVG 이미지 (*.svg)배율 조정채널 배율 조정이미지 배율 조정레이어 배율 바꾸기경로 배율 조정텍스트 레이어 배율 바꾸기이미지 배율 조정항목 배율 조정확대 비율 X:확대 비율 X:배율 조정 비율:레이어나 선택 배율 조정배율 조정배율 조정 정보이미지를 선택한 크기로 스케일링하면 기본 설정 대화상자에서 설정한 "최대 이미지 크기"(현재 %s)보다 더 많은 메모리를 요구합니다.선택한 크기로 이미지의 배율을 조정하면 일부 레이어는 완전히 없어집니다.배율 조정 중...가위화면Script-Fu 폴더스크립트Scroll 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)선택전체 선택브러시 폴더 선택색상으로 선택색상 선택제어기 이벤트 액션 설정환경 폴더 선택파일 유형 (%s) (_T)글꼴 폴더 선택그라디언트 폴더 선택모듈 폴더 선택선택 없음색상표 폴더 선택무늬 폴더 선택플러그인 폴더 선택변경할 원색을 선택하십시오변경할 범위를 선택하십시오Script-Fu 폴더 선택원본 선택스왑 폴더 선택임시 폴더 선택테마 선택테마 폴더 선택확대 배율 선택맨 아래 레이어 선택(_B)사용자 색상 선택(_C)...다음 레이어 선택(_N)이전 레이어 선택(_P)맨 위 레이어 선택(_T)전체 선택색상으로 선택연속적인 영역 선택사용자 캔버스 메우기 색상 선택타원형으로 영역 선택손으로 그려서 영역 선택선택 없음색상표 파일 선택사각 영역 선택색상으로 영역 선택이미지에서 모양 선택스왑 디렉토리 선택선택한 구획을 복제하려면 복제할 횟수를 선택하십시오.선택을 복제하려면 복제할 횟수를 선택하십시오.선택한 구획을 분할해서 만들 균등한 부분의 수를 선택하십시오.선택한 구획을 분할해서 만들 -균등한 부분의 수를 선택하십시오.선택선택 편집기선택 마스크선택 도구 프로시져선택: 선택: 더하기선택: 교차하기선택: 바꾸기선택: 빼기감도캔버스 채우기 색상 지정채널 색상 지정채널 불투명도 지정캔버스 크기 지정배타적으로 연결된 항목 지정항목을 배타적으로 표시레이어 경계 크기 지정텍스트에서 이름 지정(_T)각 이미지에서 실행 취소를 위해 사용할 메모리의 최대량을 지정하십시오. 이 설정과 무관하게, 최소 실행 취소 횟수로 지정된 만큼의 실행 취소는 할 수 있습니다.도움말 시스템에 사용할 프로그램을 지정하십시오.채우기 방법이 사용자 색상일 때 사용할 캔버스 채우기 색상을 지정하십시오.사용할 외부 웹 브라우저를 지정하십시오. 절대 경로나 사용자의 PATH에서 찾을 수 있는 실행 파일 이름이어야 합니다. 명령이 '%s'을(를) 포함하고 있으면 URL로 대체되고, 그렇지 않으면 명령과 공백으로 분리하여 URL을 덧붙입니다.크기 조정이나 다른 변형에서 사용할 방법(보간법)을 지정하십시오.이미지의 투명도를 표시할 방법을 지정하십시오.실행을 취소할 수 있는 최소 횟수를 지정하십시오. 최대 실행 취소 메모리에 도달하기 전에는 더 많은 실행 취소 횟수를 유지합니다.김프가 사용할 커서 모드를 지정합니다.투명도을 표시할 격자의 크기를 지정하십시오.이미지 창의 우하단에 위치하는 네비게이션 미리보기의 크기를 지정하십시오.실행 취소 이력의 미리보기 크기를 지정하십시오.스왑 파일 위치를 지정하십시오. 김프는 타일 기반의 메모리 할당 정책을 사용합니다. 스왑 파일은 스왑 타일이 신속하고 쉽게 디스크에 저장하거나 불러올 때 사용됩니다. 김프에서 큰 이미지 작업을 하면 스왑 파일이 순식간에 매우 커질 수 있다는 것을 명심하십시오. 또한, NFS에 마운트된 디렉토리에 스왑 파일을 만들게 되면 속도가 엄청나게 느려질 수 있습니다. 그러므로, 스왑 파일은 "/tmp"에 저장하는 것이 바람직 합니다.임시 저장 디렉토리를 지정하십시오. 김프를 실행할 때 여기에 파일들이 나타납니다. 김프를 마칠 때 대부분 사라지지만, 몇몇 파일들은 남아 있으므로, 이 디렉토리는 다른 사용자와 공유하지 않는 것이 좋습니다.이미지 창의 상태표시줄에 나타날 텍스트를 지정하십시오.이미지 창 제목에 보여줄 텍스트를 지정하십시오.김프가 레이어나 채널의 미리보기를 만들지 여부를 지정합니다. 레이어와 채널 대화상자의 미리보기는 유용하지만 큰 이미지로 작업할 때는 성능이 떨어질 수 있습니다.그림자모양모양:선명하게채널 선명하게선택 선명하게기울이기레이어 또는 선택 기울이기기울이기 정보기울이기 중...상태표시줄 표시(_T)스크롤 막대 표시(_B)안내선 표시(_G)레이어 경계 표시(_L)메뉴표시줄 표시(_M)메모리 사용량 표시다음에 김프 시작할 때 팁 보여주기확대 백분율 표시확대 배율 표시채널 줄이기선택 줄이기이미지 테두리 줄이기선택 줄이기 량크기크기:'%s' 건너뜀: 잘못된 김프 프로토콜 버전.작게더 작은 미리보기부드럽게가장자리 부드럽게문지르기이미지 문지르기단색소스간격간격:특수 파일이미지 주위를 그리는 방법을 지정하십시오.선택 점선(marching ants)의 속도를 지정하십시오. 이 값은 밀리초 단위입니다 (값이 작을수록 빠릅니다).속도:분할균등한 그라디언트 구획 분할균등한 그라디언트 구획 분할균등한 구획 분할균등한 구획 분할(_U)...중점에서 구획 분리(_M)균등한 구획 분할균등하게 구획 분할(_U)...중점에서 구획 분할(_M)각지게표준확장 시작 중확장 시작 중: "%s" -상태:고정 컬러고정 회색표준 편차:단색 무늬경로 따라 그리기선택 따라 그리기빼기현재 선택에서 빼기슈퍼샘플링템플릿템플릿 메뉴임시 프로시져텍스트글자 색상텍스트 레이어텍스트 프로시져김프활성 브러시. +균등한 부분의 수를 선택하십시오.투명한 영역 선택웹 브라우저 선택선택을 경로로(_O)선택선택 편집기선택 편집기 메뉴선택 마스크선택 도구 프로시져선택 마스크선택을 경로로 (고급)(_A)선택을 경로로선택: 선택: 더하기선택: 교차하기선택: 바꾸기선택: 빼기감도캔버스 채우기 색상 지정채널 색상 지정채널 불투명도 지정색상표 지정사용자 캔버스 채우기 색상 지정캔버스 크기 지정이미지 인쇄 해상도 바꾸기배타적으로 연결된 항목 지정항목을 배타적으로 표시레이어 경계 크기 지정텍스트에서 이름 지정(_T)불투명도 지정배경색 지정전경색 지정연결된 항목 지정레이어 모드 지정레이어 불투명도 지정투명도 유지 지정각 이미지에서 실행 취소를 위해 사용할 메모리의 최대량을 지정하십시오. 이 설정과 무관하게, 최소 실행 취소 횟수로 지정된 만큼의 실행 취소는 할 수 있습니다.도움말 시스템에 사용할 프로그램을 지정하십시오.메우기 방법이 사용자 색상일 때 사용할 캔버스 메우기 색상을 지정하십시오.사용할 외부 웹 브라우저를 지정하십시오. 절대 경로나 사용자의 PATH에서 찾을 수 있는 실행 파일 이름이어야 합니다. 명령이 '%s'을(를) 포함하고 있으면 URL로 대체되고, 그렇지 않으면 명령과 공백으로 분리하여 URL을 덧붙입니다.크기 조정이나 다른 변형에서 사용할 방법(보간법)을 지정하십시오.이미지의 투명도를 표시할 방법을 지정하십시오.실행을 취소할 수 있는 최소 횟수를 지정하십시오. 최대 실행 취소 메모리에 도달하기 전에는 더 많은 실행 취소 횟수를 유지합니다.김프가 사용할 커서 모드를 지정합니다.모니터의 수평 해상도를 인치당 도트 수로 지정합니다. 0으로 지정하면, X 서버를 통해 수직 수평 해상도 정보를 확인합니다.모니터의 수직 해상도를 인치당 도트 수로 지정합니다. 0으로 지정하면, X 서버를 통해 수직 수평 해상도 정보를 확인합니다.김프가 사용할 커서의 픽셀 형식을 지정합니다.새로 만들어진 창의 레이어와 채널의 기본 미리보기 크기를 지정하십시오.투명도을 표시할 격자의 크기를 지정하십시오.이미지 창의 우하단에 위치하는 네비게이션 미리보기의 크기를 지정하십시오.실행 취소 이력의 미리보기 크기를 지정하십시오.열린 대화상자에 썸네일의 크기를 지정하십시오. 김프는 레이어 미리보기를 사용하지 않으면 썸네일을 저장하지 않습니다.스왑 파일 위치를 지정하십시오. 김프는 타일 기반의 메모리 할당 정책을 사용합니다. 스왑 파일은 스왑 타일이 신속하고 쉽게 디스크에 저장하거나 불러올 때 사용됩니다. 김프에서 큰 이미지 작업을 하면 스왑 파일이 순식간에 매우 커질 수 있다는 것을 명심하십시오. 또한, NFS에 마운트된 디렉토리에 스왑 파일을 만들게 되면 속도가 엄청나게 느려질 수 있습니다. 그러므로, 스왑 파일은 "/tmp"에 저장하는 것이 바람직 합니다.임시 저장 디렉토리를 지정하십시오. 김프를 실행할 때 여기에 파일들이 나타납니다. 김프를 마칠 때 대부분 사라지지만, 몇몇 파일들은 남아 있으므로, 이 디렉토리는 다른 사용자와 공유하지 않는 것이 좋습니다.이미지 창의 상태표시줄에 나타날 텍스트를 지정하십시오.이미지 창 제목에 보여줄 텍스트를 지정하십시오.김프가 레이어나 채널의 미리보기를 만들지 여부를 지정합니다. 레이어와 채널 대화상자의 미리보기는 유용하지만 큰 이미지로 작업할 때는 성능이 떨어질 수 있습니다.그림자 유형그림자모양모양:돌출형 (각지게)돌출형 (물결)폭발형 (구형)선명하게채널 선명하게선택 선명하게기울이기기울이기 크기 X:기울이기 크기 Y:레이어 또는 선택 기울이기기울이기 정보기울이기 중...짧은 파선단축키레이어 마스크 이동눈금자 표시(_U)상태표시줄 표시(_T)스크롤 막대 표시(_B)안내선 표시(_G)레이어 경계 표시(_L)메뉴표시줄 표시(_M)선택 표시(_S)브러시 윤곽 표시(_B)전경색과 배경색 표시(_F)안내선 표시(_G)레이어 경계 표시(_L)메뉴표시줄 표시(_M)눈금자 표시(_R)현재 브러시, 무늬, 그라디언트 표시(_B)현재 이미지 표시(_I)모눈 표시(_D)도움말 단추 표시(_B)이미지 크기 표시즉시 경계 보기메모리 사용량 표시메뉴 바로가기(접근 키) 표시(_M)그리고 도구 커서 표시(_T)선택 표시(_E)상태표시줄 표시(_T)스크롤 막대 표시(_B)다음에 김프 시작할 때 팁 보여주기시작할 때 팁 표시(_S)풍선도움말 보여주기(_T)확대 백분율 표시확대 배율 표시채널 줄이기선택 줄이기창을 이미지에 맞춤(_W)이미지 테두리 줄이기선택 줄이기 량창을 이미지에 맞춤(_W)크기메모리 내의 크기:썸네일 파일 크기(_T):크기:'%s' 건너뜀: 잘못된 김프 프로토콜 버전.작게더 작은 미리보기부드럽게가장자리 부드럽게문지르기이미지 문지르기안내선에 맞추기(_A)모눈에 맞추기(_P)부드러운 조명단색소스간격간격:성긴 점선특수 파일이미지 주위를 그리는 방법을 지정하십시오.선택 점선(marching ants)의 속도를 지정하십시오. 이 값은 밀리초 단위입니다 (값이 작을수록 빠릅니다).속도:구형 (감소)(_D)구형 (증가)(_N)돌출:나선형 (시계방향)나선형 (시계방향)분할균등한 그라디언트 구획 분할균등한 그라디언트 구획 분할균등한 구획 분할균등한 구획 분할(_U)...중점에서 구획 분리(_M)균등한 구획 분할균등하게 구획 분할(_U)...중점에서 구획 분할(_M)각지게상태와 글자(_A)쌓기(_K)표준확장 시작 중확장 시작 중: "%s" +상태:고정 컬러고정 회색상태 & 설명상태 & 글자표준 편차:단색 무늬스톡 ID경로 따라 그리기(_K)경로 따라 그리기(_K)...채널 따라 그리기경로 따라 그리기선택 따라 그리기선으로 따라 그리기경로 따라 그리기최근 값으로 경로 따라 그리기경로 따라 그리기...최근 값으로 선택 따라 그리기선택 따라 그리기...그리기 도구로 따라 그리기상태 표시줄 텍스트 주위의 베벨 형태빼기현재 선택에서 빼기슈퍼샘플링스왑 폴더:도구(_O)텍스트(_X)글자 도구(_X)임시 폴더:템플릿템플릿 메뉴임시 프로시져플러그인 종료 중: '%s' +텍스트글자 색상텍스트 편집기텍스트 레이어텍스트 바뀌었음텍스트 프로시져김프김프 도움말 브라우저 플러그인이 설치되지 않은 것 같습니다.활성 브러시. 브러시 대화상자를 열려면 클릭하십시오.활성 그라디언트. -그라디언트 대화상자를 열려면 클릭하십시오.활성 무늬. -무늬 대화상자를 열려면 클릭하십시오.모눈의 배경색; 이점쇄선 형태에서만 사용됩니다.파일 이름 '%s'을(를) 올바른 URI로 변환할 수 없습니다: +그라디언트 대화상자를 열려면 클릭하십시오.활성 이미지. +이미지 대화상자를 열려면 클릭하십시오.활성 무늬. +무늬 대화상자를 열려면 클릭하십시오.모눈의 배경색; 이점쇄선 형태에서만 사용됩니다.일괄처리 해석기 '%s'이(가) 없어서, 일괄처리 모드를 중지합니다.설정한 파일이름 인코딩을 UTF-8로 변환할 수 없습니다: %s + +G_FILENAME_ENCODING 환경 변수의 값을 확인하십시오.파일 이름 '%s'을(를) 올바른 URI로 변환할 수 없습니다: + +%s모눈의 전경색.gimprc는 김프의 기본 동작에 영향을 미치는 기본 설정을 저장하기 위해 사용됩니다. 이 파일에 브러시, 색상표, 그라디언트, 무늬, 플러그인, 모듈의 찾기 경로를 설정할 수 있습니다.이미지 가로 해상도.선택한 레이어는 텍스트 레이어지만 다른 도구로 수정했습니다. 텍스트 도구로 그 레이어를 편집하면 변경 사항들이 무시됩니다.김프 사용자 설정을 갖고있는 디렉토리의 이름을 UTF-8로 변환할 수 없습니다: %s + +대개의 경우 UTF-8이외의 인코딩을 사용하는 파일시스템을 사용하고 있지만 GLib에게 알려주지 않았을 것입니다. G_FILENAME_ENCODING 환경 변수를 설정하십시오.김프를 마칠 때 열려 있었던 대화상자 창을 sessionrc에 저장합니다. 김프가 이 대화상자들을 저장된 위치에 다시 열도록 설정할 수 있습니다.열기 대화상자의 썸네일은 여기에서 지정한 크기보다 작은 파일을 미리 보기할 때 자동으로 갱신됩니다.타일 캐시는 김프가 타일을 메모리와 디스크 사이를 오락가락하지 않도록 합니다. 이 값이 클수록 스왑 공간은 적게 사용하지만, 메모리는 더 많이 사용합니다. 캐시 크기를 더 작게 해도 더 많은 스왑 공간과 적은 메모리를 사용하는 특이한 경우도 있습니다.점-대-점 모드가 아닐때 좌표 출력에 사용할 단위.unitrc에 사용자 단위 데이터베이스를 저장합니다. 부가적인 단위를 정의해서 인치, 밀리미터, 포인트, 파이카 같은 내장 단위처럼 사용할 수 있습니다. 김프를 마칠 때마다 이 파일을 덮어 씁니다.이미지 세로 해상도.독(dock) 창에 지정될 창 유형 힌트. 창 관리자가 독(dock) 창을 장식하고 처리하는 방법에 영향을 줍니다.도구상자에 지정될 창 유형 힌트. 창 관리자가 도구상자 창을 장식하고 처리하는 방법에 영향을 줍니다.테마테마 폴더테마%d개의 이미지를 고치고 저장하지 않았습니다:아래에 합칠 레이어가 없습니다.메모리 사용량과 성능은 비례합니다. 대부분의 경우, 김프는 메모리보다는 성능을 선택합니다. 그러나, 메모리가 중요한 문제라면 이 설정을 선택하십시오.붙여 넣을 활성 레이어나 채널이 없습니다.잘라낼 활성 레이어나 채널이 없습니다.따라 그릴 활성 레이어나 채널이 없습니다따라 그릴 활성 레이어나 채널이 없습니다.한 개의 이미지를 고치고 저장하지 않았습니다:파일 '%s'이(가) 없습니다. 설치되었는지 확인하십시오.파일 '%s'에 치명적인 해석 오류: 기본 값을 사용합니다. 현재 설정의 사본이 '%s'(으)로 만들어졌습니다.이 파일은 이미지 템플릿이 사용할 표준 매체 크기에 대한 정보를 갖고 있습니다.이 폴더에서 이미지 템플릿을 찾습니다.이 폴더에서 사용자 설치 테마를 찾습니다.이 폴더에 김프 전용 글꼴을 저장합니다. 글꼴를 찾을 때 시스템 공용으로 설치된 김프 글꼴 외에 부가적으로 이 폴더를 확인합니다. 김프 전용 글꼴이 필요할 때만 사용하며, 그렇지 않을 경우 공용 글꼴 디렉토리에 넣으십시오.이 폴더에 곡선 도구용 파라메터 파일을 저장합니다.이 폴더에 레벨 도구용 파라메터 파일을 저장합니다.이 폴더에 도구 선택사항을 저장합니다.이 폴더에 사용자가 만들었거나, 임시 및 시스템이 지원하지 않는 스크립트를 저장합니다. 스크립트를 찾을 때 시스템 공용으로 설치된 김프 스크립트 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자가 만들었거나, 임시 및 시스템이 지원하지 않는 DLL을 저장합니다. 플러그인을 찾을 때 시스템 공용으로 설치된 김프 DLL 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자가 만들었거나, 임시 및 시스템이 지원하지 않는 플러그인 환경을 저장합니다. 바뀐 플러그인 환경 파일을 찾을 때 시스템 공용으로 설치된 김프 플러그인 환경 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자가 만들었거나, 임시 및 시스템이 지원하지 않는 플러그인을 저장합니다. 플러그인을 찾을 때 시스템 공용으로 설치된 김프 플러그인 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자 정의 브러시를 저장합니다. 브러시를 찾을 때 시스템 공용으로 설치된 김프 브러시 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자 정의 그라디언트를 저장합니다. 그라디언트를 찾을 때 시스템 공용으로 설치된 김프 그라디언트 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자 정의 색상표를 저장합니다. 색상표를 찾을 때 시스템 공용으로 설치된 김프 색상표 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자 정의 무늬를 저장합니다. 무늬를 찾을 때 시스템 공용으로 설치된 김프 무늬 외에 부가적으로 이 폴더를 확인합니다.메모리 사용량을 줄이기 위해 실행 취소 버퍼를 저장할 때 이 폴더를 사용합니다. 김프가 예상치않게 종료되었을때 gimp<#>.<#>형식의 파일이 남아 있을 수 있습니다. 이 파일은 김프 세션 간에는 쓸모가 없으며, 지워도 무관합니다.이 폴더에는 여러 개의 중요한 파일이 위치하게 됩니다. 선택한 항목에 대한 자세한 정보를 보려면 파일이나 폴더 중의 하나를 클릭하십시오.안내선과 모눈으로 당겨 맞출 거리를 픽셀 단위로 지정합니다.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.이 텍스트 입력란은 %d 글자로 제한되어 있습니다.이 도구는 선택사항이 없습니다.이 창에는 %d개의 탭이 열려있습니다. 창을 닫으면 모든 하위 탭들도 닫습니다.임계값고대비는 인덱스된 레이어에서 동작하지 않습니다.임계값:썸네일 %d / %d타일 캐쉬 크기(_S):타일 캐쉬 크기:기울기:아주 작게제목과 상태경로로(_P)단축키를 편집하려면, 해당 줄을 클릭하고 새 단축키를 입력하거나, backspace를 눌러 지우세요.장난감(_Y)퀵마스크 전환퀵마스크 전환(_Q)오류 메시지가 너무 많습니다!도구 선택사항도구 선택사항 메뉴도구 전환 %s도구 선택사항(_O)도구 아이콘도구 아이콘과 십자형도구상자(_B)도구상자도구상자 메뉴도구도구 메뉴퍼지 선택이나 영역 채우기 같은 도구는 씨앗-채움 알고리즘을 기초로 영역을 찾습니다. 씨앗-채움은 처음 선택한 픽셀에서 시작해서 원래 픽셀의 강도와 지정한 임계값보다 큰 차이가 나는 픽셀이 나올때까지 모든 방향으로 진행합니다. 이 값은 기본 임계값을 나타냅니다.투명(_A)알파를 마스크로 전송변형채널 변형변형 방향레이어 변형경로 변형텍스트 레이어 변형변형 도구 프로시져레이어 변형경로 변형선택 변형변형변형 프로시져변형 중...번역한 사람들투명투명 표시 방법(_T):삼각파형트루 컬러유형유형 %s새 단축키를 입력하세요.새 단축키를 입력하거나, Backspace를 눌러서 지우세요.레이어가 이미 마스크를 갖고 있으므로, 더할 수 없습니다.선택한 영역이 비어있으므로, 잘라내기나 복사를 할 수 없습니다.테스트 스왑 파일을 열 수 없습니다. 데이터의 손실을 피하려면 환경 설정에 정의된 스왑 디렉토리(현재 "%s")의 위치와 허가 권한을 확인하십시오.스왑 파일을 열 수 없습니다. 김프는 메모리가 부족하지만 스왑 파일을 열 수 없습니다. 작업 중인 이미지의 일부가 손상될 수 있습니다. 작업 중이던 것을 다른 파일 이름으로 저장하고, 김프를 다시 시작하고 기본 설정에서 스왑 디렉토리의 위치를 확인하십시오.%s 콜백을 실행할 수 없습니다. 해당 플러그인이 비정상 종료했습니다.정의안됨실행 취소실행 취소 이력실행 취소 이력(_H)단위모름알 수 없는 이미지 유형알 수 없는 색상표 파일 형식: +%s사용 안함이름없음제목없음기본으로 "점 대 점" 사용(_D)동적인 키보드 단축키(_D)대신 웹 브라우저를 사용(_W)선택을 줄일 때 모든 보이는 레이어를 사용흑백 (1비트) 색상표 사용그라디언트의 색상 사용사용자 색상표 사용정보 창 사용웹에 최적화된 색상표 사용사용자 설치 로그사용자 인터페이스유틸리티 창값값:벡터 모드버젼 %s 제작진버전:세로첫 모눈 선의 세로 위치; 이 값은 음수여도 됩니다.모눈 선의 세로 간격.더 크게더 작게보기격자로 보기(_G)목록으로 보기(_L)모눈으로 표시목록으로 보기비주얼 클래스:비주얼 깊이:경고: 데이터 읽기 실패: + +%s 경고: 데이터 저장 실패: -%s모눈의 전경색.gimprc는 김프의 기본 동작에 영향을 미치는 기본 설정을 저장하기 위해 사용됩니다. 이 파일에 브러시, 색상표, 그라디언트, 무늬, 플러그인, 모듈의 찾기 경로를 설정할 수 있습니다.선택한 레이어는 텍스트 레이어지만 다른 도구로 수정했습니다. 텍스트 도구로 그 레이어를 편집하면 변경 사항들이 무시됩니다.김프를 마칠 때 열려 있었던 대화상자 창을 sessionrc에 저장합니다. 김프가 이 대화상자들을 저장된 위치에 다시 열도록 설정할 수 있습니다.타일 캐시는 김프가 타일을 메모리와 디스크 사이를 오락가락하지 않도록 합니다. 이 값이 클수록 스왑 공간은 적게 사용하지만, 메모리는 더 많이 사용합니다. 캐시 크기를 더 작게 해도 더 많은 스왑 공간과 적은 메모리를 사용하는 특이한 경우도 있습니다.점-대-점 모드가 아닐때 좌표 출력에 사용할 단위.unitrc에 사용자 단위 데이터베이스를 저장합니다. 부가적인 단위를 정의해서 인치, 밀리미터, 포인트, 파이카 같은 내장 단위처럼 사용할 수 있습니다. 김프를 마칠 때마다 이 파일을 덮어 씁니다.이미지 세로 해상도.독(dock) 창에 지정될 창 유형 힌트. 창 관리자가 독(dock) 창을 장식하고 처리하는 방법에 영향을 줍니다.도구상자에 지정될 창 유형 힌트. 창 관리자가 도구상자 창을 장식하고 처리하는 방법에 영향을 줍니다.테마테마 폴더테마아래에 합칠 레이어가 없습니다.메모리 사용량과 성능은 비례합니다. 대부분의 경우, 김프는 메모리보다는 성능을 선택합니다. 그러나, 메모리가 중요한 문제라면 이 설정을 선택하십시오.붙여 넣을 활성 레이어나 채널이 없습니다.잘라낼 활성 레이어나 채널이 없습니다.따라 그릴 활성 레이어나 채널이 없습니다따라 그릴 활성 레이어나 채널이 없습니다.파일 '%s'이(가) 없습니다. 설치되었는지 확인하십시오.파일 '%s'에 치명적인 해석 오류: 기본 값을 사용합니다. 현재 설정의 사본이 '%s'(으)로 만들어졌습니다.이 파일은 이미지 템플릿이 사용할 표준 매체 크기에 대한 정보를 갖고 있습니다.이 폴더에서 이미지 템플릿을 찾습니다.이 폴더에서 사용자 설치 테마를 찾습니다.이 폴더에 김프 전용 글꼴을 저장합니다. 글꼴를 찾을 때 시스템 공용으로 설치된 김프 글꼴 외에 부가적으로 이 폴더를 확인합니다. 김프 전용 글꼴이 필요할 때만 사용하며, 그렇지 않을 경우 공용 글꼴 디렉토리에 넣으십시오.이 폴더에 곡선 도구용 파라메터 파일을 저장합니다.이 폴더에 레벨 도구용 파라메터 파일을 저장합니다.이 폴더에 도구 선택사항을 저장합니다.이 폴더에 사용자가 만들었거나, 임시 및 시스템이 지원하지 않는 스크립트를 저장합니다. 스크립트를 찾을 때 시스템 공용으로 설치된 김프 스크립트 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자가 만들었거나, 임시 및 시스템이 지원하지 않는 DLL을 저장합니다. 플러그인을 찾을 때 시스템 공용으로 설치된 김프 DLL 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자가 만들었거나, 임시 및 시스템이 지원하지 않는 플러그인 환경을 저장합니다. 바뀐 플러그인 환경 파일을 찾을 때 시스템 공용으로 설치된 김프 플러그인 환경 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자가 만들었거나, 임시 및 시스템이 지원하지 않는 플러그인을 저장합니다. 플러그인을 찾을 때 시스템 공용으로 설치된 김프 플러그인 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자 정의 브러시를 저장합니다. 브러시를 찾을 때 시스템 공용으로 설치된 김프 브러시 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자 정의 그라디언트를 저장합니다. 그라디언트를 찾을 때 시스템 공용으로 설치된 김프 그라디언트 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자 정의 색상표를 저장합니다. 색상표를 찾을 때 시스템 공용으로 설치된 김프 색상표 외에 부가적으로 이 폴더를 확인합니다.이 폴더에 사용자 정의 무늬를 저장합니다. 무늬를 찾을 때 시스템 공용으로 설치된 김프 무늬 외에 부가적으로 이 폴더를 확인합니다.메모리 사용량을 줄이기 위해 실행 취소 버퍼를 저장할 때 이 폴더를 사용합니다. 김프가 예상치않게 종료되었을때 gimp<#>.<#>형식의 파일이 남아 있을 수 있습니다. 이 파일은 김프 세션 간에는 쓸모가 없으며, 지워도 무관합니다.이 폴더에는 여러 개의 중요한 파일이 위치하게 됩니다. 선택한 항목에 대한 자세한 정보를 보려면 파일이나 폴더 중의 하나를 클릭하십시오.안내선과 모눈으로 당겨 맞출 거리를 픽셀 단위로 지정합니다.이 텍스트 입력란은 %d 글자로 제한되어 있습니다.이 도구는 선택사항이 없습니다.임계값고대비는 인덱스된 레이어에서 동작하지 않습니다.임계값:썸네일 %d / %d기울기:아주 작게제목과 상태도구 선택사항도구 선택사항 메뉴도구 전환 %s도구상자 메뉴도구알파를 마스크로 전송변형채널 변형변형 방향레이어 변형경로 변형변형 도구 프로시져변형변형 중...번역한 사람들투명트루 컬러유형유형 %s레이어가 이미 마스크를 갖고 있으므로, 더할 수 없습니다.선택한 영역이 비어있으므로, 잘라내기나 복사를 할 수 없습니다.테스트 스왑 파일을 열 수 없습니다. 데이터의 손실을 피하려면 환경 설정에 정의된 스왑 디렉토리(현재 "%s")의 위치와 허가 권한을 확인하십시오.정의안됨실행 취소실행 취소 이력단위모름알 수 없는 이미지 유형사용 안함이름없음제목없음선택을 줄일 때 모든 보이는 레이어를 사용사용자 설치 로그사용자 인터페이스값값:버젼 %s 제작진버전:세로첫 모눈 선의 세로 위치; 이 값은 음수여도 됩니다.모눈 선의 세로 간격.웹 브라우저선택하면, 대화상자가 자동으로 현재 작업 중인 이미지를 반영합니다.선택하면, 모든 그리기 도구의 현재 브러시의 모양을 미리 보여줍니다.선택하면, 이미지 창이 초점을 받으면 이미지도 활성 이미지가 됩니다. 이 기능은 창 관리자가 "클릭으로 초점 주기"를 사용할 때 유용합니다.선택하면, 메뉴를 떼어낼 수 있습니다.선택하면, F1을 눌러서 도움말을 볼 수 있습니다.선택하면, 김프는 이미지를 연 뒤 바뀌지 않았다면 저장하지 않습니다.선택하면, 김프는 이미지 보기마다 다른 정보 창을 사용합니다.선택하면, 움직임 이벤트가 발생할 때 마다 위치 힌트에 의존하는 대신 X 서버에 마우스의 현재 위치를 물어봅니다. 즉, 큰 브러시로 작업할 때 더 정확하지만, 더 느려집니다. 특이한 X 서버는 이 선택사항을 사용하면 더 빨라집니다.선택하면, 기본으로 모눈을 표시합니다. "보기->모눈" 명령으로 전환할 수 있습니다.선택하면, 기본으로 안내선을 표시합니다. "보기->안내선" 명령으로 전환할 수 있습니다.선택하면, 이미지를 확대하거나 축소할 때 이미지 창의 크기가 자동으로 조정됩니다.선택하면, 실제 이미지 크기가 바뀔 때 이미지 창의 크기를 자동으로 조정합니다.선택하면, 기본으로 레이어 경계를 표시합니다. "보기->레이어 경계" 명령으로 전환할 수 있습니다.선택하면, 기본으로 메뉴표시줄를 표시합니다. "보기->메뉴표시줄" 명령으로 전환할 수 있습니다.선택하면, 기본적으로 눈금자를 표시합니다. "보기->눈금자" 명령으로 바꿀 수 있습니다.선택하면, 기본으로 스크롤막대를 표시합니다. "보기->스크롤막대" 명령으로 전환할 수 있습니다.선택하면, 모든 도구에서 선택한 브러시를 사용합니다.선택하면, 모든 도구에서 선택한 그라디언트를 사용합니다.선택하면, 모든 도구에서 선택한 무늬를 사용합니다.선택하면, 기본으로 선택을 표시합니다. "보기->선택" 명령으로 전환할 수 있습니다.선택하면, 기본적으로 상태표시줄을 표시합니다. "보기->상태표시줄" 명령으로 바꿀 수 있습니다.선택하면, 이미지의 한 픽셀이 화면의 한 픽셀에 대응됩니다.선택하면, 파일을 열 때 전체 이미지가 보이고, 선택하지 않으면 1:1 배율로 보입니다.선택하면, 메뉴가 강조되어 있을 동안 키 조합을 눌러서 메뉴 항목에 대한 키보드 단축키를 즉시 바꿀 수 있습니다.흰색너비너비:창 관리창 위치'%s' 기록 중 -XCF 오류: XCF 파일 버젼 %d은(는) 지원되지 않습니다.XCF 경고: XCF파일 형식중 버젼 0은 + %s웹 브라우저웹 브라우저환영합니다! +김프 %d.%d 사용자 설치선택하면, 대화상자가 자동으로 현재 작업 중인 이미지를 반영합니다.선택하면, 김프는 메뉴에 단축키를 표시합니다.선택하면, 모든 그리기 도구의 현재 브러시의 모양을 미리 보여줍니다.선택하면, 이미지 창이 포커스를 받으면 이미지도 활성 이미지가 됩니다. 이 기능은 창 관리자가 "클릭으로 포커스 주기"를 사용할 때 유용합니다.선택하면, 대화상자는 관련된 도움말을 볼 수 있도록 도움말 단추를 표시합니다. 이 단추가 없어도 F1키를 눌러서 도움말을 볼 수 있습니다.선택하면, 메뉴를 떼어낼 수 있습니다.선택하면, F1을 눌러서 도움말을 볼 수 있습니다.선택하면, 김프는 이미지를 연 뒤 바뀌지 않았다면 저장하지 않습니다.선택하면, 김프는 이미지 보기마다 다른 정보 창을 사용합니다.선택하면, 움직임 이벤트가 발생할 때 마다 위치 힌트에 의존하는 대신 X 서버에 마우스의 현재 위치를 물어봅니다. 즉, 큰 브러시로 작업할 때 더 정확하지만, 더 느려집니다. 특이한 X 서버는 이 선택사항을 사용하면 더 빨라집니다.선택하면, 그리기 도구를 사용하는 동안 이미지위에 커서를 표시합니다.선택하면, 기본으로 모눈을 표시합니다. "보기->모눈" 명령으로 전환할 수 있습니다.선택하면, 기본으로 안내선을 표시합니다. "보기->안내선" 명령으로 전환할 수 있습니다.선택하면, 이미지를 확대하거나 축소할 때 이미지 창의 크기가 자동으로 조정됩니다.선택하면, 실제 이미지 크기가 바뀔 때 이미지 창의 크기를 자동으로 조정합니다.선택하면, 기본으로 레이어 경계를 표시합니다. "보기->레이어 경계" 명령으로 전환할 수 있습니다.선택하면, 기본으로 메뉴표시줄를 표시합니다. "보기->메뉴표시줄" 명령으로 전환할 수 있습니다.선택하면, 기본적으로 눈금자를 표시합니다. "보기->눈금자" 명령으로 바꿀 수 있습니다.선택하면, 기본으로 스크롤막대를 표시합니다. "보기->스크롤막대" 명령으로 전환할 수 있습니다.선택하면, 모든 도구에서 선택한 브러시를 사용합니다.선택하면, 모든 도구에서 선택한 그라디언트를 사용합니다.선택하면, 모든 도구에서 선택한 무늬를 사용합니다.선택하면, 기본으로 선택을 표시합니다. "보기->선택" 명령으로 전환할 수 있습니다.선택하면, 기본적으로 상태표시줄을 표시합니다. "보기->상태표시줄" 명령으로 바꿀 수 있습니다.선택하면, 이미지의 한 픽셀이 화면의 한 픽셀에 대응됩니다.선택하면, 파일을 열 때 전체 이미지가 보이고, 선택하지 않으면 1:1 배율로 보입니다.선택하면, 메뉴가 강조되어 있을 동안 키 조합을 눌러서 메뉴 항목에 대한 키보드 단축키를 즉시 바꿀 수 있습니다.흰색화이트 밸런스는 RGB 색상 레이어에만 동작합니다.너비너비:창 관리창 관리자 힌트창 위치'%s' 기록 중 +XXCF 오류: XCF 파일 버젼 %d은(는) 지원되지 않습니다.XCF 경고: XCF파일 형식중 버젼 0은 정확하게 인덱스된 색상표를 저장하지 못합니다. -그레이스케일 맵으로 대체합니다.노란색노란색:도킹가능한 대화상자를 여기에 끌어다 놓으십시오.당신은 이 프로그램과 함께 GNU GPL의 사본을 받았어야 합니다; 그렇지 않았다면, the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 에 알려주십시오.바꾼 내용을 반영하려면, 김프를 다시 시작해야 합니다:확대와 크기 조정 동작1:1 배율전체 확대확대축소확대 배율확대 배율:확대 배율: %d:1확대확대 & 축소축소확대:[ 기본 이미지 ]부드럽게 하기(_A)자동(_A)_B구획의 혼합 함수(_B)선택의 혼합 함수(_B)명도(_B):브러시(_B)_C구획 지우기(_D)선택 지우기(_D)구획 뒤집기(_F)선택 뒤집기(_F)_G그라디언트(_G)수평(_H):색상(_H):아이콘(_I):가져오기(_I)명도(_L):_M수동(_M)이름(_N):무늬(_P)미리보기(_P)_R재실행(_R)%s 재실행(_R)구획 복제(_R)...선택 복제(_R)...채도(_S):선택(_S)실행 취소(_U)%s 실행 취소(_U)수직(_V):_X:_Y_Y:확대(_Z) (%s)색상복사dpi불린 토큰 %s의 값 '%s'은(는) 'yes'나 'no'가 되어야 합니다.치명적인 해석 오류그레이스케일그레이스케일-비었음인치인치인덱스됨인덱스됨-비었음잘못된 UTF-8 문자열잘못된 값 '%ld' (토큰 %s)잘못된 값 '%s' (토큰 '%s')밀리미터밀리미터n/a퍼센트파이카파이카픽셀픽셀픽셀/%a픽셀/%s포인트포인트tips-locale:ko장동수 , 2003, 2004 +그레이스케일 맵으로 대체합니다.Y노란색노란색:크기가 %s인 이미지를 만들려고 합니다.도킹가능한 대화상자를 여기에 끌어다 놓으십시오.당신은 이 프로그램과 함께 GNU GPL의 사본을 받았어야 합니다; 그렇지 않았다면, the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 에 알려주십시오.바꾼 내용을 반영하려면, 김프를 다시 시작해야 합니다:김프 설치가 불완전합니다:입력 장치 설정은 다음에 김프를 시작할 때 기본 값으로 초기화 됩니다.다음에 김프를 시작할 때 키보드 설정을 기본값으로 초기화 합니다.창 설정은 다음에 GIMP를 시작할 때 기본 값으로 초기화 됩니다.확대와 크기 조정 동작1:1 배율전체 확대확대축소확대 배율확대 배율:/전체 확대(_A)확대(_I)축소(_O)전체 확대확대 배율: %d:1창 크기가 변하면 이미지 배율 조절확대확대 & 축소축소확대:[ 기본 이미지 ]정보(_A)얻기(_A)배경에서 색상 더하기(_A)전경에서 색상 더하기(_A)탭 더하기(_A)선택에 더하기(_A)고급 선택사항(_A)에어브러시(_A)전체(_A)레이어 고정(_A)부드럽게 하기(_A)임의 각도로 회전(_A)...예술(_A)Aspect(_A)자동(_A)_B배경색(_B)배경색(_B):검정색(_B) (완전 투명)구획의 혼합 함수(_B)선택의 혼합 함수(_B)흐릿하게(_B)명도(_B):브러시(_B)브러시(_B)브러시, 무늬 및 그라디언트(_B)영역 채우기(_B)버퍼(_B)색상으로(_B)색상으로 선택(_B)_C선 끝 형태(_C):채널(_C)오류 지우기(_C)실행 취소 이력(_C)복제(_C)닫기(_C)탭 닫기(_C)구름(_C)색상 도구(_C)색상(_C)색상과 불투명도 설정(_C)...문맥(_C)문맥 도움말(_C)복사(_C)이름붙여 복사(_C)...템플릿에서 이미지 만들기(_C)...자르기 & 크기 바꾸기(_C)이미지 자르기(_C)곡선(_C)곡선(_C)...격자의 어두운 색상(_D)기본 색상(_D)브러시 지우기(_D)버퍼 지우기(_D)채널 지우기(_D)색상 지우기(_D)그라디언트 지우기(_D)...이미지 지우기(_D)레이어 지우기(_D)색상표 지우기(_D)경로 지우기(_D)무늬 지우기(_D)...선택사항 지우기(_D)구획 지우기(_D)선택 지우기(_D)템플릿 지우기(_D)무채화(_D)탭 떼어내기(_D)장치 상태(_D)대화상자(_D)바뀐 내용 버리기(_D)텍스트 정보 버림(_D)왜곡(_D)점 대 점(_D)복제(_D)편집(_E)브러시 편집(_E)...채널 속성 편집(_E)...색상 편집(_E)...그라디언트 편집(_E)...레이어 속성 편집(_E)...색상표 편집(_E)...경로 속성 편집(_E)...무늬 편집(_E)...템플릿 편집(_E)...타원 선택(_E)레이어와 채널 미리보기 사용(_E)더 거대하게(_E)평탄화(_E)지우개(_E)전경색(_F)파일(_F)채우기(_F):이미지를 창 안에 맞춤(_F)배경으로 합치기(_F)뒤집기(_F)구획 뒤집기(_F)선택 뒤집기(_F)띄우기(_F)글꼴(_F)글꼴(_F)전경색(_F):자유 선택(_F)_G일반(_G)아주 거대하게(_G)그라디언트(_G)그라디언트(_G)그레이스케일(_G)레이어의 그레이스케일 사본(_G)늘이기(_G)...안내선(_G)경도(_H)도움말(_H)수평(_H):색상(_H):거대하게(_H)아이콘(_I)아이콘(_I):이미지(_I)이미지(_I)가져오기(_I)색상표 가져오기(_I)...인덱스됨(_I)...정보 창(_I)선택과 교집합(_I)반전(_I)선 결합 형태(_J):크게(_L)레이어(_L)레이어(_L)레이어, 채널 및 경로(_L)왼쪽 끝점(_L)왼쪽 인접 구획의 오른쪽 끝점(_L)레벨(_L)...격자의 밝은 색상(_L)조명 효과(_L)명도(_L):선 형태(_L):선형(_L)Linked(_L)왼쪽 색상 불러오기(_L)채널 내리기(_L)레이어 내리기(_L)경로 내리기(_L)_M수동(_M)지도(_M)마스터(_M)마스크를 선택으로(_M)최대 색상 수(_M):측정(_M)중간(_M)색상표 합치기(_M)...가져온 경로 합치기(_M)김프 2.0 사용자 설정을 옮겨옵니다(_M)기타 도구(_M)뾰족한 선 결합 제한(_M):모드(_M)모듈 관리기(_M)이동(_M)이름(_N):자연(_N)새 브러시(_N)새 채널(_N)새 채널(_N)...새 항목(_N)...새 그라디언트(_N)새 레이어(_N)새 레이어(_N)...새 색상표(_N)새 경로(_N)새 경로(_N)...새 무늬(_N)새 템플릿(_N)...새로운 보기(_N)새로(_N)...다음 팁(_N)잡음(_N)없음(_N)옵셋(_O)...불투명(_O)이미지 열기(_O)열기(_O)...채움 색상(_P)그리기 도구(_P)페인트브러시(_P)색상표(_P)붙여 넣기(_P)버퍼 붙여 넣기(_P)이름붙여 붙여 넣기(_P)...경로(_P)무늬(_P)원근법(_P)포스터화(_P)...기본 설정(_P)미리보기(_P)미리보기 크기(_P)이전 팁(_P)인쇄 크기(_P)...등록 정보(_P)퀵마스크 활성(_Q)마침(_Q)_RRGB(_R)반경(_R)채널 올리기(_R)레이어 올리기(_R)경로 올리기(_R)보기 올리기(_R)이미지 올리거나 열기(_R)단축키 재할당(_R)사각 선택(_R)재실행(_R)%s 재실행(_R)브러시 새로 고치기(_R)그라디언트 새로 고치기(_R)색상표 다시 읽기(_R)무늬 새로 고치기(_R)최종 색상표에서 사용 안한 색상 지우기(_R)렌더(_R)바꾸기(_R)구획 복제(_R)...선택 복제(_R)...글꼴 목록 새로 고치기(_R)순서와 표시 여부 초기화(_R)저장된 입력 장치 설정을 기본 값으로 초기화(_R)저장된 키보드 단축키 기본 값으로 복원(_R)저장된 창 위치를 기본 값으로 초기화(_R)선택사항 복원(_R)오른쪽 끝점(_R)오른쪽 인접 구획의 왼쪽 끝점(_R)회전(_R)채도(_S):저장(_S)왼쪽 색상 저장(_S)선택사항 저장(_S)마칠 때 입력 장치 설정 저장(_S)마칠 때 키보드 단축키 저장(_S)마칠 때 창 위치 저장(_S)배율 조정(_S)이미지 배율 조정(_S)...레이어 배율 조정(_S)...가져온 경로를 이미지에 맞게 배율 조절(_S)선택(_S)선택(_S)선택 편집기(_S)선택 도구(_S)모양(_S)선명하게(_S)선택 표시(_S)도구상자에 표시(_S)사인곡선(_S)작게(_S)문지르기(_S)당겨 맞출 거리(_S):선택 따라 그리기(_S)선택 따라 그리기(_S)...선택에서 빼기(_S)탭 형태(_T)템플릿(_T):템플릿(_T)텍스트(_T)임계값(_T)...아주 작게(_T)오늘의 팁(_T)도구(_T)도구(_T)레이어의 알파 채널 전송(_T)변형(_T)변형 도구(_T)실행 취소(_U)%s 실행 취소(_U)수직(_V):보기(_V)Visible(_V)웹(_W)사용할 웹 브라우저(_W):흰색(_W) (완전 불투명)화이트 밸런스(_W)너비(_W):반대 쪽으로(_W)_X 해상도:_X:확장(_X)_Y_Y 해상도:_Y:확대(_Z)확대(_Z) (%s)색상복사dpi불린 토큰 %s의 값 '%s'은(는) 'yes'나 'no'가 되어야 합니다.치명적인 해석 오류그레이스케일그레이스케일-비었음인치인치인덱스됨인덱스됨-비었음잘못된 UTF-8 문자열잘못된 아이콘 유형 값 값 '%ld'잘못된 값 '%ld' (토큰 %s)잘못된 아이콘 유형 값 '%s'잘못된 값 '%s' (토큰 '%s')밀리미터밀리미터분n/a퍼센트파이카파이카픽셀픽셀픽셀/%a픽셀/%s포인트포인트초tips-locale:ko장동수 , 2003, 2004 남성현 , 1988, 1999잘못된 UTF-8 문자열 (토큰 %s)토큰 '%s' 해석 중: %s \ No newline at end of file diff -uraN gimp-2.2.6/po/ko.po gimp-2.2.7/po/ko.po --- gimp-2.2.6/po/ko.po 2005-01-22 17:33:04.000000000 +0100 +++ gimp-2.2.7/po/ko.po 2005-04-27 16:53:05.000000000 +0200 @@ -1,23 +1,23 @@ -# gimp ko.po -# Sung-Hyun Nam , 1998, 1999 -# Dongsu Jang , 2004 +# po/ko.po +# Sung-Hyun Nam , 1998-1999 +# Dongsu Jang , 2004-2005 msgid "" msgstr "" "Project-Id-Version: HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-01-22 17:32+0100\n" -"PO-Revision-Date: 2004-01-20 19:30+0900\n" +"POT-Creation-Date: 2005-04-22 03:29+0900\n" +"PO-Revision-Date: 2005-04-26 22:15+0200\n" "Last-Translator: Dongsu Jang \n" "Language-Team: Korean \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 "(10초 후에 이 콘솔 창을 닫습니다)\n" -#: app/app_procs.c:238 +#: ../app/app_procs.c:238 msgid "" "GIMP is not properly installed for the current user.\n" "User installation was skipped because the '--no-interface' flag was used.\n" @@ -27,7 +27,7 @@ "'--no-interface' 플래그 때문에 사용자 설치를 건너뛰었습니다.\n" "사용자 설치를 하려면 '--no-interface' 플래그 없이 김프를 실행하십시오." -#: app/app_procs.c:289 +#: ../app/app_procs.c:289 #, c-format msgid "" "Unable to open a test swap file. To avoid data loss please check the " @@ -37,17 +37,17 @@ "테스트 스왑 파일을 열 수 없습니다. 데이터의 손실을 피하려면 환경 설정에 정의" "된 스왑 디렉토리(현재 \"%s\")의 위치와 허가 권한을 확인하십시오." -#: app/app_procs.c:348 app/core/gimppalette-import.c:441 +#: ../app/app_procs.c:348 ../app/core/gimppalette-import.c:441 #, c-format msgid "Opening '%s' failed: %s" msgstr "'%s' 열기 실패: %s" -#: app/batch.c:84 app/batch.c:101 +#: ../app/batch.c:84 ../app/batch.c:101 #, c-format msgid "The batch interpreter '%s' is not available, batch mode disabled." -msgstr "" +msgstr "일괄처리 해석기 '%s'이(가) 없어서, 일괄처리 모드를 중지합니다." -#: 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." @@ -55,15 +55,15 @@ "김프가 그래픽 사용자 인터페이스를 초기화 하지 못했습니다.\n" "출력 환경이 제대로 설정되어 있는지 확인하십시오." -#: 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 "김프" #. #. * anything else starting with a '-' is an error. #. -#: app/main.c:422 +#: ../app/main.c:422 #, c-format msgid "" "\n" @@ -72,11 +72,11 @@ "\n" "잘못된 선택사항 \"%s\"\n" -#: app/main.c:501 +#: ../app/main.c:501 msgid "GIMP version" msgstr "김프 버전" -#: app/main.c:509 +#: ../app/main.c:509 #, c-format msgid "" "\n" @@ -87,23 +87,23 @@ "사용법: %s [선택사항 ... ] [파일 ... ]\n" "\n" -#: app/main.c:511 +#: ../app/main.c:511 msgid "Options:\n" msgstr "선택사항:\n" -#: app/main.c:512 +#: ../app/main.c:512 msgid " -h, --help Output this help.\n" msgstr " -h, --help 이 도움말 출력.\n" -#: app/main.c:513 +#: ../app/main.c:513 msgid " -v, --version Output version information.\n" msgstr " -v, --version 버전 정보 출력.\n" -#: app/main.c:514 +#: ../app/main.c:514 msgid " --verbose Show startup messages.\n" msgstr " --verbose 시작 메시지 보임.\n" -#: app/main.c:515 +#: ../app/main.c:515 msgid "" " --no-shm Do not use shared memory between GIMP and " "plugins.\n" @@ -111,11 +111,11 @@ " --no-shm 김프와 플러그인들 사이에서 공유 메모리를 사용 안" "함.\n" -#: app/main.c:516 +#: ../app/main.c:516 msgid " --no-cpu-accel Do not use special CPU accelerations.\n" msgstr " --no-cpu-accel CPU 가속 기능을 사용 안함.\n" -#: app/main.c:517 +#: ../app/main.c:517 msgid "" " -d, --no-data Do not load brushes, gradients, palettes, " "patterns.\n" @@ -123,51 +123,51 @@ " -d, --no-data 브러시, 그라디언트, 색상표, 무늬를 읽어들이지 않" "음.\n" -#: app/main.c:518 +#: ../app/main.c:518 msgid " -f, --no-fonts Do not load any fonts.\n" msgstr " -f, --no-fonts 글꼴을 읽어들이지 않음.\n" -#: app/main.c:519 +#: ../app/main.c:519 msgid " -i, --no-interface Run without a user interface.\n" msgstr " -i, --no-interface 사용자 인터페이스없이 실행.\n" -#: app/main.c:520 +#: ../app/main.c:520 msgid " --display Use the designated X display.\n" msgstr " --display 지정된 X display 사용.\n" -#: app/main.c:521 +#: ../app/main.c:521 msgid " -s, --no-splash Do not show the startup window.\n" msgstr " -s, --no-splash 시작 창을 표시 안함.\n" -#: app/main.c:522 +#: ../app/main.c:522 msgid " --session Use an alternate sessionrc file.\n" msgstr " --session 다른 sessionrc 파일을 사용.\n" -#: app/main.c:523 +#: ../app/main.c:523 msgid " -g, --gimprc Use an alternate gimprc file.\n" msgstr " -g, --gimprc 다른 gimprc 파일을 사용.\n" -#: app/main.c:524 +#: ../app/main.c:524 msgid " --system-gimprc Use an alternate system gimprc file.\n" msgstr " --system-gimprc 다른 시스템 gimprc 파일 사용.\n" -#: app/main.c:525 +#: ../app/main.c:525 msgid "" " --dump-gimprc Output a gimprc file with default settings.\n" msgstr " --dump-gimprc 기본 설정으로 gimprc 파일 출력.\n" -#: app/main.c:526 +#: ../app/main.c:526 msgid "" " -c, --console-messages Display warnings to console instead of a dialog " "box.\n" msgstr " -c, --console-messages 대화상자 대신에 콘솔로 경고 메시지 출력.\n" -#: app/main.c:527 +#: ../app/main.c:527 msgid "" " --debug-handlers Enable non-fatal debugging signal handlers.\n" msgstr " --debug-handlers 디버깅을 위한 시그널 처리기 사용.\n" -#: app/main.c:528 +#: ../app/main.c:528 msgid "" " --stack-trace-mode \n" " Debugging mode for fatal signals.\n" @@ -175,7 +175,7 @@ " --stack-trace-mode \n" " 치명적인 신호를 위한 디버깅 모드.\n" -#: app/main.c:530 +#: ../app/main.c:530 msgid "" " --pdb-compat-mode \n" " Procedural Database compatibility mode.\n" @@ -183,25 +183,30 @@ " --pdb-compat-mode \n" " 절차 데이터베이스 호환 모드.\n" -#: app/main.c:532 +#: ../app/main.c:532 msgid "" " --batch-interpreter \n" " The procedure to process batch commands with.\n" msgstr "" +" --batch-interpreter <프로시져>\n" +" 일괄처리 명령을 처리할 프로시져.\n" -#: app/main.c:534 +#: ../app/main.c:534 msgid " -b, --batch Process commands in batch mode.\n" msgstr " -b, --batch 일괄처리 모드로 명령 처리.\n" -#: app/sanity.c:194 +#: ../app/sanity.c:194 #, c-format msgid "" "The configured filename encoding cannot be converted to UTF-8: %s\n" "\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 +#: ../app/sanity.c:213 #, c-format msgid "" "The name of the directory holding the GIMP user configuration cannot be " @@ -211,950 +216,825 @@ "8 and you didn't tell GLib about this. Please set the environment variable " "G_FILENAME_ENCODING." msgstr "" +"김프 사용자 설정을 갖고있는 디렉토리의 이름을 UTF-8로 변환할 수 없습니다: %" +"s\n" +"\n" +"대개의 경우 UTF-8이외의 인코딩을 사용하는 파일시스템을 사용하고 있지만 GLib에" +"게 알려주지 않았을 것입니다. G_FILENAME_ENCODING 환경 변수를 설정하십시오." #. initialize the list of gimp brushes -#: app/actions/actions.c:93 app/core/gimp.c:856 app/dialogs/dialogs.c:138 -#: 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 "브러시" -#: app/actions/actions.c:96 app/dialogs/dialogs.c:150 +#: ../app/actions/actions.c:97 ../app/dialogs/dialogs.c:150 msgid "Buffers" msgstr "버퍼" -#: app/actions/actions.c:99 app/dialogs/dialogs.c:163 +#: ../app/actions/actions.c:100 ../app/dialogs/dialogs.c:163 msgid "Channels" msgstr "채널" -#: app/actions/actions.c:102 -#, fuzzy +#: ../app/actions/actions.c:103 msgid "Colormap Editor" -msgstr "색상표" +msgstr "색상표 편집기" -#: app/actions/actions.c:105 app/pdb/internal_procs.c:101 -#, fuzzy +#: ../app/actions/actions.c:106 ../app/pdb/internal_procs.c:101 msgid "Context" -msgstr "/도움말(H)/문맥 도움말(_C)" +msgstr "문맥" -#: app/actions/actions.c:108 +#: ../app/actions/actions.c:109 msgid "Debug" -msgstr "" +msgstr "디버그" -#: app/actions/actions.c:111 -#, fuzzy +#: ../app/actions/actions.c:112 msgid "Dialogs" -msgstr "/대화상자(_D)" +msgstr "대화상자" -#: app/actions/actions.c:114 -#, fuzzy +#: ../app/actions/actions.c:115 msgid "Dockable" -msgstr "Drawable" +msgstr "Dockable" -#: 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 "Drawable" -#: 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 -#, fuzzy +#: ../app/actions/actions.c:130 msgid "File" -msgstr "/파일(_F)" +msgstr "파일" #. initialize the list of gimp fonts -#: app/actions/actions.c:132 app/core/gimp.c:872 app/dialogs/dialogs.c:146 -#: app/dialogs/preferences-dialog.c:2313 app/pdb/internal_procs.c:128 +#: ../app/actions/actions.c: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/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 "그라디언트" -#: app/actions/actions.c:141 -#, fuzzy +#: ../app/actions/actions.c:142 msgid "Help" -msgstr "/도움말(_H)" +msgstr "도움말" -#: 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 "이미지" #. 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/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 "색상표" #. 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 "무늬" -#: 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 "퀵마스크" -#: app/actions/actions.c:168 -#, fuzzy +#: ../app/actions/actions.c:169 msgid "Select" -msgstr "/선택(_S)" +msgstr "선택" #. 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 "템플릿" -#: app/actions/actions.c:174 -#, fuzzy +#: ../app/actions/actions.c:175 msgid "Text Editor" -msgstr "김프 텍스트 편집기" +msgstr "텍스트 편집기" -#: app/actions/actions.c:177 app/dialogs/dialogs.c:123 -#: app/dialogs/preferences-dialog.c:1585 app/dialogs/preferences-dialog.c:1588 -#: app/gui/gui.c:410 +#: ../app/actions/actions.c: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/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 "경로" -#: app/actions/actions.c:186 -#, fuzzy +#: ../app/actions/actions.c:187 msgid "View" -msgstr "/보기(_V)" +msgstr "보기" -#: app/actions/brushes-actions.c:43 +#: ../app/actions/brushes-actions.c:43 msgid "Brushes Menu" msgstr "브러시 메뉴" -#: app/actions/brushes-actions.c:47 -#, fuzzy +#: ../app/actions/brushes-actions.c:47 msgid "_New Brush" -msgstr "/새 브러시(_N)" +msgstr "새 브러시(_N)" -#: app/actions/brushes-actions.c:48 -#, fuzzy +#: ../app/actions/brushes-actions.c:48 msgid "New brush" -msgstr "/새 브러시(_N)" +msgstr "새 브러시" -#: app/actions/brushes-actions.c:53 -#, fuzzy +#: ../app/actions/brushes-actions.c:53 msgid "D_uplicate Brush" -msgstr "/브러시 복제(_U)" +msgstr "브러시 복제(_U)" -#: app/actions/brushes-actions.c:54 -#, fuzzy +#: ../app/actions/brushes-actions.c:54 msgid "Duplicate brush" -msgstr "/브러시 복제(_U)" +msgstr "브러시 복제" -#: app/actions/brushes-actions.c:59 -#, fuzzy +#: ../app/actions/brushes-actions.c:59 msgid "_Delete Brush" -msgstr "/브러시 지우기(_D)" +msgstr "브러시 지우기(_D)" -#: app/actions/brushes-actions.c:60 -#, fuzzy +#: ../app/actions/brushes-actions.c:60 msgid "Delete brush" -msgstr "/브러시 지우기(_D)" +msgstr "브러시 지우기" -#: app/actions/brushes-actions.c:65 -#, fuzzy +#: ../app/actions/brushes-actions.c:65 msgid "_Refresh Brushes" -msgstr "/브러시 새로 고치기(_R)" +msgstr "브러시 새로 고치기(_R)" -#: app/actions/brushes-actions.c:66 -#, fuzzy +#: ../app/actions/brushes-actions.c:66 msgid "Refresh brushes" -msgstr "/브러시 새로 고치기(_R)" +msgstr "브러시 새로 고치기" -#: app/actions/brushes-actions.c:74 -#, fuzzy +#: ../app/actions/brushes-actions.c:74 msgid "_Edit Brush..." -msgstr "/브러시 편집(_E)..." +msgstr "브러시 편집(_E)..." -#: app/actions/brushes-actions.c:75 -#, fuzzy +#: ../app/actions/brushes-actions.c:75 msgid "Edit brush" -msgstr "/브러시 편집(_E)..." +msgstr "브러시 편집" -#: app/actions/buffers-actions.c:42 +#: ../app/actions/buffers-actions.c:42 msgid "Buffers Menu" msgstr "버퍼 메뉴" -#: app/actions/buffers-actions.c:46 -#, fuzzy +#: ../app/actions/buffers-actions.c:46 msgid "_Paste Buffer" -msgstr "/버퍼 붙여 넣기(_P)" +msgstr "버퍼 붙여 넣기(_P)" -#: app/actions/buffers-actions.c:47 -#, fuzzy +#: ../app/actions/buffers-actions.c:47 msgid "Paste the selected buffer" -msgstr "선택한 필터를 위로 이동" +msgstr "선택한 버퍼를 붙여 넣기" -#: app/actions/buffers-actions.c:52 -#, fuzzy +#: ../app/actions/buffers-actions.c:52 msgid "Paste Buffer _Into" -msgstr "/...에 버퍼 붙여 넣기(_I)" +msgstr "버퍼를 달리 붙여 넣기(_I)" -#: app/actions/buffers-actions.c:53 -#, fuzzy +#: ../app/actions/buffers-actions.c:53 msgid "Paste the selected buffer into the selection" -msgstr "레이어나 선택 회전" +msgstr "선택한 버퍼를 선택으로 붙여 넣기" -#: app/actions/buffers-actions.c:58 -#, fuzzy +#: ../app/actions/buffers-actions.c:58 msgid "Paste Buffer as _New" -msgstr "/버퍼를 새 이미지로 붙이기(_N)" +msgstr "버퍼를 새 이미지로 붙여 넣기(_N)" -#: app/actions/buffers-actions.c:59 -#, fuzzy +#: ../app/actions/buffers-actions.c:59 msgid "Paste the selected buffer as new image" -msgstr "선택한 필터를 기본 값으로 초기화" +msgstr "선택한 버퍼를 새 이미지로 붙여 넣기" -#: app/actions/buffers-actions.c:64 -#, fuzzy +#: ../app/actions/buffers-actions.c:64 msgid "_Delete Buffer" -msgstr "/버퍼 지우기(_D)" +msgstr "버퍼 지우기(_D)" -#: app/actions/buffers-actions.c:65 -#, fuzzy +#: ../app/actions/buffers-actions.c:65 msgid "Delete the selected buffer" -msgstr "선택한 템플릿 지우기" +msgstr "선택한 버퍼를 지우기" -#: app/actions/channels-actions.c:44 +#: ../app/actions/channels-actions.c:44 msgid "Channels Menu" msgstr "채널 메뉴" -#: app/actions/channels-actions.c:48 -#, fuzzy +#: ../app/actions/channels-actions.c:48 msgid "_Edit Channel Attributes..." -msgstr "/채널 속성 편집(_E)..." +msgstr "채널 속성 편집(_E)..." -#: app/actions/channels-actions.c:49 -#, fuzzy +#: ../app/actions/channels-actions.c:49 msgid "Edit channel attributes" msgstr "채널 속성 편집" -#: app/actions/channels-actions.c:54 -#, fuzzy +#: ../app/actions/channels-actions.c:54 msgid "_New Channel..." -msgstr "/새 채널(_N)..." +msgstr "새 채널(_N)..." -#: app/actions/channels-actions.c:55 -#, fuzzy +#: ../app/actions/channels-actions.c:55 msgid "New channel..." -msgstr "/새 채널(_N)..." +msgstr "새 채널..." -#: app/actions/channels-actions.c:60 -#, fuzzy +#: ../app/actions/channels-actions.c:60 msgid "_New Channel" -msgstr "새 채널" +msgstr "새 채널(_N)" -#: app/actions/channels-actions.c:61 +#: ../app/actions/channels-actions.c:61 msgid "New channel with last values" -msgstr "" +msgstr "최근 값으로 새 채널 만들기" -#: app/actions/channels-actions.c:66 -#, fuzzy +#: ../app/actions/channels-actions.c:66 msgid "D_uplicate Channel" -msgstr "/채널 복제(_U)" +msgstr "채널 복제(_U)" -#: app/actions/channels-actions.c:67 -#, fuzzy +#: ../app/actions/channels-actions.c:67 msgid "Duplicate channel" msgstr "채널 복제" -#: app/actions/channels-actions.c:72 -#, fuzzy +#: ../app/actions/channels-actions.c:72 msgid "_Delete Channel" -msgstr "/채널 지우기(_D)" +msgstr "채널 지우기(_D)" -#: app/actions/channels-actions.c:73 app/core/core-enums.c:1089 -#, fuzzy +#: ../app/actions/channels-actions.c:73 ../app/core/core-enums.c:1091 msgid "Delete channel" msgstr "채널 지우기" -#: app/actions/channels-actions.c:78 -#, fuzzy +#: ../app/actions/channels-actions.c:78 msgid "_Raise Channel" -msgstr "/채널 올리기(_R)" +msgstr "채널 올리기(_R)" -#: app/actions/channels-actions.c:79 -#, fuzzy +#: ../app/actions/channels-actions.c:79 msgid "Raise channel" msgstr "채널 올리기" -#: app/actions/channels-actions.c:84 -#, fuzzy +#: ../app/actions/channels-actions.c:84 msgid "Raise Channel to _Top" -msgstr "채널을 맨 위로 올리기" +msgstr "채널을 맨 위로 올리기(_T)" -#: app/actions/channels-actions.c:85 -#, fuzzy +#: ../app/actions/channels-actions.c:85 msgid "Raise channel to top" msgstr "채널을 맨 위로 올리기" -#: app/actions/channels-actions.c:90 -#, fuzzy +#: ../app/actions/channels-actions.c:90 msgid "_Lower Channel" -msgstr "/채널 내리기(_L)" +msgstr "채널 내리기(_L)" -#: app/actions/channels-actions.c:91 -#, fuzzy +#: ../app/actions/channels-actions.c:91 msgid "Lower channel" msgstr "채널 내리기" -#: app/actions/channels-actions.c:96 -#, fuzzy +#: ../app/actions/channels-actions.c:96 msgid "Lower Channel to _Bottom" -msgstr "채널을 맨 아래로 내리기" +msgstr "채널을 맨 아래로 내리기(_B)" -#: app/actions/channels-actions.c:97 -#, fuzzy +#: ../app/actions/channels-actions.c:97 msgid "Lower channel to bottom" msgstr "채널을 맨 아래로 내리기" -#: app/actions/channels-actions.c:105 -#, fuzzy +#: ../app/actions/channels-actions.c:105 msgid "Channel to Sele_ction" -msgstr "/채널을 선택으로(_C)" +msgstr "채널을 선택으로(_C)" -#: app/actions/channels-actions.c:106 -#, fuzzy +#: ../app/actions/channels-actions.c:106 msgid "Channel to selection" msgstr "채널을 선택으로" -#: app/actions/channels-actions.c:111 app/actions/layers-actions.c:226 -#: app/actions/vectors-actions.c:173 -#, fuzzy +#: ../app/actions/channels-actions.c:111 ../app/actions/layers-actions.c:226 +#: ../app/actions/vectors-actions.c:173 msgid "_Add to Selection" -msgstr "/선택에 더하기(_A)" +msgstr "선택에 더하기(_A)" -#: 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 "" +msgstr "더하기" -#: app/actions/channels-actions.c:117 app/actions/layers-actions.c:231 -#: app/actions/layers-actions.c:254 app/actions/vectors-actions.c:179 -#, fuzzy +#: ../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 "/선택에서 빼기(_S)" +msgstr "선택에서 빼기(_S)" -#: app/actions/channels-actions.c:118 app/actions/vectors-actions.c:180 -#: app/widgets/gimpwidgets-constructors.c:69 -#: app/widgets/gimpwidgets-constructors.c:102 +#: ../app/actions/channels-actions.c:118 ../app/actions/vectors-actions.c:180 +#: ../app/widgets/gimpwidgets-constructors.c:69 +#: ../app/widgets/gimpwidgets-constructors.c:102 msgid "Subtract" msgstr "빼기" -#: app/actions/channels-actions.c:123 app/actions/layers-actions.c:236 -#: app/actions/layers-actions.c:259 app/actions/vectors-actions.c:185 -#, fuzzy +#: ../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 "/선택과 교차하기(_I)" +msgstr "선택과 교집합(_I)" -#: app/actions/channels-actions.c:124 app/actions/vectors-actions.c:186 -#, fuzzy +#: ../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 +#: ../app/actions/channels-commands.c:86 +#: ../app/actions/channels-commands.c:383 msgid "Channel Attributes" msgstr "채널 속성" -#: app/actions/channels-commands.c:89 +#: ../app/actions/channels-commands.c:89 msgid "Edit Channel Attributes" msgstr "채널 속성 편집" -#: app/actions/channels-commands.c:91 +#: ../app/actions/channels-commands.c:91 msgid "Edit Channel Color" msgstr "채널 색상 편집" -#: app/actions/channels-commands.c:92 app/actions/channels-commands.c:124 +#: ../app/actions/channels-commands.c:92 +#: ../app/actions/channels-commands.c:124 msgid "Fill Opacity:" -msgstr "불투명 채우기:" +msgstr "채우기 불투명도:" -#: app/actions/channels-commands.c:117 app/actions/channels-commands.c:118 -#: app/actions/channels-commands.c:159 app/actions/channels-commands.c:163 -#: app/widgets/gimpchanneltreeview.c:256 +#: ../app/actions/channels-commands.c:117 +#: ../app/actions/channels-commands.c:118 +#: ../app/actions/channels-commands.c:159 +#: ../app/actions/channels-commands.c:163 +#: ../app/widgets/gimpchanneltreeview.c:256 msgid "New Channel" msgstr "새 채널" -#: app/actions/channels-commands.c:121 +#: ../app/actions/channels-commands.c:121 msgid "New Channel Options" msgstr "새 채널 선택사항" -#: app/actions/channels-commands.c:123 +#: ../app/actions/channels-commands.c:123 msgid "New Channel Color" msgstr "새 채널 색상" -#: app/actions/channels-commands.c:246 +#: ../app/actions/channels-commands.c:246 #, c-format msgid "%s Channel Copy" msgstr "채널 %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 "채널을 선택으로" -#: app/actions/colormap-editor-actions.c:43 -#, fuzzy +#: ../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 -#, fuzzy +#: ../app/actions/colormap-editor-actions.c:47 +#: ../app/actions/palette-editor-actions.c:47 msgid "_Edit Color..." -msgstr "/색상 편집(_E)..." +msgstr "색상 편집(_E)..." -#: app/actions/colormap-editor-actions.c:48 -#: app/actions/palette-editor-actions.c:48 -#, fuzzy +#: ../app/actions/colormap-editor-actions.c:48 +#: ../app/actions/palette-editor-actions.c:48 msgid "Edit color" msgstr "색상 편집" -#: app/actions/colormap-editor-actions.c:56 -#, fuzzy +#: ../app/actions/colormap-editor-actions.c:56 msgid "_Add Color from FG" -msgstr "/전경에서 색상 더하기(_A)" +msgstr "전경에서 색상 더하기(_A)" -#: app/actions/colormap-editor-actions.c:57 -#, fuzzy +#: ../app/actions/colormap-editor-actions.c:57 msgid "Add color from FG" -msgstr "/전경에서 색상 더하기(_A)" +msgstr "전경에서 색상 더하기" -#: app/actions/colormap-editor-actions.c:62 -#, fuzzy +#: ../app/actions/colormap-editor-actions.c:62 msgid "_Add Color from BG" -msgstr "/배경에서 색상 더하기(_A)" +msgstr "배경에서 색상 더하기(_A)" -#: app/actions/colormap-editor-actions.c:63 -#, fuzzy +#: ../app/actions/colormap-editor-actions.c:63 msgid "Add color from BG" -msgstr "/배경에서 색상 더하기(_A)" +msgstr "배경에서 색상 더하기" -#: app/actions/colormap-editor-commands.c:70 -#, fuzzy, c-format +#: ../app/actions/colormap-editor-commands.c:70 +#, c-format msgid "Edit colormap entry #%d" -msgstr "색상표 항목 편집" +msgstr "색상표 항목 편집 항목 #%d" -#: app/actions/colormap-editor-commands.c:76 -#, fuzzy +#: ../app/actions/colormap-editor-commands.c:76 msgid "Edit Colormap Entry" msgstr "색상표 항목 편집" -#: app/actions/context-actions.c:46 -#, fuzzy +#: ../app/actions/context-actions.c:46 msgid "_Context" -msgstr "/도움말(H)/문맥 도움말(_C)" +msgstr "문맥(_C)" -#: app/actions/context-actions.c:47 app/actions/layers-actions.c:53 -#: app/actions/plug-in-actions.c:64 -#, fuzzy +#: ../app/actions/context-actions.c:47 ../app/actions/layers-actions.c:53 +#: ../app/actions/plug-in-actions.c:64 msgid "_Colors" -msgstr "색상" +msgstr "색상(_C)" -#: app/actions/context-actions.c:48 app/actions/layers-actions.c:59 -#, fuzzy +#: ../app/actions/context-actions.c:48 ../app/actions/layers-actions.c:59 msgid "_Opacity" -msgstr "불투명" +msgstr "불투명(_O)" -#: app/actions/context-actions.c:49 -#, fuzzy +#: ../app/actions/context-actions.c:49 msgid "Paint _Mode" -msgstr "편집 모드" +msgstr "칠하기 모드(_M)" -#: app/actions/context-actions.c:50 -#, fuzzy +#: ../app/actions/context-actions.c:50 msgid "_Tool" -msgstr "/도구(_T)" +msgstr "도구(_T)" -#: 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 "브러시(_B)" -#: 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 "무늬(_P)" -#: app/actions/context-actions.c:53 -#, fuzzy +#: ../app/actions/context-actions.c:53 msgid "_Palette" -msgstr "색상표" +msgstr "색상표(_P)" -#: 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 "그라디언트(_G)" -#: app/actions/context-actions.c:55 -#, fuzzy +#: ../app/actions/context-actions.c:55 msgid "_Font" -msgstr "글꼴(_F):" +msgstr "글꼴(_F)" -#: app/actions/context-actions.c:57 -#, fuzzy +#: ../app/actions/context-actions.c:57 msgid "_Shape" -msgstr "모양" +msgstr "모양(_S)" -#: app/actions/context-actions.c:58 -#, fuzzy +#: ../app/actions/context-actions.c:58 msgid "_Radius" -msgstr "반경:" +msgstr "반경(_R)" -#: app/actions/context-actions.c:59 -#, fuzzy +#: ../app/actions/context-actions.c:59 msgid "S_pikes" -msgstr "픽셀" +msgstr "Spikes(_P)" -#: app/actions/context-actions.c:60 -#, fuzzy +#: ../app/actions/context-actions.c:60 msgid "_Hardness" -msgstr "경도" +msgstr "경도(_H)" -#: app/actions/context-actions.c:61 -#, fuzzy +#: ../app/actions/context-actions.c:61 msgid "_Aspect" -msgstr "원근법" +msgstr "Aspect(_A)" -#: app/actions/context-actions.c:62 -#, fuzzy +#: ../app/actions/context-actions.c:62 msgid "A_ngle" -msgstr "각도:" +msgstr "각도(_N)" -#: app/actions/context-actions.c:65 -#, fuzzy +#: ../app/actions/context-actions.c:65 msgid "_Default Colors" -msgstr "/도구(T)/기본 색상(_D)" +msgstr "기본 색상(_D)" -#: app/actions/context-actions.c:70 -#, fuzzy +#: ../app/actions/context-actions.c:70 msgid "S_wap Colors" -msgstr "/도구(T)/색상 바꾸기(_W)" +msgstr "색상 바꾸기(_W)" -#: app/actions/data-commands.c:79 app/core/gimpimage.c:1283 -#: app/core/gimppalette-import.c:219 app/core/gimppalette.c:523 -#: app/core/gimppalette.c:634 app/dialogs/palette-import-dialog.c:684 -#: app/pdb/image_cmds.c:3760 +#: ../app/actions/data-commands.c:79 ../app/core/gimpimage.c:1283 +#: ../app/core/gimppalette-import.c:219 ../app/core/gimppalette.c:523 +#: ../app/core/gimppalette.c:634 ../app/dialogs/palette-import-dialog.c:684 +#: ../app/pdb/image_cmds.c:3760 msgid "Untitled" msgstr "제목없음" -#: app/actions/data-commands.c:149 -#, fuzzy +#: ../app/actions/data-commands.c:149 msgid "Delete Object" -msgstr "데이터 객체 지우기" +msgstr "객체 지우기" -#: app/actions/data-commands.c:167 +#: ../app/actions/data-commands.c:167 #, c-format msgid "Are you sure you want to delete '%s' from the list and from disk?" msgstr "정말 '%s'을(를) 목록과 디스크에서 지웁니까?" -#: app/actions/dialogs-actions.c:38 -#, fuzzy +#: ../app/actions/dialogs-actions.c:38 msgid "_Dialogs" -msgstr "/대화상자(_D)" +msgstr "대화상자(_D)" -#: app/actions/dialogs-actions.c:39 -#, fuzzy +#: ../app/actions/dialogs-actions.c:39 msgid "Create New Doc_k" -msgstr "/대화상자(D)/새 독 만들기(_K)" +msgstr "새 독 만들기(_K)" -#: app/actions/dialogs-actions.c:42 -#, fuzzy +#: ../app/actions/dialogs-actions.c:42 msgid "_Layers, Channels & Paths" -msgstr "/대화상자(D)/새 독 만들기(K)/레이어, 채널, 경로(_L)" +msgstr "레이어, 채널 및 경로(_L)" -#: app/actions/dialogs-actions.c:47 -#, fuzzy +#: ../app/actions/dialogs-actions.c:47 msgid "_Brushes, Patterns & Gradients" -msgstr "/대화상자(D)/새 독 만들기(K)/브러시, 무늬, 그라디언트(_B)" +msgstr "브러시, 무늬 및 그라디언트(_B)" -#: app/actions/dialogs-actions.c:52 +#: ../app/actions/dialogs-actions.c:52 msgid "_Misc. Stuff" -msgstr "" +msgstr "기타 도구(_M)" -#: app/actions/dialogs-actions.c:57 -#, fuzzy +#: ../app/actions/dialogs-actions.c:57 msgid "Tool_box" -msgstr "도구상자 메뉴" +msgstr "도구상자(_B)" -#: app/actions/dialogs-actions.c:65 -#, fuzzy +#: ../app/actions/dialogs-actions.c:65 msgid "Tool _Options" -msgstr "도구 선택사항" +msgstr "도구 선택사항(_O)" -#: app/actions/dialogs-actions.c:70 -#, fuzzy +#: ../app/actions/dialogs-actions.c:70 msgid "_Device Status" -msgstr "장치 상태" +msgstr "장치 상태(_D)" -#: app/actions/dialogs-actions.c:75 -#, fuzzy +#: ../app/actions/dialogs-actions.c:75 msgid "_Layers" -msgstr "레이어" +msgstr "레이어(_L)" -#: app/actions/dialogs-actions.c:80 -#, fuzzy +#: ../app/actions/dialogs-actions.c:80 msgid "_Channels" -msgstr "채널" +msgstr "채널(_C)" -#: app/actions/dialogs-actions.c:85 app/tools/gimpvectortool.c:162 -#, fuzzy +#: ../app/actions/dialogs-actions.c:85 ../app/tools/gimpvectortool.c:162 msgid "_Paths" -msgstr "경로" +msgstr "경로(_P)" -#: app/actions/dialogs-actions.c:90 -#, fuzzy +#: ../app/actions/dialogs-actions.c:90 msgid "Color_map" -msgstr "색상표" +msgstr "색상표(_M)" -#: app/actions/dialogs-actions.c:95 -#, fuzzy +#: ../app/actions/dialogs-actions.c:95 msgid "Histogra_m" -msgstr "히스토그램" +msgstr "히스토그램(_M)" -#: app/actions/dialogs-actions.c:100 -#, fuzzy +#: ../app/actions/dialogs-actions.c:100 msgid "_Selection Editor" -msgstr "선택 편집기" +msgstr "선택 편집기(_S)" -#: app/actions/dialogs-actions.c:105 -#, fuzzy +#: ../app/actions/dialogs-actions.c:105 msgid "Na_vigation" -msgstr "네비게이션" +msgstr "네비게이션(_V)" -#: app/actions/dialogs-actions.c:110 -#, fuzzy +#: ../app/actions/dialogs-actions.c:110 msgid "Undo _History" -msgstr "실행 취소 이력" +msgstr "실행 취소 이력(_H)" -#: app/actions/dialogs-actions.c:115 -#, fuzzy +#: ../app/actions/dialogs-actions.c:115 msgid "Colo_rs" -msgstr "색상" +msgstr "색상(_R)" -#: app/actions/dialogs-actions.c:120 -#, fuzzy +#: ../app/actions/dialogs-actions.c:120 msgid "_Brushes" -msgstr "브러시" +msgstr "브러시(_B)" -#: app/actions/dialogs-actions.c:125 -#, fuzzy +#: ../app/actions/dialogs-actions.c:125 msgid "P_atterns" -msgstr "무늬" +msgstr "무늬(_A)" -#: app/actions/dialogs-actions.c:130 -#, fuzzy +#: ../app/actions/dialogs-actions.c:130 msgid "_Gradients" msgstr "그라디언트(_G)" -#: app/actions/dialogs-actions.c:135 -#, fuzzy +#: ../app/actions/dialogs-actions.c:135 msgid "Pal_ettes" -msgstr "색상표" +msgstr "색상표(_E)" -#: app/actions/dialogs-actions.c:140 -#, fuzzy +#: ../app/actions/dialogs-actions.c:140 msgid "_Fonts" -msgstr "글꼴" +msgstr "글꼴(_F)" -#: app/actions/dialogs-actions.c:145 -#, fuzzy +#: ../app/actions/dialogs-actions.c:145 msgid "B_uffers" -msgstr "버퍼" +msgstr "버퍼(_U)" -#: app/actions/dialogs-actions.c:150 -#, fuzzy +#: ../app/actions/dialogs-actions.c:150 msgid "_Images" -msgstr "이미지" +msgstr "이미지(_I)" -#: app/actions/dialogs-actions.c:155 -#, fuzzy +#: ../app/actions/dialogs-actions.c:155 msgid "Document Histor_y" -msgstr "문서 이력" +msgstr "문서 이력(_Y)" -#: app/actions/dialogs-actions.c:160 -#, fuzzy +#: ../app/actions/dialogs-actions.c:160 msgid "_Templates" -msgstr "템플릿" +msgstr "템플릿(_T)" -#: app/actions/dialogs-actions.c:165 -#, fuzzy +#: ../app/actions/dialogs-actions.c:165 msgid "T_ools" -msgstr "도구" +msgstr "도구(_O)" -#: app/actions/dialogs-actions.c:170 -#, fuzzy +#: ../app/actions/dialogs-actions.c:170 msgid "Error Co_nsole" -msgstr "오류 콘솔" +msgstr "오류 콘솔(_N)" -#: app/actions/dialogs-actions.c:180 -#, fuzzy +#: ../app/actions/dialogs-actions.c:180 msgid "_Preferences" -msgstr "기본 설정" +msgstr "기본 설정(_P)" -#: app/actions/dialogs-actions.c:185 -#, fuzzy +#: ../app/actions/dialogs-actions.c:185 msgid "_Module Manager" -msgstr "모듈 관리기" +msgstr "모듈 관리기(_M)" -#: app/actions/dialogs-actions.c:190 -#, fuzzy +#: ../app/actions/dialogs-actions.c:190 msgid "_Tip of the Day" -msgstr "/도움말(H)/오늘의 팁(_T)" +msgstr "오늘의 팁(_T)" -#: app/actions/dialogs-actions.c:195 -#, fuzzy +#: ../app/actions/dialogs-actions.c:195 msgid "_About" -msgstr "자동(_A)" +msgstr "정보(_A)" -#: app/actions/dockable-actions.c:49 +#: ../app/actions/dockable-actions.c:49 msgid "Dialogs Menu" msgstr "대화상자 메뉴" -#: app/actions/dockable-actions.c:53 -#, fuzzy +#: ../app/actions/dockable-actions.c:53 msgid "_Add Tab" -msgstr "/탭 더하기" +msgstr "탭 더하기(_A)" -#: app/actions/dockable-actions.c:54 -#, fuzzy +#: ../app/actions/dockable-actions.c:54 msgid "_Preview Size" -msgstr "/미리보기 크기(_Z)" +msgstr "미리보기 크기(_P)" -#: app/actions/dockable-actions.c:55 -#, fuzzy +#: ../app/actions/dockable-actions.c:55 msgid "_Tab Style" -msgstr "/탭 형태(_T)" +msgstr "탭 형태(_T)" -#: app/actions/dockable-actions.c:58 -#, fuzzy +#: ../app/actions/dockable-actions.c:58 msgid "_Close Tab" -msgstr "/탭 닫기(_C)" +msgstr "탭 닫기(_C)" -#: app/actions/dockable-actions.c:63 -#, fuzzy +#: ../app/actions/dockable-actions.c:63 msgid "_Detach Tab" -msgstr "/탭 떼어내기(_D)" +msgstr "탭 떼어내기(_D)" -#: app/actions/dockable-actions.c:68 -#, fuzzy +#: ../app/actions/dockable-actions.c:68 msgid "M_ove to Screen..." -msgstr "/화면으로 이동..." +msgstr "화면으로 이동(_O)..." -#: app/actions/dockable-actions.c:76 -#, fuzzy +#: ../app/actions/dockable-actions.c:76 msgid "_Show Image Selection" -msgstr "선택 표시(_E)" +msgstr "선택 표시(_S)" -#: app/actions/dockable-actions.c:82 -#, fuzzy +#: ../app/actions/dockable-actions.c:82 msgid "Auto _Follow Active Image" -msgstr "/자동으로 현재 이미지 따라가기(_I)" +msgstr "자동으로 현재 이미지 따라가기(_F)" -#: app/actions/dockable-actions.c:101 -#, fuzzy +#: ../app/actions/dockable-actions.c:101 msgid "_Tiny" -msgstr "아주 작게" +msgstr "아주 작게(_T)" -#: app/actions/dockable-actions.c:102 -#, fuzzy +#: ../app/actions/dockable-actions.c:102 msgid "E_xtra Small" -msgstr "더 작게" +msgstr "더 작게(_X)" -#: app/actions/dockable-actions.c:103 -#, fuzzy +#: ../app/actions/dockable-actions.c:103 msgid "_Small" -msgstr "작게" +msgstr "작게(_S)" -#: app/actions/dockable-actions.c:104 -#, fuzzy +#: ../app/actions/dockable-actions.c:104 msgid "_Medium" -msgstr "중간" +msgstr "중간(_M)" -#: app/actions/dockable-actions.c:105 -#, fuzzy +#: ../app/actions/dockable-actions.c:105 msgid "_Large" -msgstr "크게" +msgstr "크게(_L)" -#: app/actions/dockable-actions.c:106 -#, fuzzy +#: ../app/actions/dockable-actions.c:106 msgid "Ex_tra Large" -msgstr "더 크게" +msgstr "더 크게(_T)" -#: app/actions/dockable-actions.c:107 -#, fuzzy +#: ../app/actions/dockable-actions.c:107 msgid "_Huge" -msgstr "거대하게" +msgstr "거대하게(_H)" -#: app/actions/dockable-actions.c:108 -#, fuzzy +#: ../app/actions/dockable-actions.c:108 msgid "_Enormous" -msgstr "더 거대하게" +msgstr "더 거대하게(_E)" -#: app/actions/dockable-actions.c:109 -#, fuzzy +#: ../app/actions/dockable-actions.c:109 msgid "_Gigantic" -msgstr "아주 거대하게" +msgstr "아주 거대하게(_G)" -#: app/actions/dockable-actions.c:114 -#, fuzzy +#: ../app/actions/dockable-actions.c:114 msgid "_Icon" -msgstr "아이콘(_I):" +msgstr "아이콘(_I)" -#: app/actions/dockable-actions.c:115 -#, fuzzy +#: ../app/actions/dockable-actions.c:115 msgid "Current _Status" -msgstr "현재 상태" +msgstr "현재 상태(_S)" -#: app/actions/dockable-actions.c:116 -#, fuzzy +#: ../app/actions/dockable-actions.c:116 msgid "_Text" -msgstr "텍스트" +msgstr "텍스트(_T)" -#: app/actions/dockable-actions.c:117 -#, fuzzy +#: ../app/actions/dockable-actions.c:117 msgid "I_con & Text" -msgstr "아이콘과 글자" +msgstr "아이콘과 글자(_C)" -#: app/actions/dockable-actions.c:118 -#, fuzzy +#: ../app/actions/dockable-actions.c:118 msgid "St_atus & Text" -msgstr "상태와 글자" +msgstr "상태와 글자(_A)" -#: app/actions/dockable-actions.c:127 -#, fuzzy +#: ../app/actions/dockable-actions.c:127 msgid "View as _List" -msgstr "/목록으로 보기(_L)" +msgstr "목록으로 보기(_L)" -#: app/actions/dockable-actions.c:132 -#, fuzzy +#: ../app/actions/dockable-actions.c:132 msgid "View as _Grid" -msgstr "/격자로 보기(_G)" +msgstr "격자로 보기(_G)" -#: app/actions/documents-actions.c:42 +#: ../app/actions/documents-actions.c:42 msgid "Documents Menu" msgstr "문서 메뉴" -#: app/actions/documents-actions.c:46 -#, fuzzy +#: ../app/actions/documents-actions.c:46 msgid "_Open Image" -msgstr "/이미지 열기(_O)" +msgstr "이미지 열기(_O)" -#: app/actions/documents-actions.c:47 -#, fuzzy +#: ../app/actions/documents-actions.c:47 msgid "Open the selected entry" -msgstr "선택된 항목 지우기" +msgstr "선택된 항목 열기" -#: app/actions/documents-actions.c:52 -#, fuzzy +#: ../app/actions/documents-actions.c:52 msgid "_Raise or Open Image" -msgstr "/이미지 올리거나 열기(_R)" +msgstr "이미지 올리거나 열기(_R)" -#: app/actions/documents-actions.c:53 +#: ../app/actions/documents-actions.c:53 msgid "Raise window if already open" -msgstr "" +msgstr "이미 열려 있으면 창을 올리기" -#: app/actions/documents-actions.c:58 -#, fuzzy +#: ../app/actions/documents-actions.c:58 msgid "File Open _Dialog" -msgstr "/파일 열기 대화상자(_D)" +msgstr "파일 열기 대화상자(_D)" -#: app/actions/documents-actions.c:59 -#, fuzzy +#: ../app/actions/documents-actions.c:59 msgid "Open image dialog" -msgstr "이미지 열기" +msgstr "이미지 열기 대화상자" -#: app/actions/documents-actions.c:64 -#, fuzzy +#: ../app/actions/documents-actions.c:64 msgid "Remove _Entry" -msgstr "/항목 지우기(_E)" +msgstr "항목 지우기(_E)" -#: app/actions/documents-actions.c:65 -#, fuzzy +#: ../app/actions/documents-actions.c:65 msgid "Remove the selected entry" msgstr "선택된 항목 지우기" -#: app/actions/documents-actions.c:70 -#, fuzzy +#: ../app/actions/documents-actions.c:70 msgid "Recreate _Preview" -msgstr "/미리보기 다시 만들기(_P)" +msgstr "미리보기 다시 만들기(_P)" -#: app/actions/documents-actions.c:71 -#, fuzzy +#: ../app/actions/documents-actions.c:71 msgid "Recreate preview" -msgstr "/미리보기 다시 만들기(_P)" +msgstr "미리보기 다시 만들기(_P)" -#: app/actions/documents-actions.c:76 -#, fuzzy +#: ../app/actions/documents-actions.c:76 msgid "Reload _all Previews" -msgstr "/모든 미리보기 다시 읽기(_A)" +msgstr "모든 미리보기 다시 읽기(_A)" -#: app/actions/documents-actions.c:77 -#, fuzzy +#: ../app/actions/documents-actions.c:77 msgid "Reload all previews" -msgstr "/모든 미리보기 다시 읽기(_A)" +msgstr "모든 미리보기 다시 읽기(_A)" -#: app/actions/documents-actions.c:82 -#, fuzzy +#: ../app/actions/documents-actions.c:82 msgid "Remove Dangling E_ntries" -msgstr "/원본이 없는 항목 지우기(_N)" +msgstr "원본이 없는 항목 지우기(_N)" -#: app/actions/documents-actions.c:83 -#, fuzzy +#: ../app/actions/documents-actions.c:83 msgid "Remove dangling entries" -msgstr "/원본이 없는 항목 지우기(_N)" +msgstr "원본이 없는 항목 지우기" -#: app/actions/documents-commands.c:251 app/actions/file-commands.c:170 -#: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 -#: app/dialogs/file-open-location-dialog.c:193 -#: app/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" @@ -1165,272 +1045,236 @@ "\n" "%s" -#: app/actions/drawable-actions.c:45 -#, fuzzy +#: ../app/actions/drawable-actions.c:45 msgid "_Desaturate" -msgstr "무채화" +msgstr "무채화(_D)" -#: app/actions/drawable-actions.c:50 -#, fuzzy +#: ../app/actions/drawable-actions.c:50 msgid "_Equalize" -msgstr "평탄화" +msgstr "평탄화(_E)" -#: app/actions/drawable-actions.c:55 -#, fuzzy +#: ../app/actions/drawable-actions.c:55 msgid "In_vert" -msgstr "반전" +msgstr "반전(_V)" -#: app/actions/drawable-actions.c:60 +#: ../app/actions/drawable-actions.c:60 msgid "_White Balance" -msgstr "" +msgstr "화이트 밸런스(_W)" -#: app/actions/drawable-actions.c:65 -#, fuzzy +#: ../app/actions/drawable-actions.c:65 msgid "_Offset..." -msgstr "옵셋" +msgstr "옵셋(_O)..." -#: app/actions/drawable-actions.c:73 app/actions/vectors-actions.c:153 -#, fuzzy +#: ../app/actions/drawable-actions.c:73 ../app/actions/vectors-actions.c:153 msgid "_Linked" -msgstr "선형" +msgstr "Linked(_L)" -#: app/actions/drawable-actions.c:79 app/actions/vectors-actions.c:147 -#, fuzzy +#: ../app/actions/drawable-actions.c:79 ../app/actions/vectors-actions.c:147 msgid "_Visible" -msgstr "/파일(_F)" +msgstr "Visible(_V)" -#: app/actions/drawable-actions.c:88 app/actions/image-actions.c:141 -#, fuzzy +#: ../app/actions/drawable-actions.c:88 ../app/actions/image-actions.c:141 msgid "Flip _Horizontally" -msgstr "수평(_H):" +msgstr "가로로 뒤집기(_H)" -#: app/actions/drawable-actions.c:93 app/actions/image-actions.c:146 -#, fuzzy +#: ../app/actions/drawable-actions.c:93 ../app/actions/image-actions.c:146 msgid "Flip _Vertically" -msgstr "수직(_V):" +msgstr "세로로 뒤집기(_V)" #. please use the degree symbol in the translation -#: app/actions/drawable-actions.c:101 app/actions/image-actions.c:155 -#, fuzzy +#: ../app/actions/drawable-actions.c:101 ../app/actions/image-actions.c:155 msgid "Rotate 90 degrees _CW" -msgstr "/레이어(L)/변형(T)/시계방향으로 90도 회전(_C)" +msgstr "시계방향으로 90도 회전(_C)" -#: app/actions/drawable-actions.c:106 app/actions/image-actions.c:160 -#, fuzzy +#: ../app/actions/drawable-actions.c:106 ../app/actions/image-actions.c:160 msgid "Rotate _180 degrees" -msgstr "/이미지(I)/변형(T)/_180도 회전" +msgstr "_180도 회전" -#: app/actions/drawable-actions.c:111 app/actions/image-actions.c:165 -#, fuzzy +#: ../app/actions/drawable-actions.c:111 ../app/actions/image-actions.c:165 msgid "Rotate 90 degrees CC_W" -msgstr "/이미지(I)/변형(T)/시계반대방향으로 90도 회전(_W)" +msgstr "시계반대방향으로 90도 회전(_W)" -#: app/actions/drawable-commands.c:58 +#: ../app/actions/drawable-commands.c:58 msgid "Desaturate operates only on RGB color layers." msgstr "무채화는 RGB 색상 레이어에서만 동작합니다." -#: app/actions/drawable-commands.c:76 +#: ../app/actions/drawable-commands.c:76 msgid "Equalize does not operate on indexed layers." msgstr "균등화는 인덱스된 레이어에서 동작하지 않습니다." -#: app/actions/drawable-commands.c:94 +#: ../app/actions/drawable-commands.c:94 msgid "Invert does not operate on indexed layers." msgstr "반전은 인덱스된 레이어에서 동작하지 않습니다." -#: app/actions/drawable-commands.c:114 -#, fuzzy +#: ../app/actions/drawable-commands.c:114 msgid "White Balance operates only on RGB color layers." -msgstr "색상 균형은 RGB 색상 레이어에만 동작합니다." +msgstr "화이트 밸런스는 RGB 색상 레이어에만 동작합니다." -#: app/actions/edit-actions.c:61 -#, fuzzy +#: ../app/actions/edit-actions.c:61 msgid "_Edit" -msgstr "/편집(_E)" +msgstr "편집(_E)" -#: app/actions/edit-actions.c:62 -#, fuzzy +#: ../app/actions/edit-actions.c:62 msgid "_Buffer" -msgstr "버퍼" +msgstr "버퍼(_B)" -#: 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 "실행 취소(_U)" -#: 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 "실행 취소" -#: 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 "재실행(_R)" -#: app/actions/edit-actions.c:72 +#: ../app/actions/edit-actions.c:72 msgid "Redo" msgstr "재실행" -#: app/actions/edit-actions.c:77 -#, fuzzy +#: ../app/actions/edit-actions.c:77 msgid "_Clear Undo History" -msgstr "실행 취소 이력" +msgstr "실행 취소 이력(_C)" -#: app/actions/edit-actions.c:78 -#, fuzzy +#: ../app/actions/edit-actions.c:78 msgid "Clear undo history..." -msgstr "실행 취소 이력" +msgstr "실행 취소 이력..." -#: app/actions/edit-actions.c:83 -#, fuzzy +#: ../app/actions/edit-actions.c:83 msgid "Cu_t" -msgstr "잘라내기" +msgstr "잘라내기(_T)" -#: app/actions/edit-actions.c:88 -#, fuzzy +#: ../app/actions/edit-actions.c:88 msgid "_Copy" -msgstr "자르기" +msgstr "복사(_C)" #. GIMP_STOCK_COPY_VISIBLE, -#: app/actions/edit-actions.c:93 -#, fuzzy +#: ../app/actions/edit-actions.c:93 msgid "Copy _Visible" -msgstr "/파일(_F)" +msgstr "보이는대로 복사(_V)" -#: app/actions/edit-actions.c:98 -#, fuzzy +#: ../app/actions/edit-actions.c:98 msgid "_Paste" -msgstr "붙여 넣기" +msgstr "붙여 넣기(_P)" -#: app/actions/edit-actions.c:103 -#, fuzzy +#: ../app/actions/edit-actions.c:103 msgid "Paste _Into" -msgstr "안에 붙여 넣기" +msgstr "다르게 붙여 넣기(_I)" -#: app/actions/edit-actions.c:108 -#, fuzzy +#: ../app/actions/edit-actions.c:108 msgid "Paste as _New" -msgstr "새로 붙여 넣기" +msgstr "새로 붙여 넣기(_N)" -#: app/actions/edit-actions.c:113 -#, fuzzy +#: ../app/actions/edit-actions.c:113 msgid "Cu_t Named..." -msgstr "이름붙여 잘라내기" +msgstr "이름붙여 잘라내기(_T)..." -#: app/actions/edit-actions.c:118 -#, fuzzy +#: ../app/actions/edit-actions.c:118 msgid "_Copy Named..." -msgstr "이름붙여 복사" +msgstr "이름붙여 복사(_C)..." -#: app/actions/edit-actions.c:123 -#, fuzzy +#: ../app/actions/edit-actions.c:123 msgid "_Paste Named..." -msgstr "/편집(E)/버퍼(B)/이름붙여 붙여 넣기(_P)..." +msgstr "이름붙여 붙여 넣기(_P)..." -#: app/actions/edit-actions.c:128 -#, fuzzy +#: ../app/actions/edit-actions.c:128 msgid "Cl_ear" -msgstr "깨끗이" +msgstr "지우기(_E)" -#: app/actions/edit-actions.c:136 -#, fuzzy +#: ../app/actions/edit-actions.c:136 msgid "Fill with _FG Color" -msgstr "전경색으로 채우기" +msgstr "전경색으로 채우기(_F)" -#: app/actions/edit-actions.c:141 -#, fuzzy +#: ../app/actions/edit-actions.c:141 msgid "Fill with B_G Color" -msgstr "배경색으로 채우기" +msgstr "배경색으로 채우기(_G)" -#: app/actions/edit-actions.c:146 -#, fuzzy +#: ../app/actions/edit-actions.c:146 msgid "Fill with P_attern" -msgstr "무늬로 채우기" +msgstr "무늬로 채우기(_A)" -#: app/actions/edit-actions.c:214 +#: ../app/actions/edit-actions.c:214 #, c-format msgid "_Undo %s" msgstr "%s 실행 취소(_U)" -#: app/actions/edit-actions.c:219 +#: ../app/actions/edit-actions.c:219 #, c-format msgid "_Redo %s" msgstr "%s 재실행(_R)" -#: app/actions/edit-commands.c:104 -#, fuzzy +#: ../app/actions/edit-commands.c:104 msgid "Clear Undo History" msgstr "실행 취소 이력" -#: app/actions/edit-commands.c:122 +#: ../app/actions/edit-commands.c:122 msgid "Really clear image's undo history?" -msgstr "" +msgstr "정말로 이미지의 실행 취소 이력을 지우겠습니까?" -#: app/actions/edit-commands.c:210 +#: ../app/actions/edit-commands.c:210 msgid "Cut Named" msgstr "이름붙여 잘라내기" -#: app/actions/edit-commands.c:213 app/actions/edit-commands.c:233 +#: ../app/actions/edit-commands.c:213 ../app/actions/edit-commands.c:233 msgid "Enter a name for this buffer" msgstr "버퍼의 이름을 입력하십시오" -#: app/actions/edit-commands.c:230 +#: ../app/actions/edit-commands.c:230 msgid "Copy Named" msgstr "이름붙여 복사" -#: app/actions/edit-commands.c:337 +#: ../app/actions/edit-commands.c:337 msgid "There is no active layer or channel to cut from." msgstr "잘라낼 활성 레이어나 채널이 없습니다." -#: app/actions/edit-commands.c:349 app/actions/edit-commands.c:386 +#: ../app/actions/edit-commands.c:349 ../app/actions/edit-commands.c:386 msgid "(Unnamed Buffer)" msgstr "(이름없는 버퍼)" -#: app/actions/edit-commands.c:374 +#: ../app/actions/edit-commands.c:374 msgid "There is no active layer or channel to copy from." msgstr "붙여 넣을 활성 레이어나 채널이 없습니다." -#: app/actions/error-console-actions.c:40 +#: ../app/actions/error-console-actions.c:40 msgid "Error Console Menu" msgstr "오류 콘솔 메뉴" -#: app/actions/error-console-actions.c:44 -#, fuzzy +#: ../app/actions/error-console-actions.c:44 msgid "_Clear Errors" -msgstr "/오류 지우기(_C)" +msgstr "오류 지우기(_C)" -#: app/actions/error-console-actions.c:45 -#, fuzzy +#: ../app/actions/error-console-actions.c:45 msgid "Clear errors" msgstr "오류 지우기" -#: app/actions/error-console-actions.c:53 -#, fuzzy +#: ../app/actions/error-console-actions.c:53 msgid "Save _All Errors to File..." -msgstr "/모든 오류를 파일에 쓰기(_A)..." +msgstr "모든 오류를 파일에 저장(_A)..." -#: app/actions/error-console-actions.c:54 -#, fuzzy +#: ../app/actions/error-console-actions.c:54 msgid "Save all errors" -msgstr "오류 지우기" +msgstr "모든 오류 저장" -#: app/actions/error-console-actions.c:59 -#, fuzzy +#: ../app/actions/error-console-actions.c:59 msgid "Save _Selection to File..." -msgstr "/선택을 파일에 쓰기(_S)..." +msgstr "선택을 파일에 저장(_S)..." -#: app/actions/error-console-actions.c:60 -#, fuzzy +#: ../app/actions/error-console-actions.c:60 msgid "Save selection" -msgstr "선택 이동" +msgstr "선택 저장" -#: app/actions/error-console-commands.c:69 +#: ../app/actions/error-console-commands.c:69 msgid "Cannot save. Nothing is selected." msgstr "저장할 수 없습니다. 선택한 것이 없습니다." -#: app/actions/error-console-commands.c:80 +#: ../app/actions/error-console-commands.c:80 msgid "Save Error Log to File" msgstr "파일에 오류 기록 저장" -#: app/actions/error-console-commands.c:132 +#: ../app/actions/error-console-commands.c:132 #, c-format msgid "" "Error writing file '%s':\n" @@ -1439,67 +1283,55 @@ "파일 '%s' 쓰기 오류:\n" "%s" -#: app/actions/file-actions.c:61 -#, fuzzy +#: ../app/actions/file-actions.c:61 msgid "_File" -msgstr "/파일(_F)" +msgstr "파일(_F)" -#: app/actions/file-actions.c:62 -#, fuzzy +#: ../app/actions/file-actions.c:62 msgid "Open _Recent" -msgstr "/파일(F)/최근 파일 열기(_R)" +msgstr "최근 파일 열기(_R)" -#: app/actions/file-actions.c:63 -#, fuzzy +#: ../app/actions/file-actions.c:63 msgid "_Acquire" -msgstr "/파일(F)/얻기(_A)" +msgstr "얻기(_A)" -#: app/actions/file-actions.c:66 app/actions/file-actions.c:71 -#, fuzzy +#: ../app/actions/file-actions.c:66 ../app/actions/file-actions.c:71 msgid "_Open..." -msgstr "/파일(F)/열기(_O)..." +msgstr "열기(_O)..." -#: app/actions/file-actions.c:76 -#, fuzzy +#: ../app/actions/file-actions.c:76 msgid "Op_en as Layer..." -msgstr "/새 레이어(_N)..." +msgstr "레이어로 열기(_E)..." -#: app/actions/file-actions.c:81 -#, fuzzy +#: ../app/actions/file-actions.c:81 msgid "Open _Location..." -msgstr "위치:" +msgstr "위치 열기(_L)..." -#: app/actions/file-actions.c:86 -#, fuzzy +#: ../app/actions/file-actions.c:86 msgid "_Save" -msgstr "저장" +msgstr "저장(_S)" -#: app/actions/file-actions.c:91 -#, fuzzy +#: ../app/actions/file-actions.c:91 msgid "Save _as..." -msgstr "/파일(F)/다른 이름으로 저장(_A)..." +msgstr "다른 이름으로 저장(_A)..." -#: app/actions/file-actions.c:96 -#, fuzzy +#: ../app/actions/file-actions.c:96 msgid "Save a Cop_y..." -msgstr "/파일(F)/사본 저장(_Y)..." +msgstr "사본 저장(_Y)..." -#: app/actions/file-actions.c:101 -#, fuzzy +#: ../app/actions/file-actions.c:101 msgid "Save as _Template..." -msgstr "/파일(F)/템플릿으로 저장(_T)..." +msgstr "템플릿으로 저장(_T)..." -#: app/actions/file-actions.c:106 -#, fuzzy +#: ../app/actions/file-actions.c:106 msgid "Re_vert..." -msgstr "원래대로" +msgstr "원래대로(_V)..." -#: app/actions/file-actions.c:111 -#, fuzzy +#: ../app/actions/file-actions.c:111 msgid "_Quit" -msgstr "/파일(F)/마침(_Q)" +msgstr "마침(_Q)" -#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:281 +#: ../app/actions/file-commands.c:215 ../app/dialogs/file-save-dialog.c:282 #, c-format msgid "" "Saving '%s' failed:\n" @@ -1510,342 +1342,316 @@ "\n" "%s" -#: app/actions/file-commands.c:238 app/dialogs/file-save-dialog.c:78 +#: ../app/actions/file-commands.c:238 ../app/dialogs/file-save-dialog.c:78 msgid "Save Image" msgstr "이미지 저장" -#: app/actions/file-commands.c:254 +#: ../app/actions/file-commands.c:254 msgid "Save a Copy of the Image" msgstr "이미지의 사본을 저장" -#: app/actions/file-commands.c:265 +#: ../app/actions/file-commands.c:265 msgid "Create New Template" msgstr "새 템플릿 만들기" -#: app/actions/file-commands.c:269 +#: ../app/actions/file-commands.c:269 msgid "Enter a name for this template" msgstr "템플릿의 이름을 입력하십시오" -#: app/actions/file-commands.c:291 +#: ../app/actions/file-commands.c:291 msgid "Revert failed. No file name associated with this image." -msgstr "원상 복구 실패. 이 이미지와 연관된 파일 이름이 없습니다." +msgstr "복원 실패. 이 이미지와 연관된 파일 이름이 없습니다." -#: app/actions/file-commands.c:303 +#: ../app/actions/file-commands.c:303 msgid "Revert Image" -msgstr "이미지 원상 복구" +msgstr "이미지 복원" -#: app/actions/file-commands.c:324 +#: ../app/actions/file-commands.c:324 #, c-format msgid "Revert '%s' to '%s'?" -msgstr "" +msgstr "'%s'을(를) '%s'(으)로 복원하시겠습니까?" -#: app/actions/file-commands.c:330 -#, fuzzy +#: ../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 "" -"'%s'을(를)\n" -"'%s'(으)로 되돌리겠습니까?\n" -"실행 취소 정보를 포함해서, 모든 바꾼 내용을 잃게 됩니다." +"이미지를 디스크에 있는 상태로 복원하면, 실행 취소 정보를 포함해서, 모든 바꾼 " +"내용을 잃게 됩니다." -#: app/actions/file-commands.c:380 -#, fuzzy +#: ../app/actions/file-commands.c:380 msgid "Open Image as Layer" -msgstr "이미지 열기" +msgstr "이미지를 레이어로 열기" -#: app/actions/file-commands.c:385 app/dialogs/file-open-dialog.c:74 +#: ../app/actions/file-commands.c:385 ../app/dialogs/file-open-dialog.c:74 msgid "Open Image" msgstr "이미지 열기" -#: app/actions/file-commands.c:451 +#: ../app/actions/file-commands.c:451 msgid "(Unnamed Template)" msgstr "(이름없는 템플릿)" -#: app/actions/file-commands.c:500 +#: ../app/actions/file-commands.c:500 #, c-format msgid "" "Reverting to '%s' failed:\n" "\n" "%s" msgstr "" -"'%s' 원상 복구 실패:\n" +"'%s' 복원 실패:\n" "\n" "%s" -#: app/actions/fonts-actions.c:44 +#: ../app/actions/fonts-actions.c:44 msgid "Fonts Menu" msgstr "글꼴 메뉴" -#: app/actions/fonts-actions.c:48 -#, fuzzy +#: ../app/actions/fonts-actions.c:48 msgid "_Rescan Font List" -msgstr "/글꼴 목록 새로 고치기(_R)" +msgstr "글꼴 목록 새로 고치기(_R)" -#: app/actions/fonts-actions.c:49 -#, fuzzy +#: ../app/actions/fonts-actions.c:49 msgid "Rescan font list" msgstr "글꼴 목록 새로 고치기" -#: app/actions/gradient-editor-actions.c:46 +#: ../app/actions/gradient-editor-actions.c:46 msgid "Gradient Editor Menu" msgstr "그라디언트 편집기 메뉴" -#: app/actions/gradient-editor-actions.c:50 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:50 msgid "_Load Left Color From" -msgstr "/왼쪽 색상 불러오기(_L)" +msgstr "왼쪽 색상 불러오기(_L)" -#: app/actions/gradient-editor-actions.c:52 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:52 msgid "_Save Left Color To" -msgstr "/왼쪽 색상 저장(_S)" +msgstr "왼쪽 색상 저장(_S)" -#: app/actions/gradient-editor-actions.c:55 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:55 msgid "Load Right Color Fr_om" -msgstr "/오른쪽 색상 불러오기(_O)" +msgstr "오른쪽 색상 불러오기(_O)" -#: app/actions/gradient-editor-actions.c:57 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:57 msgid "Sa_ve Right Color To" -msgstr "/오른쪽 색상 저장(_V)" +msgstr "오른쪽 색상 저장(_V)" -#: app/actions/gradient-editor-actions.c:63 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:63 msgid "L_eft Endpoint's Color..." -msgstr "/왼쪽 끝점의 색상(_E)..." +msgstr "왼쪽 끝점의 색상(_E)..." -#: app/actions/gradient-editor-actions.c:68 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:68 msgid "R_ight Endpoint's Color..." -msgstr "/오른쪽 끝점의 색상(_I)..." +msgstr "오른쪽 끝점의 색상(_I)..." -#: app/actions/gradient-editor-actions.c:108 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:108 msgid "Ble_nd Endpoints' Colors" -msgstr "/끝점의 색상 혼합(_N)" +msgstr "끝점의 색상 혼합(_N)" -#: app/actions/gradient-editor-actions.c:113 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:113 msgid "Blend Endpoints' Opacit_y" -msgstr "/끝점의 불투명도 혼합(_Y)" +msgstr "끝점의 불투명도 혼합(_Y)" -#: app/actions/gradient-editor-actions.c:143 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:143 msgid "_Left Neighbor's Right Endpoint" -msgstr "/왼쪽 색상 불러오기(L)/왼쪽 인접 구획의 오른쪽 끝점(_L)" +msgstr "왼쪽 인접 구획의 오른쪽 끝점(_L)" -#: app/actions/gradient-editor-actions.c:148 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:148 msgid "_Right Endpoint" -msgstr "오른쪽 끝점 색상" +msgstr "오른쪽 끝점(_R)" -#: app/actions/gradient-editor-actions.c:153 -#: app/actions/gradient-editor-actions.c:201 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:153 +#: ../app/actions/gradient-editor-actions.c:201 msgid "_FG Color" -msgstr "전경/배경색" +msgstr "전경색(_F)" -#: app/actions/gradient-editor-actions.c:158 -#: app/actions/gradient-editor-actions.c:206 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:158 +#: ../app/actions/gradient-editor-actions.c:206 msgid "_BG Color" -msgstr "전경/배경색" +msgstr "배경색(_B)" -#: app/actions/gradient-editor-actions.c:191 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:191 msgid "_Right Neighbor's Left Endpoint" -msgstr "/오른쪽 색상 불러오기(_O)/오른쪽 인접 구획의 왼쪽 끝점(_R)" +msgstr "오른쪽 인접 구획의 왼쪽 끝점(_R)" -#: app/actions/gradient-editor-actions.c:196 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:196 msgid "_Left Endpoint" -msgstr "왼쪽 끝점 색상" +msgstr "왼쪽 끝점(_L)" -#: app/actions/gradient-editor-actions.c:245 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:245 msgid "_Linear" -msgstr "선형" +msgstr "선형(_L)" -#: app/actions/gradient-editor-actions.c:250 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:250 msgid "_Curved" -msgstr "곡선" +msgstr "곡선(_C)" -#: app/actions/gradient-editor-actions.c:255 +#: ../app/actions/gradient-editor-actions.c:255 msgid "_Sinusoidal" -msgstr "" +msgstr "사인곡선(_S)" -#: app/actions/gradient-editor-actions.c:260 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:260 msgid "Spherical (i_ncreasing)" -msgstr "/혼합 함수/구형 (증가)(_N)" +msgstr "구형 (증가)(_N)" -#: app/actions/gradient-editor-actions.c:265 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:265 msgid "Spherical (_decreasing)" -msgstr "/혼합 함수/구형 (감소)(_D)" +msgstr "구형 (감소)(_D)" -#: 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 "" +msgstr "(다양)" -#: app/actions/gradient-editor-actions.c:278 app/actions/image-actions.c:123 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:278 +#: ../app/actions/image-actions.c:123 msgid "_RGB" -msgstr "RGB" +msgstr "RGB(_R)" -#: app/actions/gradient-editor-actions.c:283 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:283 msgid "HSV (_counter-clockwise hue)" -msgstr "/배색 유형/HSV (시계반대방향 색상)(_C)" +msgstr "HSV (시계반대방향 색상)(_C)" -#: app/actions/gradient-editor-actions.c:288 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:288 msgid "HSV (clockwise _hue)" -msgstr "전경색을 배경색으로 (HSV 시계방향 색상)" +msgstr "HSV (시계방향 색상)(_H)" -#: app/actions/gradient-editor-actions.c:301 +#: ../app/actions/gradient-editor-actions.c:301 msgid "Zoom In" msgstr "확대" -#: app/actions/gradient-editor-actions.c:302 -#: app/actions/palette-editor-actions.c:78 app/actions/view-actions.c:216 -#: app/widgets/widgets-enums.c:353 +#: ../app/actions/gradient-editor-actions.c:302 +#: ../app/actions/palette-editor-actions.c:78 +#: ../app/actions/view-actions.c:216 ../app/widgets/widgets-enums.c:353 msgid "Zoom in" msgstr "확대" -#: app/actions/gradient-editor-actions.c:307 +#: ../app/actions/gradient-editor-actions.c:307 msgid "Zoom Out" msgstr "축소" -#: app/actions/gradient-editor-actions.c:308 -#: app/actions/palette-editor-actions.c:84 app/actions/view-actions.c:210 -#: app/widgets/widgets-enums.c:354 +#: ../app/actions/gradient-editor-actions.c:308 +#: ../app/actions/palette-editor-actions.c:84 +#: ../app/actions/view-actions.c:210 ../app/widgets/widgets-enums.c:354 msgid "Zoom out" msgstr "축소" -#: app/actions/gradient-editor-actions.c:313 +#: ../app/actions/gradient-editor-actions.c:313 msgid "Zoom All" msgstr "전체 확대" -#: app/actions/gradient-editor-actions.c:314 -#: app/actions/palette-editor-actions.c:90 -#, fuzzy +#: ../app/actions/gradient-editor-actions.c:314 +#: ../app/actions/palette-editor-actions.c:90 msgid "Zoom all" msgstr "전체 확대" -#: app/actions/gradient-editor-actions.c:589 +#: ../app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "구획의 혼합 함수(_B)" -#: app/actions/gradient-editor-actions.c:591 +#: ../app/actions/gradient-editor-actions.c:591 msgid "Coloring _Type for Segment" msgstr "구획의 배색 유형(_T)" -#: app/actions/gradient-editor-actions.c:594 +#: ../app/actions/gradient-editor-actions.c:594 msgid "_Flip Segment" msgstr "구획 뒤집기(_F)" -#: app/actions/gradient-editor-actions.c:596 +#: ../app/actions/gradient-editor-actions.c:596 msgid "_Replicate Segment..." msgstr "구획 복제(_R)..." -#: app/actions/gradient-editor-actions.c:598 +#: ../app/actions/gradient-editor-actions.c:598 msgid "Split Segment at _Midpoint" msgstr "중점에서 구획 분리(_M)" -#: app/actions/gradient-editor-actions.c:600 +#: ../app/actions/gradient-editor-actions.c:600 msgid "Split Segment _Uniformly..." msgstr "균등한 구획 분할(_U)..." -#: app/actions/gradient-editor-actions.c:602 +#: ../app/actions/gradient-editor-actions.c:602 msgid "_Delete Segment" msgstr "구획 지우기(_D)" -#: app/actions/gradient-editor-actions.c:604 +#: ../app/actions/gradient-editor-actions.c:604 msgid "Re-_center Segment's Midpoint" msgstr "구획의 중점을 다시 가운데로(_C)" -#: app/actions/gradient-editor-actions.c:606 +#: ../app/actions/gradient-editor-actions.c:606 msgid "Re-distribute _Handles in Segment" msgstr "구획의 조절점 재배치(_H)" -#: app/actions/gradient-editor-actions.c:611 +#: ../app/actions/gradient-editor-actions.c:611 msgid "_Blending Function for Selection" msgstr "선택의 혼합 함수(_B)" -#: app/actions/gradient-editor-actions.c:613 +#: ../app/actions/gradient-editor-actions.c:613 msgid "Coloring _Type for Selection" msgstr "선택의 배색 유형(_T)" -#: app/actions/gradient-editor-actions.c:616 +#: ../app/actions/gradient-editor-actions.c:616 msgid "_Flip Selection" msgstr "선택 뒤집기(_F)" -#: app/actions/gradient-editor-actions.c:618 +#: ../app/actions/gradient-editor-actions.c:618 msgid "_Replicate Selection..." msgstr "선택 복제(_R)..." -#: app/actions/gradient-editor-actions.c:620 +#: ../app/actions/gradient-editor-actions.c:620 msgid "Split Segments at _Midpoints" msgstr "중점에서 구획 분할(_M)" -#: app/actions/gradient-editor-actions.c:622 +#: ../app/actions/gradient-editor-actions.c:622 msgid "Split Segments _Uniformly..." msgstr "균등하게 구획 분할(_U)..." -#: app/actions/gradient-editor-actions.c:624 +#: ../app/actions/gradient-editor-actions.c:624 msgid "_Delete Selection" msgstr "선택 지우기(_D)" -#: app/actions/gradient-editor-actions.c:626 +#: ../app/actions/gradient-editor-actions.c:626 msgid "Re-_center Midpoints in Selection" msgstr "선택의 중점을 다시 가운데로(_C)" -#: app/actions/gradient-editor-actions.c:628 +#: ../app/actions/gradient-editor-actions.c:628 msgid "Re-distribute _Handles in Selection" msgstr "선택의 조절점 재배치(_H)" -#: app/actions/gradient-editor-commands.c:85 +#: ../app/actions/gradient-editor-commands.c:85 msgid "Left Endpoint Color" msgstr "왼쪽 끝점 색상" -#: app/actions/gradient-editor-commands.c:87 +#: ../app/actions/gradient-editor-commands.c:87 msgid "Gradient Segment's Left Endpoint Color" msgstr "그라디언트 구획의 왼쪽 끝점 색상" -#: app/actions/gradient-editor-commands.c:189 +#: ../app/actions/gradient-editor-commands.c:189 msgid "Right Endpoint Color" msgstr "오른쪽 끝점 색상" -#: app/actions/gradient-editor-commands.c:191 +#: ../app/actions/gradient-editor-commands.c:191 msgid "Gradient Segment's Right Endpoint Color" msgstr "그라디언트 구획의 오른쪽 끝점 색상" -#: app/actions/gradient-editor-commands.c:358 +#: ../app/actions/gradient-editor-commands.c:358 msgid "Replicate Segment" msgstr "구획 복제" -#: app/actions/gradient-editor-commands.c:359 +#: ../app/actions/gradient-editor-commands.c:359 msgid "Replicate Gradient Segment" msgstr "그라디언트 구획 복제" -#: app/actions/gradient-editor-commands.c:363 +#: ../app/actions/gradient-editor-commands.c:363 msgid "Replicate Selection" msgstr "선택 복제" -#: app/actions/gradient-editor-commands.c:364 +#: ../app/actions/gradient-editor-commands.c:364 msgid "Replicate Gradient Selection" msgstr "그라디언트 선택 복제" -#: app/actions/gradient-editor-commands.c:376 +#: ../app/actions/gradient-editor-commands.c:376 msgid "Replicate" msgstr "복제" -#: app/actions/gradient-editor-commands.c:391 +#: ../app/actions/gradient-editor-commands.c:391 msgid "" "Select the number of times\n" "to replicate the selected segment." @@ -1853,7 +1659,7 @@ "선택한 구획을 복제하려면\n" "복제할 횟수를 선택하십시오." -#: 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." @@ -1861,27 +1667,27 @@ "선택을 복제하려면\n" "복제할 횟수를 선택하십시오." -#: app/actions/gradient-editor-commands.c:452 +#: ../app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "균등한 구획 분할" -#: app/actions/gradient-editor-commands.c:453 +#: ../app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "균등한 그라디언트 구획 분할" -#: app/actions/gradient-editor-commands.c:457 +#: ../app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "균등한 구획 분할" -#: app/actions/gradient-editor-commands.c:458 +#: ../app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "균등한 그라디언트 구획 분할" -#: app/actions/gradient-editor-commands.c:470 +#: ../app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "분할" -#: app/actions/gradient-editor-commands.c:486 +#: ../app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." @@ -1889,7 +1695,7 @@ "선택한 구획을 분할해서 만들\n" "균등한 부분의 수를 선택하십시오." -#: 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." @@ -1897,1886 +1703,1625 @@ "선택한 구획을 분할해서 만들\n" "균등한 부분의 수를 선택하십시오." -#: app/actions/gradients-actions.c:44 +#: ../app/actions/gradients-actions.c:44 msgid "Gradients Menu" msgstr "그라디언트 메뉴" -#: app/actions/gradients-actions.c:48 -#, fuzzy +#: ../app/actions/gradients-actions.c:48 msgid "_New Gradient" -msgstr "/새 그라디언트(_N)" +msgstr "새 그라디언트(_N)" -#: app/actions/gradients-actions.c:49 -#, fuzzy +#: ../app/actions/gradients-actions.c:49 msgid "New gradient" -msgstr "/새 그라디언트(_N)" +msgstr "새 그라디언트" -#: app/actions/gradients-actions.c:54 -#, fuzzy +#: ../app/actions/gradients-actions.c:54 msgid "D_uplicate Gradient" -msgstr "/그라디언트 복제(_U)" +msgstr "그라디언트 복제(_U)" -#: app/actions/gradients-actions.c:55 -#, fuzzy +#: ../app/actions/gradients-actions.c:55 msgid "Duplicate gradient" -msgstr "/그라디언트 복제(_U)" +msgstr "그라디언트 복제" -#: app/actions/gradients-actions.c:60 -#, fuzzy +#: ../app/actions/gradients-actions.c:60 msgid "Save as _POV-Ray..." -msgstr "/_POV-Ray로 저장..." +msgstr "_POV-Ray로 저장..." -#: app/actions/gradients-actions.c:61 -#, fuzzy +#: ../app/actions/gradients-actions.c:61 msgid "Save gradient as POV-Ray" -msgstr "'%s'을(를) POV-Ray로 저장" +msgstr "그라디언트를 POV-Ray로 저장" -#: app/actions/gradients-actions.c:66 -#, fuzzy +#: ../app/actions/gradients-actions.c:66 msgid "_Delete Gradient..." -msgstr "/그라디언트 지우기(_D)..." +msgstr "그라디언트 지우기(_D)..." -#: app/actions/gradients-actions.c:67 -#, fuzzy +#: ../app/actions/gradients-actions.c:67 msgid "Delete gradient" -msgstr "/그라디언트 지우기(_D)..." +msgstr "그라디언트 지우기" -#: app/actions/gradients-actions.c:72 -#, fuzzy +#: ../app/actions/gradients-actions.c:72 msgid "_Refresh Gradients" -msgstr "/그라디언트 새로 고치기(_R)" +msgstr "그라디언트 새로 고치기(_R)" -#: app/actions/gradients-actions.c:73 -#, fuzzy +#: ../app/actions/gradients-actions.c:73 msgid "Refresh gradients" -msgstr "/그라디언트 새로 고치기(_R)" +msgstr "그라디언트 새로 고치기" -#: app/actions/gradients-actions.c:81 -#, fuzzy +#: ../app/actions/gradients-actions.c:81 msgid "_Edit Gradient..." -msgstr "/그라디언트 편집(_E)..." +msgstr "그라디언트 편집(_E)..." -#: app/actions/gradients-actions.c:82 -#, fuzzy +#: ../app/actions/gradients-actions.c:82 msgid "Edit gradient" -msgstr "/그라디언트 편집(_E)..." +msgstr "그라디언트 편집" -#: app/actions/gradients-commands.c:65 +#: ../app/actions/gradients-commands.c:65 #, c-format msgid "Save '%s' as POV-Ray" msgstr "'%s'을(를) POV-Ray로 저장" -#: app/actions/help-actions.c:38 app/actions/help-actions.c:41 -#, fuzzy +#: ../app/actions/help-actions.c:38 ../app/actions/help-actions.c:41 msgid "_Help" -msgstr "/도움말(_H)" +msgstr "도움말(_H)" -#: app/actions/help-actions.c:46 -#, fuzzy +#: ../app/actions/help-actions.c:46 msgid "_Context Help" -msgstr "/도움말(H)/문맥 도움말(_C)" +msgstr "문맥 도움말(_C)" -#: app/actions/image-actions.c:47 +#: ../app/actions/image-actions.c:47 msgid "Toolbox Menu" msgstr "도구상자 메뉴" -#: app/actions/image-actions.c:51 app/actions/image-actions.c:55 +#: ../app/actions/image-actions.c:51 ../app/actions/image-actions.c:55 msgid "Image Menu" msgstr "이미지 메뉴" -#: app/actions/image-actions.c:58 -#, fuzzy +#: ../app/actions/image-actions.c:58 msgid "_Xtns" -msgstr "/확장(_X)" +msgstr "확장(_X)" -#: app/actions/image-actions.c:59 -#, fuzzy +#: ../app/actions/image-actions.c:59 msgid "_Image" -msgstr "/이미지(_I)" +msgstr "이미지(_I)" -#: app/actions/image-actions.c:60 -#, fuzzy +#: ../app/actions/image-actions.c:60 msgid "_Mode" -msgstr "모드" +msgstr "모드(_M)" -#: app/actions/image-actions.c:61 app/actions/layers-actions.c:57 -#, fuzzy +#: ../app/actions/image-actions.c:61 ../app/actions/layers-actions.c:57 msgid "_Transform" -msgstr "변형" +msgstr "변형(_T)" -#: app/actions/image-actions.c:62 -#, fuzzy +#: ../app/actions/image-actions.c:62 msgid "_Guides" -msgstr "안내선" +msgstr "안내선(_G)" -#: app/actions/image-actions.c:65 app/actions/image-actions.c:70 -#, fuzzy +#: ../app/actions/image-actions.c:65 ../app/actions/image-actions.c:70 msgid "_New..." -msgstr "/새 경로(_N)..." +msgstr "새로(_N)..." -#: app/actions/image-actions.c:75 -#, fuzzy +#: ../app/actions/image-actions.c:75 msgid "Can_vas Size..." -msgstr "캔버스 크기" +msgstr "캔버스 크기(_V)..." -#: app/actions/image-actions.c:80 +#: ../app/actions/image-actions.c:80 msgid "F_it Canvas to Layers" -msgstr "" +msgstr "캔버스를 레이어에 맞추기(_I)" -#: app/actions/image-actions.c:85 -#, fuzzy +#: ../app/actions/image-actions.c:85 msgid "_Print Size..." -msgstr "인쇄 크기:" +msgstr "인쇄 크기(_P)..." -#: app/actions/image-actions.c:90 -#, fuzzy +#: ../app/actions/image-actions.c:90 msgid "_Scale Image..." -msgstr "이미지 배율 조정" +msgstr "이미지 배율 조정(_S)..." -#: app/actions/image-actions.c:95 -#, fuzzy +#: ../app/actions/image-actions.c:95 msgid "_Crop Image" -msgstr "이미지 자르기" +msgstr "이미지 자르기(_C)" -#: app/actions/image-actions.c:100 -#, fuzzy +#: ../app/actions/image-actions.c:100 msgid "_Duplicate" -msgstr "복제" +msgstr "복제(_D)" -#: app/actions/image-actions.c:105 -#, fuzzy +#: ../app/actions/image-actions.c:105 msgid "Merge Visible _Layers..." -msgstr "/보이는 레이어 합치기(_V)..." +msgstr "보이는 레이어 합치기(_L)..." -#: app/actions/image-actions.c:110 app/actions/layers-actions.c:138 -#, fuzzy +#: ../app/actions/image-actions.c:110 ../app/actions/layers-actions.c:138 msgid "_Flatten Image" -msgstr "/배경으로 이미지 합치기(_F)" +msgstr "배경으로 합치기(_F)" -#: app/actions/image-actions.c:115 -#, fuzzy +#: ../app/actions/image-actions.c:115 msgid "Configure G_rid..." -msgstr "모눈 설정" +msgstr "모눈 설정(_R)..." -#: app/actions/image-actions.c:128 -#, fuzzy +#: ../app/actions/image-actions.c:128 msgid "_Grayscale" -msgstr "그레이스케일" +msgstr "그레이스케일(_G)" -#: app/actions/image-actions.c:133 -#, fuzzy +#: ../app/actions/image-actions.c:133 msgid "_Indexed..." -msgstr "인덱스됨" +msgstr "인덱스됨(_I)..." -#: app/actions/image-commands.c:192 +#: ../app/actions/image-commands.c:192 msgid "Set Image Canvas Size" msgstr "캔버스 크기 지정" -#: app/actions/image-commands.c:219 app/actions/image-commands.c:449 +#: ../app/actions/image-commands.c:219 ../app/actions/image-commands.c:449 msgid "Resizing..." msgstr "크기 바꾸는 중..." -#: app/actions/image-commands.c:242 -#, fuzzy +#: ../app/actions/image-commands.c:242 msgid "Set Image Print Resolution" -msgstr "이미지 해상도 바꾸기" +msgstr "이미지 인쇄 해상도 바꾸기" -#: app/actions/image-commands.c:289 +#: ../app/actions/image-commands.c:289 msgid "Flipping..." msgstr "뒤집기..." -#: app/actions/image-commands.c:310 app/pdb/drawable_transform_cmds.c:1035 -#: app/pdb/drawable_transform_cmds.c:1193 app/pdb/transform_tools_cmds.c:339 -#: app/tools/gimprotatetool.c:159 +#: ../app/actions/image-commands.c:310 +#: ../app/pdb/drawable_transform_cmds.c:1035 +#: ../app/pdb/drawable_transform_cmds.c:1193 +#: ../app/pdb/transform_tools_cmds.c:339 ../app/tools/gimprotatetool.c:159 msgid "Rotating..." msgstr "회전..." -#: app/actions/image-commands.c:332 app/actions/layers-commands.c:535 +#: ../app/actions/image-commands.c:332 ../app/actions/layers-commands.c:535 msgid "Cannot crop because the current selection is empty." msgstr "선택이 비어있으므로, 잘라낼 수 없습니다." -#: app/actions/image-commands.c:484 -#, fuzzy +#: ../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 +#: ../app/actions/image-commands.c:508 ../app/core/gimpimage-scale.c:71 +#: ../app/dialogs/image-scale-dialog.c:91 msgid "Scale Image" msgstr "이미지 배율 조정" -#: app/actions/image-commands.c:521 app/actions/layers-commands.c:959 -#: app/pdb/drawable_transform_cmds.c:1346 -#: app/pdb/drawable_transform_cmds.c:1503 app/pdb/transform_tools_cmds.c:458 -#: app/tools/gimpscaletool.c:153 +#: ../app/actions/image-commands.c:521 ../app/actions/layers-commands.c:959 +#: ../app/pdb/drawable_transform_cmds.c:1346 +#: ../app/pdb/drawable_transform_cmds.c:1503 +#: ../app/pdb/transform_tools_cmds.c:458 ../app/tools/gimpscaletool.c:153 msgid "Scaling..." msgstr "배율 조정 중..." -#: app/actions/images-actions.c:43 +#: ../app/actions/images-actions.c:43 msgid "Images Menu" msgstr "이미지 메뉴" -#: app/actions/images-actions.c:47 -#, fuzzy +#: ../app/actions/images-actions.c:47 msgid "_Raise Views" -msgstr "/보기 올리기(_R)" +msgstr "보기 올리기(_R)" -#: app/actions/images-actions.c:48 +#: ../app/actions/images-actions.c:48 msgid "Raise this image's displays" msgstr "이 이미지의 디스플레이를 올리기" -#: app/actions/images-actions.c:53 app/actions/view-actions.c:68 -#, fuzzy +#: ../app/actions/images-actions.c:53 ../app/actions/view-actions.c:68 msgid "_New View" -msgstr "/새로운 보기(_N)" +msgstr "새로운 보기(_N)" -#: app/actions/images-actions.c:54 +#: ../app/actions/images-actions.c:54 msgid "Create a new display for this image" msgstr "이 이미지를 새 창으로 보여주기" -#: app/actions/images-actions.c:59 -#, fuzzy +#: ../app/actions/images-actions.c:59 msgid "_Delete Image" -msgstr "/이미지 지우기(_D)" +msgstr "이미지 지우기(_D)" -#: app/actions/images-actions.c:60 +#: ../app/actions/images-actions.c:60 msgid "Delete this image" msgstr "이 이미지 지우기" -#: app/actions/layers-actions.c:48 +#: ../app/actions/layers-actions.c:48 msgid "Layers Menu" msgstr "레이어 메뉴" -#: app/actions/layers-actions.c:51 -#, fuzzy +#: ../app/actions/layers-actions.c:51 msgid "_Layer" -msgstr "/레이어(_L)" +msgstr "레이어(_L)" -#: app/actions/layers-actions.c:52 -#, fuzzy +#: ../app/actions/layers-actions.c:52 msgid "Stac_k" -msgstr "/레이어(L)/쌓기(K)" +msgstr "쌓기(_K)" -#: 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 "자동(_A)" -#: app/actions/layers-actions.c:55 -#, fuzzy +#: ../app/actions/layers-actions.c:55 msgid "_Mask" msgstr "마스터(_M)" -#: app/actions/layers-actions.c:56 -#, fuzzy +#: ../app/actions/layers-actions.c:56 msgid "Tr_ansparency" -msgstr "투명" +msgstr "투명(_A)" -#: app/actions/layers-actions.c:58 -#, fuzzy +#: ../app/actions/layers-actions.c:58 msgid "_Properties" -msgstr "원근법" +msgstr "등록 정보(_P)" -#: app/actions/layers-actions.c:60 -#, fuzzy +#: ../app/actions/layers-actions.c:60 msgid "Layer _Mode" -msgstr "레이어 메뉴" +msgstr "레이어 모드(_M)" -#: app/actions/layers-actions.c:63 -#, fuzzy +#: ../app/actions/layers-actions.c:63 msgid "Te_xt Tool" -msgstr "/글자 도구(_X)" +msgstr "글자 도구(_X)" -#: app/actions/layers-actions.c:68 -#, fuzzy +#: ../app/actions/layers-actions.c:68 msgid "_Edit Layer Attributes..." -msgstr "/레이어 속성 편집(_E)..." +msgstr "레이어 속성 편집(_E)..." -#: app/actions/layers-actions.c:69 -#, fuzzy +#: ../app/actions/layers-actions.c:69 msgid "Edit layer attributes" msgstr "레이어 속성 편집" -#: app/actions/layers-actions.c:74 -#, fuzzy +#: ../app/actions/layers-actions.c:74 msgid "_New Layer..." -msgstr "/새 레이어(_N)..." +msgstr "새 레이어(_N)..." -#: app/actions/layers-actions.c:75 -#, fuzzy +#: ../app/actions/layers-actions.c:75 msgid "New layer..." -msgstr "/새 레이어(_N)..." +msgstr "새 레이어..." -#: app/actions/layers-actions.c:80 -#, fuzzy +#: ../app/actions/layers-actions.c:80 msgid "_New Layer" -msgstr "새 레이어" +msgstr "새 레이어(_N)" -#: app/actions/layers-actions.c:81 +#: ../app/actions/layers-actions.c:81 msgid "New layer with last values" -msgstr "" +msgstr "최근 값으로 새 레이어" -#: app/actions/layers-actions.c:86 -#, fuzzy +#: ../app/actions/layers-actions.c:86 msgid "D_uplicate Layer" -msgstr "/레이어 복제(_U)" +msgstr "레이어 복제(_U)" -#: app/actions/layers-actions.c:87 -#, fuzzy +#: ../app/actions/layers-actions.c:87 msgid "Duplicate layer" msgstr "레이어 복제" -#: app/actions/layers-actions.c:92 -#, fuzzy +#: ../app/actions/layers-actions.c:92 msgid "_Delete Layer" -msgstr "/레이어 지우기(_D)" +msgstr "레이어 지우기(_D)" -#: app/actions/layers-actions.c:93 app/core/core-enums.c:1079 -#, fuzzy +#: ../app/actions/layers-actions.c:93 ../app/core/core-enums.c:1081 msgid "Delete layer" msgstr "레이어 지우기" -#: app/actions/layers-actions.c:98 -#, fuzzy +#: ../app/actions/layers-actions.c:98 msgid "_Raise Layer" -msgstr "/레이어 올리기(_R)" +msgstr "레이어 올리기(_R)" -#: app/actions/layers-actions.c:99 -#, fuzzy +#: ../app/actions/layers-actions.c:99 msgid "Raise layer" msgstr "레이어 올리기" -#: app/actions/layers-actions.c:104 -#, fuzzy +#: ../app/actions/layers-actions.c:104 msgid "Layer to _Top" -msgstr "/레이어를 맨 위로(_T)" +msgstr "레이어를 맨 위로(_T)" -#: app/actions/layers-actions.c:105 -#, fuzzy +#: ../app/actions/layers-actions.c:105 msgid "Raise layer to top" msgstr "레이어를 맨 위로 올리기" -#: app/actions/layers-actions.c:110 -#, fuzzy +#: ../app/actions/layers-actions.c:110 msgid "_Lower Layer" -msgstr "/레이어 내리기(_L)" +msgstr "레이어 내리기(_L)" -#: app/actions/layers-actions.c:111 -#, fuzzy +#: ../app/actions/layers-actions.c:111 msgid "Lower layer" msgstr "레이어 내리기" -#: app/actions/layers-actions.c:116 -#, fuzzy +#: ../app/actions/layers-actions.c:116 msgid "Layer to _Bottom" -msgstr "/레이어를 맨 아래로(_B)" +msgstr "레이어를 맨 아래로(_B)" -#: app/actions/layers-actions.c:117 -#, fuzzy +#: ../app/actions/layers-actions.c:117 msgid "Lower layer to bottom" msgstr "레이어를 맨 아래로 내리기" -#: app/actions/layers-actions.c:122 -#, fuzzy +#: ../app/actions/layers-actions.c:122 msgid "_Anchor Layer" -msgstr "/레이어 고정(_A)" +msgstr "레이어 고정(_A)" -#: app/actions/layers-actions.c:123 -#, fuzzy +#: ../app/actions/layers-actions.c:123 msgid "Anchor floating layer" msgstr "떠있는 레이어 고정" -#: app/actions/layers-actions.c:128 -#, fuzzy +#: ../app/actions/layers-actions.c:128 msgid "Merge Do_wn" -msgstr "/아래로 합치기(_W)" +msgstr "아래로 합치기(_W)" -#: app/actions/layers-actions.c:133 -#, fuzzy +#: ../app/actions/layers-actions.c:133 msgid "Merge _Visible Layers..." -msgstr "/보이는 레이어 합치기(_V)..." +msgstr "보이는 레이어 합치기(_V)..." -#: app/actions/layers-actions.c:143 -#, fuzzy +#: ../app/actions/layers-actions.c:143 msgid "_Discard Text Information" -msgstr "/텍스트 정보 버림(_D)" +msgstr "텍스트 정보 버림(_D)" -#: app/actions/layers-actions.c:148 -#, fuzzy +#: ../app/actions/layers-actions.c:148 msgid "Layer B_oundary Size..." -msgstr "/레이어 경계 크기(_O)..." +msgstr "레이어 경계 크기(_O)..." -#: app/actions/layers-actions.c:153 -#, fuzzy +#: ../app/actions/layers-actions.c:153 msgid "Layer to _Image Size" -msgstr "/레이어를 이미지 크기에 맞추기(_I)" +msgstr "레이어를 이미지 크기에 맞추기(_I)" -#: app/actions/layers-actions.c:158 -#, fuzzy +#: ../app/actions/layers-actions.c:158 msgid "_Scale Layer..." -msgstr "/레이어 배율 조정(_S)..." +msgstr "레이어 배율 조정(_S)..." -#: app/actions/layers-actions.c:163 -#, fuzzy +#: ../app/actions/layers-actions.c:163 msgid "Cr_op Layer" -msgstr "레이어 자르기" +msgstr "레이어 자르기(_O)" -#: app/actions/layers-actions.c:168 -#, fuzzy +#: ../app/actions/layers-actions.c:168 msgid "Add La_yer Mask..." -msgstr "/레이어 마스크 더하기(_Y)..." +msgstr "레이어 마스크 더하기(_Y)..." -#: app/actions/layers-actions.c:173 -#, fuzzy +#: ../app/actions/layers-actions.c:173 msgid "Add Alpha C_hannel" -msgstr "/알파 채널 더하기(_H)" +msgstr "알파 채널 더하기(_H)" -#: app/actions/layers-actions.c:181 -#, fuzzy +#: ../app/actions/layers-actions.c:181 msgid "Keep Transparency" msgstr "투명도 유지" -#: app/actions/layers-actions.c:187 -#, fuzzy +#: ../app/actions/layers-actions.c:187 msgid "Edit Layer Mask" msgstr "레이어 마스크 더하기" -#: app/actions/layers-actions.c:193 -#, fuzzy +#: ../app/actions/layers-actions.c:193 msgid "Show Layer Mask" msgstr "레이어 마스크 이동" -#: app/actions/layers-actions.c:199 -#, fuzzy +#: ../app/actions/layers-actions.c:199 msgid "Disable Layer Mask" -msgstr "레이어 마스크 지우기" +msgstr "레이어 마스크 사용안함" -#: app/actions/layers-actions.c:208 -#, fuzzy +#: ../app/actions/layers-actions.c:208 msgid "Apply Layer _Mask" -msgstr "/레이어 마스크 적용(_M)" +msgstr "레이어 마스크 적용(_M)" -#: app/actions/layers-actions.c:213 -#, fuzzy +#: ../app/actions/layers-actions.c:213 msgid "Delete Layer Mas_k" -msgstr "/레이어 마스크 지우기(_K)" +msgstr "레이어 마스크 지우기(_K)" -#: app/actions/layers-actions.c:221 -#, fuzzy +#: ../app/actions/layers-actions.c:221 msgid "_Mask to Selection" -msgstr "/마스크를 선택으로(_C)" +msgstr "마스크를 선택으로(_M)" -#: app/actions/layers-actions.c:244 -#, fuzzy +#: ../app/actions/layers-actions.c:244 msgid "Al_pha to Selection" -msgstr "/알파를 선택으로(_P)" +msgstr "알파를 선택으로(_P)" -#: app/actions/layers-actions.c:249 -#, fuzzy +#: ../app/actions/layers-actions.c:249 msgid "A_dd to Selection" -msgstr "/선택에 더하기(_A)" +msgstr "선택에 더하기(_D)" -#: app/actions/layers-actions.c:267 -#, fuzzy +#: ../app/actions/layers-actions.c:267 msgid "Select _Top Layer" -msgstr "/레이어(L)/쌓기(S)/맨 위 레이어 선택(_T)" +msgstr "맨 위 레이어 선택(_T)" -#: app/actions/layers-actions.c:272 -#, fuzzy +#: ../app/actions/layers-actions.c:272 msgid "Select _Bottom Layer" -msgstr "/레이어(L)/쌓기(S)/맨 아래 레이어 선택(_B)" +msgstr "맨 아래 레이어 선택(_B)" -#: app/actions/layers-actions.c:277 -#, fuzzy +#: ../app/actions/layers-actions.c:277 msgid "Select _Previous Layer" -msgstr "/레이어(L)/쌓기(K)/이전 레이어 선택(_P)" +msgstr "이전 레이어 선택(_P)" -#: app/actions/layers-actions.c:282 -#, fuzzy +#: ../app/actions/layers-actions.c:282 msgid "Select _Next Layer" -msgstr "/레이어(L)/쌓기(K)/다음 레이어 선택(_N)" +msgstr "다음 레이어 선택(_N)" -#: app/actions/layers-actions.c:290 -#, fuzzy +#: ../app/actions/layers-actions.c:290 msgid "Set Opacity" -msgstr "레이어 불투명도 지정" +msgstr "불투명도 지정" -#: app/actions/layers-commands.c:196 +#: ../app/actions/layers-commands.c:196 msgid "Layer Attributes" msgstr "레이어 속성" -#: app/actions/layers-commands.c:199 +#: ../app/actions/layers-commands.c:199 msgid "Edit Layer Attributes" msgstr "레이어 속성 편집" -#: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 -#: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 +#: ../app/actions/layers-commands.c:232 ../app/actions/layers-commands.c:234 +#: ../app/actions/layers-commands.c:291 ../app/actions/layers-commands.c:295 +#: ../app/widgets/gimpdrawabletreeview.c:238 +#: ../app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "새 레이어" -#: app/actions/layers-commands.c:237 +#: ../app/actions/layers-commands.c:237 msgid "Create a New Layer" msgstr "새 레이어 만들기" -#: app/actions/layers-commands.c:470 +#: ../app/actions/layers-commands.c:470 msgid "Set Layer Boundary Size" msgstr "레이어 경계 크기 지정" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 +#: ../app/actions/layers-commands.c:512 ../app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "레이어 배율 바꾸기" -#: app/actions/layers-commands.c:545 +#: ../app/actions/layers-commands.c:545 msgid "Crop Layer" msgstr "레이어 자르기" -#: app/actions/layers-commands.c:683 +#: ../app/actions/layers-commands.c:683 msgid "Layer Mask to Selection" -msgstr "/레이어 마스크를 선택으로" +msgstr "레이어 마스크를 선택으로" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1065 -#: app/dialogs/layer-add-mask-dialog.c:62 +#: ../app/actions/layers-commands.c:904 ../app/core/gimplayer.c:1065 +#: ../app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "레이어 마스크 더하기" -#: app/actions/layers-commands.c:975 app/actions/layers-commands.c:1007 +#: ../app/actions/layers-commands.c:975 ../app/actions/layers-commands.c:1007 msgid "Invalid width or height. Both must be positive." msgstr "너비나 높이가 잘못되었습니다. 둘 다 양수여야 합니다." -#: app/actions/palette-editor-actions.c:43 +#: ../app/actions/palette-editor-actions.c:43 msgid "Palette Editor Menu" msgstr "색상표 편집기 메뉴" -#: app/actions/palette-editor-actions.c:53 -#, fuzzy +#: ../app/actions/palette-editor-actions.c:53 msgid "_Delete Color" -msgstr "/색상 지우기(_D)" +msgstr "색상 지우기(_D)" -#: app/actions/palette-editor-actions.c:54 -#, fuzzy +#: ../app/actions/palette-editor-actions.c:54 msgid "Delete color" msgstr "색상 지우기" -#: app/actions/palette-editor-actions.c:62 -#, fuzzy +#: ../app/actions/palette-editor-actions.c:62 msgid "New Color from _FG" -msgstr "/전경에서 새 색상(_F)" +msgstr "전경에서 새 색상(_F)" -#: app/actions/palette-editor-actions.c:63 -#, fuzzy +#: ../app/actions/palette-editor-actions.c:63 msgid "New color from FG" -msgstr "/전경에서 새 색상(_F)" +msgstr "전경에서 새 색상" -#: app/actions/palette-editor-actions.c:68 -#, fuzzy +#: ../app/actions/palette-editor-actions.c:68 msgid "New Color from _BG" -msgstr "/배경에서 새 색상(_B)" +msgstr "배경에서 새 색상(_B)" -#: app/actions/palette-editor-actions.c:69 -#, fuzzy +#: ../app/actions/palette-editor-actions.c:69 msgid "New color from BG" -msgstr "/배경에서 새 색상(_B)" +msgstr "배경에서 새 색상" -#: app/actions/palette-editor-actions.c:77 app/actions/view-actions.c:215 -#, fuzzy +#: ../app/actions/palette-editor-actions.c:77 +#: ../app/actions/view-actions.c:215 msgid "Zoom _In" -msgstr "/확대(_I)" +msgstr "확대(_I)" -#: app/actions/palette-editor-actions.c:83 app/actions/view-actions.c:209 -#, fuzzy +#: ../app/actions/palette-editor-actions.c:83 +#: ../app/actions/view-actions.c:209 msgid "Zoom _Out" -msgstr "/축소(_O)" +msgstr "축소(_O)" -#: app/actions/palette-editor-actions.c:89 -#, fuzzy +#: ../app/actions/palette-editor-actions.c:89 msgid "Zoom _All" msgstr "/전체 확대(_A)" -#: app/actions/palette-editor-commands.c:68 +#: ../app/actions/palette-editor-commands.c:68 msgid "Edit Palette Color" msgstr "색상표 색상 편집" -#: app/actions/palette-editor-commands.c:70 +#: ../app/actions/palette-editor-commands.c:70 msgid "Edit Color Palette Entry" msgstr "색상표 항목 편집" -#: app/actions/palettes-actions.c:44 +#: ../app/actions/palettes-actions.c:44 msgid "Palettes Menu" msgstr "색상표 메뉴" -#: app/actions/palettes-actions.c:48 -#, fuzzy +#: ../app/actions/palettes-actions.c:48 msgid "_New Palette" -msgstr "/새 색상표(_N)" +msgstr "새 색상표(_N)" -#: app/actions/palettes-actions.c:49 -#, fuzzy +#: ../app/actions/palettes-actions.c:49 msgid "New palette" -msgstr "/새 색상표(_N)" +msgstr "새 색상표" -#: app/actions/palettes-actions.c:54 -#, fuzzy +#: ../app/actions/palettes-actions.c:54 msgid "_Import Palette..." -msgstr "/색상표 가져오기(_I)..." +msgstr "색상표 가져오기(_I)..." -#: app/actions/palettes-actions.c:55 -#, fuzzy +#: ../app/actions/palettes-actions.c:55 msgid "Import palette" msgstr "색상표 가져오기" -#: app/actions/palettes-actions.c:60 -#, fuzzy +#: ../app/actions/palettes-actions.c:60 msgid "D_uplicate Palette" -msgstr "/색상표 복제(_U)" +msgstr "색상표 복제(_U)" -#: app/actions/palettes-actions.c:61 -#, fuzzy +#: ../app/actions/palettes-actions.c:61 msgid "Duplicate palette" -msgstr "/색상표 복제(_U)" +msgstr "색상표 복제" -#: app/actions/palettes-actions.c:66 -#, fuzzy +#: ../app/actions/palettes-actions.c:66 msgid "_Merge Palettes..." -msgstr "/색상표 합치기(_M)..." +msgstr "색상표 합치기(_M)..." -#: app/actions/palettes-actions.c:67 -#, fuzzy +#: ../app/actions/palettes-actions.c:67 msgid "Merge palettes" msgstr "색상표 합치기" -#: app/actions/palettes-actions.c:72 -#, fuzzy +#: ../app/actions/palettes-actions.c:72 msgid "_Delete Palette" -msgstr "/색상표 지우기(_D)" +msgstr "색상표 지우기(_D)" -#: app/actions/palettes-actions.c:73 -#, fuzzy +#: ../app/actions/palettes-actions.c:73 msgid "Delete palette" -msgstr "/색상표 지우기(_D)" +msgstr "색상표 지우기" -#: app/actions/palettes-actions.c:78 -#, fuzzy +#: ../app/actions/palettes-actions.c:78 msgid "_Refresh Palettes" -msgstr "/색상표 다시 읽기(_R)" +msgstr "색상표 다시 읽기(_R)" -#: app/actions/palettes-actions.c:79 -#, fuzzy +#: ../app/actions/palettes-actions.c:79 msgid "Refresh palettes" -msgstr "/색상표 다시 읽기(_R)" +msgstr "색상표 다시 읽기" -#: app/actions/palettes-actions.c:87 -#, fuzzy +#: ../app/actions/palettes-actions.c:87 msgid "_Edit Palette..." -msgstr "/색상표 편집(_E)..." +msgstr "색상표 편집(_E)..." -#: app/actions/palettes-actions.c:88 -#, fuzzy +#: ../app/actions/palettes-actions.c:88 msgid "Edit palette" -msgstr "/색상표 편집(_E)..." +msgstr "색상표 편집" -#: app/actions/palettes-commands.c:72 +#: ../app/actions/palettes-commands.c:72 msgid "Merge Palette" msgstr "색상표 합치기" -#: app/actions/palettes-commands.c:76 +#: ../app/actions/palettes-commands.c:76 msgid "Enter a name for the merged palette" msgstr "합친 색상표의 이름을 입력하십시오." -#: app/actions/patterns-actions.c:43 +#: ../app/actions/patterns-actions.c:43 msgid "Patterns Menu" msgstr "무늬 메뉴" -#: app/actions/patterns-actions.c:47 -#, fuzzy +#: ../app/actions/patterns-actions.c:47 msgid "_New Pattern" -msgstr "/새 무늬(_N)" +msgstr "새 무늬(_N)" -#: app/actions/patterns-actions.c:48 -#, fuzzy +#: ../app/actions/patterns-actions.c:48 msgid "New pattern" -msgstr "/새 무늬(_N)" +msgstr "새 무늬" -#: app/actions/patterns-actions.c:53 -#, fuzzy +#: ../app/actions/patterns-actions.c:53 msgid "D_uplicate Pattern" -msgstr "/무늬 복제(_U)" +msgstr "무늬 복제(_U)" -#: app/actions/patterns-actions.c:54 -#, fuzzy +#: ../app/actions/patterns-actions.c:54 msgid "Duplicate pattern" -msgstr "/무늬 복제(_U)" +msgstr "무늬 복제" -#: app/actions/patterns-actions.c:59 -#, fuzzy +#: ../app/actions/patterns-actions.c:59 msgid "_Delete Pattern..." -msgstr "/무늬 지우기(_D)..." +msgstr "무늬 지우기(_D)..." -#: app/actions/patterns-actions.c:60 -#, fuzzy +#: ../app/actions/patterns-actions.c:60 msgid "Delete pattern" -msgstr "/무늬 지우기(_D)..." +msgstr "무늬 지우기" -#: app/actions/patterns-actions.c:65 -#, fuzzy +#: ../app/actions/patterns-actions.c:65 msgid "_Refresh Patterns" -msgstr "/무늬 새로 고치기(_R)" +msgstr "무늬 새로 고치기(_R)" -#: app/actions/patterns-actions.c:66 -#, fuzzy +#: ../app/actions/patterns-actions.c:66 msgid "Refresh patterns" -msgstr "/무늬 새로 고치기(_R)" +msgstr "무늬 새로 고치기" -#: app/actions/patterns-actions.c:74 -#, fuzzy +#: ../app/actions/patterns-actions.c:74 msgid "_Edit Pattern..." -msgstr "/무늬 편집(_E)..." +msgstr "무늬 편집(_E)..." -#: app/actions/patterns-actions.c:75 -#, fuzzy +#: ../app/actions/patterns-actions.c:75 msgid "Edit pattern" -msgstr "/무늬 편집(_E)..." +msgstr "무늬 편집" -#: app/actions/plug-in-actions.c:62 -#, fuzzy +#: ../app/actions/plug-in-actions.c:62 msgid "Filte_rs" -msgstr "/필터(_R)" +msgstr "필터(_R)" -#: app/actions/plug-in-actions.c:63 -#, fuzzy +#: ../app/actions/plug-in-actions.c:63 msgid "_Blur" -msgstr "흐릿하게" +msgstr "흐릿하게(_B)" -#: app/actions/plug-in-actions.c:65 +#: ../app/actions/plug-in-actions.c:65 msgid "Ma_p" -msgstr "" +msgstr "지도(_P)" -#: app/actions/plug-in-actions.c:66 -#, fuzzy +#: ../app/actions/plug-in-actions.c:66 msgid "_Noise" -msgstr "없음" +msgstr "잡음(_N)" -#: app/actions/plug-in-actions.c:67 -#, fuzzy +#: ../app/actions/plug-in-actions.c:67 msgid "Edge-De_tect" -msgstr "/필터(R)/경계선 검출(_T)" +msgstr "경계선 검출(_T)" -#: app/actions/plug-in-actions.c:68 -#, fuzzy +#: ../app/actions/plug-in-actions.c:68 msgid "En_hance" -msgstr "/필터(R)/강화(_H)" +msgstr "강화(_H)" -#: app/actions/plug-in-actions.c:69 -#, fuzzy +#: ../app/actions/plug-in-actions.c:69 msgid "_Generic" -msgstr "가운데(_E)" +msgstr "일반(_G)" -#: app/actions/plug-in-actions.c:70 -#, fuzzy +#: ../app/actions/plug-in-actions.c:70 msgid "Gla_ss Effects" -msgstr "/필터(R)/유리잔 효과(_S)" +msgstr "유리 효과(_S)" -#: app/actions/plug-in-actions.c:71 -#, fuzzy +#: ../app/actions/plug-in-actions.c:71 msgid "_Light Effects" -msgstr "/필터(R)/조명 효과(_L)" +msgstr "조명 효과(_L)" -#: app/actions/plug-in-actions.c:72 -#, fuzzy +#: ../app/actions/plug-in-actions.c:72 msgid "_Distorts" -msgstr "/필터(R)/왜곡(_D)" +msgstr "왜곡(_D)" -#: app/actions/plug-in-actions.c:73 -#, fuzzy +#: ../app/actions/plug-in-actions.c:73 msgid "_Artistic" -msgstr "/필터(R)/예술(_A)" +msgstr "예술(_A)" -#: app/actions/plug-in-actions.c:74 -#, fuzzy +#: ../app/actions/plug-in-actions.c:74 msgid "_Map" -msgstr "_M" +msgstr "지도(_M)" -#: app/actions/plug-in-actions.c:75 -#, fuzzy +#: ../app/actions/plug-in-actions.c:75 msgid "_Render" -msgstr "가운데(_E)" +msgstr "렌더(_R)" -#: app/actions/plug-in-actions.c:76 +#: ../app/actions/plug-in-actions.c:76 msgid "_Clouds" -msgstr "" +msgstr "구름(_C)" -#: app/actions/plug-in-actions.c:77 -#, fuzzy +#: ../app/actions/plug-in-actions.c:77 msgid "_Nature" -msgstr "이름(_N):" +msgstr "자연(_N)" -#: app/actions/plug-in-actions.c:79 +#: ../app/actions/plug-in-actions.c:79 msgid "_Web" -msgstr "" +msgstr "웹(_W)" -#: app/actions/plug-in-actions.c:80 -#, fuzzy +#: ../app/actions/plug-in-actions.c:80 msgid "An_imation" -msgstr "/필터(R)/에니메이션(_I)" +msgstr "에니메이션(_I)" -#: app/actions/plug-in-actions.c:81 -#, fuzzy +#: ../app/actions/plug-in-actions.c:81 msgid "C_ombine" -msgstr "/필터(R)/결합(_O)" +msgstr "결합(_O)" -#: app/actions/plug-in-actions.c:82 -#, fuzzy +#: ../app/actions/plug-in-actions.c:82 msgid "To_ys" -msgstr "도구" +msgstr "장난감(_Y)" -#: app/actions/plug-in-actions.c:85 -#, fuzzy +#: ../app/actions/plug-in-actions.c:85 msgid "Reset all Filters..." -msgstr "/모든 도구 선택사항 초기화(_A)..." +msgstr "모든 필터 초기화(_A)..." -#: 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 "마지막 반복" -#: app/actions/plug-in-actions.c:98 app/actions/plug-in-actions.c:365 +#: ../app/actions/plug-in-actions.c:98 ../app/actions/plug-in-actions.c:365 msgid "Re-Show Last" msgstr "마지막 다시 표시" -#: app/actions/plug-in-actions.c:349 +#: ../app/actions/plug-in-actions.c:349 #, c-format msgid "Re_peat \"%s\"" msgstr "\"%s\" 반복(_P):" -#: app/actions/plug-in-actions.c:350 +#: ../app/actions/plug-in-actions.c:350 #, c-format msgid "R_e-show \"%s\"" msgstr "\"%s\" 다시 표시" -#: app/actions/plug-in-commands.c:193 -#, fuzzy +#: ../app/actions/plug-in-commands.c:193 msgid "Reset all Filters" -msgstr "가용한 필터" +msgstr "모든 필터 초기화" -#: app/actions/plug-in-commands.c:207 -#, fuzzy +#: ../app/actions/plug-in-commands.c:207 msgid "Do you really want to reset all filters to default values?" -msgstr "정말 모든 도구 선택사항을 기본 값으로 초기화 하겠습니까?" +msgstr "정말 모든 필터를 기본 값으로 초기화 하겠습니까?" -#: app/actions/qmask-actions.c:42 -#, fuzzy +#: ../app/actions/qmask-actions.c:42 msgid "Quick Mask Menu" msgstr "퀵마스크 메뉴" -#: app/actions/qmask-actions.c:46 -#, fuzzy +#: ../app/actions/qmask-actions.c:46 msgid "_Configure Color and Opacity..." -msgstr "/색상과 투명도 설정(_C)..." +msgstr "색상과 불투명도 설정(_C)..." -#: app/actions/qmask-actions.c:54 -#, fuzzy +#: ../app/actions/qmask-actions.c:54 msgid "_Quick Mask Active" -msgstr "/퀵마스크 활성(_Q)" +msgstr "퀵마스크 활성(_Q)" -#: app/actions/qmask-actions.c:60 -#, fuzzy +#: ../app/actions/qmask-actions.c:60 msgid "Toggle _Quick Mask" -msgstr "퀵마스크 전환" +msgstr "퀵마스크 전환(_Q)" -#: app/actions/qmask-actions.c:70 -#, fuzzy +#: ../app/actions/qmask-actions.c:70 msgid "Mask _Selected Areas" -msgstr "/선택한 영역 마스크(_S)" +msgstr "선택한 영역 마스크(_S)" -#: app/actions/qmask-actions.c:75 -#, fuzzy +#: ../app/actions/qmask-actions.c:75 msgid "Mask _Unselected Areas" -msgstr "/선택안한 영역 마스크(_U)" +msgstr "선택안한 영역 마스크(_U)" -#: app/actions/qmask-commands.c:106 -#, fuzzy +#: ../app/actions/qmask-commands.c:106 msgid "Quick Mask Attributes" -msgstr "퀵마스크 속성 편집" +msgstr "퀵마스크 속성" -#: app/actions/qmask-commands.c:109 -#, fuzzy +#: ../app/actions/qmask-commands.c:109 msgid "Edit Quick Mask Attributes" msgstr "퀵마스크 속성 편집" -#: app/actions/qmask-commands.c:111 -#, fuzzy +#: ../app/actions/qmask-commands.c:111 msgid "Edit Quick Mask Color" msgstr "퀵마스크 색상 편집" -#: app/actions/qmask-commands.c:112 +#: ../app/actions/qmask-commands.c:112 msgid "Mask Opacity:" msgstr "마스크 불투명도:" -#: app/actions/select-actions.c:44 -#, fuzzy +#: ../app/actions/select-actions.c:44 msgid "Selection Editor Menu" -msgstr "선택 편집기" +msgstr "선택 편집기 메뉴" -#: app/actions/select-actions.c:47 -#, fuzzy +#: ../app/actions/select-actions.c:47 msgid "_Select" -msgstr "/선택(_S)" +msgstr "선택(_S)" -#: app/actions/select-actions.c:50 +#: ../app/actions/select-actions.c:50 msgid "_All" -msgstr "" +msgstr "전체(_A)" -#: app/actions/select-actions.c:51 -#, fuzzy +#: ../app/actions/select-actions.c:51 msgid "Select all" msgstr "전체 선택" -#: app/actions/select-actions.c:56 -#, fuzzy +#: ../app/actions/select-actions.c:56 msgid "_None" -msgstr "없음" +msgstr "없음(_N)" -#: app/actions/select-actions.c:57 -#, fuzzy +#: ../app/actions/select-actions.c:57 msgid "Select none" msgstr "선택 없음" -#: app/actions/select-actions.c:62 -#, fuzzy +#: ../app/actions/select-actions.c:62 msgid "_Invert" -msgstr "반전" +msgstr "반전(_I)" -#: app/actions/select-actions.c:63 -#, fuzzy +#: ../app/actions/select-actions.c:63 msgid "Invert selection" msgstr "선택 반전" -#: app/actions/select-actions.c:68 -#, fuzzy +#: ../app/actions/select-actions.c:68 msgid "_Float" -msgstr "글꼴(_F):" +msgstr "띄우기(_F)" -#: app/actions/select-actions.c:73 -#, fuzzy +#: ../app/actions/select-actions.c:73 msgid "Fea_ther..." -msgstr "/선택(S)/페더(_T)..." +msgstr "페더(_T)..." -#: app/actions/select-actions.c:78 -#, fuzzy +#: ../app/actions/select-actions.c:78 msgid "_Sharpen" -msgstr "선명하게" +msgstr "선명하게(_S)" -#: app/actions/select-actions.c:83 -#, fuzzy +#: ../app/actions/select-actions.c:83 msgid "S_hrink..." -msgstr "기울이기 중..." +msgstr "줄이기(_H)...." -#: app/actions/select-actions.c:88 -#, fuzzy +#: ../app/actions/select-actions.c:88 msgid "_Grow..." -msgstr "/선택(S)/늘이기(_G)..." +msgstr "늘이기(_G)..." -#: app/actions/select-actions.c:93 -#, fuzzy +#: ../app/actions/select-actions.c:93 msgid "Bo_rder..." -msgstr "/선택(S)/테두리(_R)..." +msgstr "테두리(_R)..." -#: app/actions/select-actions.c:98 -#, fuzzy +#: ../app/actions/select-actions.c:98 msgid "Save to _Channel" -msgstr "/선택(S)/채널로 저장(_C)" +msgstr "채널로 저장(_C)" -#: app/actions/select-actions.c:99 -#, fuzzy +#: ../app/actions/select-actions.c:99 msgid "Save selection to channel" msgstr "선택을 채널로 저장" -#: app/actions/select-actions.c:104 -#, fuzzy +#: ../app/actions/select-actions.c:104 msgid "_Stroke Selection..." -msgstr "선택 따라 그리기" +msgstr "선택 따라 그리기(_S)..." -#: app/actions/select-actions.c:105 -#, fuzzy +#: ../app/actions/select-actions.c:105 msgid "Stroke selection..." -msgstr "선택 따라 그리기" +msgstr "선택 따라 그리기..." -#: app/actions/select-actions.c:110 -#, fuzzy +#: ../app/actions/select-actions.c:110 msgid "_Stroke Selection" -msgstr "선택 따라 그리기" +msgstr "선택 따라 그리기(_S)" -#: app/actions/select-actions.c:111 -#, fuzzy +#: ../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 +#: ../app/actions/select-commands.c:136 ../app/core/gimpselection.c:201 msgid "Feather Selection" msgstr "선택 페더" -#: app/actions/select-commands.c:140 +#: ../app/actions/select-commands.c:140 msgid "Feather selection by" msgstr "선택 페더 량" -#: app/actions/select-commands.c:171 app/core/gimpselection.c:208 +#: ../app/actions/select-commands.c:171 ../app/core/gimpselection.c:208 msgid "Shrink Selection" msgstr "선택 줄이기" -#: app/actions/select-commands.c:175 +#: ../app/actions/select-commands.c:175 msgid "Shrink selection by" msgstr "선택 줄이기 량" -#: app/actions/select-commands.c:184 +#: ../app/actions/select-commands.c:184 msgid "Shrink from image border" msgstr "이미지 테두리 줄이기" -#: app/actions/select-commands.c:205 app/core/gimpselection.c:207 +#: ../app/actions/select-commands.c:205 ../app/core/gimpselection.c:207 msgid "Grow Selection" msgstr "선택 늘이기" -#: app/actions/select-commands.c:209 +#: ../app/actions/select-commands.c:209 msgid "Grow selection by" msgstr "선택 증가 량" -#: app/actions/select-commands.c:228 app/core/gimpselection.c:206 +#: ../app/actions/select-commands.c:228 ../app/core/gimpselection.c:206 msgid "Border Selection" msgstr "테두리 선택" -#: app/actions/select-commands.c:232 +#: ../app/actions/select-commands.c:232 msgid "Border selection by" msgstr "테두리 선택 량" -#: app/actions/select-commands.c:275 app/actions/select-commands.c:301 -#: app/actions/vectors-commands.c:365 app/actions/vectors-commands.c:392 -#: app/dialogs/stroke-dialog.c:275 +#: ../app/actions/select-commands.c:275 ../app/actions/select-commands.c:301 +#: ../app/actions/vectors-commands.c:365 ../app/actions/vectors-commands.c:392 +#: ../app/dialogs/stroke-dialog.c:275 msgid "There is no active layer or channel to stroke to." msgstr "따라 그릴 활성 레이어나 채널이 없습니다." -#: app/actions/select-commands.c:280 app/core/gimpselection.c:184 +#: ../app/actions/select-commands.c:280 ../app/core/gimpselection.c:184 msgid "Stroke Selection" msgstr "선택 따라 그리기" -#: app/actions/templates-actions.c:42 +#: ../app/actions/templates-actions.c:42 msgid "Templates Menu" msgstr "템플릿 메뉴" -#: app/actions/templates-actions.c:46 -#, fuzzy +#: ../app/actions/templates-actions.c:46 msgid "_Create Image from Template..." -msgstr "/템플릿에서 이미지 만들기(_C)..." +msgstr "템플릿에서 이미지 만들기(_C)..." -#: app/actions/templates-actions.c:47 +#: ../app/actions/templates-actions.c:47 msgid "Create a new image from the selected template" msgstr "선택한 템플릿에서 새 이미지 만들기" -#: app/actions/templates-actions.c:52 -#, fuzzy +#: ../app/actions/templates-actions.c:52 msgid "_New Template..." -msgstr "/새 템플릿(_N)..." +msgstr "새 템플릿(_N)..." -#: app/actions/templates-actions.c:53 +#: ../app/actions/templates-actions.c:53 msgid "Create a new template" msgstr "새 템플릿 만들기" -#: app/actions/templates-actions.c:58 -#, fuzzy +#: ../app/actions/templates-actions.c:58 msgid "D_uplicate Template..." -msgstr "/템플릿 복제(_U)..." +msgstr "템플릿 복제(_U)..." -#: app/actions/templates-actions.c:59 +#: ../app/actions/templates-actions.c:59 msgid "Duplicate the selected template" msgstr "선택한 템플릿 복제" -#: app/actions/templates-actions.c:64 -#, fuzzy +#: ../app/actions/templates-actions.c:64 msgid "_Edit Template..." -msgstr "/템플릿 편집(_E)..." +msgstr "템플릿 편집(_E)..." -#: app/actions/templates-actions.c:65 +#: ../app/actions/templates-actions.c:65 msgid "Edit the selected template" msgstr "선택한 템플릿 편집" -#: app/actions/templates-actions.c:70 -#, fuzzy +#: ../app/actions/templates-actions.c:70 msgid "_Delete Template" -msgstr "/템플릿 지우기(_D)" +msgstr "템플릿 지우기(_D)" -#: app/actions/templates-actions.c:71 +#: ../app/actions/templates-actions.c:71 msgid "Delete the selected template" msgstr "선택한 템플릿 지우기" -#: app/actions/templates-commands.c:123 +#: ../app/actions/templates-commands.c:123 msgid "New Template" msgstr "새 템플릿" -#: app/actions/templates-commands.c:126 +#: ../app/actions/templates-commands.c:126 msgid "Create a New Template" msgstr "새 템플릿 만들기" -#: app/actions/templates-commands.c:185 app/actions/templates-commands.c:188 +#: ../app/actions/templates-commands.c:185 +#: ../app/actions/templates-commands.c:188 msgid "Edit Template" msgstr "템플릿 편집" -#: app/actions/templates-commands.c:224 +#: ../app/actions/templates-commands.c:224 msgid "Delete Template" msgstr "템플릿 지우기" -#: app/actions/templates-commands.c:243 +#: ../app/actions/templates-commands.c:243 #, c-format msgid "" "Are you sure you want to delete template '%s' from the list and from disk?" msgstr "정말 템플릿 '%s'을(를) 목록과 디스크에서 지웁니까?" -#: app/actions/text-editor-actions.c:44 -#, fuzzy +#: ../app/actions/text-editor-actions.c:44 msgid "Open" -msgstr "/파일(F)/열기(_O)..." +msgstr "열기" -#: app/actions/text-editor-actions.c:45 -#, fuzzy +#: ../app/actions/text-editor-actions.c:45 msgid "Load text from file" msgstr "파일에서 텍스트 읽기" -#: app/actions/text-editor-actions.c:50 app/core/gimp-edit.c:350 +#: ../app/actions/text-editor-actions.c:50 ../app/core/gimp-edit.c:350 msgid "Clear" -msgstr "깨끗이" +msgstr "지우기" -#: app/actions/text-editor-actions.c:51 -#, fuzzy +#: ../app/actions/text-editor-actions.c:51 msgid "Clear all text" msgstr "모든 텍스트 지우기" -#: app/actions/text-editor-actions.c:59 +#: ../app/actions/text-editor-actions.c:59 msgid "LTR" -msgstr "" +msgstr "LTR" -#: app/actions/text-editor-actions.c:60 app/text/text-enums.c:51 -#, fuzzy +#: ../app/actions/text-editor-actions.c:60 ../app/text/text-enums.c:51 msgid "From left to right" msgstr "왼쪽에서 오른쪽으로" -#: app/actions/text-editor-actions.c:65 +#: ../app/actions/text-editor-actions.c:65 msgid "RTL" -msgstr "" +msgstr "RTL" -#: app/actions/text-editor-actions.c:66 app/text/text-enums.c:52 -#, fuzzy +#: ../app/actions/text-editor-actions.c:66 ../app/text/text-enums.c:52 msgid "From right to left" msgstr "오른쪽에서 왼쪽으로" -#: app/actions/text-editor-commands.c:60 +#: ../app/actions/text-editor-commands.c:60 msgid "Open Text File (UTF-8)" msgstr "텍스트 파일 열기 (UTF-8)" -#: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 -#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:396 -#: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:338 -#: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 -#: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:608 -#: app/xcf/xcf.c:291 +#: ../app/actions/text-editor-commands.c:132 +#: ../app/config/gimpconfig-utils.c:552 ../app/config/gimpscanner.c:92 +#: ../app/core/gimpbrush.c:396 ../app/core/gimpbrushgenerated.c:601 +#: ../app/core/gimpbrushpipe.c:338 ../app/core/gimpgradient-load.c:63 +#: ../app/core/gimppalette.c:360 ../app/core/gimppattern.c:328 +#: ../app/tools/gimpimagemaptool.c:608 ../app/xcf/xcf.c:291 #, c-format msgid "Could not open '%s' for reading: %s" msgstr "읽기 모드로 '%s'을(를) 열 수 없습니다. %s" -#: app/actions/tool-options-actions.c:56 +#: ../app/actions/tool-options-actions.c:56 msgid "Tool Options Menu" msgstr "도구 선택사항 메뉴" -#: app/actions/tool-options-actions.c:60 -#, fuzzy +#: ../app/actions/tool-options-actions.c:60 msgid "_Save Options to" -msgstr "/선택사항 저장(_A)" +msgstr "선택사항 저장(_S)" -#: app/actions/tool-options-actions.c:64 -#, fuzzy +#: ../app/actions/tool-options-actions.c:64 msgid "_Restore Options from" -msgstr "/선택사항 복원(_R)" +msgstr "선택사항 복원(_R)" -#: app/actions/tool-options-actions.c:68 -#, fuzzy +#: ../app/actions/tool-options-actions.c:68 msgid "Re_name Saved Options" -msgstr "/선택사항 이름 바꾸기(_N)" +msgstr "선택사항 이름 바꾸기(_N)" -#: app/actions/tool-options-actions.c:72 -#, fuzzy +#: ../app/actions/tool-options-actions.c:72 msgid "_Delete Saved Options" -msgstr "/선택사항 지우기(_D)" +msgstr "선택사항 지우기(_D)" -#: app/actions/tool-options-actions.c:76 -#, fuzzy +#: ../app/actions/tool-options-actions.c:76 msgid "_New Entry..." -msgstr "/새 경로(_N)..." +msgstr "새 항목(_N)..." -#: app/actions/tool-options-actions.c:81 -#, fuzzy +#: ../app/actions/tool-options-actions.c:81 msgid "R_eset Tool Options" -msgstr "/도구 선택사항 초기화(_E)" +msgstr "도구 선택사항 초기화(_E)" -#: app/actions/tool-options-actions.c:82 -#, fuzzy +#: ../app/actions/tool-options-actions.c:82 msgid "Reset to default values" -msgstr "선택한 필터를 기본 값으로 초기화" +msgstr "기본 값으로 초기화" -#: app/actions/tool-options-actions.c:87 -#, fuzzy +#: ../app/actions/tool-options-actions.c:87 msgid "Reset _all Tool Options..." -msgstr "/모든 도구 선택사항 초기화(_A)..." +msgstr "모든 도구 선택사항 초기화(_A)..." -#: app/actions/tool-options-actions.c:88 -#, fuzzy +#: ../app/actions/tool-options-actions.c:88 msgid "Reset all tool options" -msgstr "/모든 도구 선택사항 초기화(_A)..." +msgstr "모든 도구 선택사항 초기화" -#: app/actions/tool-options-commands.c:73 +#: ../app/actions/tool-options-commands.c:73 msgid "Save Tool Options" msgstr "도구 선택사항 저장" -#: app/actions/tool-options-commands.c:77 +#: ../app/actions/tool-options-commands.c:77 msgid "Enter a name for the saved options" msgstr "저장된 선택사항의 이름을 입력하십시오" -#: app/actions/tool-options-commands.c:78 -#: app/actions/tool-options-commands.c:251 -#: app/actions/tool-options-commands.c:269 +#: ../app/actions/tool-options-commands.c:78 +#: ../app/actions/tool-options-commands.c:251 +#: ../app/actions/tool-options-commands.c:269 msgid "Saved Options" msgstr "저장된 선택사항" -#: app/actions/tool-options-commands.c:146 +#: ../app/actions/tool-options-commands.c:146 msgid "Rename Saved Tool Options" msgstr "저장된 선택사항 이름 바꾸기" -#: app/actions/tool-options-commands.c:150 +#: ../app/actions/tool-options-commands.c:150 msgid "Enter a new name for the saved options" msgstr "저장된 선택사항의 새 이름을 입력하십시오" -#: app/actions/tool-options-commands.c:215 +#: ../app/actions/tool-options-commands.c:215 msgid "Reset Tool Options" msgstr "도구 선택사항 초기화" -#: app/actions/tool-options-commands.c:233 +#: ../app/actions/tool-options-commands.c:233 msgid "Do you really want to reset all tool options to default values?" msgstr "정말 모든 도구 선택사항을 기본 값으로 초기화 하겠습니까?" -#: app/actions/tools-actions.c:47 -#, fuzzy +#: ../app/actions/tools-actions.c:47 msgid "Tools Menu" -msgstr "도구상자 메뉴" +msgstr "도구 메뉴" -#: app/actions/tools-actions.c:50 -#, fuzzy +#: ../app/actions/tools-actions.c:50 msgid "_Tools" -msgstr "/도구(_T)" +msgstr "도구(_T)" -#: app/actions/tools-actions.c:51 -#, fuzzy +#: ../app/actions/tools-actions.c:51 msgid "_Selection Tools" -msgstr "/도구(T)/선택 도구(_S)" +msgstr "선택 도구(_S)" -#: app/actions/tools-actions.c:52 -#, fuzzy +#: ../app/actions/tools-actions.c:52 msgid "_Paint Tools" -msgstr "그리기 도구:" +msgstr "그리기 도구(_P)" -#: app/actions/tools-actions.c:53 -#, fuzzy +#: ../app/actions/tools-actions.c:53 msgid "_Transform Tools" -msgstr "/도구(T)/변형 도구(_T)" +msgstr "변형 도구(_T)" -#: app/actions/tools-actions.c:54 -#, fuzzy +#: ../app/actions/tools-actions.c:54 msgid "_Color Tools" -msgstr "/도구(T)/색상 도구(_C)" +msgstr "색상 도구(_C)" -#: app/actions/tools-actions.c:57 -#, fuzzy +#: ../app/actions/tools-actions.c:57 msgid "_Reset Order & Visibility" -msgstr "항목 표시 여부" +msgstr "순서와 표시 여부 초기화(_R)" -#: app/actions/tools-actions.c:58 +#: ../app/actions/tools-actions.c:58 msgid "Reset tool order and visibility" -msgstr "" +msgstr "도구 순서와 표시 여부 초기화" -#: app/actions/tools-actions.c:66 -#, fuzzy +#: ../app/actions/tools-actions.c:66 msgid "_Show in Toolbox" -msgstr "풍선도움말 보여주기(_T)" +msgstr "도구상자에 표시(_S)" -#: app/actions/tools-actions.c:75 -#, fuzzy +#: ../app/actions/tools-actions.c:75 msgid "_By Color" -msgstr "RGB 색상" +msgstr "색상으로(_B)" -#: app/actions/tools-actions.c:80 -#, fuzzy +#: ../app/actions/tools-actions.c:80 msgid "_Arbitrary Rotation..." -msgstr "/레이어(L)/변형(T)/임의 각도로 회전(_A)..." +msgstr "임의 각도로 회전(_A)..." -#: app/actions/vectors-actions.c:44 +#: ../app/actions/vectors-actions.c:44 msgid "Paths Menu" msgstr "경로 메뉴" -#: app/actions/vectors-actions.c:48 -#, fuzzy +#: ../app/actions/vectors-actions.c:48 msgid "Path _Tool" -msgstr "/경로 도구(_T)" +msgstr "경로 도구(_T)" -#: app/actions/vectors-actions.c:53 -#, fuzzy +#: ../app/actions/vectors-actions.c:53 msgid "_Edit Path Attributes..." -msgstr "/경로 속성 편집(_E)..." +msgstr "경로 속성 편집(_E)..." -#: app/actions/vectors-actions.c:54 -#, fuzzy +#: ../app/actions/vectors-actions.c:54 msgid "Edit path attributes" msgstr "경로 속성 편집" -#: app/actions/vectors-actions.c:59 -#, fuzzy +#: ../app/actions/vectors-actions.c:59 msgid "_New Path..." -msgstr "/새 경로(_N)..." +msgstr "새 경로(_N)..." -#: app/actions/vectors-actions.c:60 -#, fuzzy +#: ../app/actions/vectors-actions.c:60 msgid "New path..." -msgstr "/새 경로(_N)..." +msgstr "새 경로..." -#: app/actions/vectors-actions.c:65 -#, fuzzy +#: ../app/actions/vectors-actions.c:65 msgid "_New Path" -msgstr "새 경로" +msgstr "새 경로(_N)" -#: app/actions/vectors-actions.c:66 -#, fuzzy +#: ../app/actions/vectors-actions.c:66 msgid "New path with last values" -msgstr "" -"새 경로\n" -"%s 새 경로 대화상자" +msgstr "최근 값으로 새 경로" -#: app/actions/vectors-actions.c:71 -#, fuzzy +#: ../app/actions/vectors-actions.c:71 msgid "D_uplicate Path" -msgstr "/경로 복제(_U)" +msgstr "경로 복제(_U)" -#: app/actions/vectors-actions.c:72 -#, fuzzy +#: ../app/actions/vectors-actions.c:72 msgid "Duplicate path" msgstr "경로 복제" -#: app/actions/vectors-actions.c:77 -#, fuzzy +#: ../app/actions/vectors-actions.c:77 msgid "_Delete Path" -msgstr "/경로 지우기(_D)" +msgstr "경로 지우기(_D)" -#: app/actions/vectors-actions.c:78 -#, fuzzy +#: ../app/actions/vectors-actions.c:78 msgid "Delete path" msgstr "경로 지우기" -#: app/actions/vectors-actions.c:83 -#, fuzzy +#: ../app/actions/vectors-actions.c:83 msgid "Merge _Visible Paths" -msgstr "/보이는 경로 합치기(_V)" +msgstr "보이는 경로 합치기(_V)" -#: app/actions/vectors-actions.c:88 -#, fuzzy +#: ../app/actions/vectors-actions.c:88 msgid "_Raise Path" -msgstr "/경로 올리기(_R)" +msgstr "경로 올리기(_R)" -#: app/actions/vectors-actions.c:89 -#, fuzzy +#: ../app/actions/vectors-actions.c:89 msgid "Raise path" msgstr "경로 올리기" -#: app/actions/vectors-actions.c:94 -#, fuzzy +#: ../app/actions/vectors-actions.c:94 msgid "Raise Path to _Top" -msgstr "경로를 맨 위로 올리기" +msgstr "경로를 맨 위로 올리기(_T)" -#: app/actions/vectors-actions.c:95 -#, fuzzy +#: ../app/actions/vectors-actions.c:95 msgid "Raise path to top" msgstr "경로를 맨 위로 올리기" -#: app/actions/vectors-actions.c:100 -#, fuzzy +#: ../app/actions/vectors-actions.c:100 msgid "_Lower Path" -msgstr "/경로 내리기(_L)" +msgstr "경로 내리기(_L)" -#: app/actions/vectors-actions.c:101 -#, fuzzy +#: ../app/actions/vectors-actions.c:101 msgid "Lower path" msgstr "경로 내리기" -#: app/actions/vectors-actions.c:106 -#, fuzzy +#: ../app/actions/vectors-actions.c:106 msgid "Lower Path to _Bottom" -msgstr "경로를 맨 아래로 내리기" +msgstr "경로를 맨 아래로 내리기(_B)" -#: app/actions/vectors-actions.c:107 -#, fuzzy +#: ../app/actions/vectors-actions.c:107 msgid "Lower path to bottom" msgstr "경로를 맨 아래로 내리기" -#: app/actions/vectors-actions.c:112 -#, fuzzy +#: ../app/actions/vectors-actions.c:112 msgid "Stro_ke Path..." -msgstr "/경로 따라 그리기(_K)..." +msgstr "경로 따라 그리기(_K)..." -#: app/actions/vectors-actions.c:113 -#, fuzzy +#: ../app/actions/vectors-actions.c:113 msgid "Stroke path..." -msgstr "/경로 따라 그리기(_K)..." +msgstr "경로 따라 그리기..." -#: app/actions/vectors-actions.c:118 -#, fuzzy +#: ../app/actions/vectors-actions.c:118 msgid "Stro_ke Path" -msgstr "경로 따라 그리기" +msgstr "경로 따라 그리기(_K)" -#: app/actions/vectors-actions.c:119 -#, fuzzy +#: ../app/actions/vectors-actions.c:119 msgid "Stroke path with last values" -msgstr "그리기 도구로 따라 그리기" +msgstr "최근 값으로 경로 따라 그리기" -#: app/actions/vectors-actions.c:124 -#, fuzzy +#: ../app/actions/vectors-actions.c:124 msgid "Co_py Path" -msgstr "/경로 복사(_P)" +msgstr "경로 복사(_P)" -#: app/actions/vectors-actions.c:129 -#, fuzzy +#: ../app/actions/vectors-actions.c:129 msgid "Paste Pat_h" -msgstr "/경로 붙여 넣기(_H)" +msgstr "경로 붙여 넣기(_H)" -#: app/actions/vectors-actions.c:134 -#, fuzzy +#: ../app/actions/vectors-actions.c:134 msgid "I_mport Path..." -msgstr "/경로 가져오기(_M)..." +msgstr "경로 가져오기(_M)..." -#: app/actions/vectors-actions.c:139 -#, fuzzy +#: ../app/actions/vectors-actions.c:139 msgid "E_xport Path..." -msgstr "/경로 내보내기(X)..." +msgstr "경로 내보내기(_X)..." -#: app/actions/vectors-actions.c:162 -#, fuzzy +#: ../app/actions/vectors-actions.c:162 msgid "Path to Sele_ction" -msgstr "/경로를 선택으로(_C)" +msgstr "경로를 선택으로(_C)" -#: app/actions/vectors-actions.c:163 app/tools/gimpvectortool.c:1893 -#, fuzzy +#: ../app/actions/vectors-actions.c:163 ../app/tools/gimpvectortool.c:1903 msgid "Path to selection" msgstr "경로를 선택으로" -#: app/actions/vectors-actions.c:168 -#, fuzzy +#: ../app/actions/vectors-actions.c:168 msgid "Fr_om Path" -msgstr "/선택(S)/경로에서(_O)" +msgstr "경로에서(_O)" -#: app/actions/vectors-actions.c:194 -#, fuzzy +#: ../app/actions/vectors-actions.c:194 msgid "Selecti_on to Path" -msgstr "/선택을 경로로(_O)" +msgstr "선택을 경로로(_O)" -#: app/actions/vectors-actions.c:195 -#, fuzzy +#: ../app/actions/vectors-actions.c:195 msgid "Selection to path" -msgstr "/선택을 경로로(_O)" +msgstr "선택을 경로로" -#: app/actions/vectors-actions.c:200 -#, fuzzy +#: ../app/actions/vectors-actions.c:200 msgid "To _Path" -msgstr "경로 이동" +msgstr "경로로(_P)" -#: app/actions/vectors-actions.c:205 -#, fuzzy +#: ../app/actions/vectors-actions.c:205 msgid "Selection to Path (_Advanced)" -msgstr "" -"선택을 경로로\n" -"%s 고급 선택사항" +msgstr "선택을 경로로 (고급)(_A)" -#: app/actions/vectors-actions.c:206 -#, fuzzy +#: ../app/actions/vectors-actions.c:206 msgid "Advanced options" -msgstr "저장된 선택사항" +msgstr "고급 선택사항" -#: app/actions/vectors-commands.c:140 +#: ../app/actions/vectors-commands.c:140 msgid "Path Attributes" msgstr "경로 속성" -#: app/actions/vectors-commands.c:143 +#: ../app/actions/vectors-commands.c:143 msgid "Edit Path Attributes" msgstr "경로 속성 편집" -#: app/actions/vectors-commands.c:167 app/actions/vectors-commands.c:168 -#: app/actions/vectors-commands.c:190 +#: ../app/actions/vectors-commands.c:167 ../app/actions/vectors-commands.c:168 +#: ../app/actions/vectors-commands.c:190 msgid "New Path" msgstr "새 경로" -#: app/actions/vectors-commands.c:171 +#: ../app/actions/vectors-commands.c:171 msgid "New Path Options" msgstr "새 경로 선택사항" -#: app/actions/vectors-commands.c:299 app/pdb/paths_cmds.c:1210 +#: ../app/actions/vectors-commands.c:299 ../app/pdb/paths_cmds.c:1210 msgid "Path to Selection" msgstr "경로를 선택으로" -#: app/actions/vectors-commands.c:370 app/tools/gimpvectortool.c:1923 -#: app/vectors/gimpvectors.c:237 +#: ../app/actions/vectors-commands.c:370 ../app/tools/gimpvectortool.c:1933 +#: ../app/vectors/gimpvectors.c:237 msgid "Stroke Path" msgstr "경로 따라 그리기" -#: app/actions/view-actions.c:63 -#, fuzzy +#: ../app/actions/view-actions.c:63 msgid "_View" -msgstr "/보기(_V)" +msgstr "보기(_V)" -#: app/actions/view-actions.c:64 -#, fuzzy +#: ../app/actions/view-actions.c:64 msgid "_Zoom" -msgstr "확대:" +msgstr "확대(_Z)" -#: app/actions/view-actions.c:65 -#, fuzzy +#: ../app/actions/view-actions.c:65 msgid "_Padding Color" -msgstr "사용자 채우기 색상:" +msgstr "채움 색상(_P)" -#: app/actions/view-actions.c:73 -#, fuzzy +#: ../app/actions/view-actions.c:73 msgid "_Close" -msgstr "도장" +msgstr "닫기(_C)" -#: app/actions/view-actions.c:78 -#, fuzzy +#: ../app/actions/view-actions.c:78 msgid "_Fit Image in Window" -msgstr "이미지 창" +msgstr "이미지를 창 안에 맞춤(_F)" -#: app/actions/view-actions.c:79 -#, fuzzy +#: ../app/actions/view-actions.c:79 msgid "Fit image in window" -msgstr "이미지 창" +msgstr "이미지를 창 안에 맞춤" -#: app/actions/view-actions.c:84 -#, fuzzy +#: ../app/actions/view-actions.c:84 msgid "Fit Image to Window" -msgstr "창에 맞게" +msgstr "이미지를 창에 맞춤" -#: app/actions/view-actions.c:85 -#, fuzzy +#: ../app/actions/view-actions.c:85 msgid "Fit image to window" -msgstr "창에 맞게" +msgstr "이미지를 창에 맞춤" -#: app/actions/view-actions.c:90 -#, fuzzy +#: ../app/actions/view-actions.c:90 msgid "_Info Window" -msgstr "정보 창" +msgstr "정보 창(_I)" -#: app/actions/view-actions.c:95 -#, fuzzy +#: ../app/actions/view-actions.c:95 msgid "Na_vigation Window" -msgstr "/보기(V)/네비게이션 창(_V)" +msgstr "네비게이션 창(_V)" -#: app/actions/view-actions.c:100 -#, fuzzy +#: ../app/actions/view-actions.c:100 msgid "Display _Filters..." -msgstr "/보기(V)/화면 표시 필터(_F)..." +msgstr "화면 표시 필터(_F)..." -#: app/actions/view-actions.c:105 -#, fuzzy +#: ../app/actions/view-actions.c:105 msgid "Shrink _Wrap" -msgstr "창 크기를 이미지에 맞춤" +msgstr "창을 이미지에 맞춤(_W)" -#: app/actions/view-actions.c:106 -#, fuzzy +#: ../app/actions/view-actions.c:106 msgid "Shrink wrap" -msgstr "창 크기를 이미지에 맞춤" +msgstr "창을 이미지에 맞춤(_W)" -#: app/actions/view-actions.c:111 -#, fuzzy +#: ../app/actions/view-actions.c:111 msgid "Move to Screen..." -msgstr "/화면으로 이동..." +msgstr "화면으로 이동..." -#: app/actions/view-actions.c:119 -#, fuzzy +#: ../app/actions/view-actions.c:119 msgid "_Dot for Dot" -msgstr "/보기(V)/점 대 점(_D)" +msgstr "점 대 점(_D)" -#: app/actions/view-actions.c:125 -#, fuzzy +#: ../app/actions/view-actions.c:125 msgid "Show _Selection" -msgstr "선택 표시(_E)" +msgstr "선택 표시(_S)" -#: app/actions/view-actions.c:131 +#: ../app/actions/view-actions.c:131 msgid "Show _Layer Boundary" msgstr "레이어 경계 표시(_L)" -#: app/actions/view-actions.c:137 +#: ../app/actions/view-actions.c:137 msgid "Show _Guides" msgstr "안내선 표시(_G)" -#: app/actions/view-actions.c:143 -#, fuzzy +#: ../app/actions/view-actions.c:143 msgid "Sn_ap to Guides" -msgstr "/보기(V)/안내선에 맞추기(_A)" +msgstr "안내선에 맞추기(_A)" -#: app/actions/view-actions.c:149 -#, fuzzy +#: ../app/actions/view-actions.c:149 msgid "S_how Grid" -msgstr "모눈 표시(_D)" +msgstr "모눈 표시(_H)" -#: app/actions/view-actions.c:155 -#, fuzzy +#: ../app/actions/view-actions.c:155 msgid "Sna_p to Grid" -msgstr "/보기(V)/모눈에 맞추기(_P)" +msgstr "모눈에 맞추기(_P)" -#: app/actions/view-actions.c:161 +#: ../app/actions/view-actions.c:161 msgid "Show _Menubar" msgstr "메뉴표시줄 표시(_M)" -#: app/actions/view-actions.c:167 -#, fuzzy +#: ../app/actions/view-actions.c:167 msgid "Show R_ulers" -msgstr "눈금자 표시(_R)" +msgstr "눈금자 표시(_U)" -#: app/actions/view-actions.c:173 +#: ../app/actions/view-actions.c:173 msgid "Show Scroll_bars" msgstr "스크롤 막대 표시(_B)" -#: app/actions/view-actions.c:179 +#: ../app/actions/view-actions.c:179 msgid "Show S_tatusbar" msgstr "상태표시줄 표시(_T)" -#: app/actions/view-actions.c:185 -#, fuzzy +#: ../app/actions/view-actions.c:185 msgid "Fullscr_een" -msgstr "/보기(V)/전체 화면(_E)" +msgstr "전체 화면(_E)" -#: app/actions/view-actions.c:234 -#, fuzzy +#: ../app/actions/view-actions.c:234 msgid "16:1 (1600%)" -msgstr "/보기(V)/배율(Z)/16:1 (1600%)" +msgstr "16:1 (1600%)" -#: app/actions/view-actions.c:239 -#, fuzzy +#: ../app/actions/view-actions.c:239 msgid "8:1 (800%)" -msgstr "/보기(V)/배율(Z)/8:1 (800%)" +msgstr "8:1 (800%)" -#: app/actions/view-actions.c:244 -#, fuzzy +#: ../app/actions/view-actions.c:244 msgid "4:1 (400%)" -msgstr "/보기(V)/배율(Z)/4:1 (400%)" +msgstr "4:1 (400%)" -#: app/actions/view-actions.c:249 -#, fuzzy +#: ../app/actions/view-actions.c:249 msgid "2:1 (200%)" -msgstr "/보기(V)/배율(Z)/2:1 (200%)" +msgstr "2:1 (200%)" -#: app/actions/view-actions.c:254 -#, fuzzy +#: ../app/actions/view-actions.c:254 msgid "1:1 (100%)" -msgstr "/보기(V)/배율(Z)/1:1 (100%)" +msgstr "1:1 (100%)" -#: app/actions/view-actions.c:255 +#: ../app/actions/view-actions.c:255 msgid "Zoom 1:1" msgstr "1:1 배율" -#: app/actions/view-actions.c:260 -#, fuzzy +#: ../app/actions/view-actions.c:260 msgid "1:2 (50%)" -msgstr "/보기(V)/배율(Z)/1:2 (50%)" +msgstr "1:2 (50%)" -#: app/actions/view-actions.c:265 -#, fuzzy +#: ../app/actions/view-actions.c:265 msgid "1:4 (25%)" -msgstr "/보기(V)/배율(Z)/1:4 (25%)" +msgstr "1:4 (25%)" -#: app/actions/view-actions.c:270 -#, fuzzy +#: ../app/actions/view-actions.c:270 msgid "1:8 (12.5%)" -msgstr "/보기(V)/배율(Z)/1:8 (12.5%)" +msgstr "1:8 (12.5%)" -#: app/actions/view-actions.c:275 -#, fuzzy +#: ../app/actions/view-actions.c:275 msgid "1:16 (6.25%)" -msgstr "/보기(V)/배율(Z)/1:16 (6.25%)" +msgstr "1:16 (6.25%)" -#: app/actions/view-actions.c:280 -#, fuzzy +#: ../app/actions/view-actions.c:280 msgid "O_ther..." -msgstr "/선택(S)/페더(_T)..." +msgstr "기타(_T)..." -#: app/actions/view-actions.c:288 -#, fuzzy +#: ../app/actions/view-actions.c:288 msgid "From _Theme" -msgstr "/테마에서(_T)" +msgstr "테마에서(_T)" -#: app/actions/view-actions.c:293 -#, fuzzy +#: ../app/actions/view-actions.c:293 msgid "_Light Check Color" -msgstr "/격자의 밝은 색상(_L)" +msgstr "격자의 밝은 색상(_L)" -#: app/actions/view-actions.c:298 -#, fuzzy +#: ../app/actions/view-actions.c:298 msgid "_Dark Check Color" -msgstr "/격자의 어두운 색상(_D)" +msgstr "격자의 어두운 색상(_D)" -#: app/actions/view-actions.c:303 -#, fuzzy +#: ../app/actions/view-actions.c:303 msgid "Select _Custom Color..." -msgstr "/사용자 색상 선택(_C)..." +msgstr "사용자 색상 선택(_C)..." -#: app/actions/view-actions.c:308 -#, fuzzy +#: ../app/actions/view-actions.c:308 msgid "As in _Preferences" -msgstr "/기본 설정을 따름(_P)" +msgstr "기본 설정을 따름(_P)" -#: app/actions/view-actions.c:592 +#: ../app/actions/view-actions.c:592 #, c-format msgid "Other (%s) ..." msgstr "기타 (%s) ..." -#: app/actions/view-actions.c:601 +#: ../app/actions/view-actions.c:601 #, c-format msgid "_Zoom (%s)" msgstr "확대(_Z) (%s)" -#: app/actions/view-commands.c:572 +#: ../app/actions/view-commands.c:572 msgid "Set Canvas Padding Color" msgstr "캔버스 채우기 색상 지정" -#: app/actions/view-commands.c:574 -#, fuzzy +#: ../app/actions/view-commands.c:574 msgid "Set Custom Canvas Padding Color" -msgstr "캔버스 채우기 색상 지정" +msgstr "사용자 캔버스 채우기 색상 지정" -#: app/base/base-enums.c:23 +#: ../app/base/base-enums.c:23 msgid "Smooth" msgstr "부드럽게" -#: app/base/base-enums.c:24 +#: ../app/base/base-enums.c:24 msgid "Freehand" msgstr "자유롭게" -#: app/base/base-enums.c:55 app/widgets/gimpwidgets-constructors.c:76 -#: app/widgets/gimpwidgets-constructors.c:109 +#: ../app/base/base-enums.c:55 ../app/widgets/gimpwidgets-constructors.c:76 +#: ../app/widgets/gimpwidgets-constructors.c:109 msgid "Value" msgstr "값" -#: app/base/base-enums.c:56 app/core/core-enums.c:157 -#: app/tools/gimpcolorbalancetool.c:301 +#: ../app/base/base-enums.c:56 ../app/core/core-enums.c:157 +#: ../app/tools/gimpcolorbalancetool.c:301 msgid "Red" msgstr "빨강" -#: app/base/base-enums.c:57 app/core/core-enums.c:158 -#: app/tools/gimpcolorbalancetool.c:308 +#: ../app/base/base-enums.c:57 ../app/core/core-enums.c:158 +#: ../app/tools/gimpcolorbalancetool.c:308 msgid "Green" msgstr "초록" -#: app/base/base-enums.c:58 app/core/core-enums.c:159 -#: app/tools/gimpcolorbalancetool.c:315 +#: ../app/base/base-enums.c:58 ../app/core/core-enums.c:159 +#: ../app/tools/gimpcolorbalancetool.c:315 msgid "Blue" msgstr "파랑" -#: app/base/base-enums.c:59 app/core/core-enums.c:162 +#: ../app/base/base-enums.c:59 ../app/core/core-enums.c:162 msgid "Alpha" msgstr "알파" -#: app/base/base-enums.c:60 app/display/gimpdisplayshell-title.c:234 -#: app/widgets/widgets-enums.c:114 +#: ../app/base/base-enums.c:60 ../app/display/gimpdisplayshell-title.c:234 +#: ../app/widgets/widgets-enums.c:114 msgid "RGB" msgstr "RGB" -#: app/base/base-enums.c:88 +#: ../app/base/base-enums.c:88 msgid "None (Fastest)" msgstr "안함 (속도위주)" -#: app/base/base-enums.c:89 app/core/core-enums.c:370 -#: app/widgets/widgets-enums.c:227 +#: ../app/base/base-enums.c:89 ../app/core/core-enums.c:370 +#: ../app/widgets/widgets-enums.c:227 msgid "Linear" msgstr "선형" -#: app/base/base-enums.c:90 +#: ../app/base/base-enums.c:90 msgid "Cubic (Best)" msgstr "3차곡선 (품질위주)" -#: app/base/base-enums.c:188 +#: ../app/base/base-enums.c:188 msgid "Shadows" msgstr "그림자" -#: app/base/base-enums.c:189 +#: ../app/base/base-enums.c:189 msgid "Midtones" msgstr "중간톤" -#: app/base/base-enums.c:190 +#: ../app/base/base-enums.c:190 msgid "Highlights" msgstr "강조" -#: app/base/tile-swap.c:456 +#: ../app/base/tile-swap.c:456 msgid "" "Unable to open swap file. The Gimp has run out of memory and cannot use the " "swap file. Some parts of your images may be corrupted. Try to save your work " "using different filenames, restart the Gimp and check the location of the " "swap directory in your Preferences." msgstr "" +"스왑 파일을 열 수 없습니다. 김프는 메모리가 부족하지만 스왑 파일을 열 수 없습" +"니다. 작업 중인 이미지의 일부가 손상될 수 있습니다. 작업 중이던 것을 다른 파" +"일 이름으로 저장하고, 김프를 다시 시작하고 기본 설정에서 스왑 디렉토리의 위치" +"를 확인하십시오." -#: app/config/gimpconfig-deserialize.c:100 +#: ../app/config/gimpconfig-deserialize.c:100 #, c-format msgid "value for token %s is not a valid UTF-8 string" msgstr "잘못된 UTF-8 문자열 (토큰 %s)" -#: app/config/gimpconfig-deserialize.c:217 app/config/gimpconfig.c:424 -#: app/config/gimpconfig.c:437 app/config/gimpscanner.c:417 -#: app/config/gimpscanner.c:489 app/core/gimp-modules.c:132 -#: app/core/gimp-units.c:169 app/gui/session.c:158 -#: app/plug-in/plug-in-rc.c:183 +#: ../app/config/gimpconfig-deserialize.c:217 ../app/config/gimpconfig.c:424 +#: ../app/config/gimpconfig.c:437 ../app/config/gimpscanner.c:417 +#: ../app/config/gimpscanner.c:489 ../app/core/gimp-modules.c:132 +#: ../app/core/gimp-units.c:169 ../app/gui/session.c:158 +#: ../app/plug-in/plug-in-rc.c:183 msgid "fatal parse error" msgstr "치명적인 해석 오류" #. please don't translate 'yes' and 'no' -#: app/config/gimpconfig-deserialize.c:467 +#: ../app/config/gimpconfig-deserialize.c:467 #, c-format msgid "expected 'yes' or 'no' for boolean token %s, got '%s'" msgstr "불린 토큰 %s의 값 '%s'은(는) 'yes'나 'no'가 되어야 합니다." -#: app/config/gimpconfig-deserialize.c:541 +#: ../app/config/gimpconfig-deserialize.c:541 #, c-format msgid "invalid value '%s' for token %s" msgstr "잘못된 값 '%s' (토큰 '%s')" -#: app/config/gimpconfig-deserialize.c:556 +#: ../app/config/gimpconfig-deserialize.c:556 #, c-format msgid "invalid value '%ld' for token %s" msgstr "잘못된 값 '%ld' (토큰 %s)" -#: app/config/gimpconfig-deserialize.c:625 +#: ../app/config/gimpconfig-deserialize.c:625 #, c-format msgid "while parsing token '%s': %s" msgstr "토큰 '%s' 해석 중: %s" -#: app/config/gimpconfig-path.c:177 +#: ../app/config/gimpconfig-path.c:177 #, c-format msgid "Cannot expand ${%s}" msgstr "${%s}을(를) 확장할 수 없습니다." -#: app/config/gimpconfig-utils.c:561 app/config/gimpconfigwriter.c:143 -#: app/core/gimpbrushgenerated.c:255 app/core/gimpgradient-save.c:51 -#: app/core/gimpgradient-save.c:142 app/core/gimppalette.c:567 -#: app/gui/themes.c:238 app/tools/gimpimagemaptool.c:607 -#: app/vectors/gimpvectors-export.c:83 app/xcf/xcf.c:348 +#: ../app/config/gimpconfig-utils.c:561 ../app/config/gimpconfigwriter.c:143 +#: ../app/core/gimpbrushgenerated.c:255 ../app/core/gimpgradient-save.c:51 +#: ../app/core/gimpgradient-save.c:142 ../app/core/gimppalette.c:567 +#: ../app/gui/themes.c:238 ../app/tools/gimpimagemaptool.c:607 +#: ../app/vectors/gimpvectors-export.c:83 ../app/xcf/xcf.c:348 #, c-format msgid "Could not open '%s' for writing: %s" msgstr "'%s'을(를) 쓰기 모드로 열기 실패: %s" -#: app/config/gimpconfig-utils.c:572 app/config/gimpconfig-utils.c:595 -#: app/vectors/gimpvectors-export.c:96 +#: ../app/config/gimpconfig-utils.c:572 ../app/config/gimpconfig-utils.c:595 +#: ../app/vectors/gimpvectors-export.c:96 #, c-format msgid "Error while writing '%s': %s" msgstr "'%s' 쓰기 오류: %s" -#: app/config/gimpconfig-utils.c:583 +#: ../app/config/gimpconfig-utils.c:583 #, c-format msgid "Error while reading '%s': %s" msgstr "'%s' 읽기 오류: %s" -#: app/config/gimpconfig-utils.c:625 +#: ../app/config/gimpconfig-utils.c:625 #, c-format msgid "" "There was an error parsing your '%s' file. Default values will be used. A " @@ -3785,12 +3330,12 @@ "파일 '%s'에 치명적인 해석 오류: 기본 값을 사용합니다. 현재 설정의 사본이 '%" "s'(으)로 만들어졌습니다." -#: app/config/gimpconfigwriter.c:130 +#: ../app/config/gimpconfigwriter.c:130 #, c-format msgid "Could not create temporary file for '%s': %s" msgstr "임시 파일 '%s' 만들기 실패: %s" -#: app/config/gimpconfigwriter.c:617 +#: ../app/config/gimpconfigwriter.c:617 #, c-format msgid "" "Error writing to temporary file for '%s': %s\n" @@ -3799,7 +3344,7 @@ "임시 파일 '%s' 쓰기 오류: %s\n" "원래 파일은 바뀌지 않았습니다." -#: app/config/gimpconfigwriter.c:625 +#: ../app/config/gimpconfigwriter.c:625 #, c-format msgid "" "Error writing to temporary file for '%s': %s\n" @@ -3808,22 +3353,22 @@ "임시 파일 '%s'에 쓰기 실패: %s\n" "아무 파일도 만들어 지지 않았습니다." -#: app/config/gimpconfigwriter.c:636 +#: ../app/config/gimpconfigwriter.c:636 #, c-format msgid "Error writing to '%s': %s" msgstr "'%s' 쓰기 오류: %s" -#: app/config/gimpconfigwriter.c:654 +#: ../app/config/gimpconfigwriter.c:654 #, c-format msgid "Could not create '%s': %s" msgstr "'%s'을(를) 만들 수 없습니다: %s" -#: app/config/gimprc.c:335 app/config/gimprc.c:348 +#: ../app/config/gimprc.c:335 ../app/config/gimprc.c:348 #, c-format msgid "Parsing '%s'\n" msgstr "'%s' 해석 중\n" -#: app/config/gimprc.c:595 +#: ../app/config/gimprc.c:595 #, c-format msgid "Saving '%s'\n" msgstr "'%s' 저장 중\n" @@ -3832,40 +3377,39 @@ #. * (the preferences dialog mainly) and only those that are should #. * be marked for translation. #. -#: app/config/gimprc-blurbs.h:13 +#: ../app/config/gimprc-blurbs.h:13 msgid "" "When enabled, an image will become the active image when its image window " "receives the focus. This is useful for window managers using \"click to focus" "\"." msgstr "" -"선택하면, 이미지 창이 초점을 받으면 이미지도 활성 이미지가 됩니다. 이 기능은 " -"창 관리자가 \"클릭으로 초점 주기\"를 사용할 때 유용합니다." +"선택하면, 이미지 창이 포커스를 받으면 이미지도 활성 이미지가 됩니다. 이 기능" +"은 창 관리자가 \"클릭으로 포커스 주기\"를 사용할 때 유용합니다." -#: app/config/gimprc-blurbs.h:23 +#: ../app/config/gimprc-blurbs.h:23 msgid "Specifies how the area around the image should be drawn." msgstr "이미지 주위를 그리는 방법을 지정하십시오." -#: app/config/gimprc-blurbs.h:26 +#: ../app/config/gimprc-blurbs.h:26 msgid "" "Sets the canvas padding color used if the padding mode is set to custom " "color." msgstr "" -"채우기 방법이 사용자 색상일 때 사용할 캔버스 채우기 색상을 지정하십시오." +"메우기 방법이 사용자 색상일 때 사용할 캔버스 메우기 색상을 지정하십시오." -#: app/config/gimprc-blurbs.h:30 +#: ../app/config/gimprc-blurbs.h:30 msgid "Ask for confirmation before closing an image without saving." msgstr "이미지를 저장하지 않고 닫을 때 다시 확인합니다." -#: app/config/gimprc-blurbs.h:33 -#, fuzzy +#: ../app/config/gimprc-blurbs.h:33 msgid "Sets the pixel format of cursors the GIMP will use." -msgstr "김프가 사용할 커서 모드를 지정합니다." +msgstr "김프가 사용할 커서의 픽셀 형식을 지정합니다." -#: app/config/gimprc-blurbs.h:36 +#: ../app/config/gimprc-blurbs.h:36 msgid "Sets the mode of cursor the GIMP will use." msgstr "김프가 사용할 커서 모드를 지정합니다." -#: app/config/gimprc-blurbs.h:39 +#: ../app/config/gimprc-blurbs.h:39 msgid "" "Context-dependent cursors are cool. They are enabled by default. However, " "they require overhead that you may want to do without." @@ -3873,18 +3417,17 @@ "상황에 맞는 커서는 멋진 기능입니다. 기본으로 선택되어 있지만, 성능을 감소 시" "킵니다." -#: app/config/gimprc-blurbs.h:47 +#: ../app/config/gimprc-blurbs.h:47 msgid "" "When enabled, this will ensure that each pixel of an image gets mapped to a " "pixel on the screen." msgstr "선택하면, 이미지의 한 픽셀이 화면의 한 픽셀에 대응됩니다." -#: app/config/gimprc-blurbs.h:73 +#: ../app/config/gimprc-blurbs.h:73 msgid "This is the distance in pixels where Guide and Grid snapping activates." msgstr "안내선과 모눈으로 당겨 맞출 거리를 픽셀 단위로 지정합니다." -#: app/config/gimprc-blurbs.h:77 -#, fuzzy +#: ../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 " @@ -3897,7 +3440,7 @@ "계값보다 큰 차이가 나는 픽셀이 나올때까지 모든 방향으로 진행합니다. 이 값은 " "기본 임계값을 나타냅니다." -#: 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." @@ -3905,35 +3448,35 @@ "독(dock) 창에 지정될 창 유형 힌트. 창 관리자가 독(dock) 창을 장식하고 처리하" "는 방법에 영향을 줍니다." -#: app/config/gimprc-blurbs.h:121 +#: ../app/config/gimprc-blurbs.h:121 msgid "When enabled, the selected brush will be used for all tools." msgstr "선택하면, 모든 도구에서 선택한 브러시를 사용합니다." -#: app/config/gimprc-blurbs.h:127 +#: ../app/config/gimprc-blurbs.h:127 msgid "When enabled, the selected gradient will be used for all tools." msgstr "선택하면, 모든 도구에서 선택한 그라디언트를 사용합니다." -#: app/config/gimprc-blurbs.h:130 +#: ../app/config/gimprc-blurbs.h:130 msgid "When enabled, the selected pattern will be used for all tools." msgstr "선택하면, 모든 도구에서 선택한 무늬를 사용합니다." -#: app/config/gimprc-blurbs.h:146 +#: ../app/config/gimprc-blurbs.h:146 msgid "Sets the browser used by the help system." msgstr "도움말 시스템에 사용할 프로그램을 지정하십시오." -#: app/config/gimprc-blurbs.h:154 +#: ../app/config/gimprc-blurbs.h:154 msgid "Sets the text to appear in image window status bars." msgstr "이미지 창의 상태표시줄에 나타날 텍스트를 지정하십시오." -#: app/config/gimprc-blurbs.h:157 +#: ../app/config/gimprc-blurbs.h:157 msgid "Sets the text to appear in image window titles." msgstr "이미지 창 제목에 보여줄 텍스트를 지정하십시오." -#: app/config/gimprc-blurbs.h:160 +#: ../app/config/gimprc-blurbs.h:160 msgid "When enabled, the GIMP will use a different info window per image view." msgstr "선택하면, 김프는 이미지 보기마다 다른 정보 창을 사용합니다." -#: app/config/gimprc-blurbs.h:163 +#: ../app/config/gimprc-blurbs.h:163 msgid "" "When enabled, this will ensure that the full image is visible after a file " "is opened, otherwise it will be displayed with a scale of 1:1." @@ -3941,24 +3484,22 @@ "선택하면, 파일을 열 때 전체 이미지가 보이고, 선택하지 않으면 1:1 배율로 보입" "니다." -#: app/config/gimprc-blurbs.h:167 -#, fuzzy +#: ../app/config/gimprc-blurbs.h:167 msgid "" "Install a private colormap; might be useful on 8-bit (256 colors) displays." -msgstr "" -"사설 컬러맵을 설치하십시오; 의사 색상(pseudocolor) 비주얼에 유용합니다." +msgstr "사설 컬러맵을 설치하십시오; 8비트(256색) 디스플레이에 유용합니다." -#: app/config/gimprc-blurbs.h:170 +#: ../app/config/gimprc-blurbs.h:170 msgid "" "Sets the level of interpolation used for scaling and other transformations." msgstr "크기 조정이나 다른 변형에서 사용할 방법(보간법)을 지정하십시오." -#: app/config/gimprc-blurbs.h:174 +#: ../app/config/gimprc-blurbs.h:174 msgid "How many recently opened image filenames to keep on the File menu." msgstr "" "파일 메뉴에 유지할 최근에 열었던 이미지 파일 이름의 갯수를 지정하십시오." -#: app/config/gimprc-blurbs.h:177 +#: ../app/config/gimprc-blurbs.h:177 msgid "" "Speed of marching ants in the selection outline. This value is in " "milliseconds (less time indicates faster marching)." @@ -3966,7 +3507,7 @@ "선택 점선(marching ants)의 속도를 지정하십시오. 이 값은 밀리초 단위입니다 (값" "이 작을수록 빠릅니다)." -#: 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." @@ -3974,47 +3515,52 @@ "이미지를 만들 때 여기에 지정된 크기 이상의 메모리를 요구하면 김프가 사용자에" "게 경고를 합니다." -#: app/config/gimprc-blurbs.h:185 -#, fuzzy +#: ../app/config/gimprc-blurbs.h:185 msgid "When enabled, GIMP will show mnemonics in menus." -msgstr "선택하면, 김프는 이미지 보기마다 다른 정보 창을 사용합니다." +msgstr "선택하면, 김프는 메뉴에 단축키를 표시합니다." -#: app/config/gimprc-blurbs.h:188 +#: ../app/config/gimprc-blurbs.h:188 msgid "" "Generally only a concern for 8-bit displays, this sets the minimum number of " "system colors allocated for the GIMP." msgstr "" "보통 8비트 출력 장치에만 적용되며, 김프가 할당할 시스템 색상 수를 지정합니다." -#: app/config/gimprc-blurbs.h:199 +#: ../app/config/gimprc-blurbs.h:199 msgid "" "Sets the monitor's horizontal resolution, in dots per inch. If set to 0, " "forces the X server to be queried for both horizontal and vertical " "resolution information." msgstr "" +"모니터의 수평 해상도를 인치당 도트 수로 지정합니다. 0으로 지정하면, X 서버" +"를 통해 수직 수평 해상도 정보를 확인합니다." -#: app/config/gimprc-blurbs.h:204 +#: ../app/config/gimprc-blurbs.h:204 msgid "" "Sets the monitor's vertical resolution, in dots per inch. If set to 0, " "forces the X server to be queried for both horizontal and vertical " "resolution information." msgstr "" +"모니터의 수직 해상도를 인치당 도트 수로 지정합니다. 0으로 지정하면, X 서버" +"를 통해 수직 수평 해상도 정보를 확인합니다." -#: app/config/gimprc-blurbs.h:209 +#: ../app/config/gimprc-blurbs.h:209 msgid "" "If enabled, the move tool changes the active layer or path when a layer or " "path is being picked. This used to be the default behaviour in older " "versions." msgstr "" +"선택하면, 이동 도구는 레이어나 경로를 선택할 때 활성 레이어나 경로를 바꿉니" +"다. 예전 버전에서는 기본 동작이었습니다." -#: app/config/gimprc-blurbs.h:214 +#: ../app/config/gimprc-blurbs.h:214 msgid "" "Sets the size of the navigation preview available in the lower right corner " "of the image window." msgstr "" "이미지 창의 우하단에 위치하는 네비게이션 미리보기의 크기를 지정하십시오." -#: app/config/gimprc-blurbs.h:218 +#: ../app/config/gimprc-blurbs.h:218 msgid "" "On multiprocessor machines, if GIMP has been compiled with --enable-mp this " "sets how many processors GIMP should use simultaneously." @@ -4022,7 +3568,7 @@ "프로세서가 여러개인 시스템에서, 김프를 --enable-mp를 사용해서 컴파일 했다면 " "김프가 동시에 사용할 CPU 수를 지정합니다." -#: 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 " @@ -4034,7 +3580,7 @@ "마우스의 현재 위치를 물어봅니다. 즉, 큰 브러시로 작업할 때 더 정확하지만, " "더 느려집니다. 특이한 X 서버는 이 선택사항을 사용하면 더 빨라집니다." -#: 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 " @@ -4044,21 +3590,20 @@ "화상자의 미리보기는 유용하지만 큰 이미지로 작업할 때는 성능이 떨어질 수 있습" "니다." -#: app/config/gimprc-blurbs.h:250 -#, fuzzy +#: ../app/config/gimprc-blurbs.h:250 msgid "" "Sets the preview size used for layers and channel previews in newly created " "dialogs." -msgstr "레이어와 채널의 기본 미리보기 크기를 지정하십시오." +msgstr "새로 만들어진 창의 레이어와 채널의 기본 미리보기 크기를 지정하십시오." -#: app/config/gimprc-blurbs.h:254 +#: ../app/config/gimprc-blurbs.h:254 msgid "" "When enabled, the image window will automatically resize itself, whenever " "the physical image size changes." msgstr "" "선택하면, 실제 이미지 크기가 바뀔 때 이미지 창의 크기를 자동으로 조정합니다." -#: app/config/gimprc-blurbs.h:258 +#: ../app/config/gimprc-blurbs.h:258 msgid "" "When enabled, the image window will automatically resize itself, when " "zooming into and out of images." @@ -4066,40 +3611,41 @@ "선택하면, 이미지를 확대하거나 축소할 때 이미지 창의 크기가 자동으로 조정됩니" "다." -#: 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 "김프를 시작할 때 최근 저장된 세션을 복원합니다." -#: app/config/gimprc-blurbs.h:265 +#: ../app/config/gimprc-blurbs.h:265 msgid "" "Remember the current tool, pattern, color, and brush across GIMP sessions." msgstr "현재 도구, 무늬, 색상, 브러시를 김프 세션 간에 기억합니다." -#: app/config/gimprc-blurbs.h:269 +#: ../app/config/gimprc-blurbs.h:269 msgid "Save the positions and sizes of the main dialogs when the GIMP exits." msgstr "김프를 마칠 때 주 대화상자의 위치와 크기를 저장합니다." -#: app/config/gimprc-blurbs.h:275 +#: ../app/config/gimprc-blurbs.h:275 msgid "" "When enabled, all paint tools will show a preview of the current brush's " "outline." msgstr "선택하면, 모든 그리기 도구의 현재 브러시의 모양을 미리 보여줍니다." -#: app/config/gimprc-blurbs.h:279 +#: ../app/config/gimprc-blurbs.h:279 msgid "" "When enabled, dialogs will show a help button that gives access to the " "related help page. Without this button, the help page can still be reached " "by pressing F1." msgstr "" +"선택하면, 대화상자는 관련된 도움말을 볼 수 있도록 도움말 단추를 표시합니다. " +"이 단추가 없어도 F1키를 눌러서 도움말을 볼 수 있습니다." -#: app/config/gimprc-blurbs.h:284 -#, fuzzy +#: ../app/config/gimprc-blurbs.h:284 msgid "" "When enabled, the cursor will be shown over the image while using a paint " "tool." -msgstr "선택하면, 김프는 이미지를 연 뒤 바뀌지 않았다면 저장하지 않습니다." +msgstr "선택하면, 그리기 도구를 사용하는 동안 이미지위에 커서를 표시합니다." -#: app/config/gimprc-blurbs.h:288 +#: ../app/config/gimprc-blurbs.h:288 msgid "" "When enabled, the menubar is visible by default. This can also be toggled " "with the \"View->Show Menubar\" command." @@ -4107,7 +3653,7 @@ "선택하면, 기본으로 메뉴표시줄를 표시합니다. \"보기->메뉴표시줄\" 명령으로 전" "환할 수 있습니다." -#: 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." @@ -4115,7 +3661,7 @@ "선택하면, 기본적으로 눈금자를 표시합니다. \"보기->눈금자\" 명령으로 바꿀 수 " "있습니다." -#: 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." @@ -4123,7 +3669,7 @@ "선택하면, 기본으로 스크롤막대를 표시합니다. \"보기->스크롤막대\" 명령으로 전" "환할 수 있습니다." -#: 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." @@ -4131,7 +3677,7 @@ "선택하면, 기본적으로 상태표시줄을 표시합니다. \"보기->상태표시줄\" 명령으로 " "바꿀 수 있습니다." -#: 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." @@ -4139,7 +3685,7 @@ "선택하면, 기본으로 선택을 표시합니다. \"보기->선택\" 명령으로 전환할 수 있습" "니다." -#: 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." @@ -4147,7 +3693,7 @@ "선택하면, 기본으로 레이어 경계를 표시합니다. \"보기->레이어 경계\" 명령으로 " "전환할 수 있습니다." -#: 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." @@ -4155,7 +3701,7 @@ "선택하면, 기본으로 안내선을 표시합니다. \"보기->안내선\" 명령으로 전환할 수 " "있습니다." -#: 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." @@ -4163,15 +3709,15 @@ "선택하면, 기본으로 모눈을 표시합니다. \"보기->모눈\" 명령으로 전환할 수 있습" "니다." -#: app/config/gimprc-blurbs.h:320 +#: ../app/config/gimprc-blurbs.h:320 msgid "Enable to display a handy GIMP tip on startup." msgstr "시작할 때 간단한 김프 팁을 보여줍니다." -#: app/config/gimprc-blurbs.h:323 +#: ../app/config/gimprc-blurbs.h:323 msgid "Enable to display tooltips." msgstr "풍선도움말을 보여줍니다." -#: 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 " @@ -4180,7 +3726,7 @@ "메모리 사용량과 성능은 비례합니다. 대부분의 경우, 김프는 메모리보다는 성능을 " "선택합니다. 그러나, 메모리가 중요한 문제라면 이 설정을 선택하십시오." -#: 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 " @@ -4196,11 +3742,11 @@ "면 속도가 엄청나게 느려질 수 있습니다. 그러므로, 스왑 파일은 \"/tmp\"에 저장" "하는 것이 바람직 합니다." -#: app/config/gimprc-blurbs.h:340 +#: ../app/config/gimprc-blurbs.h:340 msgid "When enabled, menus can be torn off." msgstr "선택하면, 메뉴를 떼어낼 수 있습니다." -#: app/config/gimprc-blurbs.h:343 +#: ../app/config/gimprc-blurbs.h:343 msgid "" "When enabled, you can change keyboard shortcuts for menu items by hitting a " "key combination while the menu item is highlighted." @@ -4208,15 +3754,15 @@ "선택하면, 메뉴가 강조되어 있을 동안 키 조합을 눌러서 메뉴 항목에 대한 키보드 " "단축키를 즉시 바꿀 수 있습니다." -#: app/config/gimprc-blurbs.h:347 +#: ../app/config/gimprc-blurbs.h:347 msgid "Save changed keyboard shortcuts when the GIMP exits." msgstr "김프를 마칠 때 바꾼 키보드 단축키를 저장합니다." -#: app/config/gimprc-blurbs.h:350 +#: ../app/config/gimprc-blurbs.h:350 msgid "Restore saved keyboard shortcuts on each GIMP startup." msgstr "김프를 시작할 때 저장된 키보드 단축키를 복원합니다." -#: app/config/gimprc-blurbs.h:353 +#: ../app/config/gimprc-blurbs.h:353 msgid "" "Sets the temporary storage directory. Files will appear here during the " "course of running the GIMP. Most files will disappear when the GIMP exits, " @@ -4227,22 +3773,23 @@ "다. 김프를 마칠 때 대부분 사라지지만, 몇몇 파일들은 남아 있으므로, 이 디렉토" "리는 다른 사용자와 공유하지 않는 것이 좋습니다." -#: app/config/gimprc-blurbs.h:365 -#, fuzzy +#: ../app/config/gimprc-blurbs.h:365 msgid "" "Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can " "not create thumbnails if layer previews are disabled." msgstr "" -"각 이미지와 함께 저장될 썸네일의 크기를 지정하십시오. 김프는 레이어 미리보기" -"를 사용하지 않으면 썸네일을 저장하지 않습니다." +"열린 대화상자에 썸네일의 크기를 지정하십시오. 김프는 레이어 미리보기를 사용하" +"지 않으면 썸네일을 저장하지 않습니다." -#: app/config/gimprc-blurbs.h:369 +#: ../app/config/gimprc-blurbs.h:369 msgid "" "The thumbnail in the Open dialog will be automatically updated if the file " "being previewed is smaller than the size set here." msgstr "" +"열기 대화상자의 썸네일은 여기에서 지정한 크기보다 작은 파일을 미리 보기할 때 " +"자동으로 갱신됩니다." -#: app/config/gimprc-blurbs.h:373 +#: ../app/config/gimprc-blurbs.h:373 msgid "" "The tile cache is used to make sure the GIMP doesn't thrash tiles between " "memory and disk. Setting this value higher will cause the GIMP to use less " @@ -4254,7 +3801,7 @@ "시 크기를 더 작게 해도 더 많은 스왑 공간과 적은 메모리를 사용하는 특이한 경우" "도 있습니다." -#: 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." @@ -4262,21 +3809,21 @@ "도구상자에 지정될 창 유형 힌트. 창 관리자가 도구상자 창을 장식하고 처리하는 " "방법에 영향을 줍니다." -#: app/config/gimprc-blurbs.h:388 +#: ../app/config/gimprc-blurbs.h:388 msgid "Sets the manner in which transparency is displayed in images." msgstr "이미지의 투명도를 표시할 방법을 지정하십시오." -#: app/config/gimprc-blurbs.h:391 +#: ../app/config/gimprc-blurbs.h:391 msgid "Sets the size of the checkerboard used to display transparency." msgstr "투명도을 표시할 격자의 크기를 지정하십시오." -#: app/config/gimprc-blurbs.h:394 +#: ../app/config/gimprc-blurbs.h:394 msgid "" "When enabled, the GIMP will not save if the image is unchanged since opening " "it." msgstr "선택하면, 김프는 이미지를 연 뒤 바뀌지 않았다면 저장하지 않습니다." -#: app/config/gimprc-blurbs.h:398 +#: ../app/config/gimprc-blurbs.h:398 msgid "" "Sets the minimal number of operations that can be undone. More undo levels " "are kept available until the undo-size limit is reached." @@ -4284,7 +3831,7 @@ "실행을 취소할 수 있는 최소 횟수를 지정하십시오. 최대 실행 취소 메모리에 도달" "하기 전에는 더 많은 실행 취소 횟수를 유지합니다." -#: 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 " @@ -4293,15 +3840,15 @@ "각 이미지에서 실행 취소를 위해 사용할 메모리의 최대량을 지정하십시오. 이 설정" "과 무관하게, 최소 실행 취소 횟수로 지정된 만큼의 실행 취소는 할 수 있습니다." -#: app/config/gimprc-blurbs.h:407 +#: ../app/config/gimprc-blurbs.h:407 msgid "Sets the size of the previews in the Undo History." msgstr "실행 취소 이력의 미리보기 크기를 지정하십시오." -#: app/config/gimprc-blurbs.h:410 +#: ../app/config/gimprc-blurbs.h:410 msgid "When enabled, pressing F1 will open the help browser." msgstr "선택하면, F1을 눌러서 도움말을 볼 수 있습니다." -#: app/config/gimprc-blurbs.h:413 +#: ../app/config/gimprc-blurbs.h:413 #, c-format msgid "" "Sets the external web browser to be used. This can be an absolute path or " @@ -4313,832 +3860,742 @@ "수 있는 실행 파일 이름이어야 합니다. 명령이 '%s'을(를) 포함하고 있으면 URL로 " "대체되고, 그렇지 않으면 명령과 공백으로 분리하여 URL을 덧붙입니다." -#: app/config/gimpscanner.c:220 +#: ../app/config/gimpscanner.c:220 msgid "invalid UTF-8 string" msgstr "잘못된 UTF-8 문자열" -#: app/config/gimpscanner.c:516 +#: ../app/config/gimpscanner.c:516 #, c-format msgid "Error while parsing '%s' in line %d: %s" msgstr "'%s'의 %d행 해석 오류: %s" -#: app/core/core-enums.c:27 -#, fuzzy +#: ../app/core/core-enums.c:27 msgid "_White (full opacity)" msgstr "흰색(_W) (완전 불투명)" -#: app/core/core-enums.c:28 -#, fuzzy +#: ../app/core/core-enums.c:28 msgid "_Black (full transparency)" msgstr "검정색(_B) (완전 투명)" -#: app/core/core-enums.c:29 -#, fuzzy +#: ../app/core/core-enums.c:29 msgid "Layer's _alpha channel" msgstr "레이어의 알파 채널(_A)" -#: app/core/core-enums.c:30 -#, fuzzy +#: ../app/core/core-enums.c:30 msgid "_Transfer layer's alpha channel" msgstr "레이어의 알파 채널 전송(_T)" -#: app/core/core-enums.c:31 +#: ../app/core/core-enums.c:31 msgid "_Selection" msgstr "선택(_S)" -#: app/core/core-enums.c:32 -#, fuzzy +#: ../app/core/core-enums.c:32 msgid "_Grayscale copy of layer" msgstr "레이어의 그레이스케일 사본(_G)" -#: 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 "전경을 배경으로 (RGB)" -#: app/core/core-enums.c:62 +#: ../app/core/core-enums.c:62 msgid "FG to BG (HSV)" msgstr "전경을 배경으로 (HSV)" -#: app/core/core-enums.c:63 -#, fuzzy +#: ../app/core/core-enums.c:63 msgid "FG to transparent" -msgstr "전경색을 투명하게" +msgstr "전경을 투명으로" -#: app/core/core-enums.c:64 -#, fuzzy +#: ../app/core/core-enums.c:64 msgid "Custom gradient" msgstr "사용자 그라디언트" -#: app/core/core-enums.c:92 -#, fuzzy +#: ../app/core/core-enums.c:92 msgid "FG color fill" msgstr "전경색으로 채우기" -#: app/core/core-enums.c:93 -#, fuzzy +#: ../app/core/core-enums.c:93 msgid "BG color fill" msgstr "배경색으로 채우기" -#: app/core/core-enums.c:94 -#, fuzzy +#: ../app/core/core-enums.c:94 msgid "Pattern fill" msgstr "무늬로 채우기" -#: app/core/core-enums.c:123 +#: ../app/core/core-enums.c:123 msgid "Add to the current selection" msgstr "현재 선택에 더하기" -#: app/core/core-enums.c:124 +#: ../app/core/core-enums.c:124 msgid "Subtract from the current selection" msgstr "현재 선택에서 빼기" -#: app/core/core-enums.c:125 +#: ../app/core/core-enums.c:125 msgid "Replace the current selection" msgstr "현재 선택 바꾸기" -#: app/core/core-enums.c:126 +#: ../app/core/core-enums.c:126 msgid "Intersect with the current selection" msgstr "현재 선택과 교차하기" -#: app/core/core-enums.c:160 +#: ../app/core/core-enums.c:160 msgid "Gray" msgstr "회색" -#: app/core/core-enums.c:161 +#: ../app/core/core-enums.c:161 msgid "Indexed" msgstr "인덱스됨" -#: app/core/core-enums.c:219 app/core/core-enums.c:334 -#: app/core/core-enums.c:766 app/tools/gimptransformoptions.c:457 +#: ../app/core/core-enums.c:219 ../app/core/core-enums.c:334 +#: ../app/core/core-enums.c:766 ../app/tools/gimptransformoptions.c:457 msgid "None" msgstr "없음" -#: app/core/core-enums.c:220 -#, fuzzy +#: ../app/core/core-enums.c:220 msgid "Floyd-Steinberg (normal)" -msgstr "Folyd-Steinberg Color Dithering (표준)" +msgstr "Folyd-Steinberg (표준)" -#: app/core/core-enums.c:221 -#, fuzzy +#: ../app/core/core-enums.c:221 msgid "Floyd-Steinberg (reduced color bleeding)" -msgstr "Folyd-Steinberg Color Dithering (감소된 색상 번짐)" +msgstr "Folyd-Steinberg (색상 번짐 감소)" -#: app/core/core-enums.c:222 -#, fuzzy +#: ../app/core/core-enums.c:222 msgid "Positioned" -msgstr "위치: %0.6f" +msgstr "위치함" -#: app/core/core-enums.c:251 -#, fuzzy +#: ../app/core/core-enums.c:251 msgid "Generate optimum palette" -msgstr "최적 색상표 생성:" +msgstr "최적 색상표 생성" -#: app/core/core-enums.c:252 -#, fuzzy +#: ../app/core/core-enums.c:252 msgid "Use web-optimized palette" -msgstr "WWW-최적 색상표 사용" +msgstr "웹에 최적화된 색상표 사용" -#: app/core/core-enums.c:253 -#, fuzzy +#: ../app/core/core-enums.c:253 msgid "Use black and white (1-bit) palette" msgstr "흑백 (1비트) 색상표 사용" -#: app/core/core-enums.c:254 -#, fuzzy +#: ../app/core/core-enums.c:254 msgid "Use custom palette" -msgstr "사용자 색상표 사용:" +msgstr "사용자 색상표 사용" -#: app/core/core-enums.c:329 -#, fuzzy +#: ../app/core/core-enums.c:329 msgid "Foreground color" -msgstr "전경색(_F):" +msgstr "전경색" -#: app/core/core-enums.c:330 -#, fuzzy +#: ../app/core/core-enums.c:330 msgid "Background color" -msgstr "배경색(_B):" +msgstr "배경색" -#: app/core/core-enums.c:331 +#: ../app/core/core-enums.c:331 msgid "White" msgstr "흰색" #. Transparency -#: app/core/core-enums.c:332 app/dialogs/preferences-dialog.c:1918 +#: ../app/core/core-enums.c:332 ../app/dialogs/preferences-dialog.c:1918 msgid "Transparency" msgstr "투명" -#: app/core/core-enums.c:333 app/core/core-enums.c:470 -#: app/pdb/internal_procs.c:179 +#: ../app/core/core-enums.c:333 ../app/core/core-enums.c:470 +#: ../app/pdb/internal_procs.c:179 msgid "Pattern" msgstr "무늬" -#: app/core/core-enums.c:371 -#, fuzzy +#: ../app/core/core-enums.c:371 msgid "Bi-linear" msgstr "중복 선형" -#: app/core/core-enums.c:372 +#: ../app/core/core-enums.c:372 msgid "Radial" msgstr "원형" -#: app/core/core-enums.c:373 app/core/core-enums.c:530 -#: app/core/core-enums.c:635 +#: ../app/core/core-enums.c:373 ../app/core/core-enums.c:530 +#: ../app/core/core-enums.c:635 msgid "Square" msgstr "각지게" -#: app/core/core-enums.c:374 -#, fuzzy +#: ../app/core/core-enums.c:374 msgid "Conical (sym)" msgstr "원뿔형 (대칭)" -#: app/core/core-enums.c:375 -#, fuzzy +#: ../app/core/core-enums.c:375 msgid "Conical (asym)" msgstr "원뿔형 (비대칭)" -#: app/core/core-enums.c:376 -#, fuzzy +#: ../app/core/core-enums.c:376 msgid "Shaped (angular)" msgstr "돌출형 (각지게)" -#: app/core/core-enums.c:377 -#, fuzzy +#: ../app/core/core-enums.c:377 msgid "Shaped (spherical)" msgstr "폭발형 (구형)" -#: app/core/core-enums.c:378 -#, fuzzy +#: ../app/core/core-enums.c:378 msgid "Shaped (dimpled)" msgstr "돌출형 (물결)" -#: app/core/core-enums.c:379 -#, fuzzy +#: ../app/core/core-enums.c:379 msgid "Spiral (cw)" msgstr "나선형 (시계방향)" -#: app/core/core-enums.c:380 -#, fuzzy +#: ../app/core/core-enums.c:380 msgid "Spiral (ccw)" msgstr "나선형 (시계방향)" -#: app/core/core-enums.c:410 +#: ../app/core/core-enums.c:410 msgid "Intersections (dots)" msgstr "교차 (점)" -#: app/core/core-enums.c:411 +#: ../app/core/core-enums.c:411 msgid "Intersections (crosshairs)" msgstr "교차 (십자가)" -#: app/core/core-enums.c:412 +#: ../app/core/core-enums.c:412 msgid "Dashed" msgstr "파선" -#: app/core/core-enums.c:413 -#, fuzzy +#: ../app/core/core-enums.c:413 msgid "Double dashed" msgstr "이점쇄선" -#: app/core/core-enums.c:414 app/core/core-enums.c:469 +#: ../app/core/core-enums.c:414 ../app/core/core-enums.c:469 msgid "Solid" msgstr "단색" -#: app/core/core-enums.c:441 -#, fuzzy +#: ../app/core/core-enums.c:441 msgid "Stroke line" -msgstr "따라 그리기 선택사항" +msgstr "선으로 따라 그리기" -#: app/core/core-enums.c:442 -#, fuzzy +#: ../app/core/core-enums.c:442 msgid "Stroke with a paint tool" msgstr "그리기 도구로 따라 그리기" -#: app/core/core-enums.c:498 +#: ../app/core/core-enums.c:498 msgid "Miter" msgstr "뾰족하게(Miter)" -#: app/core/core-enums.c:499 app/core/core-enums.c:529 +#: ../app/core/core-enums.c:499 ../app/core/core-enums.c:529 msgid "Round" msgstr "둥글게" -#: app/core/core-enums.c:500 +#: ../app/core/core-enums.c:500 msgid "Bevel" msgstr "비스듬하게(Bevel)" -#: app/core/core-enums.c:528 +#: ../app/core/core-enums.c:528 msgid "Butt" msgstr "정확하게(Butt)" -#: app/core/core-enums.c:566 app/dialogs/preferences-dialog.c:1804 +#: ../app/core/core-enums.c:566 ../app/dialogs/preferences-dialog.c:1804 msgid "Custom" msgstr "사용자" -#: app/core/core-enums.c:567 +#: ../app/core/core-enums.c:567 msgid "Line" msgstr "선형" -#: app/core/core-enums.c:568 -#, fuzzy +#: ../app/core/core-enums.c:568 msgid "Long dashes" msgstr "긴 파선" -#: app/core/core-enums.c:569 -#, fuzzy +#: ../app/core/core-enums.c:569 msgid "Medium dashes" msgstr "보통 파선" -#: app/core/core-enums.c:570 -#, fuzzy +#: ../app/core/core-enums.c:570 msgid "Short dashes" msgstr "짧은 파선" -#: app/core/core-enums.c:571 -#, fuzzy +#: ../app/core/core-enums.c:571 msgid "Sparse dots" msgstr "성긴 점선" -#: app/core/core-enums.c:572 -#, fuzzy +#: ../app/core/core-enums.c:572 msgid "Normal dots" msgstr "보통 점선" -#: app/core/core-enums.c:573 -#, fuzzy +#: ../app/core/core-enums.c:573 msgid "Dense dots" msgstr "조밀한 점선" -#: app/core/core-enums.c:574 +#: ../app/core/core-enums.c:574 msgid "Stipples" msgstr "단색 무늬" -#: app/core/core-enums.c:575 -#, fuzzy +#: ../app/core/core-enums.c:575 msgid "Dash dot..." msgstr "일점 쇄선..." -#: app/core/core-enums.c:576 -#, fuzzy +#: ../app/core/core-enums.c:576 msgid "Dash dot dot..." msgstr "이점 쇄선..." -#: app/core/core-enums.c:604 +#: ../app/core/core-enums.c:604 msgid "Stock ID" -msgstr "" +msgstr "스톡 ID" -#: app/core/core-enums.c:605 +#: ../app/core/core-enums.c:605 msgid "Inline pixbuf" -msgstr "" +msgstr "인라인 pixbuf" -#: app/core/core-enums.c:606 -#, fuzzy +#: ../app/core/core-enums.c:606 msgid "Image file" -msgstr "이미지 크기" +msgstr "이미지 파일" -#: app/core/core-enums.c:634 +#: ../app/core/core-enums.c:634 msgid "Circle" -msgstr "" +msgstr "원" -#: app/core/core-enums.c:636 +#: ../app/core/core-enums.c:636 msgid "Diamond" -msgstr "" +msgstr "마름모" -#: app/core/core-enums.c:664 app/dialogs/preferences-dialog.c:1950 +#: ../app/core/core-enums.c:664 ../app/dialogs/preferences-dialog.c:1950 msgid "Horizontal" msgstr "가로" -#: app/core/core-enums.c:665 app/dialogs/preferences-dialog.c:1952 +#: ../app/core/core-enums.c:665 ../app/dialogs/preferences-dialog.c:1952 msgid "Vertical" msgstr "세로" -#: app/core/core-enums.c:666 +#: ../app/core/core-enums.c:666 msgid "Unknown" msgstr "모름" -#: app/core/core-enums.c:730 +#: ../app/core/core-enums.c:730 msgid "Tiny" msgstr "아주 작게" -#: app/core/core-enums.c:731 -#, fuzzy +#: ../app/core/core-enums.c:731 msgid "Very small" msgstr "더 작게" -#: app/core/core-enums.c:732 +#: ../app/core/core-enums.c:732 msgid "Small" msgstr "작게" -#: app/core/core-enums.c:733 +#: ../app/core/core-enums.c:733 msgid "Medium" msgstr "중간" -#: app/core/core-enums.c:734 +#: ../app/core/core-enums.c:734 msgid "Large" msgstr "크게" -#: app/core/core-enums.c:735 -#, fuzzy +#: ../app/core/core-enums.c:735 msgid "Very large" msgstr "더 크게" -#: app/core/core-enums.c:736 +#: ../app/core/core-enums.c:736 msgid "Huge" msgstr "거대하게" -#: app/core/core-enums.c:737 +#: ../app/core/core-enums.c:737 msgid "Enormous" msgstr "더 거대하게" -#: app/core/core-enums.c:738 +#: ../app/core/core-enums.c:738 msgid "Gigantic" msgstr "아주 거대하게" -#: app/core/core-enums.c:767 -#, fuzzy +#: ../app/core/core-enums.c:767 msgid "Sawtooth wave" msgstr "톱니파형" -#: app/core/core-enums.c:768 -#, fuzzy +#: ../app/core/core-enums.c:768 msgid "Triangular wave" msgstr "삼각파형" -#: app/core/core-enums.c:830 -#, fuzzy +#: ../app/core/core-enums.c:830 msgid "No thumbnails" msgstr "썸네일 없음" -#: app/core/core-enums.c:831 +#: ../app/core/core-enums.c:831 msgid "Normal (128x128)" msgstr "보통 (128x128)" -#: app/core/core-enums.c:832 +#: ../app/core/core-enums.c:832 msgid "Large (256x256)" msgstr "크게 (256x256)" -#: app/core/core-enums.c:859 -#, fuzzy +#: ../app/core/core-enums.c:859 msgid "Forward (traditional)" msgstr "전진 (전통적)" -#: app/core/core-enums.c:860 -#, fuzzy +#: ../app/core/core-enums.c:860 msgid "Backward (corrective)" msgstr "후진 (교정)" -#: app/core/core-enums.c:1029 +#: ../app/core/core-enums.c:1030 msgid "<>" msgstr "<<부적합>>" -#: app/core/core-enums.c:1030 -#, fuzzy +#: ../app/core/core-enums.c:1031 msgid "Scale image" msgstr "이미지 배율 조정" -#: app/core/core-enums.c:1031 -#, fuzzy +#: ../app/core/core-enums.c:1032 msgid "Resize image" msgstr "이미지 크기 조정" -#: app/core/core-enums.c:1032 -#, fuzzy +#: ../app/core/core-enums.c:1033 msgid "Flip image" msgstr "이미지 뒤집기" -#: app/core/core-enums.c:1033 -#, fuzzy +#: ../app/core/core-enums.c:1034 msgid "Rotate image" msgstr "이미지 회전" -#: app/core/core-enums.c:1034 -#, fuzzy +#: ../app/core/core-enums.c:1035 msgid "Crop image" msgstr "이미지 자르기" -#: app/core/core-enums.c:1035 -#, fuzzy +#: ../app/core/core-enums.c:1036 msgid "Convert image" msgstr "이미지 변환" -#: app/core/core-enums.c:1036 -#, fuzzy +#: ../app/core/core-enums.c:1037 +msgid "Remove item" +msgstr "항목 지우기" + +#: ../app/core/core-enums.c:1038 msgid "Merge layers" msgstr "레이어 합치기" -#: app/core/core-enums.c:1037 -#, fuzzy +#: ../app/core/core-enums.c:1039 msgid "Merge vectors" msgstr "벡터 합치기" -#: app/core/core-enums.c:1038 app/core/gimpchannel.c:383 -#, fuzzy +#: ../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/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 "모눈" -#: 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 -#, fuzzy +#: ../app/core/core-enums.c:1044 ../app/core/core-enums.c:1074 msgid "Drawable mod" msgstr "Drawable 모드" -#: app/core/core-enums.c:1043 app/core/core-enums.c:1073 -#, fuzzy +#: ../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 -#, fuzzy +#: ../app/core/core-enums.c:1046 ../app/core/core-enums.c:1078 msgid "Item visibility" msgstr "항목 표시 여부" -#: app/core/core-enums.c:1045 -#, fuzzy +#: ../app/core/core-enums.c:1047 msgid "Linked item" msgstr "연결된 항목" -#: app/core/core-enums.c:1046 -#, fuzzy +#: ../app/core/core-enums.c:1048 msgid "Item properties" msgstr "항목 등록 정보" -#: app/core/core-enums.c:1047 app/core/core-enums.c:1075 -#, fuzzy +#: ../app/core/core-enums.c:1049 ../app/core/core-enums.c:1077 msgid "Move item" msgstr "항목 이동" -#: app/core/core-enums.c:1048 -#, fuzzy +#: ../app/core/core-enums.c:1050 msgid "Scale item" -msgstr "이미지 배율 조정" +msgstr "항목 배율 조정" -#: app/core/core-enums.c:1049 -#, fuzzy +#: ../app/core/core-enums.c:1051 msgid "Resize item" -msgstr "이미지 크기 조정" +msgstr "항목 크기 조정" -#: app/core/core-enums.c:1050 app/core/core-enums.c:1080 -#, fuzzy +#: ../app/core/core-enums.c:1052 ../app/core/core-enums.c:1082 msgid "Add layer mask" msgstr "레이어 마스크 더하기" -#: app/core/core-enums.c:1051 -#, fuzzy +#: ../app/core/core-enums.c:1053 msgid "Apply layer mask" msgstr "레이어 마스크 적용" -#: app/core/core-enums.c:1052 -#, fuzzy +#: ../app/core/core-enums.c:1054 msgid "Floating selection to layer" msgstr "떠있는 선택을 레이어으로" -#: app/core/core-enums.c:1053 -#, fuzzy +#: ../app/core/core-enums.c:1055 msgid "Float selection" msgstr "선택 띄우기" -#: app/core/core-enums.c:1054 -#, fuzzy +#: ../app/core/core-enums.c:1056 msgid "Anchor floating selection" msgstr "떠있는 선택 고정" -#: app/core/core-enums.c:1055 -#, fuzzy +#: ../app/core/core-enums.c:1057 msgid "Remove floating selection" -msgstr "떠있는 선택" +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/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 "텍스트" -#: 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 "변형" -#: 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 "페인트" -#: app/core/core-enums.c:1061 app/core/core-enums.c:1102 -#, fuzzy +#: ../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 -#, fuzzy +#: ../app/core/core-enums.c:1064 ../app/core/core-enums.c:1105 msgid "Remove parasite" msgstr "기생 지우기" -#: app/core/core-enums.c:1063 -#, fuzzy +#: ../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 -#, fuzzy +#: ../app/core/core-enums.c:1067 msgid "Image type" msgstr "이미지 유형" -#: app/core/core-enums.c:1066 -#, fuzzy +#: ../app/core/core-enums.c:1068 msgid "Image size" msgstr "이미지 크기" -#: app/core/core-enums.c:1067 -#, fuzzy +#: ../app/core/core-enums.c:1069 msgid "Resolution change" msgstr "해상도 바꾸기" -#: app/core/core-enums.c:1070 -#, fuzzy +#: ../app/core/core-enums.c:1072 msgid "Change indexed palette" msgstr "인덱스된 색상표 바꾸기" -#: app/core/core-enums.c:1074 -#, fuzzy +#: ../app/core/core-enums.c:1076 msgid "Rename item" msgstr "항목 이름 바꾸기" -#: app/core/core-enums.c:1077 -#, fuzzy +#: ../app/core/core-enums.c:1079 msgid "Set item linked" msgstr "연결된 항목 지정" -#: app/core/core-enums.c:1078 -#, fuzzy +#: ../app/core/core-enums.c:1080 msgid "New layer" msgstr "새 레이어" -#: app/core/core-enums.c:1081 -#, fuzzy +#: ../app/core/core-enums.c:1083 msgid "Delete layer mask" msgstr "레이어 마스크 지우기" -#: app/core/core-enums.c:1082 -#, fuzzy +#: ../app/core/core-enums.c:1084 msgid "Reposition layer" msgstr "레이어 위치 조정" -#: app/core/core-enums.c:1083 -#, fuzzy +#: ../app/core/core-enums.c:1085 msgid "Set layer mode" msgstr "레이어 모드 지정" -#: app/core/core-enums.c:1084 -#, fuzzy +#: ../app/core/core-enums.c:1086 msgid "Set layer opacity" msgstr "레이어 불투명도 지정" -#: app/core/core-enums.c:1085 -#, fuzzy +#: ../app/core/core-enums.c:1087 msgid "Set preserve trans" msgstr "투명도 유지 지정" -#: app/core/core-enums.c:1087 -#, fuzzy +#: ../app/core/core-enums.c:1089 msgid "Text modified" -msgstr "바뀌었을 때만" +msgstr "텍스트 바뀌었음" -#: app/core/core-enums.c:1088 -#, fuzzy +#: ../app/core/core-enums.c:1090 msgid "New channel" msgstr "새 채널" -#: app/core/core-enums.c:1090 -#, fuzzy +#: ../app/core/core-enums.c:1092 msgid "Reposition channel" msgstr "채널 위치 조정" -#: app/core/core-enums.c:1091 -#, fuzzy +#: ../app/core/core-enums.c:1093 msgid "Channel color" msgstr "채널 색상" -#: app/core/core-enums.c:1092 -#, fuzzy +#: ../app/core/core-enums.c:1094 msgid "New vectors" msgstr "새 벡터" -#: app/core/core-enums.c:1093 -#, fuzzy +#: ../app/core/core-enums.c:1095 msgid "Delete vectors" msgstr "벡터 지우기" -#: app/core/core-enums.c:1094 -#, fuzzy +#: ../app/core/core-enums.c:1096 msgid "Vectors mod" msgstr "벡터 모드" -#: app/core/core-enums.c:1095 -#, fuzzy +#: ../app/core/core-enums.c:1097 msgid "Reposition vectors" msgstr "벡터 위치 조정" -#: app/core/core-enums.c:1096 -#, fuzzy +#: ../app/core/core-enums.c:1098 msgid "FS to layer" msgstr "FS를 레이어으로" -#: app/core/core-enums.c:1097 -#, fuzzy +#: ../app/core/core-enums.c:1099 msgid "FS rigor" msgstr "FS 엄격함" -#: app/core/core-enums.c:1098 -#, fuzzy +#: ../app/core/core-enums.c:1100 msgid "FS relax" msgstr "FS 관대함" -#: 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 "잉크" -#: app/core/core-enums.c:1104 +#: ../app/core/core-enums.c:1106 msgid "EEK: can't undo" msgstr "헉! 실행 취소할 수 없습니다" -#: app/core/gimp-edit.c:109 app/core/gimpselection.c:668 +#: ../app/core/gimp-edit.c:109 ../app/core/gimpselection.c:668 msgid "Unable to cut or copy because the selected region is empty." msgstr "선택한 영역이 비어있으므로, 잘라내기나 복사를 할 수 없습니다." -#: app/core/gimp-edit.c:195 app/core/gimp-edit.c:319 +#: ../app/core/gimp-edit.c:195 ../app/core/gimp-edit.c:319 msgid "Pasted Layer" msgstr "붙여 넣은 레이어" -#: app/core/gimp-edit.c:369 +#: ../app/core/gimp-edit.c:369 msgid "Fill with FG Color" msgstr "전경색으로 채우기" -#: app/core/gimp-edit.c:373 app/core/gimp-edit.c:394 +#: ../app/core/gimp-edit.c:373 ../app/core/gimp-edit.c:394 msgid "Fill with BG Color" msgstr "배경색으로 채우기" -#: app/core/gimp-edit.c:377 +#: ../app/core/gimp-edit.c:377 msgid "Fill with White" msgstr "흰색으로 채우기" -#: app/core/gimp-edit.c:381 +#: ../app/core/gimp-edit.c:381 msgid "Fill with Transparency" msgstr "투명하게 채우기" -#: app/core/gimp-edit.c:385 +#: ../app/core/gimp-edit.c:385 msgid "Fill with Pattern" msgstr "무늬로 채우기" -#: app/core/gimp-gradients.c:75 +#: ../app/core/gimp-gradients.c:75 msgid "FG to BG (HSV counter-clockwise)" msgstr "전경색을 배경색으로 (HSV 시계반대방향)" -#: app/core/gimp-gradients.c:80 +#: ../app/core/gimp-gradients.c:80 msgid "FG to BG (HSV clockwise hue)" msgstr "전경색을 배경색으로 (HSV 시계방향 색상)" -#: app/core/gimp-gradients.c:85 +#: ../app/core/gimp-gradients.c:85 msgid "FG to Transparent" msgstr "전경색을 투명하게" -#: app/core/gimp-gui.c:153 +#: ../app/core/gimp-gui.c:153 msgid "GIMP" msgstr "김프" #. register all internal procedures -#: app/core/gimp.c:638 +#: ../app/core/gimp.c:638 msgid "Procedural Database" msgstr "절차 데이터베이스" -#: app/core/gimp.c:641 +#: ../app/core/gimp.c:641 msgid "Plug-In Environment" msgstr "플러그인 환경" #. initialize the global parasite table -#: app/core/gimp.c:852 +#: ../app/core/gimp.c:852 msgid "Looking for data files" msgstr "데이타 파일을 찾는 중" -#: app/core/gimp.c:852 +#: ../app/core/gimp.c:852 msgid "Parasites" msgstr "기생" #. initialize the document history -#: app/core/gimp.c:876 +#: ../app/core/gimp.c:876 msgid "Documents" msgstr "문서" #. initialize the module list -#: app/core/gimp.c:884 app/dialogs/preferences-dialog.c:2325 +#: ../app/core/gimp.c:884 ../app/dialogs/preferences-dialog.c:2325 msgid "Modules" msgstr "모듈" -#: app/core/gimpbrush.c:534 +#: ../app/core/gimpbrush.c:534 #, c-format msgid "Could not read %d bytes from '%s': %s" msgstr "%d바이트를 '%s'에서 읽을 수 없습니다: %s" -#: app/core/gimpbrush.c:554 -#, fuzzy, c-format +#: ../app/core/gimpbrush.c:554 +#, c-format msgid "Fatal parse error in brush file '%s': Width = 0." -msgstr "브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 심도 %d." +msgstr "브러시 파일 '%s'에 치명적인 해석 오류: 너비 = 0." -#: app/core/gimpbrush.c:563 -#, fuzzy, c-format +#: ../app/core/gimpbrush.c:563 +#, c-format msgid "Fatal parse error in brush file '%s': Height = 0." -msgstr " 브러시 파일 '%s'에 치명적인 해석 오류: 파일 손상된 것 같습니다." +msgstr " 브러시 파일 '%s'에 치명적인 해석 오류: 높이 = 0." -#: app/core/gimpbrush.c:572 -#, fuzzy, c-format +#: ../app/core/gimpbrush.c:572 +#, c-format msgid "Fatal parse error in brush file '%s': Bytes = 0." -msgstr " 브러시 파일 '%s'에 치명적인 해석 오류: 파일 손상된 것 같습니다." +msgstr " 브러시 파일 '%s'에 치명적인 해석 오류: 크기 = 0." -#: app/core/gimpbrush.c:596 +#: ../app/core/gimpbrush.c:596 #, c-format msgid "Fatal parse error in brush file '%s': Unknown depth %d." msgstr "브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 심도 %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 "브러시 파일 '%s'에 쳐명적인 해석 오류: 알 수 없는 버전 %d." +msgstr "브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 버전 %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 "브러시 파일 '%s'에 치명적인 해석 오류: 파일이 잘린 것 같습니다." -#: 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 "브러시 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다." -#: app/core/gimpbrush.c:640 app/core/gimpcontext.c:1299 -#: app/core/gimpitem.c:475 app/core/gimppattern.c:400 -#: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 +#: ../app/core/gimpbrush.c:640 ../app/core/gimpcontext.c:1299 +#: ../app/core/gimpitem.c:475 ../app/core/gimppattern.c:400 +#: ../app/dialogs/template-options-dialog.c:80 +#: ../app/tools/gimpvectortool.c:339 msgid "Unnamed" msgstr "이름없음" -#: app/core/gimpbrush.c:734 +#: ../app/core/gimpbrush.c:734 #, c-format msgid "" "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" @@ -5147,737 +4604,734 @@ " 브러시 파일 '%s'에 치명적인 해석 오류: 지원되지 않는 심도 %d\n" " 김프 브러시는 GRAY나 RGBA여야 합니다." -#: app/core/gimpbrushgenerated.c:614 +#: ../app/core/gimpbrushgenerated.c:614 #, c-format msgid "Fatal parse error in brush file '%s': Not a GIMP brush file." msgstr "브러시 파일 '%s'에 치명적인 해석 오류: 김프 브러시 파일이 아닙니다." -#: 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 "브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 김프 브러시 버전." -#: app/core/gimpbrushgenerated.c:669 -#, fuzzy, c-format +#: ../app/core/gimpbrushgenerated.c:669 +#, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush shape." -msgstr "브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 김프 브러시 버전." +msgstr "브러시 파일 '%s'에 치명적인 해석 오류: 알 수 없는 김프 브러시 모양." -#: app/core/gimpbrushgenerated.c:750 -#, fuzzy, c-format +#: ../app/core/gimpbrushgenerated.c:750 +#, c-format msgid "Error while reading brush file '%s': %s" -msgstr "'%s' 읽기 오류: %s" +msgstr "브러시 파일 '%s' 읽기 오류: %s" -#: app/core/gimpbrushgenerated.c:752 +#: ../app/core/gimpbrushgenerated.c:752 msgid "File is truncated" -msgstr "" +msgstr "파일이 잘렸습니다" -#: app/core/gimpbrushpipe.c:369 app/core/gimpbrushpipe.c:389 -#: app/core/gimpbrushpipe.c:479 +#: ../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 " 브러시 파일 '%s'에 치명적인 해석 오류: 파일 손상된 것 같습니다." -#: app/core/gimpchannel.c:280 app/pdb/internal_procs.c:95 +#: ../app/core/gimpchannel.c:280 ../app/pdb/internal_procs.c:95 msgid "Channel" msgstr "채널" -#: app/core/gimpchannel.c:281 +#: ../app/core/gimpchannel.c:281 msgid "Rename Channel" msgstr "채널 이름 바꾸기" -#: app/core/gimpchannel.c:282 +#: ../app/core/gimpchannel.c:282 msgid "Move Channel" msgstr "채널 이동" -#: app/core/gimpchannel.c:283 +#: ../app/core/gimpchannel.c:283 msgid "Scale Channel" msgstr "채널 배율 조정" -#: app/core/gimpchannel.c:284 +#: ../app/core/gimpchannel.c:284 msgid "Resize Channel" msgstr "채널 크기 조정" -#: app/core/gimpchannel.c:285 +#: ../app/core/gimpchannel.c:285 msgid "Flip Channel" msgstr "채널 뒤집기" -#: app/core/gimpchannel.c:286 +#: ../app/core/gimpchannel.c:286 msgid "Rotate Channel" msgstr "채널 회전" -#: app/core/gimpchannel.c:287 app/core/gimpdrawable-transform.c:1121 +#: ../app/core/gimpchannel.c:287 ../app/core/gimpdrawable-transform.c:1121 msgid "Transform Channel" msgstr "채널 변형" -#: app/core/gimpchannel.c:288 -#, fuzzy +#: ../app/core/gimpchannel.c:288 msgid "Stroke Channel" -msgstr "채널 줄이기" +msgstr "채널 따라 그리기" -#: app/core/gimpchannel.c:310 +#: ../app/core/gimpchannel.c:310 msgid "Feather Channel" msgstr "채널 페더" -#: app/core/gimpchannel.c:311 +#: ../app/core/gimpchannel.c:311 msgid "Sharpen Channel" msgstr "채널 선명하게" -#: app/core/gimpchannel.c:312 +#: ../app/core/gimpchannel.c:312 msgid "Clear Channel" msgstr "채널 지움" -#: app/core/gimpchannel.c:313 +#: ../app/core/gimpchannel.c:313 msgid "Fill Channel" msgstr "채널 채우기" -#: app/core/gimpchannel.c:314 +#: ../app/core/gimpchannel.c:314 msgid "Invert Channel" msgstr "채널 반전" -#: app/core/gimpchannel.c:315 +#: ../app/core/gimpchannel.c:315 msgid "Border Channel" msgstr "채널 경계선" -#: app/core/gimpchannel.c:316 +#: ../app/core/gimpchannel.c:316 msgid "Grow Channel" msgstr "채널 늘이기" -#: app/core/gimpchannel.c:317 +#: ../app/core/gimpchannel.c:317 msgid "Shrink Channel" msgstr "채널 줄이기" -#: app/core/gimpchannel.c:631 +#: ../app/core/gimpchannel.c:631 msgid "Cannot stroke empty channel." msgstr "빈 채널에는 따라 그리기를 할 수 없습니다." -#: app/core/gimpchannel.c:1527 +#: ../app/core/gimpchannel.c:1527 msgid "Set Channel Color" msgstr "채널 색상 지정" -#: app/core/gimpchannel.c:1575 +#: ../app/core/gimpchannel.c:1575 msgid "Set Channel Opacity" msgstr "채널 불투명도 지정" -#: app/core/gimpchannel.c:1644 app/core/gimpselection.c:563 +#: ../app/core/gimpchannel.c:1644 ../app/core/gimpselection.c:563 msgid "Selection Mask" msgstr "선택 마스크" -#: app/core/gimpchannel-select.c:56 app/tools/gimprectselecttool.c:96 +#: ../app/core/gimpchannel-select.c:56 ../app/tools/gimprectselecttool.c:96 msgid "Rect Select" msgstr "사각 선택" -#: app/core/gimpchannel-select.c:107 app/tools/gimpellipseselecttool.c:71 +#: ../app/core/gimpchannel-select.c:107 +#: ../app/tools/gimpellipseselecttool.c:71 msgid "Ellipse Select" msgstr "타원 선택" -#: app/core/gimpchannel-select.c:373 +#: ../app/core/gimpchannel-select.c:373 msgid "Alpha to Selection" msgstr "알파를 선택으로" -#: app/core/gimpchannel-select.c:414 +#: ../app/core/gimpchannel-select.c:414 #, c-format msgid "%s Channel to Selection" msgstr "채널 %s을(를) 선택으로" -#: app/core/gimpchannel-select.c:460 app/tools/gimpfuzzyselecttool.c:97 +#: ../app/core/gimpchannel-select.c:460 ../app/tools/gimpfuzzyselecttool.c:97 msgid "Fuzzy Select" msgstr "퍼지 선택" -#: app/core/gimpchannel-select.c:505 +#: ../app/core/gimpchannel-select.c:505 msgid "Select by Color" msgstr "색상으로 선택" -#: app/core/gimpdata.c:314 +#: ../app/core/gimpdata.c:314 #, c-format msgid "Could not delete '%s': %s" msgstr "'%s'을(를) 지울 수 없습니다: %s" -#: app/core/gimpdatafactory.c:291 app/core/gimpdatafactory.c:511 -#, fuzzy, c-format +#: ../app/core/gimpdatafactory.c:291 ../app/core/gimpdatafactory.c:511 +#, c-format msgid "" "Warning: Failed to save data:\n" "\n" "%s" msgstr "" " 경고: 데이터 저장 실패:\n" +"\n" " %s" -#: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:272 app/core/gimpitem.c:275 +#: ../app/core/gimpdatafactory.c:411 ../app/core/gimpdatafactory.c:414 +#: ../app/core/gimpitem.c:272 ../app/core/gimpitem.c:275 msgid "copy" msgstr "복사" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:284 +#: ../app/core/gimpdatafactory.c:423 ../app/core/gimpitem.c:284 #, c-format msgid "%s copy" msgstr "%s 복사" -#: app/core/gimpdatafactory.c:614 -#, fuzzy, c-format +#: ../app/core/gimpdatafactory.c:614 +#, c-format msgid "" "Warning: Failed to load data:\n" "\n" "%s" msgstr "" "경고: 데이터 읽기 실패:\n" +"\n" "%s" -#: app/core/gimpdrawable-blend.c:238 app/tools/gimpblendtool.c:101 +#: ../app/core/gimpdrawable-blend.c:238 ../app/tools/gimpblendtool.c:101 msgid "Blend" msgstr "혼합" -#: app/core/gimpdrawable-bucket-fill.c:85 app/paint/gimpclone.c:183 +#: ../app/core/gimpdrawable-bucket-fill.c:85 ../app/paint/gimpclone.c:183 msgid "No patterns available for this operation." msgstr "이 작업을 할 수 있는 무늬가 없습니다." -#: app/core/gimpdrawable-bucket-fill.c:272 app/tools/gimpbucketfilltool.c:91 +#: ../app/core/gimpdrawable-bucket-fill.c:272 +#: ../app/tools/gimpbucketfilltool.c:91 msgid "Bucket Fill" msgstr "영역 채우기" -#: app/core/gimpdrawable-desaturate.c:98 +#: ../app/core/gimpdrawable-desaturate.c:98 msgid "Desaturate" msgstr "무채화" -#: app/core/gimpdrawable-equalize.c:80 +#: ../app/core/gimpdrawable-equalize.c:80 msgid "Equalize" msgstr "평탄화" -#: app/core/gimpdrawable-invert.c:61 +#: ../app/core/gimpdrawable-invert.c:61 msgid "Invert" msgstr "반전" -#: app/core/gimpdrawable-levels.c:112 app/core/gimpdrawable-levels.c:162 -#: app/tools/gimplevelstool.c:160 +#: ../app/core/gimpdrawable-levels.c:112 ../app/core/gimpdrawable-levels.c:162 +#: ../app/tools/gimplevelstool.c:160 msgid "Levels" msgstr "레벨" -#: app/core/gimpdrawable-offset.c:316 +#: ../app/core/gimpdrawable-offset.c:316 msgid "Offset Drawable" msgstr "옵셋 Drawable" -#: app/core/gimpdrawable-stroke.c:319 +#: ../app/core/gimpdrawable-stroke.c:319 msgid "Render Stroke" msgstr "따라 그리기 Render" #. Start a transform undo group -#: app/core/gimpdrawable-transform.c:928 app/tools/gimpfliptool.c:82 +#: ../app/core/gimpdrawable-transform.c:928 ../app/tools/gimpfliptool.c:82 msgid "Flip" msgstr "뒤집기" #. Start a transform undo group -#: app/core/gimpdrawable-transform.c:1009 app/tools/gimprotatetool.c:97 +#: ../app/core/gimpdrawable-transform.c:1009 ../app/tools/gimprotatetool.c:97 msgid "Rotate" msgstr "회전" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 +#: ../app/core/gimpdrawable-transform.c:1119 ../app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "레이어 변형" -#: app/core/gimpdrawable-transform.c:1134 +#: ../app/core/gimpdrawable-transform.c:1134 msgid "Transformation" msgstr "변형" -#: app/core/gimpenvirontable.c:285 +#: ../app/core/gimpenvirontable.c:285 #, c-format msgid "Empty variable name in environment file %s" msgstr "환경 파일 %s에 빈 변수 이름이 있습니다." -#: app/core/gimpenvirontable.c:303 +#: ../app/core/gimpenvirontable.c:303 #, c-format msgid "Illegal variable name in environment file %s: %s" msgstr "환경 파일 %s에 부적절한 변수 이름 %s이(가) 있습니다." -#: app/core/gimpgradient-load.c:72 +#: ../app/core/gimpgradient-load.c:72 #, c-format msgid "Fatal parse error in gradient file '%s': Not a GIMP gradient file." msgstr "" "그라디언트 파일 '%s'에 치명적인 해석 오류: 김프 그라디언트 파일이 아닙니다." -#: app/core/gimpgradient-load.c:87 +#: ../app/core/gimpgradient-load.c:87 #, c-format msgid "Invalid UTF-8 string in gradient file '%s'." msgstr "그라디언트 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다." -#: 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 "그라디언트 파일 '%s'에 치명적인 해석 오류: 파일이 손상되었습니다." -#: app/core/gimpgradient-load.c:172 +#: ../app/core/gimpgradient-load.c:172 #, c-format msgid "Corrupt segment %d in gradient file '%s'." msgstr "그라디언트 파일 '%2$s'의 %1$d번째 조각이 손상되었습니다." -#: 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 "" +"그라디언트 파일 '%s'이(가) 손상되었습니다: 세그먼트가 0-1 범위에 있지 않습니" +"다." -#: app/core/gimpgradient-load.c:281 -#, fuzzy, c-format +#: ../app/core/gimpgradient-load.c:281 +#, c-format msgid "No linear gradients found in '%s'" -msgstr "'%s'에서 경로를 찾을 수 없습니다" +msgstr "'%s'에서 선형 그라디언트를 찾을 수 없습니다" -#: app/core/gimpgradient-load.c:291 -#, fuzzy, c-format +#: ../app/core/gimpgradient-load.c:291 +#, c-format msgid "Failed to import gradients from '%s': %s" -msgstr "'%s'에서 경로를 들여올 수 없습니다: %s" +msgstr "'%s'에서 그라디언트를 들여올 수 없습니다: %s" -#: app/core/gimpgrid.c:128 +#: ../app/core/gimpgrid.c:128 msgid "Line style used for the grid." msgstr "모눈이 사용할 선 형태." -#: app/core/gimpgrid.c:134 +#: ../app/core/gimpgrid.c:134 msgid "The foreground color of the grid." msgstr "모눈의 전경색." -#: app/core/gimpgrid.c:139 +#: ../app/core/gimpgrid.c:139 msgid "" "The background color of the grid; only used in double dashed line style." msgstr "모눈의 배경색; 이점쇄선 형태에서만 사용됩니다." -#: app/core/gimpgrid.c:145 +#: ../app/core/gimpgrid.c:145 msgid "Horizontal spacing of grid lines." msgstr "모눈 선의 가로 간격." -#: app/core/gimpgrid.c:150 +#: ../app/core/gimpgrid.c:150 msgid "Vertical spacing of grid lines." msgstr "모눈 선의 세로 간격." -#: app/core/gimpgrid.c:159 +#: ../app/core/gimpgrid.c:159 msgid "" "Horizontal offset of the first grid line; this may be a negative number." msgstr "첫 모눈 선의 가로 위치; 이 값은 음수여도 됩니다." -#: app/core/gimpgrid.c:166 +#: ../app/core/gimpgrid.c:166 msgid "Vertical offset of the first grid line; this may be a negative number." msgstr "첫 모눈 선의 세로 위치; 이 값은 음수여도 됩니다." -#: app/core/gimpimage-colormap.c:63 -#, fuzzy +#: ../app/core/gimpimage-colormap.c:63 msgid "Set Colormap" -msgstr "색상표" +msgstr "색상표 지정" -#: app/core/gimpimage-colormap.c:115 -#, fuzzy +#: ../app/core/gimpimage-colormap.c:115 msgid "Change Colormap entry" -msgstr "이미지 단위 바꾸기" +msgstr "색상표 항목 바꾸기" -#: app/core/gimpimage-colormap.c:135 -#, fuzzy +#: ../app/core/gimpimage-colormap.c:135 msgid "Add Color to Colormap" -msgstr "/전경에서 색상 더하기(_A)" +msgstr "색상을 색상표에 더하기(_A)" -#: app/core/gimpimage-convert.c:788 +#: ../app/core/gimpimage-convert.c:789 msgid "Convert Image to RGB" msgstr "이미지를 RGB로 변환" -#: app/core/gimpimage-convert.c:792 +#: ../app/core/gimpimage-convert.c:793 msgid "Convert Image to Grayscale" msgstr "이미지를 그레이스케일로 변환" -#: app/core/gimpimage-convert.c:796 +#: ../app/core/gimpimage-convert.c:797 msgid "Convert Image to Indexed" msgstr "이미지를 인덱스된 색상으로 변환" -#: app/core/gimpimage-convert.c:875 -#, fuzzy +#: ../app/core/gimpimage-convert.c:879 msgid "Converting to indexed (stage 2)..." -msgstr "이미지를 인덱스된 색상으로 변환" +msgstr "이미지를 인덱스된 색상으로 변환(2단계)..." -#: app/core/gimpimage-convert.c:919 -#, fuzzy +#: ../app/core/gimpimage-convert.c:923 msgid "Converting to indexed (stage 3)..." -msgstr "이미지를 인덱스된 색상으로 변환" +msgstr "이미지를 인덱스된 색상으로 변환(3단계)..." -#: app/core/gimpimage-crop.c:123 +#: ../app/core/gimpimage-crop.c:123 msgid "Crop Image" msgstr "이미지 자르기" -#: app/core/gimpimage-crop.c:126 app/core/gimpimage-resize.c:67 +#: ../app/core/gimpimage-crop.c:126 ../app/core/gimpimage-resize.c:67 msgid "Resize Image" msgstr "이미지 크기 조정" -#: app/core/gimpimage-guides.c:53 +#: ../app/core/gimpimage-guides.c:53 msgid "Add Horizontal Guide" msgstr "가로 안내선 더하기" -#: app/core/gimpimage-guides.c:80 +#: ../app/core/gimpimage-guides.c:80 msgid "Add Vertical Guide" msgstr "새로 안내선 더하기" -#: app/core/gimpimage-guides.c:143 app/tools/gimpmovetool.c:570 +#: ../app/core/gimpimage-guides.c:143 ../app/tools/gimpmovetool.c:570 msgid "Remove Guide" msgstr "안내선 지우기" -#: app/core/gimpimage-guides.c:167 +#: ../app/core/gimpimage-guides.c:167 msgid "Move Guide" msgstr "안내선 이동" -#: app/core/gimpimage-merge.c:91 +#: ../app/core/gimpimage-merge.c:91 msgid "Merge Visible Layers" msgstr "보이는 레이어 합치기" -#: app/core/gimpimage-merge.c:107 +#: ../app/core/gimpimage-merge.c:107 msgid "Not enough visible layers for a merge. There must be at least two." msgstr "합치려면 두 개 이상의 보이는 레이어가 필요합니다." -#: app/core/gimpimage-merge.c:142 +#: ../app/core/gimpimage-merge.c:142 msgid "Flatten Image" -msgstr "이미지 배경으로 합치기" +msgstr "이미지 합치기" -#: app/core/gimpimage-merge.c:193 +#: ../app/core/gimpimage-merge.c:193 msgid "Merge Down" msgstr "아래로 합치기" -#: app/core/gimpimage-merge.c:202 +#: ../app/core/gimpimage-merge.c:202 msgid "There are not enough visible layers for a merge down." msgstr "아래에 합칠 레이어가 없습니다." -#: app/core/gimpimage-merge.c:543 +#: ../app/core/gimpimage-merge.c:543 msgid "Merge Visible Paths" msgstr "보이는 경로 합치기" -#: app/core/gimpimage-merge.c:580 +#: ../app/core/gimpimage-merge.c:580 msgid "Not enough visible paths for a merge. There must be at least two." msgstr "합치려면 두 개 이상의 보이는 경로가 필요합니다." -#: app/core/gimpimage-qmask.c:67 -#, fuzzy +#: ../app/core/gimpimage-qmask.c:67 msgid "Enable Quick Mask" msgstr "퀵마스크 사용" -#: app/core/gimpimage-qmask.c:117 -#, fuzzy +#: ../app/core/gimpimage-qmask.c:117 msgid "Disable Quick Mask" msgstr "퀵마스크 사용 안함" -#: app/core/gimpimage-undo-push.c:3055 +#: ../app/core/gimpimage-undo-push.c:3055 #, c-format msgid "Can't undo %s" msgstr "%s을(를) 취소할 수 없습니다" -#: app/core/gimpimage.c:1357 +#: ../app/core/gimpimage.c:1357 msgid "Change Image Resolution" msgstr "이미지 해상도 바꾸기" -#: app/core/gimpimage.c:1397 +#: ../app/core/gimpimage.c:1397 msgid "Change Image Unit" msgstr "이미지 단위 바꾸기" -#: app/core/gimpimage.c:2177 +#: ../app/core/gimpimage.c:2177 msgid "Attach Parasite to Image" msgstr "이미지에 기생 덧붙이기" -#: app/core/gimpimage.c:2210 +#: ../app/core/gimpimage.c:2210 msgid "Remove Parasite from Image" msgstr "이미지에서 기생 지우기" -#: app/core/gimpimage.c:2678 +#: ../app/core/gimpimage.c:2678 msgid "Add Layer" msgstr "레이어 더하기" -#: app/core/gimpimage.c:2745 +#: ../app/core/gimpimage.c:2742 ../app/core/gimpimage.c:2755 msgid "Remove Layer" msgstr "레이어 지우기" -#: app/core/gimpimage.c:2816 +#: ../app/core/gimpimage.c:2829 msgid "Layer cannot be raised higher." msgstr "레이어를 더 위로 올릴 수 없습니다." -#: app/core/gimpimage.c:2822 app/core/gimpimage.c:2872 +#: ../app/core/gimpimage.c:2835 ../app/core/gimpimage.c:2885 msgid "Cannot raise a layer without alpha." msgstr "알파가 없는 레이어를 올릴 수 없습니다." -#: app/core/gimpimage.c:2827 +#: ../app/core/gimpimage.c:2840 msgid "Raise Layer" msgstr "레이어 올리기" -#: app/core/gimpimage.c:2844 +#: ../app/core/gimpimage.c:2857 msgid "Layer cannot be lowered more." msgstr "레이어를 더 아래로 내릴 수 없습니다." -#: app/core/gimpimage.c:2849 +#: ../app/core/gimpimage.c:2862 msgid "Lower Layer" msgstr "레이어 내리기" -#: app/core/gimpimage.c:2866 +#: ../app/core/gimpimage.c:2879 msgid "Layer is already on top." msgstr "레이어는 이미 맨 위에 있습니다." -#: app/core/gimpimage.c:2877 +#: ../app/core/gimpimage.c:2890 msgid "Raise Layer to Top" msgstr "레이어를 맨 위로 올리기" -#: app/core/gimpimage.c:2897 +#: ../app/core/gimpimage.c:2910 msgid "Layer is already on the bottom." msgstr "레이어가 이미 맨 아래에 있습니다." -#: app/core/gimpimage.c:2902 +#: ../app/core/gimpimage.c:2915 msgid "Lower Layer to Bottom" msgstr "레이어를 맨 아래로 내리기" -#: app/core/gimpimage.c:2941 +#: ../app/core/gimpimage.c:2954 #, c-format msgid "Layer '%s' has no alpha. Layer was placed above it." msgstr "레이어 '%s'에는 알파가 없습니다. 레이어를 그 위에 놓았습니다." -#: app/core/gimpimage.c:2993 +#: ../app/core/gimpimage.c:3006 msgid "Add Channel" msgstr "채널 더하기" -#: app/core/gimpimage.c:3038 +#: ../app/core/gimpimage.c:3050 ../app/core/gimpimage.c:3061 msgid "Remove Channel" msgstr "채널 지우기" -#: app/core/gimpimage.c:3082 +#: ../app/core/gimpimage.c:3108 msgid "Channel cannot be raised higher." msgstr "채널을 더 위로 올릴 수 없습니다." -#: app/core/gimpimage.c:3087 +#: ../app/core/gimpimage.c:3113 msgid "Raise Channel" msgstr "채널 올리기" -#: app/core/gimpimage.c:3104 -#, fuzzy +#: ../app/core/gimpimage.c:3130 msgid "Channel is already on top." -msgstr "레이어는 이미 맨 위에 있습니다." +msgstr "채널은 이미 맨 위에 있습니다." -#: app/core/gimpimage.c:3109 +#: ../app/core/gimpimage.c:3135 msgid "Raise Channel to Top" msgstr "채널을 맨 위로 올리기" -#: app/core/gimpimage.c:3126 +#: ../app/core/gimpimage.c:3152 msgid "Channel cannot be lowered more." msgstr "채널을 더 아래로 내릴 수 없습니다." -#: app/core/gimpimage.c:3131 +#: ../app/core/gimpimage.c:3157 msgid "Lower Channel" msgstr "채널 내리기" -#: app/core/gimpimage.c:3151 -#, fuzzy +#: ../app/core/gimpimage.c:3177 msgid "Channel is already on the bottom." -msgstr "레이어가 이미 맨 아래에 있습니다." +msgstr "채널은 이미 맨 아래에 있습니다." -#: app/core/gimpimage.c:3156 +#: ../app/core/gimpimage.c:3182 msgid "Lower Channel to Bottom" msgstr "채널을 맨 아래로 내리기" -#: app/core/gimpimage.c:3231 +#: ../app/core/gimpimage.c:3257 msgid "Add Path" msgstr "경로 더하기" -#: app/core/gimpimage.c:3276 +#: ../app/core/gimpimage.c:3302 msgid "Remove Path" msgstr "경로 지우기" -#: app/core/gimpimage.c:3320 +#: ../app/core/gimpimage.c:3346 msgid "Path cannot be raised higher." msgstr "경로를 더 위로 올릴 수 없습니다." -#: app/core/gimpimage.c:3325 +#: ../app/core/gimpimage.c:3351 msgid "Raise Path" msgstr "경로 올리기" -#: app/core/gimpimage.c:3342 -#, fuzzy +#: ../app/core/gimpimage.c:3368 msgid "Path is already on top." -msgstr "레이어는 이미 맨 위에 있습니다." +msgstr "경로는 이미 맨 위에 있습니다." -#: app/core/gimpimage.c:3347 +#: ../app/core/gimpimage.c:3373 msgid "Raise Path to Top" msgstr "경로를 맨 위로 올리기" -#: app/core/gimpimage.c:3364 +#: ../app/core/gimpimage.c:3390 msgid "Path cannot be lowered more." msgstr "경로를 더 아래로 내릴 수 없습니다." -#: app/core/gimpimage.c:3369 +#: ../app/core/gimpimage.c:3395 msgid "Lower Path" msgstr "경로 내리기" -#: app/core/gimpimage.c:3389 -#, fuzzy +#: ../app/core/gimpimage.c:3415 msgid "Path is already on the bottom." -msgstr "레이어가 이미 맨 아래에 있습니다." +msgstr "경로가 이미 맨 아래에 있습니다." -#: app/core/gimpimage.c:3394 +#: ../app/core/gimpimage.c:3420 msgid "Lower Path to Bottom" msgstr "경로를 맨 아래로 내리기" -#: app/core/gimpimagefile.c:568 +#: ../app/core/gimpimagefile.c:568 msgid "Remote image" msgstr "원격 이미지" -#: app/core/gimpimagefile.c:573 app/dialogs/preferences-dialog.c:1472 +#: ../app/core/gimpimagefile.c:573 ../app/dialogs/preferences-dialog.c:1472 msgid "Folder" msgstr "폴더" -#: app/core/gimpimagefile.c:578 +#: ../app/core/gimpimagefile.c:578 msgid "Special File" msgstr "특수 파일" -#: app/core/gimpimagefile.c:605 -#, fuzzy +#: ../app/core/gimpimagefile.c:605 msgid "Click to create preview" -msgstr "미리보기를 만들 수 없습니다" +msgstr "누르면 미리보기를 만듭니다." -#: app/core/gimpimagefile.c:609 +#: ../app/core/gimpimagefile.c:609 msgid "Loading preview ..." msgstr "미리보기 읽는 중 ..." -#: app/core/gimpimagefile.c:613 +#: ../app/core/gimpimagefile.c:613 msgid "Preview is out of date" msgstr "오래된 미리보기 입니다." -#: app/core/gimpimagefile.c:617 +#: ../app/core/gimpimagefile.c:617 msgid "Cannot create preview" msgstr "미리보기를 만들 수 없습니다" #. pixel size -#: app/core/gimpimagefile.c:624 app/dialogs/info-window.c:552 -#: app/widgets/gimpsizebox.c:432 app/widgets/gimptemplateeditor.c:637 -#: app/widgets/gimptemplateeditor.c:675 +#: ../app/core/gimpimagefile.c:624 ../app/dialogs/info-window.c:552 +#: ../app/widgets/gimpsizebox.c:432 ../app/widgets/gimptemplateeditor.c:637 +#: ../app/widgets/gimptemplateeditor.c:675 #, c-format msgid "%d x %d pixels" msgstr "%d x %d 픽셀" -#: app/core/gimpimagefile.c:639 +#: ../app/core/gimpimagefile.c:639 msgid "1 Layer" msgstr "1 레이어" -#: app/core/gimpimagefile.c:641 +#: ../app/core/gimpimagefile.c:641 #, c-format msgid "%d Layers" msgstr "%d 레이어" -#: app/core/gimpimagefile.c:682 +#: ../app/core/gimpimagefile.c:682 #, c-format msgid "Could not open thumbnail '%s': %s" msgstr "썸네일 '%s' 열기 실패: %s" -#: app/core/gimpitem.c:1091 +#: ../app/core/gimpitem.c:1091 msgid "Attach Parasite" msgstr "기생 덧붙이기" -#: app/core/gimpitem.c:1101 +#: ../app/core/gimpitem.c:1101 msgid "Attach Parasite to Item" msgstr "항목에 기생 덧붙이기" -#: app/core/gimpitem.c:1140 app/core/gimpitem.c:1147 +#: ../app/core/gimpitem.c:1140 ../app/core/gimpitem.c:1147 msgid "Remove Parasite from Item" msgstr "항목의 기생 지우기" -#: app/core/gimplayer-floating-sel.c:98 -#, fuzzy +#: ../app/core/gimplayer-floating-sel.c:98 msgid "Remove Floating Selection" -msgstr "떠있는 선택" +msgstr "떠있는 선택 지우기" -#: app/core/gimplayer-floating-sel.c:129 +#: ../app/core/gimplayer-floating-sel.c:129 msgid "Cannot anchor this layer because it is not a floating selection." msgstr "떠있는 선택이 아니므로, 레이어를 고정할 수 없습니다." -#: app/core/gimplayer-floating-sel.c:136 +#: ../app/core/gimplayer-floating-sel.c:136 msgid "Anchor Floating Selection" msgstr "떠있는 선택 고정" -#: app/core/gimplayer-floating-sel.c:209 +#: ../app/core/gimplayer-floating-sel.c:209 msgid "" "Cannot create a new layer from the floating selection because it belongs to " "a layer mask or channel." msgstr "" "레이어 마스크나 채널에 속해 있는 떠있는 선택은 새 레이어로 만들 수 없습니다." -#: app/core/gimplayer-floating-sel.c:215 +#: ../app/core/gimplayer-floating-sel.c:215 msgid "Floating Selection to Layer" msgstr "떠있는 선택을 레이어으로" -#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 +#: ../app/core/gimplayer.c:250 ../app/pdb/internal_procs.c:152 msgid "Layer" msgstr "레이어" -#: app/core/gimplayer.c:251 +#: ../app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "레이어 이름 바꾸기" -#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: ../app/core/gimplayer.c:252 ../app/pdb/layer_cmds.c:669 +#: ../app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "레이어 이동" -#: app/core/gimplayer.c:254 +#: ../app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "레이어 크기 바꾸기" -#: app/core/gimplayer.c:255 +#: ../app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "레이어 뒤집기" -#: app/core/gimplayer.c:256 +#: ../app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "레이어 회전" -#: app/core/gimplayer.c:339 app/core/gimplayer.c:1109 -#: app/core/gimplayermask.c:236 +#: ../app/core/gimplayer.c:339 ../app/core/gimplayer.c:1109 +#: ../app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s 마스크" -#: app/core/gimplayer.c:385 -#, fuzzy, c-format +#: ../app/core/gimplayer.c:385 +#, c-format msgid "" "Floating Selection\n" "(%s)" -msgstr "떠있는 선택" +msgstr "" +"떠있는 선택\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 "이미지의 일부가 아닌 레이어에는 레이어 마스크를 더할 수 없습니다." -#: app/core/gimplayer.c:1042 +#: ../app/core/gimplayer.c:1042 msgid "Unable to add a layer mask since the layer already has one." msgstr "레이어가 이미 마스크를 갖고 있으므로, 더할 수 없습니다." -#: app/core/gimplayer.c:1049 +#: ../app/core/gimplayer.c:1049 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "알파 채널이 없는 레이어에는 레이어 마스크를 더할 수 없습니다." -#: app/core/gimplayer.c:1059 +#: ../app/core/gimplayer.c:1059 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "지정한 레이어와 크기가 다른 레이어 마크스를 더할 수 없습니다." -#: app/core/gimplayer.c:1163 +#: ../app/core/gimplayer.c:1163 msgid "Transfer Alpha to Mask" msgstr "알파를 마스크로 전송" -#: app/core/gimplayer.c:1323 +#: ../app/core/gimplayer.c:1323 msgid "Apply Layer Mask" msgstr "레이어 마스크 적용" -#: app/core/gimplayer.c:1324 +#: ../app/core/gimplayer.c:1324 msgid "Delete Layer Mask" msgstr "레이어 마스크 지우기" -#: app/core/gimplayer.c:1425 +#: ../app/core/gimplayer.c:1425 msgid "Add Alpha Channel" msgstr "알파 채널 더하기" -#: app/core/gimplayer.c:1447 +#: ../app/core/gimplayer.c:1447 msgid "Layer to Image Size" msgstr "레이어를 이미지 크기에 맞추기" -#: app/core/gimplayermask.c:132 +#: ../app/core/gimplayermask.c:132 msgid "Move Layer Mask" msgstr "레이어 마스크 이동" -#: app/core/gimppalette-import.c:490 +#: ../app/core/gimppalette-import.c:490 #, c-format msgid "" "Unknown type of palette file:\n" "%s" msgstr "" +"알 수 없는 색상표 파일 형식:\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" @@ -5886,23 +5340,23 @@ "색상표 파일 '%s'에 치명적 해석 오류: 매직 해더가 없습니다.\n" "이 파일을 DOS 형식에서 변환할 필요가 있습니까?" -#: app/core/gimppalette.c:381 +#: ../app/core/gimppalette.c:381 #, c-format msgid "Fatal parse error in palette file '%s': Missing magic header." msgstr "무늬 파일 '%s'에 치명적인 해석 오류: 매직 헤더가 없습니다." -#: 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 "색상표 파일 '%s'에 치명적 해석 오류: %d번째 줄에서 읽기 오류." -#: app/core/gimppalette.c:410 +#: ../app/core/gimppalette.c:410 #, c-format msgid "Invalid UTF-8 string in palette file '%s'" msgstr "색상표 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다." -#: 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 " @@ -5912,39 +5366,39 @@ "용합니다." #. 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 "색상표 파일 '%s' 읽는 중: %d번째 줄에 RED 성분이 없습니다." -#: app/core/gimppalette.c:492 +#: ../app/core/gimppalette.c:492 #, c-format msgid "Reading palette '%s': Missing GREEN component in line %d." msgstr "색상표 파일 '%s' 읽는 중: %d번째 줄에 GREEN 성분이 없습니다." -#: app/core/gimppalette.c:500 +#: ../app/core/gimppalette.c:500 #, c-format msgid "Reading palette file '%s': Missing BLUE component in line %d." msgstr "색상표 파일 '%s' 읽는 중: %d번째 줄에 BLUE 성분이 없습니다." -#: 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 "색상표 파일 '%s' 읽는 중: %d번째 줄의 RGB값이 범위를 벗어났습니다." -#: 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 "무늬 파일 '%s'에 치명적인 해석 오류: %d 바이트를 읽을 수 없습니다: %s" -#: app/core/gimppattern.c:357 +#: ../app/core/gimppattern.c:357 #, c-format msgid "" "Fatal parse error in pattern file '%s': Unknown pattern format version %d." msgstr "무늬 파일 '%s'에 치명적인 해석 오류: 알 수 없는 무늬 형식 버전 %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" @@ -5953,1597 +5407,1492 @@ "무늬 파일 '%s'에 치명적인 해석 오류: 지원하지 않는 심도 %d.\n" "김프 무늬는 GRAY나 RGB여야 합니다." -#: app/core/gimppattern.c:393 +#: ../app/core/gimppattern.c:393 #, c-format msgid "Invalid UTF-8 string in pattern file '%s'." msgstr "무늬 파일 '%s'에 잘못된 UTF-8 문자열이 있습니다." -#: app/core/gimppdbprogress.c:260 app/widgets/gimppdbdialog.c:320 -#, fuzzy, c-format +#: ../app/core/gimppdbprogress.c:260 ../app/widgets/gimppdbdialog.c:320 +#, c-format msgid "Unable to run %s callback. The corresponding plug-in may have crashed." -msgstr "브러시 콜백을 사용할 수 없습니다. 해당 플러그인이 비정상 종료했습니다." +msgstr "%s 콜백을 실행할 수 없습니다. 해당 플러그인이 비정상 종료했습니다." -#: app/core/gimpprogress.c:107 app/core/gimpprogress.c:154 +#: ../app/core/gimpprogress.c:107 ../app/core/gimpprogress.c:154 msgid "Please wait..." msgstr "잠시만 기다려 주십시오..." -#: app/core/gimpselection.c:183 app/tools/gimpeditselectiontool.c:258 +#: ../app/core/gimpselection.c:183 ../app/tools/gimpeditselectiontool.c:258 msgid "Move Selection" msgstr "선택 이동" -#: app/core/gimpselection.c:202 +#: ../app/core/gimpselection.c:202 msgid "Sharpen Selection" msgstr "선택 선명하게" -#: app/core/gimpselection.c:203 +#: ../app/core/gimpselection.c:203 msgid "Select None" msgstr "선택 없음" -#: app/core/gimpselection.c:204 +#: ../app/core/gimpselection.c:204 msgid "Select All" msgstr "전체 선택" -#: app/core/gimpselection.c:205 +#: ../app/core/gimpselection.c:205 msgid "Invert Selection" msgstr "선택 반전" -#: app/core/gimpselection.c:307 +#: ../app/core/gimpselection.c:307 msgid "No selection to stroke." msgstr "따라 그리기할 선택이 없습니다." -#: app/core/gimpselection.c:815 +#: ../app/core/gimpselection.c:815 msgid "Cannot float selection because the selected region is empty." msgstr "선택된 영역이 비어있으므로, 띄울 수 없습니다." -#: app/core/gimpselection.c:822 +#: ../app/core/gimpselection.c:822 msgid "Float Selection" msgstr "선택 띄우기" -#: app/core/gimpselection.c:839 -#, fuzzy +#: ../app/core/gimpselection.c:839 msgid "Floated Layer" -msgstr "레이어 회전" +msgstr "떠있는 레이어" -#: app/core/gimptemplate.c:158 +#: ../app/core/gimptemplate.c:158 msgid "The unit used for coordinate display when not in dot-for-dot mode." msgstr "점-대-점 모드가 아닐때 좌표 출력에 사용할 단위." -#: app/core/gimptemplate.c:165 -#, fuzzy +#: ../app/core/gimptemplate.c:165 msgid "The horizontal image resolution." msgstr "이미지 가로 해상도." -#: app/core/gimptemplate.c:170 +#: ../app/core/gimptemplate.c:170 msgid "The vertical image resolution." msgstr "이미지 세로 해상도." -#: app/core/gimptemplate.c:450 app/widgets/widgets-enums.c:24 +#: ../app/core/gimptemplate.c:450 ../app/widgets/widgets-enums.c:24 msgid "Background" msgstr "배경" #. pseudo unit -#: app/core/gimpunit.c:55 +#: ../app/core/gimpunit.c:55 msgid "pixel" msgstr "픽셀" -#: app/core/gimpunit.c:55 app/tools/gimpmeasuretool.c:787 -#: app/tools/gimpmeasuretool.c:875 app/tools/gimppainttool.c:681 +#: ../app/core/gimpunit.c:55 ../app/tools/gimpmeasuretool.c:787 +#: ../app/tools/gimpmeasuretool.c:875 ../app/tools/gimppainttool.c:681 msgid "pixels" msgstr "픽셀" #. standard units -#: app/core/gimpunit.c:58 +#: ../app/core/gimpunit.c:58 msgid "inch" msgstr "인치" -#: app/core/gimpunit.c:58 +#: ../app/core/gimpunit.c:58 msgid "inches" msgstr "인치" -#: app/core/gimpunit.c:59 +#: ../app/core/gimpunit.c:59 msgid "millimeter" msgstr "밀리미터" -#: app/core/gimpunit.c:59 +#: ../app/core/gimpunit.c:59 msgid "millimeters" msgstr "밀리미터" #. professional units -#: app/core/gimpunit.c:62 +#: ../app/core/gimpunit.c:62 msgid "point" msgstr "포인트" -#: app/core/gimpunit.c:62 +#: ../app/core/gimpunit.c:62 msgid "points" msgstr "포인트" -#: app/core/gimpunit.c:63 +#: ../app/core/gimpunit.c:63 msgid "pica" msgstr "파이카" -#: app/core/gimpunit.c:63 +#: ../app/core/gimpunit.c:63 msgid "picas" msgstr "파이카" -#: app/core/gimpunit.c:70 +#: ../app/core/gimpunit.c:70 msgid "percent" msgstr "퍼센트" -#: app/dialogs/about-dialog.c:45 +#: ../app/dialogs/about-dialog.c:45 #, c-format msgid "Version %s brought to you by" msgstr "버젼 %s 제작진" -#: app/dialogs/about-dialog.c:51 +#: ../app/dialogs/about-dialog.c:51 msgid "Translation by" msgstr "번역한 사람들" #. Translators: insert your names here, separated by newline #. we'd prefer just the names, please no email addresses. -#: app/dialogs/about-dialog.c:54 +#: ../app/dialogs/about-dialog.c:54 msgid "translator-credits" msgstr "" "장동수 , 2003, 2004\n" "남성현 , 1988, 1999" -#: app/dialogs/about-dialog.c:59 +#: ../app/dialogs/about-dialog.c:59 msgid "Contributions by" msgstr "공헌한 사람들" -#: app/dialogs/about-dialog.c:153 +#: ../app/dialogs/about-dialog.c:153 msgid "About The GIMP" msgstr "김프 정보" -#: app/dialogs/channel-options-dialog.c:138 +#: ../app/dialogs/channel-options-dialog.c:138 msgid "Channel Name:" msgstr "채널 이름:" -#: app/dialogs/convert-dialog.c:121 +#: ../app/dialogs/convert-dialog.c:121 msgid "Indexed Color Conversion" msgstr "인덱스된 색상 변환" -#: app/dialogs/convert-dialog.c:124 +#: ../app/dialogs/convert-dialog.c:124 msgid "Convert Image to Indexed Colors" msgstr "이미지를 인덱스된 색상으로 변환" -#: app/dialogs/convert-dialog.c:165 app/dialogs/dialogs.c:171 +#: ../app/dialogs/convert-dialog.c:165 ../app/dialogs/dialogs.c:171 msgid "Colormap" msgstr "색상표" -#: app/dialogs/convert-dialog.c:179 -#, fuzzy +#: ../app/dialogs/convert-dialog.c:179 msgid "_Maximum number of colors:" -msgstr "최대 색상 수:" +msgstr "최대 색상 수(_M):" -#: app/dialogs/convert-dialog.c:206 -#, fuzzy +#: ../app/dialogs/convert-dialog.c:206 msgid "_Remove unused colors from final palette" -msgstr "최종 색상표에서 사용 안한 색상 지우기" +msgstr "최종 색상표에서 사용 안한 색상 지우기(_R)" #. dithering -#: app/dialogs/convert-dialog.c:221 app/tools/gimpblendoptions.c:269 +#: ../app/dialogs/convert-dialog.c:221 ../app/tools/gimpblendoptions.c:269 msgid "Dithering" msgstr "디더링" -#: app/dialogs/convert-dialog.c:233 -#, fuzzy +#: ../app/dialogs/convert-dialog.c:233 msgid "Color _dithering:" -msgstr "디더링 안함" +msgstr "색상 디더링(_D):" -#: app/dialogs/convert-dialog.c:248 -#, fuzzy +#: ../app/dialogs/convert-dialog.c:248 msgid "Enable dithering of _transparency" -msgstr "투명도를 디더링해서 표현" +msgstr "투명도를 디더링해서 표현(_T)" -#: app/dialogs/convert-dialog.c:274 -#, fuzzy +#: ../app/dialogs/convert-dialog.c:274 msgid "Converting to indexed..." -msgstr "이미지를 인덱스된 색상으로 변환" +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 "256색 이상을 가진 색상표로 변환할 수 없습니다." -#: 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 "김프 메시지" -#: app/dialogs/dialogs.c:127 +#: ../app/dialogs/dialogs.c:127 msgid "Devices" msgstr "장치:" -#: app/dialogs/dialogs.c:127 +#: ../app/dialogs/dialogs.c:127 msgid "Device Status" msgstr "장치 상태" -#: app/dialogs/dialogs.c:131 +#: ../app/dialogs/dialogs.c:131 msgid "Errors" msgstr "오류" -#: app/dialogs/dialogs.c:152 +#: ../app/dialogs/dialogs.c:152 msgid "History" msgstr "이력" -#: app/dialogs/dialogs.c:154 +#: ../app/dialogs/dialogs.c:154 msgid "Image Templates" msgstr "이미지 템플릿" -#: app/dialogs/dialogs.c:175 +#: ../app/dialogs/dialogs.c:175 msgid "Histogram" msgstr "히스토그램" -#: app/dialogs/dialogs.c:179 +#: ../app/dialogs/dialogs.c:179 msgid "Selection" msgstr "선택" -#: app/dialogs/dialogs.c:179 +#: ../app/dialogs/dialogs.c:179 msgid "Selection Editor" msgstr "선택 편집기" -#: app/dialogs/dialogs.c:183 +#: ../app/dialogs/dialogs.c:183 msgid "Undo History" msgstr "실행 취소 이력" -#: app/dialogs/dialogs.c:189 +#: ../app/dialogs/dialogs.c:189 msgid "Navigation" msgstr "네비게이션" -#: app/dialogs/dialogs.c:189 +#: ../app/dialogs/dialogs.c:189 msgid "Display Navigation" msgstr "화면 표시 네비게이션" -#: app/dialogs/dialogs.c:195 +#: ../app/dialogs/dialogs.c:195 msgid "FG/BG" msgstr "전경/배경" -#: app/dialogs/dialogs.c:195 +#: ../app/dialogs/dialogs.c:195 msgid "FG/BG Color" msgstr "전경/배경색" -#: app/dialogs/dialogs.c:201 +#: ../app/dialogs/dialogs.c:201 msgid "Brush Editor" msgstr "브러시 편집기" -#: app/dialogs/file-open-location-dialog.c:71 -#, fuzzy +#: ../app/dialogs/file-open-location-dialog.c:71 msgid "Open Location" -msgstr "위치:" +msgstr "위치 열기" -#: app/dialogs/file-open-location-dialog.c:104 -#, fuzzy +#: ../app/dialogs/file-open-location-dialog.c:104 msgid "Enter location (URI):" -msgstr "보간:" +msgstr "위치 입력(URI):" -#: app/dialogs/file-save-dialog.c:184 -#, fuzzy +#: ../app/dialogs/file-save-dialog.c:185 msgid "File exists" -msgstr "파일이 존재합니다!" +msgstr "파일이 존재합니다" -#: app/dialogs/file-save-dialog.c:189 -#, fuzzy +#: ../app/dialogs/file-save-dialog.c:190 msgid "_Replace" -msgstr "복제" +msgstr "바꾸기(_R)" -#: app/dialogs/file-save-dialog.c:199 +#: ../app/dialogs/file-save-dialog.c:200 #, c-format msgid "A file named '%s' already exists." -msgstr "" +msgstr "이름이 '%s'인 파일이 이미 존재합니다." -#: app/dialogs/file-save-dialog.c:204 +#: ../app/dialogs/file-save-dialog.c:205 msgid "Do you want to replace it with the image you are saving?" -msgstr "" +msgstr "지금 저장하는 이미지로 바꾸기를 원하십니까?" -#: app/dialogs/grid-dialog.c:81 +#: ../app/dialogs/grid-dialog.c:81 msgid "Configure Grid" msgstr "모눈 설정" -#: app/dialogs/grid-dialog.c:82 +#: ../app/dialogs/grid-dialog.c:82 msgid "Configure Image Grid" msgstr "이미지 모눈 설정" -#: app/dialogs/image-merge-layers-dialog.c:60 +#: ../app/dialogs/image-merge-layers-dialog.c:60 msgid "Merge Layers" msgstr "레이어 합치기" -#: app/dialogs/image-merge-layers-dialog.c:62 +#: ../app/dialogs/image-merge-layers-dialog.c:62 msgid "Layers Merge Options" msgstr "레이어 합치기 선택사항" -#: app/dialogs/image-merge-layers-dialog.c:77 +#: ../app/dialogs/image-merge-layers-dialog.c:77 msgid "Final, Merged Layer should be:" msgstr "합쳐진 마지막 레이어는 다음과 같아야 합니다:" -#: app/dialogs/image-merge-layers-dialog.c:81 +#: ../app/dialogs/image-merge-layers-dialog.c:81 msgid "Expanded as necessary" msgstr "필요에 따라 확장" -#: app/dialogs/image-merge-layers-dialog.c:84 +#: ../app/dialogs/image-merge-layers-dialog.c:84 msgid "Clipped to image" msgstr "이미지에 맞게 절단" -#: app/dialogs/image-merge-layers-dialog.c:87 +#: ../app/dialogs/image-merge-layers-dialog.c:87 msgid "Clipped to bottom layer" msgstr "맨 아래 레이어에 맞게 절단" -#: app/dialogs/image-new-dialog.c:95 +#: ../app/dialogs/image-new-dialog.c:95 msgid "Create a New Image" msgstr "새 이미지 만들기" -#: app/dialogs/image-new-dialog.c:130 app/dialogs/preferences-dialog.c:1313 -#, fuzzy +#: ../app/dialogs/image-new-dialog.c:130 +#: ../app/dialogs/preferences-dialog.c:1313 msgid "_Template:" -msgstr "템플릿" +msgstr "템플릿(_T):" -#: app/dialogs/image-new-dialog.c:265 +#: ../app/dialogs/image-new-dialog.c:265 msgid "Confirm Image Size" msgstr "이미지 크기 확인" -#: app/dialogs/image-new-dialog.c:282 app/dialogs/image-scale-dialog.c:193 +#: ../app/dialogs/image-new-dialog.c:282 +#: ../app/dialogs/image-scale-dialog.c:193 #, c-format msgid "You are trying to create an image with a size of %s." -msgstr "" +msgstr "크기가 %s인 이미지를 만들려고 합니다." -#: app/dialogs/image-new-dialog.c:289 +#: ../app/dialogs/image-new-dialog.c:289 #, c-format msgid "" "An image of the choosen size will use more memory than what is configured as " "\"Maximum Image Size\" in the Preferences dialog (currently %s)." msgstr "" +"선택한 크기의 이미지는 기본 설정 대화 상자에서 설정한 \"최대 이미지 크기\"(현" +"재 %s)보다 많은 메모리를 요구합니다." -#: app/dialogs/image-scale-dialog.c:164 -#, fuzzy +#: ../app/dialogs/image-scale-dialog.c:164 msgid "Confirm Scaling" -msgstr "크기 조정" +msgstr "배율 조정 확인" -#: app/dialogs/image-scale-dialog.c:199 +#: ../app/dialogs/image-scale-dialog.c:199 #, c-format msgid "" "Scaling the image to the choosen size will make it use more memory than what " "is configured as \"Maximum Image Size\" in the Preferences dialog (currently " "%s)." msgstr "" +"이미지를 선택한 크기로 스케일링하면 기본 설정 대화상자에서 설정한 \"최대 이미" +"지 크기\"(현재 %s)보다 더 많은 메모리를 요구합니다." -#: app/dialogs/image-scale-dialog.c:214 -#, fuzzy +#: ../app/dialogs/image-scale-dialog.c:214 msgid "" "Scaling the image to the choosen size will shrink some layers completely " "away." msgstr "" -"선택한 이미지의 크기는 일부 레이어의 크기를 축소합니다.\n" -"그대로 하겠습니까?" +"선택한 크기로 이미지의 배율을 조정하면 일부 레이어는 완전히 없어집니다." -#: app/dialogs/image-scale-dialog.c:218 +#: ../app/dialogs/image-scale-dialog.c:218 msgid "Is this what you want to do?" -msgstr "" +msgstr "정말 이거 맞아요?" #. General -#: app/dialogs/info-dialog.c:377 app/dialogs/preferences-dialog.c:1543 -#: app/dialogs/preferences-dialog.c:1697 -#: app/widgets/gimpcontrollereditor.c:197 +#: ../app/dialogs/info-dialog.c:377 ../app/dialogs/preferences-dialog.c:1543 +#: ../app/dialogs/preferences-dialog.c:1697 +#: ../app/widgets/gimpcontrollereditor.c:197 msgid "General" msgstr "일반" -#: app/dialogs/info-window.c:83 +#: ../app/dialogs/info-window.c:83 msgid "Static Gray" msgstr "고정 회색" -#: app/dialogs/info-window.c:84 app/dialogs/info-window.c:610 +#: ../app/dialogs/info-window.c:84 ../app/dialogs/info-window.c:610 msgid "Grayscale" msgstr "그레이스케일" -#: app/dialogs/info-window.c:85 +#: ../app/dialogs/info-window.c:85 msgid "Static Color" msgstr "고정 컬러" -#: app/dialogs/info-window.c:86 +#: ../app/dialogs/info-window.c:86 msgid "Pseudo Color" msgstr "의사 색상" -#: app/dialogs/info-window.c:87 +#: ../app/dialogs/info-window.c:87 msgid "True Color" msgstr "트루 컬러" -#: app/dialogs/info-window.c:88 +#: ../app/dialogs/info-window.c:88 msgid "Direct Color" msgstr "직접 색상" -#: app/dialogs/info-window.c:131 -#, fuzzy +#: ../app/dialogs/info-window.c:131 msgid "Cursor" -msgstr "곡선" +msgstr "커서" -#: app/dialogs/info-window.c:141 app/dialogs/preferences-dialog.c:1932 -#: app/widgets/gimpgrideditor.c:267 app/widgets/gimpgrideditor.c:299 +#: ../app/dialogs/info-window.c:141 ../app/dialogs/preferences-dialog.c:1932 +#: ../app/widgets/gimpgrideditor.c:267 ../app/widgets/gimpgrideditor.c:299 msgid "Pixels" msgstr "픽셀" -#: app/dialogs/info-window.c:151 app/dialogs/info-window.c:157 -#: app/dialogs/info-window.c:173 app/dialogs/info-window.c:179 -#: app/dialogs/info-window.c:425 app/dialogs/info-window.c:426 -#: app/dialogs/info-window.c:427 app/dialogs/info-window.c:428 -#: app/widgets/gimpcolorframe.c:338 +#: ../app/dialogs/info-window.c:151 ../app/dialogs/info-window.c:157 +#: ../app/dialogs/info-window.c:173 ../app/dialogs/info-window.c:179 +#: ../app/dialogs/info-window.c:425 ../app/dialogs/info-window.c:426 +#: ../app/dialogs/info-window.c:427 ../app/dialogs/info-window.c:428 +#: ../app/widgets/gimpcolorframe.c:338 msgid "n/a" msgstr "n/a" -#: app/dialogs/info-window.c:154 app/dialogs/info-window.c:176 -#, fuzzy +#: ../app/dialogs/info-window.c:154 ../app/dialogs/info-window.c:176 msgid "X" -msgstr "X:" +msgstr "X" -#: app/dialogs/info-window.c:160 app/dialogs/info-window.c:182 -#, fuzzy +#: ../app/dialogs/info-window.c:160 ../app/dialogs/info-window.c:182 msgid "Y" -msgstr "_Y" +msgstr "Y" -#: app/dialogs/info-window.c:163 app/pdb/internal_procs.c:212 +#: ../app/dialogs/info-window.c:163 ../app/pdb/internal_procs.c:212 msgid "Units" msgstr "단위" -#: app/dialogs/info-window.c:228 -#, fuzzy +#: ../app/dialogs/info-window.c:228 msgid "Comment" -msgstr "총계:" +msgstr "설명" -#: app/dialogs/info-window.c:248 app/dialogs/info-window.c:634 -#: app/display/gimpdisplayshell-title.c:337 -#: app/display/gimpdisplayshell-title.c:349 app/widgets/gimpactiongroup.c:806 +#: ../app/dialogs/info-window.c:248 ../app/dialogs/info-window.c:634 +#: ../app/display/gimpdisplayshell-title.c:337 +#: ../app/display/gimpdisplayshell-title.c:349 +#: ../app/widgets/gimpactiongroup.c:806 msgid "(none)" msgstr "(없음)" -#: app/dialogs/info-window.c:275 +#: ../app/dialogs/info-window.c:275 msgid "Info Window" msgstr "정보 창" -#: app/dialogs/info-window.c:277 +#: ../app/dialogs/info-window.c:277 msgid "Image Information" msgstr "이미지 정보" #. add the information fields -#: app/dialogs/info-window.c:294 -#, fuzzy +#: ../app/dialogs/info-window.c:294 msgid "Pixel dimensions:" msgstr "픽셀 크기:" -#: app/dialogs/info-window.c:296 -#, fuzzy +#: ../app/dialogs/info-window.c:296 msgid "Print size:" msgstr "인쇄 크기:" -#: app/dialogs/info-window.c:298 +#: ../app/dialogs/info-window.c:298 msgid "Resolution:" msgstr "해상도:" -#: app/dialogs/info-window.c:300 -#, fuzzy +#: ../app/dialogs/info-window.c:300 msgid "Scale ratio:" msgstr "배율 조정 비율:" -#: app/dialogs/info-window.c:302 -#, fuzzy +#: ../app/dialogs/info-window.c:302 msgid "Number of layers:" msgstr "레이어 수:" -#: app/dialogs/info-window.c:304 -#, fuzzy +#: ../app/dialogs/info-window.c:304 msgid "Size in memory:" msgstr "메모리 내의 크기:" -#: app/dialogs/info-window.c:306 -#, fuzzy +#: ../app/dialogs/info-window.c:306 msgid "Display type:" msgstr "화면 표시 형식:" -#: app/dialogs/info-window.c:308 -#, fuzzy +#: ../app/dialogs/info-window.c:308 msgid "Visual class:" msgstr "비주얼 클래스:" -#: app/dialogs/info-window.c:310 -#, fuzzy +#: ../app/dialogs/info-window.c:310 msgid "Visual depth:" msgstr "비주얼 깊이:" -#: app/dialogs/info-window.c:575 +#: ../app/dialogs/info-window.c:575 #, c-format msgid "pixels/%s" msgstr "픽셀/%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 색상" -#: app/dialogs/info-window.c:614 +#: ../app/dialogs/info-window.c:614 msgid "Indexed Color" msgstr "인덱스된 색상" -#: app/dialogs/info-window.c:614 +#: ../app/dialogs/info-window.c:614 msgid "colors" msgstr "색상" -#: app/dialogs/layer-add-mask-dialog.c:64 +#: ../app/dialogs/layer-add-mask-dialog.c:64 msgid "Add a Mask to the Layer" msgstr "레이어에 마스크 더하기" -#: app/dialogs/layer-add-mask-dialog.c:86 +#: ../app/dialogs/layer-add-mask-dialog.c:86 msgid "Initialize Layer Mask to:" msgstr "레이어 마스크를 초기화 합니다:" -#: app/dialogs/layer-add-mask-dialog.c:96 +#: ../app/dialogs/layer-add-mask-dialog.c:96 msgid "In_vert Mask" msgstr "마스크 만전(_V)" -#: app/dialogs/layer-options-dialog.c:116 +#: ../app/dialogs/layer-options-dialog.c:116 msgid "Layer _Name:" msgstr "레이어 이름(_N):" #. The size labels -#: app/dialogs/layer-options-dialog.c:127 app/tools/gimpcroptool.c:1046 -#: app/tools/gimpselectionoptions.c:529 +#: ../app/dialogs/layer-options-dialog.c:127 ../app/tools/gimpcroptool.c:1046 +#: ../app/tools/gimpselectionoptions.c:529 msgid "Width:" msgstr "너비:" -#: app/dialogs/layer-options-dialog.c:133 app/tools/gimpcroptool.c:1050 -#: app/tools/gimpscaletool.c:166 app/tools/gimpselectionoptions.c:537 +#: ../app/dialogs/layer-options-dialog.c:133 ../app/tools/gimpcroptool.c:1050 +#: ../app/tools/gimpscaletool.c:166 ../app/tools/gimpselectionoptions.c:537 msgid "Height:" msgstr "높이:" -#: app/dialogs/layer-options-dialog.c:190 +#: ../app/dialogs/layer-options-dialog.c:190 msgid "Layer Fill Type" msgstr "레이어 채우기 유형" -#: app/dialogs/layer-options-dialog.c:205 +#: ../app/dialogs/layer-options-dialog.c:205 msgid "Set Name from _Text" msgstr "텍스트에서 이름 지정(_T)" -#: app/dialogs/module-dialog.c:122 +#: ../app/dialogs/module-dialog.c:122 msgid "Module Manager" msgstr "모듈 관리기" -#: app/dialogs/module-dialog.c:124 +#: ../app/dialogs/module-dialog.c:124 msgid "Manage Loadable Modules" msgstr "필요에 따라 읽어올 모듈을 관리합니다" -#: app/dialogs/module-dialog.c:168 +#: ../app/dialogs/module-dialog.c:168 msgid "Autoload" msgstr "자동으로 읽기" -#: app/dialogs/module-dialog.c:175 -#, fuzzy +#: ../app/dialogs/module-dialog.c:175 msgid "Module path" msgstr "모듈 경로" -#: app/dialogs/module-dialog.c:418 +#: ../app/dialogs/module-dialog.c:418 msgid "" msgstr "<모듈 없음>" -#: app/dialogs/module-dialog.c:430 app/dialogs/module-dialog.c:439 +#: ../app/dialogs/module-dialog.c:430 ../app/dialogs/module-dialog.c:439 msgid "On disk" msgstr "디스크에만" -#: app/dialogs/module-dialog.c:430 +#: ../app/dialogs/module-dialog.c:430 msgid "Only in memory" msgstr "메모리에만" -#: app/dialogs/module-dialog.c:439 +#: ../app/dialogs/module-dialog.c:439 msgid "No longer available" msgstr "더 이상 가용하지 않음" -#: app/dialogs/module-dialog.c:475 +#: ../app/dialogs/module-dialog.c:475 msgid "Load" msgstr "읽기" -#: app/dialogs/module-dialog.c:477 +#: ../app/dialogs/module-dialog.c:477 msgid "Query" msgstr "질의" -#: app/dialogs/module-dialog.c:484 +#: ../app/dialogs/module-dialog.c:484 msgid "Unload" msgstr "사용 안함" -#: app/dialogs/module-dialog.c:499 +#: ../app/dialogs/module-dialog.c:499 msgid "Purpose:" msgstr "목적:" -#: app/dialogs/module-dialog.c:500 +#: ../app/dialogs/module-dialog.c:500 msgid "Author:" msgstr "작성:" -#: app/dialogs/module-dialog.c:501 +#: ../app/dialogs/module-dialog.c:501 msgid "Version:" msgstr "버전:" -#: app/dialogs/module-dialog.c:502 +#: ../app/dialogs/module-dialog.c:502 msgid "Copyright:" msgstr "저작권:" -#: app/dialogs/module-dialog.c:503 +#: ../app/dialogs/module-dialog.c:503 msgid "Date:" msgstr "날짜:" -#: app/dialogs/module-dialog.c:504 +#: ../app/dialogs/module-dialog.c:504 msgid "Location:" msgstr "위치:" -#: app/dialogs/module-dialog.c:505 app/widgets/gimpcontrollereditor.c:242 +#: ../app/dialogs/module-dialog.c:505 +#: ../app/widgets/gimpcontrollereditor.c:242 msgid "State:" msgstr "상태:" -#: app/dialogs/module-dialog.c:506 +#: ../app/dialogs/module-dialog.c:506 msgid "Last Error:" msgstr "마지막 오류:" -#: app/dialogs/module-dialog.c:507 +#: ../app/dialogs/module-dialog.c:507 msgid "Available Types:" msgstr "가용한 유형:" -#: app/dialogs/offset-dialog.c:98 +#: ../app/dialogs/offset-dialog.c:98 msgid "Offset Layer" msgstr "레이어 상대 위치" -#: app/dialogs/offset-dialog.c:100 +#: ../app/dialogs/offset-dialog.c:100 msgid "Offset Layer Mask" msgstr "레이어 마스크 상대 위치" -#: app/dialogs/offset-dialog.c:102 +#: ../app/dialogs/offset-dialog.c:102 msgid "Offset Channel" msgstr "채널 상대 위치" #. The offset frame -#: app/dialogs/offset-dialog.c:108 app/dialogs/offset-dialog.c:136 -#: app/dialogs/resize-dialog.c:185 app/widgets/gimpgrideditor.c:274 +#: ../app/dialogs/offset-dialog.c:108 ../app/dialogs/offset-dialog.c:136 +#: ../app/dialogs/resize-dialog.c:185 ../app/widgets/gimpgrideditor.c:274 msgid "Offset" msgstr "옵셋" -#: app/dialogs/offset-dialog.c:168 app/dialogs/resize-dialog.c:214 +#: ../app/dialogs/offset-dialog.c:168 ../app/dialogs/resize-dialog.c:214 msgid "_X:" msgstr "_X:" -#: app/dialogs/offset-dialog.c:170 app/dialogs/resize-dialog.c:215 +#: ../app/dialogs/offset-dialog.c:170 ../app/dialogs/resize-dialog.c:215 msgid "_Y:" msgstr "_Y:" -#: app/dialogs/offset-dialog.c:197 -#, fuzzy +#: ../app/dialogs/offset-dialog.c:197 msgid "Offset by x/_2, y/2" msgstr "(x/_2),(y/2) 만큼의 옵셋" #. The edge behaviour frame -#: app/dialogs/offset-dialog.c:206 -#, fuzzy +#: ../app/dialogs/offset-dialog.c:206 msgid "Edge Behaviour" -msgstr "대화상자 동작" +msgstr "모서리 동작" -#: app/dialogs/offset-dialog.c:210 -#, fuzzy +#: ../app/dialogs/offset-dialog.c:210 msgid "_Wrap around" -msgstr "배경(_B)" +msgstr "반대 쪽으로(_W)" -#: app/dialogs/offset-dialog.c:213 -#, fuzzy +#: ../app/dialogs/offset-dialog.c:213 msgid "Fill with _background color" -msgstr "배경색 편집" +msgstr "배경색으로 채움(_B)" -#: app/dialogs/offset-dialog.c:216 -#, fuzzy +#: ../app/dialogs/offset-dialog.c:216 msgid "Make _transparent" -msgstr "투명(_T)" +msgstr "투명으로 만듦(_T)" -#: app/dialogs/palette-import-dialog.c:171 +#: ../app/dialogs/palette-import-dialog.c:171 msgid "Import Palette" msgstr "색상표 가져오기" -#: app/dialogs/palette-import-dialog.c:173 +#: ../app/dialogs/palette-import-dialog.c:173 msgid "Import a New Palette" msgstr "새 색상표 가져오기" -#: app/dialogs/palette-import-dialog.c:179 +#: ../app/dialogs/palette-import-dialog.c:179 msgid "_Import" msgstr "가져오기(_I)" #. The "Source" frame -#: app/dialogs/palette-import-dialog.c:208 +#: ../app/dialogs/palette-import-dialog.c:208 msgid "Select Source" msgstr "원본 선택" -#: app/dialogs/palette-import-dialog.c:231 +#: ../app/dialogs/palette-import-dialog.c:231 msgid "I_mage" msgstr "이미지(_M)" -#: app/dialogs/palette-import-dialog.c:246 -#, fuzzy +#: ../app/dialogs/palette-import-dialog.c:246 msgid "Palette _file" -msgstr "색상표 폴더" +msgstr "색상표 파일(_F)" -#: app/dialogs/palette-import-dialog.c:273 -#, fuzzy +#: ../app/dialogs/palette-import-dialog.c:273 msgid "Select palette file" -msgstr "색상표 폴더 선택" +msgstr "색상표 파일 선택" #. The "Import" frame -#: app/dialogs/palette-import-dialog.c:304 +#: ../app/dialogs/palette-import-dialog.c:304 msgid "Import Options" msgstr "가져오기 선택사항" -#: app/dialogs/palette-import-dialog.c:317 -#, fuzzy +#: ../app/dialogs/palette-import-dialog.c:317 msgid "New import" msgstr "새로 가져오기" -#: app/dialogs/palette-import-dialog.c:319 +#: ../app/dialogs/palette-import-dialog.c:319 msgid "Palette _Name:" msgstr "색상표 이름(_N):" -#: app/dialogs/palette-import-dialog.c:325 -#, fuzzy +#: ../app/dialogs/palette-import-dialog.c:325 msgid "N_umber of colors:" msgstr "색상 수(_U):" -#: app/dialogs/palette-import-dialog.c:338 +#: ../app/dialogs/palette-import-dialog.c:338 msgid "C_olumns:" msgstr "열(_O):" -#: app/dialogs/palette-import-dialog.c:350 +#: ../app/dialogs/palette-import-dialog.c:350 msgid "I_nterval:" msgstr "간격(_N):" #. The "Preview" frame -#: app/dialogs/palette-import-dialog.c:362 +#: ../app/dialogs/palette-import-dialog.c:362 msgid "Preview" msgstr "미리보기" -#: app/dialogs/preferences-dialog.c:294 +#: ../app/dialogs/preferences-dialog.c:294 msgid "You will have to restart GIMP for the following changes to take effect:" msgstr "바꾼 내용을 반영하려면, 김프를 다시 시작해야 합니다:" -#: app/dialogs/preferences-dialog.c:501 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:501 msgid "Configure Keyboard Shortcuts" -msgstr "키보드 단축키" +msgstr "키보드 단축키 설정" -#: app/dialogs/preferences-dialog.c:551 +#: ../app/dialogs/preferences-dialog.c:551 msgid "" "To edit a shortcut key, click on the corresponding row and type a new " "accelerator, or press backspace to clear." msgstr "" +"단축키를 편집하려면, 해당 줄을 클릭하고 새 단축키를 입력하거나, backspace를 " +"눌러 지우세요." -#: app/dialogs/preferences-dialog.c:595 +#: ../app/dialogs/preferences-dialog.c:595 msgid "" "Your keyboard shortcuts will be reset to default values the next time you " "start GIMP." -msgstr "" +msgstr "다음에 김프를 시작할 때 키보드 설정을 기본값으로 초기화 합니다." -#: app/dialogs/preferences-dialog.c:629 +#: ../app/dialogs/preferences-dialog.c:629 msgid "" "Your window setup will be reset to default values the next time you start " "GIMP." -msgstr "" +msgstr "창 설정은 다음에 GIMP를 시작할 때 기본 값으로 초기화 됩니다." -#: app/dialogs/preferences-dialog.c:663 +#: ../app/dialogs/preferences-dialog.c:663 msgid "" "Your input device settings will be reset to default values the next time you " "start GIMP." -msgstr "" +msgstr "입력 장치 설정은 다음에 김프를 시작할 때 기본 값으로 초기화 됩니다." -#: app/dialogs/preferences-dialog.c:1082 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1082 msgid "Show _menubar" msgstr "메뉴표시줄 표시(_M)" -#: app/dialogs/preferences-dialog.c:1085 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1085 msgid "Show _rulers" msgstr "눈금자 표시(_R)" -#: app/dialogs/preferences-dialog.c:1088 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1088 msgid "Show scroll_bars" msgstr "스크롤 막대 표시(_B)" -#: app/dialogs/preferences-dialog.c:1091 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1091 msgid "Show s_tatusbar" msgstr "상태표시줄 표시(_T)" -#: app/dialogs/preferences-dialog.c:1099 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1099 msgid "Show s_election" msgstr "선택 표시(_E)" -#: app/dialogs/preferences-dialog.c:1102 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1102 msgid "Show _layer boundary" msgstr "레이어 경계 표시(_L)" -#: app/dialogs/preferences-dialog.c:1105 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1105 msgid "Show _guides" msgstr "안내선 표시(_G)" -#: app/dialogs/preferences-dialog.c:1108 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1108 msgid "Show gri_d" msgstr "모눈 표시(_D)" -#: app/dialogs/preferences-dialog.c:1114 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1114 msgid "Canvas _padding mode:" -msgstr "캔버스 채우기 방법:" +msgstr "캔버스 메우기 방법(_P):" -#: app/dialogs/preferences-dialog.c:1119 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1119 msgid "Custom p_adding color:" -msgstr "사용자 채우기 색상:" +msgstr "사용자 메우기 색상(_A):" -#: app/dialogs/preferences-dialog.c:1120 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1120 msgid "Select custom canvas padding color" -msgstr "사용자 캔버스 채우기 색상 선택" +msgstr "사용자 캔버스 메우기 색상 선택" -#: app/dialogs/preferences-dialog.c:1191 +#: ../app/dialogs/preferences-dialog.c:1191 msgid "Preferences" msgstr "기본 설정" -#: app/dialogs/preferences-dialog.c:1294 app/dialogs/preferences-dialog.c:1297 +#: ../app/dialogs/preferences-dialog.c:1294 +#: ../app/dialogs/preferences-dialog.c:1297 msgid "New Image" msgstr "새 이미지" -#: app/dialogs/preferences-dialog.c:1335 +#: ../app/dialogs/preferences-dialog.c:1335 msgid "Default Image Grid" msgstr "기본 이미지 모눈:" -#: app/dialogs/preferences-dialog.c:1338 +#: ../app/dialogs/preferences-dialog.c:1338 msgid "Default Grid" msgstr "기본 모눈" -#: app/dialogs/preferences-dialog.c:1358 +#: ../app/dialogs/preferences-dialog.c:1358 msgid "User Interface" msgstr "사용자 인터페이스" -#: app/dialogs/preferences-dialog.c:1361 +#: ../app/dialogs/preferences-dialog.c:1361 msgid "Interface" msgstr "인터페이스" #. Previews -#: app/dialogs/preferences-dialog.c:1368 +#: ../app/dialogs/preferences-dialog.c:1368 msgid "Previews" msgstr "미리보기" -#: app/dialogs/preferences-dialog.c:1371 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1371 msgid "_Enable layer & channel previews" msgstr "레이어와 채널 미리보기 사용(_E)" -#: app/dialogs/preferences-dialog.c:1377 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1377 msgid "Default _layer & channel preview size:" msgstr "기본 레이어와 채널 미리보기 크기(_L):" -#: app/dialogs/preferences-dialog.c:1380 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1380 msgid "Na_vigation preview size:" -msgstr "네비게이터 미리보기 크기(_N):" +msgstr "네비게이터 미리보기 크기(_V):" #. Keyboard Shortcuts -#: app/dialogs/preferences-dialog.c:1384 +#: ../app/dialogs/preferences-dialog.c:1384 msgid "Keyboard Shortcuts" msgstr "키보드 단축키" -#: app/dialogs/preferences-dialog.c:1388 +#: ../app/dialogs/preferences-dialog.c:1388 msgid "Show menu _mnemonics (access keys)" -msgstr "" +msgstr "메뉴 바로가기(접근 키) 표시(_M)" -#: app/dialogs/preferences-dialog.c:1391 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1391 msgid "Use _dynamic keyboard shortcuts" -msgstr "동적인 키보드 단축키(_K)" +msgstr "동적인 키보드 단축키(_D)" -#: app/dialogs/preferences-dialog.c:1395 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1395 msgid "Configure _Keyboard Shortcuts..." -msgstr "키보드 단축키" +msgstr "키보드 단축키 설정(_K)..." -#: app/dialogs/preferences-dialog.c:1402 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1402 msgid "_Save keyboard shortcuts on exit" -msgstr "마칠 때 키보드 단축키 저장" +msgstr "마칠 때 키보드 단축키 저장(_S)" -#: app/dialogs/preferences-dialog.c:1406 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1406 msgid "Save Keyboard Shortcuts _Now" -msgstr "키보드 단축키 지금 저장" +msgstr "키보드 단축키 지금 저장(_N)" -#: app/dialogs/preferences-dialog.c:1413 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1413 msgid "_Reset Saved Keyboard Shortcuts to Default Values" -msgstr "저장된 키보드 단축키 시작할 때 복원" +msgstr "저장된 키보드 단축키 기본 값으로 복원(_R)" -#: app/dialogs/preferences-dialog.c:1428 app/dialogs/preferences-dialog.c:1431 -#: app/dialogs/preferences-dialog.c:1467 +#: ../app/dialogs/preferences-dialog.c:1428 +#: ../app/dialogs/preferences-dialog.c:1431 +#: ../app/dialogs/preferences-dialog.c:1467 msgid "Theme" msgstr "테마" -#: app/dialogs/preferences-dialog.c:1437 +#: ../app/dialogs/preferences-dialog.c:1437 msgid "Select Theme" msgstr "테마 선택" -#: app/dialogs/preferences-dialog.c:1519 +#: ../app/dialogs/preferences-dialog.c:1519 msgid "Reload C_urrent Theme" msgstr "현재 테마 다시 불러오기(_U)" -#: app/dialogs/preferences-dialog.c:1531 app/dialogs/preferences-dialog.c:1534 +#: ../app/dialogs/preferences-dialog.c:1531 +#: ../app/dialogs/preferences-dialog.c:1534 msgid "Help System" msgstr "도움말 시스템" -#: app/dialogs/preferences-dialog.c:1546 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1546 msgid "Show tool _tips" msgstr "풍선도움말 보여주기(_T)" -#: app/dialogs/preferences-dialog.c:1549 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1549 msgid "Show help _buttons" -msgstr "선택 표시(_E)" +msgstr "도움말 단추 표시(_B)" -#: app/dialogs/preferences-dialog.c:1552 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1552 msgid "Show tips on _startup" msgstr "시작할 때 팁 표시(_S)" #. Help Browser -#: app/dialogs/preferences-dialog.c:1556 +#: ../app/dialogs/preferences-dialog.c:1556 msgid "Help Browser" msgstr "도움말 브라우저" -#: app/dialogs/preferences-dialog.c:1560 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1560 msgid "H_elp browser to use:" -msgstr "사용할 도움말 브라우저(_B):" +msgstr "사용할 도움말 브라우저(_E):" -#: app/dialogs/preferences-dialog.c:1565 +#: ../app/dialogs/preferences-dialog.c:1565 msgid "Web Browser" msgstr "웹 브라우저" -#: app/dialogs/preferences-dialog.c:1569 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1569 msgid "Select web browser" msgstr "웹 브라우저 선택" -#: app/dialogs/preferences-dialog.c:1572 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1572 msgid "_Web browser to use:" -msgstr "사용할 웹 브라우저:" +msgstr "사용할 웹 브라우저(_W):" #. Snapping Distance -#: app/dialogs/preferences-dialog.c:1597 +#: ../app/dialogs/preferences-dialog.c:1597 msgid "Guide and Grid Snapping" msgstr "안내선과 모눈으로 당겨 맞추기" -#: app/dialogs/preferences-dialog.c:1602 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1602 msgid "_Snap distance:" msgstr "당겨 맞출 거리(_S):" #. Contiguous Regions -#: app/dialogs/preferences-dialog.c:1606 +#: ../app/dialogs/preferences-dialog.c:1606 msgid "Finding Contiguous Regions" msgstr "연속된 영역 찾기" -#: app/dialogs/preferences-dialog.c:1611 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1611 msgid "Default _threshold:" msgstr "기본 임계값(_Threshold):" #. Scaling -#: app/dialogs/preferences-dialog.c:1615 +#: ../app/dialogs/preferences-dialog.c:1615 msgid "Scaling" -msgstr "크기 조정" +msgstr "배율 조정" -#: app/dialogs/preferences-dialog.c:1619 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1619 msgid "Default _interpolation:" msgstr "기본 보간법(_I):" #. Global Brush, Pattern, ... -#: app/dialogs/preferences-dialog.c:1623 +#: ../app/dialogs/preferences-dialog.c:1623 msgid "Paint Options Shared Between Tools" msgstr "그리기 도구 공통 선택사항 " -#: app/dialogs/preferences-dialog.c:1636 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1636 msgid "Move Tool" -msgstr "이동: " +msgstr "이동 도구" -#: app/dialogs/preferences-dialog.c:1640 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1640 msgid "Change current layer or path" -msgstr "현재 레이어만" +msgstr "현재 레이어나 경로 바꾸기" -#: app/dialogs/preferences-dialog.c:1653 app/dialogs/preferences-dialog.c:1656 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1653 +#: ../app/dialogs/preferences-dialog.c:1656 msgid "Toolbox" -msgstr "도구상자 메뉴" +msgstr "도구상자" #. Appearance -#: app/dialogs/preferences-dialog.c:1663 app/dialogs/preferences-dialog.c:1760 -#: app/widgets/gimpgrideditor.c:206 +#: ../app/dialogs/preferences-dialog.c:1663 +#: ../app/dialogs/preferences-dialog.c:1760 +#: ../app/widgets/gimpgrideditor.c:206 msgid "Appearance" msgstr "외양" -#: app/dialogs/preferences-dialog.c:1667 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1667 msgid "Show _foreground & background color" -msgstr "배경색 지정" +msgstr "전경색과 배경색 표시(_F)" -#: app/dialogs/preferences-dialog.c:1671 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1671 msgid "Show active _brush, pattern & gradient" -msgstr "/대화상자(D)/새 독 만들기(K)/브러시, 무늬, 그라디언트(_B)" +msgstr "현재 브러시, 무늬, 그라디언트 표시(_B)" -#: app/dialogs/preferences-dialog.c:1675 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1675 msgid "Show active _image" -msgstr "/자동으로 현재 이미지 따라가기(_I)" +msgstr "현재 이미지 표시(_I)" -#: app/dialogs/preferences-dialog.c:1685 app/dialogs/preferences-dialog.c:1688 +#: ../app/dialogs/preferences-dialog.c:1685 +#: ../app/dialogs/preferences-dialog.c:1688 msgid "Image Windows" msgstr "이미지 창" -#: app/dialogs/preferences-dialog.c:1700 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1700 msgid "Use \"_Dot for dot\" by default" msgstr "기본으로 \"점 대 점\" 사용(_D)" -#: app/dialogs/preferences-dialog.c:1706 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1706 msgid "Marching _ants speed:" msgstr "선택 점선 속도(_A):" #. Zoom & Resize Behavior -#: app/dialogs/preferences-dialog.c:1710 +#: ../app/dialogs/preferences-dialog.c:1710 msgid "Zoom & Resize Behavior" msgstr "확대와 크기 조정 동작" -#: app/dialogs/preferences-dialog.c:1714 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1714 msgid "Resize window on _zoom" msgstr "확대시 창 크기 조정(_Z)" -#: app/dialogs/preferences-dialog.c:1717 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1717 msgid "Resize window on image _size change" -msgstr "이미지 크기 바꿀 때 창 크기 조정" +msgstr "이미지 크기 바꿀 때 창 크기 조정(_S)" -#: app/dialogs/preferences-dialog.c:1723 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1723 msgid "Fit to window" msgstr "창에 맞게" -#: app/dialogs/preferences-dialog.c:1725 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1725 msgid "Initial zoom _ratio:" -msgstr "초기 확대 배율:" +msgstr "초기 확대 배율(_R):" #. Mouse Cursors -#: app/dialogs/preferences-dialog.c:1729 +#: ../app/dialogs/preferences-dialog.c:1729 msgid "Mouse Cursors" -msgstr "" +msgstr "마우스 커서" -#: app/dialogs/preferences-dialog.c:1733 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1733 msgid "Show _brush outline" msgstr "브러시 윤곽 표시(_B)" -#: app/dialogs/preferences-dialog.c:1736 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1736 msgid "Show paint _tool cursor" -msgstr "풍선도움말 보여주기(_T)" +msgstr "그리고 도구 커서 표시(_T)" -#: app/dialogs/preferences-dialog.c:1742 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1742 msgid "Cursor _mode:" -msgstr "커서 모양(_O):" +msgstr "커서 모드(_M):" -#: app/dialogs/preferences-dialog.c:1745 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1745 msgid "Cursor re_ndering:" -msgstr "커서 모양(_O):" +msgstr "커서 렌더링(_N):" -#: app/dialogs/preferences-dialog.c:1757 +#: ../app/dialogs/preferences-dialog.c:1757 msgid "Image Window Appearance" msgstr "이미지 창 모양" -#: app/dialogs/preferences-dialog.c:1768 +#: ../app/dialogs/preferences-dialog.c:1768 msgid "Default Appearance in Normal Mode" msgstr "보통 상태의 기본 모양" -#: app/dialogs/preferences-dialog.c:1773 +#: ../app/dialogs/preferences-dialog.c:1773 msgid "Default Appearance in Fullscreen Mode" msgstr "전체 화면 상태의 기본 모양" -#: app/dialogs/preferences-dialog.c:1782 +#: ../app/dialogs/preferences-dialog.c:1782 msgid "Image Title & Statusbar Format" msgstr "이미지 제목과 상태표시줄 형식" -#: app/dialogs/preferences-dialog.c:1785 +#: ../app/dialogs/preferences-dialog.c:1785 msgid "Title & Status" msgstr "제목과 상태" -#: app/dialogs/preferences-dialog.c:1805 +#: ../app/dialogs/preferences-dialog.c:1805 msgid "Standard" msgstr "표준" -#: app/dialogs/preferences-dialog.c:1806 +#: ../app/dialogs/preferences-dialog.c:1806 msgid "Show zoom percentage" msgstr "확대 백분율 표시" -#: app/dialogs/preferences-dialog.c:1807 +#: ../app/dialogs/preferences-dialog.c:1807 msgid "Show zoom ratio" msgstr "확대 배율 표시" -#: app/dialogs/preferences-dialog.c:1808 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1808 msgid "Show image size" -msgstr "/이미지 메뉴 표시(_M)" +msgstr "이미지 크기 표시" -#: app/dialogs/preferences-dialog.c:1809 +#: ../app/dialogs/preferences-dialog.c:1809 msgid "Show memory usage" msgstr "메모리 사용량 표시" -#: app/dialogs/preferences-dialog.c:1820 +#: ../app/dialogs/preferences-dialog.c:1820 msgid "Image Title Format" msgstr "이미지 제목 형식" -#: app/dialogs/preferences-dialog.c:1821 +#: ../app/dialogs/preferences-dialog.c:1821 msgid "Image Statusbar Format" msgstr "이미지 상태표시줄 형식" -#: app/dialogs/preferences-dialog.c:1906 app/dialogs/preferences-dialog.c:1909 +#: ../app/dialogs/preferences-dialog.c:1906 +#: ../app/dialogs/preferences-dialog.c:1909 msgid "Display" msgstr "표시" -#: app/dialogs/preferences-dialog.c:1922 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1922 msgid "Transparency _type:" msgstr "투명 표시 방법(_T):" -#: app/dialogs/preferences-dialog.c:1925 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1925 msgid "Check _size:" msgstr "격자 크기(_S):" -#: app/dialogs/preferences-dialog.c:1928 +#: ../app/dialogs/preferences-dialog.c:1928 msgid "Get Monitor Resolution" msgstr "모니터 해상도 얻기" -#: app/dialogs/preferences-dialog.c:1970 -#, fuzzy, c-format +#: ../app/dialogs/preferences-dialog.c:1970 +#, c-format msgid "From _windowing system (currently %d x %d dpi)" msgstr "윈도 시스템의 해상도 얻기(현재 %d x %d dpi)" -#: app/dialogs/preferences-dialog.c:1993 +#: ../app/dialogs/preferences-dialog.c:1993 msgid "_Manually" msgstr "수동(_M)" -#: app/dialogs/preferences-dialog.c:2008 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2008 msgid "C_alibrate..." -msgstr "측정(_A)" +msgstr "측정(_A)..." -#: app/dialogs/preferences-dialog.c:2028 app/dialogs/preferences-dialog.c:2031 +#: ../app/dialogs/preferences-dialog.c:2028 +#: ../app/dialogs/preferences-dialog.c:2031 msgid "Input Devices" msgstr "입력 장치" #. Extended Input Devices -#: app/dialogs/preferences-dialog.c:2038 +#: ../app/dialogs/preferences-dialog.c:2038 msgid "Extended Input Devices" msgstr "확장 입력 장치" -#: app/dialogs/preferences-dialog.c:2042 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2042 msgid "Configure E_xtended Input Devices..." -msgstr "확장 입력 장치 설정" +msgstr "확장 입력 장치 설정(_X)..." -#: app/dialogs/preferences-dialog.c:2049 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2049 msgid "_Save input device settings on exit" -msgstr "마칠 때 장치 상태 저장" +msgstr "마칠 때 입력 장치 설정 저장(_S)" -#: app/dialogs/preferences-dialog.c:2053 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2053 msgid "Save Input Device Settings _Now" -msgstr "장치 상태 지금 저장" +msgstr "입력 장치 설정 지금 저장(_N)" -#: app/dialogs/preferences-dialog.c:2060 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2060 msgid "_Reset Saved Input Device Settings to Default Values" -msgstr "저장된 장치 상태 지금 지우기" +msgstr "저장된 입력 장치 설정을 기본 값으로 초기화(_R)" -#: app/dialogs/preferences-dialog.c:2075 +#: ../app/dialogs/preferences-dialog.c:2075 msgid "Additional Input Controllers" -msgstr "" +msgstr "추가적인 입력 제어기" -#: app/dialogs/preferences-dialog.c:2078 +#: ../app/dialogs/preferences-dialog.c:2078 msgid "Input Controllers" -msgstr "" +msgstr "입력 제어기" -#: app/dialogs/preferences-dialog.c:2119 app/dialogs/preferences-dialog.c:2122 +#: ../app/dialogs/preferences-dialog.c:2119 +#: ../app/dialogs/preferences-dialog.c:2122 msgid "Window Management" msgstr "창 관리" -#: app/dialogs/preferences-dialog.c:2128 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2128 msgid "Window Manager Hints" -msgstr "창 관리" +msgstr "창 관리자 힌트" -#: app/dialogs/preferences-dialog.c:2134 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2134 msgid "Hint for the _toolbox:" msgstr "도구상자의 창 유형 힌트(_T):" -#: app/dialogs/preferences-dialog.c:2138 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2138 msgid "Hint for the _docks:" msgstr "독(Dock)의 창 유형 힌트(_D):" -#: app/dialogs/preferences-dialog.c:2141 +#: ../app/dialogs/preferences-dialog.c:2141 msgid "Focus" -msgstr "초점" +msgstr "포커스" -#: app/dialogs/preferences-dialog.c:2145 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2145 msgid "Activate the _focused image" -msgstr "초점있는 이미지 활성화(_F)" +msgstr "포커스된 이미지 활성화(_F)" #. Window Positions -#: app/dialogs/preferences-dialog.c:2149 +#: ../app/dialogs/preferences-dialog.c:2149 msgid "Window Positions" msgstr "창 위치" -#: app/dialogs/preferences-dialog.c:2152 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2152 msgid "_Save window positions on exit" msgstr "마칠 때 창 위치 저장(_S)" -#: app/dialogs/preferences-dialog.c:2156 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2156 msgid "Save Window Positions _Now" -msgstr "창 위치 지금 저장" +msgstr "창 위치 지금 저장(_N)" -#: app/dialogs/preferences-dialog.c:2163 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2163 msgid "_Reset Saved Window Positions to Default Values" -msgstr "시작할 때 저장된 창 위치 복원(_E)" +msgstr "저장된 창 위치를 기본 값으로 초기화(_R)" -#: app/dialogs/preferences-dialog.c:2178 app/dialogs/preferences-dialog.c:2181 -#: app/dialogs/preferences-dialog.c:2329 +#: ../app/dialogs/preferences-dialog.c:2178 +#: ../app/dialogs/preferences-dialog.c:2181 +#: ../app/dialogs/preferences-dialog.c:2329 msgid "Environment" msgstr "환경" -#: app/dialogs/preferences-dialog.c:2189 +#: ../app/dialogs/preferences-dialog.c:2189 msgid "Resource Consumption" msgstr "자원 소비량" -#: app/dialogs/preferences-dialog.c:2199 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2199 msgid "Minimal number of _undo levels:" -msgstr "최소 실행 취소 횟수:" +msgstr "최소 실행 취소 횟수(_U):" -#: app/dialogs/preferences-dialog.c:2202 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2202 msgid "Maximum undo _memory:" -msgstr "최대 실행 취소 메모리:" +msgstr "최대 실행 취소 메모리(_M):" -#: app/dialogs/preferences-dialog.c:2205 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2205 msgid "Tile cache _size:" -msgstr "타일 캐쉬 크기:" +msgstr "타일 캐쉬 크기(_S):" -#: app/dialogs/preferences-dialog.c:2208 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2208 msgid "Maximum _new image size:" -msgstr "새 이미지 최대 크기:" +msgstr "새 이미지 최대 크기(_N):" -#: app/dialogs/preferences-dialog.c:2213 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2213 msgid "Number of _processors to use:" -msgstr "사용할 프로세서 갯수:" +msgstr "사용할 프로세서 갯수(_P):" #. Image Thumbnails -#: app/dialogs/preferences-dialog.c:2218 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2218 msgid "Image Thumbnails" msgstr "이미지 마스크" -#: app/dialogs/preferences-dialog.c:2223 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2223 msgid "Size of _thumbnails:" -msgstr "썸네일 파일 크기:" +msgstr "썸네일 파일 크기(_T):" -#: app/dialogs/preferences-dialog.c:2227 +#: ../app/dialogs/preferences-dialog.c:2227 msgid "Maximum _filesize for thumbnailing:" -msgstr "" +msgstr "썸네일을 위한 최대 파일 크기(_F):" #. File Saving -#: app/dialogs/preferences-dialog.c:2231 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2231 msgid "Saving Images" msgstr "이미지 저장" -#: app/dialogs/preferences-dialog.c:2234 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2234 msgid "Confirm closing of unsa_ved images" -msgstr "저장안한 이미지를 닫을 때 확인" +msgstr "저장안한 이미지를 닫을 때 확인(_V)" -#: app/dialogs/preferences-dialog.c:2245 app/dialogs/preferences-dialog.c:2248 +#: ../app/dialogs/preferences-dialog.c:2245 +#: ../app/dialogs/preferences-dialog.c:2248 msgid "Folders" msgstr "폴더" -#: app/dialogs/preferences-dialog.c:2263 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2263 msgid "Temp folder:" -msgstr "임시 디렉토리:" +msgstr "임시 폴더:" -#: app/dialogs/preferences-dialog.c:2263 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2263 msgid "Select Temp Folder" -msgstr "테마 폴더 선택" +msgstr "임시 폴더 선택" -#: app/dialogs/preferences-dialog.c:2264 -#: app/dialogs/user-install-dialog.c:1403 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2264 +#: ../app/dialogs/user-install-dialog.c:1403 msgid "Swap folder:" msgstr "스왑 폴더:" -#: app/dialogs/preferences-dialog.c:2264 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2264 msgid "Select Swap Folder" -msgstr "스왑 디렉토리 선택" +msgstr "스왑 폴더 선택" -#: app/dialogs/preferences-dialog.c:2297 +#: ../app/dialogs/preferences-dialog.c:2297 msgid "Brush Folders" msgstr "브러시 폴더" -#: app/dialogs/preferences-dialog.c:2299 +#: ../app/dialogs/preferences-dialog.c:2299 msgid "Select Brush Folders" msgstr "브러시 폴더 선택" -#: app/dialogs/preferences-dialog.c:2301 +#: ../app/dialogs/preferences-dialog.c:2301 msgid "Pattern Folders" msgstr "무늬 폴더" -#: app/dialogs/preferences-dialog.c:2303 +#: ../app/dialogs/preferences-dialog.c:2303 msgid "Select Pattern Folders" msgstr "무늬 폴더 선택" -#: app/dialogs/preferences-dialog.c:2305 +#: ../app/dialogs/preferences-dialog.c:2305 msgid "Palette Folders" msgstr "색상표 폴더" -#: app/dialogs/preferences-dialog.c:2307 +#: ../app/dialogs/preferences-dialog.c:2307 msgid "Select Palette Folders" msgstr "색상표 폴더 선택" -#: app/dialogs/preferences-dialog.c:2309 +#: ../app/dialogs/preferences-dialog.c:2309 msgid "Gradient Folders" msgstr "그라디언트 폴더" -#: app/dialogs/preferences-dialog.c:2311 +#: ../app/dialogs/preferences-dialog.c:2311 msgid "Select Gradient Folders" msgstr "그라디언트 폴더 선택" -#: app/dialogs/preferences-dialog.c:2313 +#: ../app/dialogs/preferences-dialog.c:2313 msgid "Font Folders" msgstr "글꼴 폴더" -#: app/dialogs/preferences-dialog.c:2315 +#: ../app/dialogs/preferences-dialog.c:2315 msgid "Select Font Folders" msgstr "글꼴 폴더 선택" -#: app/dialogs/preferences-dialog.c:2317 +#: ../app/dialogs/preferences-dialog.c:2317 msgid "Plug-In Folders" msgstr "플러그인 폴더" -#: app/dialogs/preferences-dialog.c:2319 +#: ../app/dialogs/preferences-dialog.c:2319 msgid "Select Plug-In Folders" msgstr "플러그인 폴더 선택" -#: app/dialogs/preferences-dialog.c:2321 +#: ../app/dialogs/preferences-dialog.c:2321 msgid "Scripts" msgstr "스크립트" -#: app/dialogs/preferences-dialog.c:2321 +#: ../app/dialogs/preferences-dialog.c:2321 msgid "Script-Fu Folders" msgstr "Script-Fu 폴더" -#: app/dialogs/preferences-dialog.c:2323 +#: ../app/dialogs/preferences-dialog.c:2323 msgid "Select Script-Fu Folders" msgstr "Script-Fu 폴더 선택" -#: app/dialogs/preferences-dialog.c:2325 +#: ../app/dialogs/preferences-dialog.c:2325 msgid "Module Folders" msgstr "모듈 폴더" -#: app/dialogs/preferences-dialog.c:2327 +#: ../app/dialogs/preferences-dialog.c:2327 msgid "Select Module Folders" msgstr "모듈 폴더 선택" -#: app/dialogs/preferences-dialog.c:2329 +#: ../app/dialogs/preferences-dialog.c:2329 msgid "Environment Folders" msgstr "환경 폴더" -#: app/dialogs/preferences-dialog.c:2331 +#: ../app/dialogs/preferences-dialog.c:2331 msgid "Select Environment Folders" msgstr "환경 폴더 선택" -#: app/dialogs/preferences-dialog.c:2333 +#: ../app/dialogs/preferences-dialog.c:2333 msgid "Themes" msgstr "테마" -#: app/dialogs/preferences-dialog.c:2333 +#: ../app/dialogs/preferences-dialog.c:2333 msgid "Theme Folders" msgstr "테마 폴더" -#: app/dialogs/preferences-dialog.c:2335 +#: ../app/dialogs/preferences-dialog.c:2335 msgid "Select Theme Folders" msgstr "테마 폴더 선택" -#: app/dialogs/print-size-dialog.c:128 -#, fuzzy +#: ../app/dialogs/print-size-dialog.c:128 msgid "Print Size" -msgstr "인쇄 크기:" +msgstr "인쇄 크기" #. the image size labels -#: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:223 -#: app/widgets/gimptemplateeditor.c:236 -#, fuzzy +#: ../app/dialogs/print-size-dialog.c:155 ../app/widgets/gimpsizebox.c:223 +#: ../app/widgets/gimptemplateeditor.c:236 msgid "_Width:" -msgstr "너비:" +msgstr "너비(_W):" -#: app/dialogs/print-size-dialog.c:162 app/widgets/gimpsizebox.c:227 -#: app/widgets/gimptemplateeditor.c:243 -#, fuzzy +#: ../app/dialogs/print-size-dialog.c:162 ../app/widgets/gimpsizebox.c:227 +#: ../app/widgets/gimptemplateeditor.c:243 msgid "H_eight:" -msgstr "높이:" +msgstr "높이(_E):" #. the resolution labels -#: app/dialogs/print-size-dialog.c:210 app/widgets/gimpsizebox.c:276 -#: app/widgets/gimptemplateeditor.c:363 -#, fuzzy +#: ../app/dialogs/print-size-dialog.c:210 ../app/widgets/gimpsizebox.c:276 +#: ../app/widgets/gimptemplateeditor.c:363 msgid "_X resolution:" -msgstr "해상도:" +msgstr "_X 해상도:" -#: app/dialogs/print-size-dialog.c:217 app/widgets/gimpsizebox.c:279 -#: app/widgets/gimptemplateeditor.c:370 -#, fuzzy +#: ../app/dialogs/print-size-dialog.c:217 ../app/widgets/gimpsizebox.c:279 +#: ../app/widgets/gimptemplateeditor.c:370 msgid "_Y resolution:" -msgstr "해상도:" +msgstr "_Y 해상도:" -#: 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 "픽셀/%a" -#: app/dialogs/quit-dialog.c:84 -#, fuzzy +#: ../app/dialogs/quit-dialog.c:84 msgid "Quit The GIMP" msgstr "김프를 마치겠습니까?" -#: app/dialogs/quit-dialog.c:126 -#, fuzzy +#: ../app/dialogs/quit-dialog.c:126 msgid "If you quit GIMP now, these changes will be lost." -msgstr "저장하지 않은 바뀐 내용을 잃게 됩니다." +msgstr "지금 김프를 마치면, 이 내용들을 잃게 됩니다." -#: app/dialogs/quit-dialog.c:164 -#, fuzzy +#: ../app/dialogs/quit-dialog.c:164 msgid "There is one image with unsaved changes:" -msgstr "이미지 크기 바꿀 때 창 크기 조정" +msgstr "한 개의 이미지를 고치고 저장하지 않았습니다:" -#: app/dialogs/quit-dialog.c:167 +#: ../app/dialogs/quit-dialog.c:167 #, c-format msgid "There are %d images with unsaved changes:" -msgstr "" +msgstr "%d개의 이미지를 고치고 저장하지 않았습니다:" -#: app/dialogs/quit-dialog.c:183 -#, fuzzy +#: ../app/dialogs/quit-dialog.c:183 msgid "_Discard Changes" msgstr "바뀐 내용 버리기(_D)" -#: app/dialogs/resize-dialog.c:115 +#: ../app/dialogs/resize-dialog.c:115 msgid "Canvas Size" msgstr "캔버스 크기" -#: app/dialogs/resize-dialog.c:126 app/dialogs/scale-dialog.c:107 -#, fuzzy +#: ../app/dialogs/resize-dialog.c:126 ../app/dialogs/scale-dialog.c:107 msgid "Layer Size" -msgstr "레이어 선택" +msgstr "레이어 크기" -#: app/dialogs/resolution-calibrate-dialog.c:67 +#: ../app/dialogs/resolution-calibrate-dialog.c:67 msgid "Calibrate Monitor Resolution" msgstr "모니터 해상도 측정" -#: app/dialogs/resolution-calibrate-dialog.c:120 -#, fuzzy +#: ../app/dialogs/resolution-calibrate-dialog.c:120 msgid "Measure the rulers and enter their lengths:" -msgstr "눈금자를 측정한 값을 아래에 입력하십시오." +msgstr "실제로 측정한 눈금자를 길이를 입력하십시오:" -#: app/dialogs/resolution-calibrate-dialog.c:145 +#: ../app/dialogs/resolution-calibrate-dialog.c:145 msgid "_Horizontal:" msgstr "수평(_H):" -#: app/dialogs/resolution-calibrate-dialog.c:150 +#: ../app/dialogs/resolution-calibrate-dialog.c:150 msgid "_Vertical:" msgstr "수직(_V):" #. Image size frame -#: app/dialogs/scale-dialog.c:96 app/widgets/gimptemplateeditor.c:214 +#: ../app/dialogs/scale-dialog.c:96 ../app/widgets/gimptemplateeditor.c:214 msgid "Image Size" msgstr "이미지 크기" -#: app/dialogs/scale-dialog.c:166 -#, fuzzy +#: ../app/dialogs/scale-dialog.c:166 msgid "Quality" -msgstr "/파일(F)/마침(_Q)" +msgstr "품질" -#: app/dialogs/scale-dialog.c:178 -#, fuzzy +#: ../app/dialogs/scale-dialog.c:178 msgid "I_nterpolation:" -msgstr "보간:" +msgstr "보간(_N):" -#: app/dialogs/scale-dialog.c:192 -#, fuzzy +#: ../app/dialogs/scale-dialog.c:192 msgid "" "Indexed color layers are always scaled without interpolation. The chosen " "interpolation type will affect channels and masks only." msgstr "" -"인덱스된 색상 레이어는 보간없이 크기를 조정합니다. 선택한 보간법은 채널과 마" -"스크의 크기 조절에만 적용됩니다." +"인덱스된 색상 레이어는 보간없이 크기를 조정합니다. 선택한 보간법은 채널과 마" +"스크에만 적용됩니다." -#: app/dialogs/stroke-dialog.c:104 +#: ../app/dialogs/stroke-dialog.c:104 msgid "Choose Stroke Style" -msgstr "따라 그리기 형식" +msgstr "따라 그리기 형태" -#: app/dialogs/stroke-dialog.c:209 +#: ../app/dialogs/stroke-dialog.c:209 msgid "Paint Tool:" msgstr "그리기 도구:" -#: app/dialogs/tips-dialog.c:90 +#: ../app/dialogs/tips-dialog.c:90 msgid "Your GIMP tips file appears to be missing!" msgstr "김프 팁 파일이 없습니다!" -#: app/dialogs/tips-dialog.c:92 +#: ../app/dialogs/tips-dialog.c:92 #, c-format msgid "There should be a file called '%s'. Please check your installation." msgstr "파일 '%s'이(가) 없습니다. 설치되었는지 확인하십시오." -#: app/dialogs/tips-dialog.c:98 +#: ../app/dialogs/tips-dialog.c:98 msgid "The GIMP tips file could not be parsed!" msgstr "김프 팁 파일을 해석할 수 없습니다!" -#: app/dialogs/tips-dialog.c:131 +#: ../app/dialogs/tips-dialog.c:131 msgid "GIMP Tip of the Day" msgstr "오늘의 김프 팁" -#: app/dialogs/tips-dialog.c:195 +#: ../app/dialogs/tips-dialog.c:195 msgid "Show tip next time GIMP starts" msgstr "다음에 김프 시작할 때 팁 보여주기" -#: app/dialogs/tips-dialog.c:219 -#, fuzzy +#: ../app/dialogs/tips-dialog.c:219 msgid "_Previous tip" msgstr "이전 팁(_P)" -#: app/dialogs/tips-dialog.c:228 -#, fuzzy +#: ../app/dialogs/tips-dialog.c:228 msgid "_Next tip" msgstr "다음 팁(_N)" @@ -7552,11 +6901,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:ko" -#: 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-" @@ -7566,7 +6915,7 @@ "다. 이 파일에 브러시, 색상표, 그라디언트, 무늬, 플러그인, 모듈의 찾기 경로" "를 설정할 수 있습니다." -#: 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." @@ -7574,7 +6923,7 @@ "김프는 부가적인 gtkrc 파일을 사용하므로 다른 GTK 어플리케이션과 다르게 보이도" "록 설정 할 수 있습니다." -#: 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 " @@ -7585,7 +6934,7 @@ "입니다. 이 프로그램들은 실행 중에 기능에 대한 정보와 수정 시각을 파일에 캐싱" "합니다. 이 파일은 김프가 읽기 위한 것이며, 편집하면 안됩니다." -#: 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 " @@ -7596,7 +6945,7 @@ "션에도 쓸 수 있도록 menurc에 저장합니다. 이 파일을 직접 편집해도 되지만, 김" "프를 사용하는 것이 더 쉽습니다. 이 파일을 지우면 기본 단축키로 복원됩니다." -#: 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 " @@ -7605,14 +6954,14 @@ "김프를 마칠 때 열려 있었던 대화상자 창을 sessionrc에 저장합니다. 김프가 이 " "대화상자들을 저장된 위치에 다시 열도록 설정할 수 있습니다." -#: app/dialogs/user-install-dialog.c:176 +#: ../app/dialogs/user-install-dialog.c:176 msgid "" "This file holds a collection of standard media sizes that serve as image " "templates." msgstr "" "이 파일은 이미지 템플릿이 사용할 표준 매체 크기에 대한 정보를 갖고 있습니다." -#: app/dialogs/user-install-dialog.c:182 +#: ../app/dialogs/user-install-dialog.c:182 msgid "" "The unitrc is used to store your user units database. You can define " "additional units and use them just like you use the built-in units inches, " @@ -7623,7 +6972,7 @@ "치, 밀리미터, 포인트, 파이카 같은 내장 단위처럼 사용할 수 있습니다. 김프를 " "마칠 때마다 이 파일을 덮어 씁니다." -#: 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 " @@ -7632,7 +6981,7 @@ "이 폴더에 사용자 정의 브러시를 저장합니다. 브러시를 찾을 때 시스템 공용으로 " "설치된 김프 브러시 외에 부가적으로 이 폴더를 확인합니다." -#: 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 " @@ -7643,7 +6992,7 @@ "된 김프 글꼴 외에 부가적으로 이 폴더를 확인합니다. 김프 전용 글꼴이 필요할 " "때만 사용하며, 그렇지 않을 경우 공용 글꼴 디렉토리에 넣으십시오." -#: 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 " @@ -7652,7 +7001,7 @@ "이 폴더에 사용자 정의 그라디언트를 저장합니다. 그라디언트를 찾을 때 시스템 " "공용으로 설치된 김프 그라디언트 외에 부가적으로 이 폴더를 확인합니다." -#: 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 " @@ -7661,7 +7010,7 @@ "이 폴더에 사용자 정의 색상표를 저장합니다. 색상표를 찾을 때 시스템 공용으로 " "설치된 김프 색상표 외에 부가적으로 이 폴더를 확인합니다." -#: 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 " @@ -7670,7 +7019,7 @@ "이 폴더에 사용자 정의 무늬를 저장합니다. 무늬를 찾을 때 시스템 공용으로 설치" "된 김프 무늬 외에 부가적으로 이 폴더를 확인합니다." -#: 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 " @@ -7680,7 +7029,7 @@ "합니다. 플러그인을 찾을 때 시스템 공용으로 설치된 김프 플러그인 외에 부가적" "으로 이 폴더를 확인합니다." -#: 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 " @@ -7691,7 +7040,7 @@ "다. 플러그인을 찾을 때 시스템 공용으로 설치된 김프 DLL 외에 부가적으로 이 " "폴더를 확인합니다." -#: 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 " @@ -7702,7 +7051,7 @@ "을 저장합니다. 바뀐 플러그인 환경 파일을 찾을 때 시스템 공용으로 설치된 김" "프 플러그인 환경 외에 부가적으로 이 폴더를 확인합니다." -#: 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 " @@ -7712,15 +7061,15 @@ "합니다. 스크립트를 찾을 때 시스템 공용으로 설치된 김프 스크립트 외에 부가적" "으로 이 폴더를 확인합니다." -#: app/dialogs/user-install-dialog.c:265 +#: ../app/dialogs/user-install-dialog.c:265 msgid "This folder is searched for image templates." msgstr "이 폴더에서 이미지 템플릿을 찾습니다." -#: app/dialogs/user-install-dialog.c:270 +#: ../app/dialogs/user-install-dialog.c:270 msgid "This folder is searched for user-installed themes." msgstr "이 폴더에서 사용자 설치 테마를 찾습니다." -#: 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<#>." @@ -7731,73 +7080,84 @@ "다. 김프가 예상치않게 종료되었을때 gimp<#>.<#>형식의 파일이 남아 있을 수 있" "습니다. 이 파일은 김프 세션 간에는 쓸모가 없으며, 지워도 무관합니다." -#: app/dialogs/user-install-dialog.c:284 +#: ../app/dialogs/user-install-dialog.c:284 msgid "This folder is used to store tool options." msgstr "이 폴더에 도구 선택사항을 저장합니다." -#: app/dialogs/user-install-dialog.c:289 +#: ../app/dialogs/user-install-dialog.c:289 msgid "This folder is used to store parameter files for the Curves tool." msgstr "이 폴더에 곡선 도구용 파라메터 파일을 저장합니다." -#: app/dialogs/user-install-dialog.c:294 +#: ../app/dialogs/user-install-dialog.c:294 msgid "This folder is used to store parameter files for the Levels tool." msgstr "이 폴더에 레벨 도구용 파라메터 파일을 저장합니다." -#: app/dialogs/user-install-dialog.c:390 +#: ../app/dialogs/user-install-dialog.c:390 msgid "Installation successful. Click \"Continue\" to proceed." msgstr "설치 성공. 계속하려면 \"계속\"을 누르십시오." -#: app/dialogs/user-install-dialog.c:396 +#: ../app/dialogs/user-install-dialog.c:396 msgid "Installation failed. Contact system administrator." msgstr "설치 실패. 시스템 관리자에게 문의하십시오." -#: app/dialogs/user-install-dialog.c:609 +#: ../app/dialogs/user-install-dialog.c:609 msgid "GIMP User Installation" msgstr "김프 사용자 설치" -#: app/dialogs/user-install-dialog.c:614 +#: ../app/dialogs/user-install-dialog.c:614 msgid "Continue" msgstr "계속" #. GPL_PAGE #. version number -#: app/dialogs/user-install-dialog.c:765 -#, fuzzy, c-format +#: ../app/dialogs/user-install-dialog.c:765 +#, c-format msgid "" "Welcome to\n" "The GIMP %d.%d User Installation" msgstr "" "환영합니다!\n" -"김프 사용자 설치" +"김프 %d.%d 사용자 설치" -#: app/dialogs/user-install-dialog.c:771 +#: ../app/dialogs/user-install-dialog.c:771 msgid "Click \"Continue\" to enter the GIMP user installation." msgstr "김프 사용자 설치를 시작하려면 \"계속\"을 누르십시오." -#: app/dialogs/user-install-dialog.c:778 +#: ../app/dialogs/user-install-dialog.c:778 msgid "" "The GIMP - GNU Image Manipulation Program\n" "Copyright (C) 1995-2004\n" "Spencer Kimball, Peter Mattis and the GIMP Development Team." msgstr "" +"The GIMP - GNU Image Manipulation Program\n" +"Copyright (C) 1995-2004\n" +"Spencer Kimball, Peter Mattis and the GIMP Development Team." -#: 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 " "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" +"This program is free software; you can redistribute it and/or modify it " +"under the terms of the GNU General Public License as published by the Free " +"Software Foundation; either version 2 of the License, or (at your option) " +"any later version." -#: 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 " "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" +"This program is distributed in the hope that it will be useful, but WITHOUT " +"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or " +"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " +"more details." -#: 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 " @@ -7807,44 +7167,42 @@ "면, the 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 "" +msgstr "사용자 설정 옮겨오기" -#: app/dialogs/user-install-dialog.c:811 -#, fuzzy +#: ../app/dialogs/user-install-dialog.c:811 msgid "Click \"Continue\" to proceed with the user installation." msgstr "김프 사용자 설치를 시작하려면 \"계속\"을 누르십시오." -#: app/dialogs/user-install-dialog.c:816 +#: ../app/dialogs/user-install-dialog.c:816 msgid "It seems you have used GIMP 2.0 before." -msgstr "" +msgstr "김프 2.0을 이전에 사용했던 것 같습니다." -#: app/dialogs/user-install-dialog.c:820 +#: ../app/dialogs/user-install-dialog.c:820 msgid "_Migrate GIMP 2.0 user settings" -msgstr "" +msgstr "김프 2.0 사용자 설정을 옮겨옵니다(_M)" -#: app/dialogs/user-install-dialog.c:823 -#, fuzzy +#: ../app/dialogs/user-install-dialog.c:823 msgid "Do a _fresh user installation" -msgstr "김프 사용자 설치" +msgstr "깨끗한 사용자 설치(_F)" -#: app/dialogs/user-install-dialog.c:851 +#: ../app/dialogs/user-install-dialog.c:851 msgid "Personal GIMP Folder" msgstr "사용자 김프 폴더" -#: app/dialogs/user-install-dialog.c:852 +#: ../app/dialogs/user-install-dialog.c:852 msgid "Click \"Continue\" to create your personal GIMP folder." msgstr "사용자 김프 폴더를 만들려면 \"계속\"을 누르십시오." -#: app/dialogs/user-install-dialog.c:896 +#: ../app/dialogs/user-install-dialog.c:896 #, c-format msgid "" "For a proper GIMP installation, a folder named '%s' needs to be " "created." msgstr "김프를 제대로 설치하려면, '%s'라는 폴더를 만들어야 합니다." -#: app/dialogs/user-install-dialog.c:903 +#: ../app/dialogs/user-install-dialog.c:903 msgid "" "This folder will contain a number of important files. Click on one of the " "files or folders in the tree to get more information about the selected item." @@ -7852,43 +7210,43 @@ "이 폴더에는 여러 개의 중요한 파일이 위치하게 됩니다. 선택한 항목에 대한 자세" "한 정보를 보려면 파일이나 폴더 중의 하나를 클릭하십시오." -#: app/dialogs/user-install-dialog.c:991 +#: ../app/dialogs/user-install-dialog.c:991 msgid "User Installation Log" msgstr "사용자 설치 로그" -#: app/dialogs/user-install-dialog.c:992 +#: ../app/dialogs/user-install-dialog.c:992 msgid "Please wait while your personal GIMP folder is being created..." msgstr "사용자 김프 폴더를 만드는 중입니다. 잠시만 기다려 주십시오..." -#: app/dialogs/user-install-dialog.c:999 +#: ../app/dialogs/user-install-dialog.c:999 msgid "GIMP Performance Tuning" msgstr "김프 성능 세부 조정" -#: app/dialogs/user-install-dialog.c:1000 +#: ../app/dialogs/user-install-dialog.c:1000 msgid "Click \"Continue\" to accept the settings above." msgstr "위의 설정을 사용하려면 \"계속\"을 누르십시오." -#: app/dialogs/user-install-dialog.c:1005 +#: ../app/dialogs/user-install-dialog.c:1005 msgid "" "For optimal GIMP performance, some settings may have to be adjusted." msgstr "김프가 최적의 성능을 발휘하려면, 몇가지 설정을 조절해야 합니다." -#: app/dialogs/user-install-dialog.c:1065 +#: ../app/dialogs/user-install-dialog.c:1065 #, c-format msgid "Copying file '%s' from '%s'..." msgstr "파일 '%s'을(를) '%s'(으)로부터 복사하고 있습니다..." -#: app/dialogs/user-install-dialog.c:1084 +#: ../app/dialogs/user-install-dialog.c:1084 #, c-format msgid "Creating folder '%s'..." msgstr "폴더 '%s'을(를) 만들고 있습니다..." -#: app/dialogs/user-install-dialog.c:1098 +#: ../app/dialogs/user-install-dialog.c:1098 #, c-format msgid "Cannot create folder '%s': %s" msgstr "폴더 '%s'을(를) 만들 수 없습니다: %s" -#: app/dialogs/user-install-dialog.c:1362 +#: ../app/dialogs/user-install-dialog.c:1362 msgid "" "GIMP uses a limited amount of memory to store image data, the so-called " "\"Tile Cache\". You should adjust its size to fit into memory. Consider " @@ -7898,12 +7256,11 @@ "만 사용합니다. 메모리에 맞게 이 크기를 조절해 주십시오. 실행하고 있는 다른 " "프로그램이 쓸 메모리도 고려하십시오." -#: app/dialogs/user-install-dialog.c:1375 -#, fuzzy +#: ../app/dialogs/user-install-dialog.c:1375 msgid "Tile cache size:" msgstr "타일 캐쉬 크기:" -#: app/dialogs/user-install-dialog.c:1387 +#: ../app/dialogs/user-install-dialog.c:1387 msgid "" "All image and undo data which doesn't fit into the Tile Cache will be " "written to a swap file. This file should be located on a local filesystem " @@ -7914,552 +7271,531 @@ "이 파일은 공간이 충분한(수 백 MB) 로컬 유닉스 파일시스템에 위치해야하며, 보통" "은 시스템 전역 임시 디렉토리(\"/tmp\"나 \"/var/tmp\")를 사용하면 됩니다." -#: app/dialogs/user-install-dialog.c:1398 -#, fuzzy +#: ../app/dialogs/user-install-dialog.c:1398 msgid "Select swap dir" msgstr "스왑 디렉토리 선택" -#: app/dialogs/vectors-export-dialog.c:53 +#: ../app/dialogs/vectors-export-dialog.c:53 msgid "Export Path to SVG" -msgstr "SVG로 경로 내보내기" +msgstr "경로를 SVG로 내보내기" -#: app/dialogs/vectors-export-dialog.c:78 -#, fuzzy +#: ../app/dialogs/vectors-export-dialog.c:78 msgid "Export the active path" -msgstr "현재 경로 이동" +msgstr "현재 경로 내보내기" -#: app/dialogs/vectors-export-dialog.c:79 -#, fuzzy +#: ../app/dialogs/vectors-export-dialog.c:79 msgid "Export all paths from this image" -msgstr "이 이미지를 새 창으로 보여주기" +msgstr "이 이미지의 모든 경로를 내보내기" -#: app/dialogs/vectors-import-dialog.c:57 +#: ../app/dialogs/vectors-import-dialog.c:57 msgid "Import Paths from SVG" msgstr "SVG에서 경로 가져오기" -#: app/dialogs/vectors-import-dialog.c:83 -#, fuzzy +#: ../app/dialogs/vectors-import-dialog.c:83 msgid "All Files (*.*)" -msgstr "모든 파일" +msgstr "모든 파일 (*.*)" -#: app/dialogs/vectors-import-dialog.c:88 +#: ../app/dialogs/vectors-import-dialog.c:88 msgid "Scalable SVG image (*.svg)" -msgstr "" +msgstr "크기가 자유로운 SVG 이미지 (*.svg)" -#: app/dialogs/vectors-import-dialog.c:99 -#, fuzzy +#: ../app/dialogs/vectors-import-dialog.c:99 msgid "_Merge imported paths" -msgstr "경로 가져오기" +msgstr "가져온 경로 합치기(_M)" -#: app/dialogs/vectors-import-dialog.c:109 +#: ../app/dialogs/vectors-import-dialog.c:109 msgid "_Scale imported paths to fit image" -msgstr "" +msgstr "가져온 경로를 이미지에 맞게 배율 조절(_S)" -#: app/dialogs/vectors-options-dialog.c:113 -#, fuzzy +#: ../app/dialogs/vectors-options-dialog.c:113 msgid "Path Name:" msgstr "경로 이름:" -#: app/display/display-enums.c:24 -#, fuzzy +#: ../app/display/display-enums.c:24 msgid "Tool icon" msgstr "도구 아이콘" -#: app/display/display-enums.c:25 -#, fuzzy +#: ../app/display/display-enums.c:25 msgid "Tool icon with crosshair" msgstr "도구 아이콘과 십자형" -#: app/display/display-enums.c:26 +#: ../app/display/display-enums.c:26 msgid "Crosshair only" msgstr "십자형" -#: app/display/display-enums.c:55 -#, fuzzy +#: ../app/display/display-enums.c:55 msgid "From theme" msgstr "테마에서" -#: app/display/display-enums.c:56 -#, fuzzy +#: ../app/display/display-enums.c:56 msgid "Light check color" msgstr "격자의 밝은 색상" -#: app/display/display-enums.c:57 -#, fuzzy +#: ../app/display/display-enums.c:57 msgid "Dark check color" msgstr "격자의 어두운 색상" -#: app/display/display-enums.c:58 -#, fuzzy +#: ../app/display/display-enums.c:58 msgid "Custom color" msgstr "사용자 색상" -#: app/display/gimpdisplayshell.c:943 +#: ../app/display/gimpdisplayshell.c:943 msgid "Zoom image when window size changes" -msgstr "" +msgstr "창 크기가 변하면 이미지 배율 조절" -#: app/display/gimpdisplayshell.c:963 -#, fuzzy +#: ../app/display/gimpdisplayshell.c:963 msgid "Toggle Quick Mask" msgstr "퀵마스크 전환" -#: app/display/gimpdisplayshell-close.c:122 -#: app/display/gimpdisplayshell-close.c:185 -#, fuzzy, c-format +#: ../app/display/gimpdisplayshell-close.c:122 +#: ../app/display/gimpdisplayshell-close.c:185 +#, c-format msgid "Close %s" msgstr "%s을(를) 닫습니까?" -#: app/display/gimpdisplayshell-close.c:131 +#: ../app/display/gimpdisplayshell-close.c:131 msgid "Do_n't save" -msgstr "" +msgstr "저장 안함(_N)" -#: app/display/gimpdisplayshell-close.c:192 +#: ../app/display/gimpdisplayshell-close.c:192 #, c-format msgid "Save the changes to image '%s' before closing?" -msgstr "" +msgstr "닫기 전에 이미지 '%s'의 바뀐 점을 저장할까요?" -#: app/display/gimpdisplayshell-close.c:209 -#, fuzzy, c-format +#: ../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 "저장하지 않은 바뀐 내용을 잃게 됩니다." +msgstr "이미지를 저정하지 않으면, 마지막 %s 부터의 바뀐내용을 잃게 됩니다." #. one second, the time period -#: app/display/gimpdisplayshell-close.c:266 -#, fuzzy +#: ../app/display/gimpdisplayshell-close.c:266 msgid "second" -msgstr "아이콘" +msgstr "초" -#: app/display/gimpdisplayshell-close.c:269 +#: ../app/display/gimpdisplayshell-close.c:269 #, c-format msgid "%d seconds" -msgstr "" +msgstr "%d 초" -#: app/display/gimpdisplayshell-close.c:275 -#, fuzzy +#: ../app/display/gimpdisplayshell-close.c:275 msgid "minute" -msgstr "선형" +msgstr "분" -#: app/display/gimpdisplayshell-close.c:277 +#: ../app/display/gimpdisplayshell-close.c:277 #, c-format msgid "%d minutes" -msgstr "" +msgstr "%d 분" -#: app/display/gimpdisplayshell-dnd.c:98 +#: ../app/display/gimpdisplayshell-dnd.c:98 msgid "Drop New Layer" msgstr "새 레이어 끌어서-놓기" -#: app/display/gimpdisplayshell-dnd.c:142 +#: ../app/display/gimpdisplayshell-dnd.c:142 msgid "Drop New Path" msgstr "새 경로 끌어서-놓기" -#: app/display/gimpdisplayshell-filter-dialog.c:73 +#: ../app/display/gimpdisplayshell-filter-dialog.c:73 msgid "Color Display Filters" msgstr "화면 색상 표시 필터" -#: app/display/gimpdisplayshell-filter-dialog.c:76 +#: ../app/display/gimpdisplayshell-filter-dialog.c:76 msgid "Configure Color Display Filters" msgstr "화면 색상 표시 필터 설정" -#: app/display/gimpdisplayshell-layer-select.c:122 +#: ../app/display/gimpdisplayshell-layer-select.c:122 msgid "Layer Select" msgstr "레이어 선택" -#: app/display/gimpdisplayshell-scale.c:537 +#: ../app/display/gimpdisplayshell-scale.c:537 msgid "Zoom Ratio" msgstr "확대 배율" -#: app/display/gimpdisplayshell-scale.c:539 +#: ../app/display/gimpdisplayshell-scale.c:539 msgid "Select Zoom Ratio" msgstr "확대 배율 선택" -#: app/display/gimpdisplayshell-scale.c:574 +#: ../app/display/gimpdisplayshell-scale.c:574 msgid "Zoom Ratio:" msgstr "확대 배율:" -#: app/display/gimpdisplayshell-scale.c:601 +#: ../app/display/gimpdisplayshell-scale.c:601 msgid "Zoom:" msgstr "확대:" -#: app/display/gimpdisplayshell-title.c:234 +#: ../app/display/gimpdisplayshell-title.c:234 msgid "RGB-empty" msgstr "RGB-비었음" -#: app/display/gimpdisplayshell-title.c:237 +#: ../app/display/gimpdisplayshell-title.c:237 msgid "grayscale-empty" msgstr "그레이스케일-비었음" -#: app/display/gimpdisplayshell-title.c:237 +#: ../app/display/gimpdisplayshell-title.c:237 msgid "grayscale" msgstr "그레이스케일" -#: app/display/gimpdisplayshell-title.c:240 +#: ../app/display/gimpdisplayshell-title.c:240 msgid "indexed-empty" msgstr "인덱스됨-비었음" -#: app/display/gimpdisplayshell-title.c:240 +#: ../app/display/gimpdisplayshell-title.c:240 msgid "indexed" msgstr "인덱스됨" -#: app/display/gimpdisplayshell-title.c:292 -#, fuzzy +#: ../app/display/gimpdisplayshell-title.c:292 msgid "(modified)" -msgstr "바뀌었을 때만" +msgstr "(변경됨)" -#: app/display/gimpdisplayshell-title.c:298 +#: ../app/display/gimpdisplayshell-title.c:298 msgid "(clean)" -msgstr "" +msgstr "(깨끗)" -#: app/display/gimpdisplayshell-title.c:325 +#: ../app/display/gimpdisplayshell-title.c:325 msgid "1 layer" msgstr "1 레이어" -#: app/display/gimpdisplayshell-title.c:325 +#: ../app/display/gimpdisplayshell-title.c:325 #, c-format msgid "%d layers" msgstr "%d 레이어" -#: app/display/gimpstatusbar.c:142 -#, fuzzy +#: ../app/display/gimpstatusbar.c:142 msgid "Shadow type" -msgstr "그림자" +msgstr "그림자 유형" -#: app/display/gimpstatusbar.c:143 +#: ../app/display/gimpstatusbar.c:143 msgid "Style of bevel around the statusbar text" -msgstr "" +msgstr "상태 표시줄 텍스트 주위의 베벨 형태" -#: app/display/gimpstatusbar.c:218 +#: ../app/display/gimpstatusbar.c:229 msgid "Cancel" msgstr "취소" -#: app/file/file-open.c:105 app/file/file-save.c:132 +#: ../app/file/file-open.c:105 ../app/file/file-save.c:132 msgid "Unknown file type" msgstr "알 수 없는 이미지 유형" -#: app/file/file-open.c:120 app/file/file-save.c:146 +#: ../app/file/file-open.c:120 ../app/file/file-save.c:146 msgid "Not a regular file" msgstr "비정상적인 파일입니다" -#: app/file/file-open.c:173 +#: ../app/file/file-open.c:173 msgid "Plug-In returned SUCCESS but did not return an image" msgstr "플러그인이 SUCCESS를 반환했지만 아무런 이미지도 반환되지 않았습니다." -#: app/file/file-open.c:181 +#: ../app/file/file-open.c:181 msgid "Plug-In could not open image" msgstr "플러그인이 이미지를 열 수 없습니다" -#: app/file/file-open.c:417 -#, fuzzy +#: ../app/file/file-open.c:417 msgid "Image doesn't contain any visible layers" -msgstr "모든 보이는 레이어에서 기본 선택" +msgstr "이미지에 보이는 레이어가 없습니다" -#: app/file/file-save.c:220 +#: ../app/file/file-save.c:220 msgid "Plug-In could not save image" msgstr "플러그인이 이미지를 저장할 수 없습니다" -#: app/file/file-utils.c:107 +#: ../app/file/file-utils.c:107 msgid "Invalid character sequence in URI" msgstr "URI의 글자 배열이 잘못되었습니다" -#: app/gui/session.c:247 app/menus/menus.c:351 app/widgets/gimpdevices.c:218 -#, fuzzy, c-format +#: ../app/gui/session.c:247 ../app/menus/menus.c:351 +#: ../app/widgets/gimpdevices.c:218 +#, c-format msgid "Deleting \"%s\" failed: %s" -msgstr "'%s' 열기 실패: %s" +msgstr "\"%s\" 삭제 실패: %s" -#: app/gui/splash.c:118 +#: ../app/gui/splash.c:118 msgid "GIMP Startup" msgstr "김프 시작" -#: app/gui/themes.c:231 app/plug-in/plug-ins.c:254 +#: ../app/gui/themes.c:231 ../app/plug-in/plug-ins.c:254 #, c-format msgid "Writing '%s'\n" msgstr "'%s' 기록 중\n" -#: app/gui/themes.c:284 +#: ../app/gui/themes.c:284 #, c-format msgid "Adding theme '%s' (%s)\n" msgstr "테마 '%s' (%s) 더하기\n" -#: app/paint/gimpairbrush.c:69 app/tools/gimpairbrushtool.c:55 +#: ../app/paint/gimpairbrush.c:69 ../app/tools/gimpairbrushtool.c:55 msgid "Airbrush" msgstr "에어브러시" -#: app/paint/gimpbrushcore.c:369 +#: ../app/paint/gimpbrushcore.c:369 msgid "No brushes available for use with this tool." msgstr "이 도구에 맞는 브러시가 없습니다." -#: app/paint/gimpclone.c:89 app/tools/gimpclonetool.c:89 +#: ../app/paint/gimpclone.c:89 ../app/tools/gimpclonetool.c:89 msgid "Clone" msgstr "도장" -#: app/paint/gimpconvolve.c:121 app/tools/gimpconvolvetool.c:70 +#: ../app/paint/gimpconvolve.c:121 ../app/tools/gimpconvolvetool.c:70 msgid "Convolve" msgstr "흐리게 선명하게" -#: app/paint/gimpdodgeburn.c:87 app/tools/gimpdodgeburntool.c:70 +#: ../app/paint/gimpdodgeburn.c:87 ../app/tools/gimpdodgeburntool.c:70 msgid "Dodge/Burn" msgstr "피하기/태우기" -#: app/paint/gimperaser.c:64 app/tools/gimperasertool.c:70 +#: ../app/paint/gimperaser.c:64 ../app/tools/gimperasertool.c:70 msgid "Eraser" msgstr "지우개" -#: app/paint/gimppaintbrush.c:65 app/tools/gimppaintbrushtool.c:51 +#: ../app/paint/gimppaintbrush.c:65 ../app/tools/gimppaintbrushtool.c:51 msgid "Paintbrush" msgstr "페인트브러시" -#: app/paint/gimppencil.c:38 app/tools/gimppenciltool.c:51 +#: ../app/paint/gimppencil.c:38 ../app/tools/gimppenciltool.c:51 msgid "Pencil" msgstr "연필" -#: app/paint/gimpsmudge.c:78 app/tools/gimpsmudgetool.c:54 +#: ../app/paint/gimpsmudge.c:78 ../app/tools/gimpsmudgetool.c:54 msgid "Smudge" msgstr "문지르기" -#: app/paint/paint-enums.c:23 -#, fuzzy +#: ../app/paint/paint-enums.c:23 msgid "Image source" msgstr "이미지 소스" -#: app/paint/paint-enums.c:24 -#, fuzzy +#: ../app/paint/paint-enums.c:24 msgid "Pattern source" msgstr "무늬 소스" -#: app/paint/paint-enums.c:52 -#, fuzzy +#: ../app/paint/paint-enums.c:52 msgid "Non-aligned" msgstr "정렬 안됨" -#: app/paint/paint-enums.c:53 +#: ../app/paint/paint-enums.c:53 msgid "Aligned" msgstr "정렬됨" -#: app/paint/paint-enums.c:54 +#: ../app/paint/paint-enums.c:54 msgid "Registered" msgstr "등록됨" -#: app/paint/paint-enums.c:81 app/widgets/gimpwidgets-constructors.c:60 -#: app/widgets/gimpwidgets-constructors.c:93 +#: ../app/paint/paint-enums.c:81 ../app/widgets/gimpwidgets-constructors.c:60 +#: ../app/widgets/gimpwidgets-constructors.c:93 msgid "Dodge" msgstr "피하기" -#: app/paint/paint-enums.c:82 app/widgets/gimpwidgets-constructors.c:61 -#: app/widgets/gimpwidgets-constructors.c:94 +#: ../app/paint/paint-enums.c:82 ../app/widgets/gimpwidgets-constructors.c:61 +#: ../app/widgets/gimpwidgets-constructors.c:94 msgid "Burn" msgstr "태우기" -#: app/paint/paint-enums.c:109 +#: ../app/paint/paint-enums.c:109 msgid "Blur" msgstr "흐릿하게" -#: app/paint/paint-enums.c:110 +#: ../app/paint/paint-enums.c:110 msgid "Sharpen" msgstr "선명하게" -#: app/paint/paint-enums.c:167 +#: ../app/paint/paint-enums.c:167 msgid "Constant" msgstr "상수" -#: app/paint/paint-enums.c:168 app/tools/gimppaintoptions-gui.c:163 +#: ../app/paint/paint-enums.c:168 ../app/tools/gimppaintoptions-gui.c:163 msgid "Incremental" msgstr "증가" -#: app/pdb/color_cmds.c:140 app/tools/gimpbrightnesscontrasttool.c:85 +#: ../app/pdb/color_cmds.c:140 ../app/tools/gimpbrightnesscontrasttool.c:85 msgid "Brightness-Contrast" msgstr "명도-대비" -#: app/pdb/color_cmds.c:457 app/tools/gimpposterizetool.c:78 +#: ../app/pdb/color_cmds.c:457 ../app/tools/gimpposterizetool.c:78 msgid "Posterize" msgstr "포스터화" -#: app/pdb/color_cmds.c:745 app/pdb/color_cmds.c:870 -#: app/tools/gimpcurvestool.c:141 +#: ../app/pdb/color_cmds.c:745 ../app/pdb/color_cmds.c:870 +#: ../app/tools/gimpcurvestool.c:141 msgid "Curves" msgstr "곡선" -#: app/pdb/color_cmds.c:995 app/tools/gimpcolorbalancetool.c:96 +#: ../app/pdb/color_cmds.c:995 ../app/tools/gimpcolorbalancetool.c:96 msgid "Color Balance" msgstr "색상 균형" -#: app/pdb/color_cmds.c:1120 app/tools/gimpcolorizetool.c:96 +#: ../app/pdb/color_cmds.c:1120 ../app/tools/gimpcolorizetool.c:96 msgid "Colorize" msgstr "컬러화(Colorize)" -#: app/pdb/color_cmds.c:1399 app/tools/gimphuesaturationtool.c:110 +#: ../app/pdb/color_cmds.c:1399 ../app/tools/gimphuesaturationtool.c:110 msgid "Hue-Saturation" msgstr "색상-채도" -#: app/pdb/color_cmds.c:1506 app/tools/gimpthresholdtool.c:92 +#: ../app/pdb/color_cmds.c:1506 ../app/tools/gimpthresholdtool.c:92 msgid "Threshold" msgstr "임계값" -#: app/pdb/drawable_transform_cmds.c:249 app/pdb/drawable_transform_cmds.c:404 -#, fuzzy +#: ../app/pdb/drawable_transform_cmds.c:249 +#: ../app/pdb/drawable_transform_cmds.c:404 msgid "Flip..." msgstr "뒤집기..." -#: app/pdb/drawable_transform_cmds.c:563 app/pdb/drawable_transform_cmds.c:746 -#: app/pdb/transform_tools_cmds.c:197 app/tools/gimpperspectivetool.c:141 +#: ../app/pdb/drawable_transform_cmds.c:563 +#: ../app/pdb/drawable_transform_cmds.c:746 +#: ../app/pdb/transform_tools_cmds.c:197 +#: ../app/tools/gimpperspectivetool.c:141 msgid "Perspective..." msgstr "원근법..." -#: app/pdb/drawable_transform_cmds.c:1650 -#: app/pdb/drawable_transform_cmds.c:1791 app/pdb/transform_tools_cmds.c:586 -#: app/tools/gimpsheartool.c:158 +#: ../app/pdb/drawable_transform_cmds.c:1650 +#: ../app/pdb/drawable_transform_cmds.c:1791 +#: ../app/pdb/transform_tools_cmds.c:586 ../app/tools/gimpsheartool.c:158 msgid "Shearing..." msgstr "기울이기 중..." -#: app/pdb/drawable_transform_cmds.c:1943 -#: app/pdb/drawable_transform_cmds.c:2124 -#: app/pdb/drawable_transform_cmds.c:2311 -#: app/pdb/drawable_transform_cmds.c:2512 app/pdb/transform_tools_cmds.c:719 -#, fuzzy +#: ../app/pdb/drawable_transform_cmds.c:1943 +#: ../app/pdb/drawable_transform_cmds.c:2124 +#: ../app/pdb/drawable_transform_cmds.c:2311 +#: ../app/pdb/drawable_transform_cmds.c:2512 +#: ../app/pdb/transform_tools_cmds.c:719 msgid "2D Transform..." -msgstr "변형 중..." +msgstr "2D 변형..." -#: app/pdb/edit_cmds.c:673 app/tools/gimpblendtool.c:249 +#: ../app/pdb/edit_cmds.c:673 ../app/tools/gimpblendtool.c:249 msgid "Blending..." msgstr "혼합 중..." -#: app/pdb/image_cmds.c:3756 app/text/gimptext-parasite.c:168 +#: ../app/pdb/image_cmds.c:3756 ../app/text/gimptext-parasite.c:168 msgid "(invalid UTF-8 string)" msgstr "(잘못된 UTF-8 문자열)" -#: app/pdb/image_cmds.c:3898 +#: ../app/pdb/image_cmds.c:3898 msgid "" "Image resolution is out of bounds, using the default resolution instead." msgstr "이미지 해상도가 범위를 넘었으므로, 기본 해상도를 대신 사용합니다." -#: app/pdb/internal_procs.c:86 +#: ../app/pdb/internal_procs.c:86 msgid "Internal Procedures" msgstr "내부 프로시져" -#: app/pdb/internal_procs.c:86 -#, fuzzy +#: ../app/pdb/internal_procs.c:86 msgid "Brush" -msgstr "브러시:" +msgstr "브러시" -#: app/pdb/internal_procs.c:89 +#: ../app/pdb/internal_procs.c:89 msgid "Brush UI" msgstr "브러시 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 "색상" -#: app/pdb/internal_procs.c:104 +#: ../app/pdb/internal_procs.c:104 msgid "Convert" msgstr "변환" -#: app/pdb/internal_procs.c:107 +#: ../app/pdb/internal_procs.c:107 msgid "Display procedures" msgstr "Display 프로시져" -#: app/pdb/internal_procs.c:110 +#: ../app/pdb/internal_procs.c:110 msgid "Drawable procedures" msgstr "Drawable 프로시져" -#: app/pdb/internal_procs.c:113 -#, fuzzy +#: ../app/pdb/internal_procs.c:113 msgid "Transformation procedures" -msgstr "변형 도구 프로시져" +msgstr "변형 프로시져" -#: app/pdb/internal_procs.c:116 +#: ../app/pdb/internal_procs.c:116 msgid "Edit procedures" msgstr "프로시져 편집" -#: app/pdb/internal_procs.c:119 +#: ../app/pdb/internal_procs.c:119 msgid "File Operations" msgstr "파일 동작" -#: app/pdb/internal_procs.c:122 +#: ../app/pdb/internal_procs.c:122 msgid "Floating selections" msgstr "떠있는 선택" -#: app/pdb/internal_procs.c:125 +#: ../app/pdb/internal_procs.c:125 msgid "Font UI" msgstr "글꼴 UI" -#: app/pdb/internal_procs.c:131 +#: ../app/pdb/internal_procs.c:131 msgid "Gimprc procedures" msgstr "Gimprc 프로시져" -#: app/pdb/internal_procs.c:134 -#, fuzzy +#: ../app/pdb/internal_procs.c:134 msgid "Gradient" -msgstr "그라디언트:" +msgstr "그라디언트" -#: app/pdb/internal_procs.c:137 +#: ../app/pdb/internal_procs.c:137 msgid "Gradient UI" msgstr "그라디언트 UI" -#: app/pdb/internal_procs.c:143 +#: ../app/pdb/internal_procs.c:143 msgid "Guide procedures" msgstr "안내선 프로시져" -#: app/pdb/internal_procs.c:146 +#: ../app/pdb/internal_procs.c:146 msgid "Help procedures" msgstr "도움말 프로시져" -#: app/pdb/internal_procs.c:155 +#: ../app/pdb/internal_procs.c:155 msgid "Message procedures" msgstr "메시지 프로시져" -#: app/pdb/internal_procs.c:158 +#: ../app/pdb/internal_procs.c:158 msgid "Miscellaneous" msgstr "기타" -#: app/pdb/internal_procs.c:161 +#: ../app/pdb/internal_procs.c:161 msgid "Paint Tool procedures" msgstr "그리기 도구 프로시져" -#: app/pdb/internal_procs.c:164 +#: ../app/pdb/internal_procs.c:164 msgid "Palette" msgstr "색상표" -#: app/pdb/internal_procs.c:167 +#: ../app/pdb/internal_procs.c:167 msgid "Palette UI" msgstr "색상표 UI" -#: app/pdb/internal_procs.c:173 +#: ../app/pdb/internal_procs.c:173 msgid "Parasite procedures" msgstr "기생(Parasite) 프로시져" -#: app/pdb/internal_procs.c:182 +#: ../app/pdb/internal_procs.c:182 msgid "Pattern UI" msgstr "무늬 UI" -#: app/pdb/internal_procs.c:188 +#: ../app/pdb/internal_procs.c:188 msgid "Plug-in" msgstr "플러그인" -#: app/pdb/internal_procs.c:191 +#: ../app/pdb/internal_procs.c:191 msgid "Procedural database" msgstr "프로시져 데이터베이스" -#: app/pdb/internal_procs.c:194 app/widgets/gimpprogressdialog.c:239 +#: ../app/pdb/internal_procs.c:194 ../app/widgets/gimpprogressdialog.c:239 msgid "Progress" msgstr "진행" -#: app/pdb/internal_procs.c:197 +#: ../app/pdb/internal_procs.c:197 msgid "Image mask" msgstr "이미지 마스크" -#: app/pdb/internal_procs.c:200 +#: ../app/pdb/internal_procs.c:200 msgid "Selection Tool procedures" msgstr "선택 도구 프로시져" -#: app/pdb/internal_procs.c:203 +#: ../app/pdb/internal_procs.c:203 msgid "Text procedures" msgstr "텍스트 프로시져" -#: app/pdb/internal_procs.c:206 +#: ../app/pdb/internal_procs.c:206 msgid "Transform Tool procedures" msgstr "변형 도구 프로시져" -#: app/pdb/procedural_db.c:254 +#: ../app/pdb/procedural_db.c:254 #, c-format msgid "" "PDB calling error:\n" @@ -8468,7 +7804,7 @@ "PDB 호출 오류:\n" "프로시져 '%s'을(를) 찾을 수 없습니다." -#: 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" @@ -8477,32 +7813,32 @@ "프로시져 '%s'의 PDB 호출 오류:\n" "인자 #%d 형이 일치하지 않습니다 (%s이(가) 맞지만, %s입니다)" -#: app/pdb/procedural_db_cmds.c:80 +#: ../app/pdb/procedural_db_cmds.c:80 msgid "Internal GIMP procedure" msgstr "김프 내부 프로시져" -#: app/pdb/procedural_db_cmds.c:81 +#: ../app/pdb/procedural_db_cmds.c:81 msgid "GIMP Plug-In" msgstr "김프 플러그인" -#: app/pdb/procedural_db_cmds.c:82 +#: ../app/pdb/procedural_db_cmds.c:82 msgid "GIMP Extension" msgstr "김프 확장" -#: app/pdb/procedural_db_cmds.c:83 +#: ../app/pdb/procedural_db_cmds.c:83 msgid "Temporary Procedure" msgstr "임시 프로시져" -#: app/pdb/selection_tools_cmds.c:332 app/tools/gimpfreeselecttool.c:96 +#: ../app/pdb/selection_tools_cmds.c:332 ../app/tools/gimpfreeselecttool.c:96 msgid "Free Select" msgstr "자유 선택" -#: app/plug-in/plug-in.c:544 app/plug-in/plug-in.c:574 -#, fuzzy, c-format +#: ../app/plug-in/plug-in.c:544 ../app/plug-in/plug-in.c:574 +#, c-format msgid "Terminating plug-in: '%s'\n" -msgstr "플러그인 조회 중: '%s'\n" +msgstr "플러그인 종료 중: '%s'\n" -#: app/plug-in/plug-in.c:730 +#: ../app/plug-in/plug-in.c:730 #, c-format msgid "" "Plug-In crashed: \"%s\"\n" @@ -8517,77 +7853,75 @@ "비정상 종료한 플러그인이 김프의 내부 상태에 영향을 주었을 수 있습니다.\n" "이미지를 저장하고 김프를 재시작하는 것이 안전합니다." -#: 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' 건너뜀: 잘못된 김프 프로토콜 버전." -#: app/plug-in/plug-in-rc.c:432 -#, fuzzy, c-format +#: ../app/plug-in/plug-in-rc.c:432 +#, c-format msgid "invalid value '%s' for icon type" -msgstr "잘못된 값 '%s' (토큰 '%s')" +msgstr "잘못된 아이콘 유형 값 '%s'" -#: app/plug-in/plug-in-rc.c:447 -#, fuzzy, c-format +#: ../app/plug-in/plug-in-rc.c:447 +#, c-format msgid "invalid value '%ld' for icon type" -msgstr "잘못된 값 '%ld' (토큰 %s)" +msgstr "잘못된 아이콘 유형 값 값 '%ld'" -#: app/plug-in/plug-ins.c:139 +#: ../app/plug-in/plug-ins.c:139 msgid "Resource configuration" msgstr "자원 설정" #. Query any plug-ins that have changed since we last wrote out #. * the pluginrc file. #. -#: app/plug-in/plug-ins.c:153 +#: ../app/plug-in/plug-ins.c:153 msgid "Querying new Plug-ins" msgstr "새 플러그인 조회 중" -#: app/plug-in/plug-ins.c:170 +#: ../app/plug-in/plug-ins.c:170 #, c-format msgid "Querying plug-in: '%s'\n" msgstr "플러그인 조회 중: '%s'\n" #. initialize the plug-ins -#: app/plug-in/plug-ins.c:180 +#: ../app/plug-in/plug-ins.c:180 msgid "Initializing Plug-ins" msgstr "플러그인 초기화 중" -#: app/plug-in/plug-ins.c:194 +#: ../app/plug-in/plug-ins.c:194 #, c-format msgid "Initializing plug-in: '%s'\n" msgstr "플러그인 초기화 중: \"%s\"\n" -#: app/plug-in/plug-ins.c:351 +#: ../app/plug-in/plug-ins.c:351 msgid "Starting Extensions" msgstr "확장 시작 중" -#: app/plug-in/plug-ins.c:358 +#: ../app/plug-in/plug-ins.c:358 #, c-format msgid "Starting extension: '%s'\n" msgstr "확장 시작 중: \"%s\"\n" -#: app/text/text-enums.c:81 -#, fuzzy +#: ../app/text/text-enums.c:81 msgid "Left justified" msgstr "왼쪽 정렬" -#: app/text/text-enums.c:82 -#, fuzzy +#: ../app/text/text-enums.c:82 msgid "Right justified" msgstr "오른쪽 정렬" -#: app/text/text-enums.c:83 +#: ../app/text/text-enums.c:83 msgid "Centered" msgstr "중앙 정렬" -#: app/text/text-enums.c:84 +#: ../app/text/text-enums.c:84 msgid "Filled" msgstr "채움" #. This is a so-called pangram; it's supposed to #. contain all characters found in the alphabet. -#: app/text/gimpfont.c:39 +#: ../app/text/gimpfont.c:39 msgid "" "Pack my box with\n" "five dozen liquor jugs." @@ -8597,60 +7931,55 @@ "무궁화 꽃이 피었습니다.\n" "아름답고 고운 우리 말 우리 글!" -#: app/text/gimptext-compat.c:106 app/tools/gimptexttool.c:697 +#: ../app/text/gimptext-compat.c:108 ../app/tools/gimptexttool.c:699 msgid "Add Text Layer" msgstr "텍스트 레이어 더하기" -#: app/text/gimptextlayer.c:170 +#: ../app/text/gimptextlayer.c:170 msgid "Text Layer" msgstr "텍스트 레이어" -#: app/text/gimptextlayer.c:171 -#, fuzzy +#: ../app/text/gimptextlayer.c:171 msgid "Rename Text Layer" -msgstr "레이어 이름 바꾸기" +msgstr "텍스트 레이어 이름 바꾸기" -#: app/text/gimptextlayer.c:172 -#, fuzzy +#: ../app/text/gimptextlayer.c:172 msgid "Move Text Layer" -msgstr "텍스트 레이어 회전" +msgstr "텍스트 레이어 이동" -#: app/text/gimptextlayer.c:173 -#, fuzzy +#: ../app/text/gimptextlayer.c:173 msgid "Scale Text Layer" -msgstr "레이어 배율 바꾸기" +msgstr "텍스트 레이어 배율 바꾸기" -#: app/text/gimptextlayer.c:174 -#, fuzzy +#: ../app/text/gimptextlayer.c:174 msgid "Resize Text Layer" -msgstr "레이어 크기 바꾸기" +msgstr "텍스트 레이어 크기 바꾸기" -#: app/text/gimptextlayer.c:175 +#: ../app/text/gimptextlayer.c:175 msgid "Flip Text Layer" msgstr "텍스트 레이어 뒤집기" -#: app/text/gimptextlayer.c:176 +#: ../app/text/gimptextlayer.c:176 msgid "Rotate Text Layer" msgstr "텍스트 레이어 회전" -#: app/text/gimptextlayer.c:177 -#, fuzzy +#: ../app/text/gimptextlayer.c:177 msgid "Transform Text Layer" -msgstr "레이어 변형" +msgstr "텍스트 레이어 변형" -#: app/text/gimptextlayer.c:531 +#: ../app/text/gimptextlayer.c:531 msgid "Discard Text Information" -msgstr "텍스 정보 버리기" +msgstr "텍스트 정보 버리기" -#: app/text/gimptextlayer.c:581 +#: ../app/text/gimptextlayer.c:581 msgid "Due to lack of any fonts, text functionality is not available." msgstr "글꼴이 없으므로, 텍스 기능은 사용할 수 없습니다." -#: app/text/gimptextlayer.c:616 +#: ../app/text/gimptextlayer.c:616 msgid "Empty Text Layer" msgstr "빈 텍스트 레이어" -#: app/text/gimptextlayer-xcf.c:73 +#: ../app/text/gimptextlayer-xcf.c:73 #, c-format msgid "" "Problems parsing the text parasite for layer '%s':\n" @@ -8665,1272 +7994,1181 @@ "일분 텍스트 등록정보가 틀릴 수 있습니다. 텍스트 레이어를 수정하지 않는다면, " "이 문제에 대해 걱정할 필요가 없습니다." -#: app/tools/tools-enums.c:25 -#, fuzzy +#: ../app/tools/tools-enums.c:25 msgid "Pick only" msgstr "추출만" -#: app/tools/tools-enums.c:26 -#, fuzzy +#: ../app/tools/tools-enums.c:26 msgid "Set foreground color" msgstr "전경색 지정" -#: app/tools/tools-enums.c:27 -#, fuzzy +#: ../app/tools/tools-enums.c:27 msgid "Set background color" msgstr "배경색 지정" -#: app/tools/tools-enums.c:54 +#: ../app/tools/tools-enums.c:54 msgid "Crop" msgstr "자르기" -#: app/tools/tools-enums.c:55 +#: ../app/tools/tools-enums.c:55 msgid "Resize" msgstr "크기조정" -#: app/tools/tools-enums.c:83 -#, fuzzy +#: ../app/tools/tools-enums.c:83 msgid "Free select" msgstr "자유 선택" -#: app/tools/tools-enums.c:84 -#, fuzzy +#: ../app/tools/tools-enums.c:84 msgid "Fixed size" msgstr "고정된 크기" -#: app/tools/tools-enums.c:85 -#, fuzzy +#: ../app/tools/tools-enums.c:85 msgid "Fixed aspect ratio" msgstr "고정된 종횡비" -#: app/tools/tools-enums.c:113 -#, fuzzy +#: ../app/tools/tools-enums.c:113 msgid "Transform layer" msgstr "레이어 변형" -#: app/tools/tools-enums.c:114 -#, fuzzy +#: ../app/tools/tools-enums.c:114 msgid "Transform selection" msgstr "선택 변형" -#: app/tools/tools-enums.c:115 -#, fuzzy +#: ../app/tools/tools-enums.c:115 msgid "Transform path" msgstr "경로 변형" -#: app/tools/tools-enums.c:143 +#: ../app/tools/tools-enums.c:143 msgid "Design" msgstr "디자인" -#: app/tools/tools-enums.c:145 app/tools/gimpmovetool.c:116 +#: ../app/tools/tools-enums.c:145 ../app/tools/gimpmovetool.c:116 msgid "Move" msgstr "이동" -#: app/tools/tools-enums.c:174 +#: ../app/tools/tools-enums.c:174 msgid "Outline" -msgstr "" +msgstr "아웃라인" -#: app/tools/tools-enums.c:177 -#, fuzzy +#: ../app/tools/tools-enums.c:177 msgid "Image + Grid" -msgstr "기본 이미지 모눈:" +msgstr "이미지 + 모눈" -#: app/tools/tools-enums.c:204 -#, fuzzy +#: ../app/tools/tools-enums.c:204 msgid "Number of grid lines" msgstr "모눈 줄 수" -#: app/tools/tools-enums.c:205 -#, fuzzy +#: ../app/tools/tools-enums.c:205 msgid "Grid line spacing" msgstr "모눈 줄 간격" -#: app/tools/gimp-tools.c:283 +#: ../app/tools/gimp-tools.c:284 msgid "This tool has no options." msgstr "이 도구는 선택사항이 없습니다." -#: app/tools/gimpairbrushtool.c:56 +#: ../app/tools/gimpairbrushtool.c:56 msgid "Airbrush with variable pressure" msgstr "압력 감지 에어브러시" -#: app/tools/gimpairbrushtool.c:57 -#, fuzzy +#: ../app/tools/gimpairbrushtool.c:57 msgid "_Airbrush" -msgstr "에어브러시" +msgstr "에어브러시(_A)" -#: app/tools/gimpairbrushtool.c:123 app/tools/gimpconvolvetool.c:211 -#: app/tools/gimpsmudgetool.c:123 +#: ../app/tools/gimpairbrushtool.c:123 ../app/tools/gimpconvolvetool.c:211 +#: ../app/tools/gimpsmudgetool.c:123 msgid "Rate:" msgstr "감도:" -#: app/tools/gimpairbrushtool.c:129 +#: ../app/tools/gimpairbrushtool.c:129 msgid "Pressure:" msgstr "압력:" -#: app/tools/gimpblendoptions.c:246 +#: ../app/tools/gimpblendoptions.c:246 msgid "Offset:" msgstr "옵셋:" -#: app/tools/gimpblendoptions.c:255 app/widgets/gimpbrusheditor.c:145 +#: ../app/tools/gimpblendoptions.c:255 ../app/widgets/gimpbrusheditor.c:145 msgid "Shape:" msgstr "모양:" -#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:417 +#: ../app/tools/gimpblendoptions.c:261 ../app/tools/gimppaintoptions-gui.c:419 msgid "Repeat:" msgstr "반복:" -#: app/tools/gimpblendoptions.c:279 -#, fuzzy +#: ../app/tools/gimpblendoptions.c:279 msgid "Adaptive supersampling" msgstr "적응형 슈퍼샘플링" -#: app/tools/gimpblendoptions.c:297 +#: ../app/tools/gimpblendoptions.c:297 msgid "Max Depth:" msgstr "최대 깊이:" -#: app/tools/gimpblendoptions.c:304 app/tools/gimpbucketfilloptions.c:295 -#: app/tools/gimpmagnifyoptions.c:226 app/tools/gimpselectionoptions.c:466 +#: ../app/tools/gimpblendoptions.c:304 +#: ../app/tools/gimpbucketfilloptions.c:295 +#: ../app/tools/gimpmagnifyoptions.c:226 +#: ../app/tools/gimpselectionoptions.c:466 msgid "Threshold:" msgstr "임계값:" -#: app/tools/gimpblendtool.c:102 +#: ../app/tools/gimpblendtool.c:102 msgid "Fill with a color gradient" msgstr "그라디언트로 채우기" -#: app/tools/gimpblendtool.c:103 -#, fuzzy +#: ../app/tools/gimpblendtool.c:103 msgid "Blen_d" -msgstr "혼합" +msgstr "혼합(_D)" -#: app/tools/gimpblendtool.c:191 +#: ../app/tools/gimpblendtool.c:191 msgid "Blend: Invalid for indexed images." msgstr "혼합: 인덱스된 이미지에는 사용할 수 없습니다." #. initialize the statusbar display -#: app/tools/gimpblendtool.c:209 app/tools/gimpblendtool.c:308 +#: ../app/tools/gimpblendtool.c:209 ../app/tools/gimpblendtool.c:308 msgid "Blend: " msgstr "혼합: " -#: app/tools/gimpbrightnesscontrasttool.c:86 +#: ../app/tools/gimpbrightnesscontrasttool.c:86 msgid "Adjust brightness and contrast" msgstr "명도와 대비를 조절합니다" -#: app/tools/gimpbrightnesscontrasttool.c:87 -#, fuzzy +#: ../app/tools/gimpbrightnesscontrasttool.c:87 msgid "B_rightness-Contrast..." -msgstr "명도-대비" +msgstr "명도-대비(_R)..." -#: app/tools/gimpbrightnesscontrasttool.c:138 +#: ../app/tools/gimpbrightnesscontrasttool.c:138 msgid "Adjust Brightness and Contrast" msgstr "명도 대비 조절" -#: app/tools/gimpbrightnesscontrasttool.c:181 +#: ../app/tools/gimpbrightnesscontrasttool.c:181 msgid "Brightness-Contrast does not operate on indexed layers." msgstr "명도-대비는 인덱스된 레이어에 동작하지 않습니다." -#: app/tools/gimpbrightnesscontrasttool.c:236 +#: ../app/tools/gimpbrightnesscontrasttool.c:236 msgid "_Brightness:" msgstr "명도(_B):" -#: app/tools/gimpbrightnesscontrasttool.c:251 +#: ../app/tools/gimpbrightnesscontrasttool.c:251 msgid "Con_trast:" msgstr "대비(_T):" -#: app/tools/gimpbucketfilloptions.c:129 +#: ../app/tools/gimpbucketfilloptions.c:129 msgid "Allow completely transparent regions to be filled" msgstr "완전 투명 영역 채우기 허용" -#: app/tools/gimpbucketfilloptions.c:135 +#: ../app/tools/gimpbucketfilloptions.c:135 msgid "Base filled area on all visible layers" msgstr "모든 보이는 레이어에서 기본 채움 영역" -#: app/tools/gimpbucketfilloptions.c:141 app/tools/gimpselectionoptions.c:161 +#: ../app/tools/gimpbucketfilloptions.c:141 +#: ../app/tools/gimpselectionoptions.c:161 msgid "Maximum color difference" msgstr "최대 색상 차이" #. fill type -#: app/tools/gimpbucketfilloptions.c:238 +#: ../app/tools/gimpbucketfilloptions.c:238 #, c-format msgid "Fill Type %s" msgstr "채우기 유형 %s" #. fill selection -#: app/tools/gimpbucketfilloptions.c:250 +#: ../app/tools/gimpbucketfilloptions.c:250 #, c-format msgid "Affected Area %s" msgstr "영향을 받는 영역 %s" -#: app/tools/gimpbucketfilloptions.c:254 -#, fuzzy +#: ../app/tools/gimpbucketfilloptions.c:254 msgid "Fill whole selection" msgstr "전체 선택 채우기" -#: app/tools/gimpbucketfilloptions.c:255 -#, fuzzy +#: ../app/tools/gimpbucketfilloptions.c:255 msgid "Fill similar colors" msgstr "비슷한 색상 채우기" -#: app/tools/gimpbucketfilloptions.c:261 app/tools/gimpselectionoptions.c:438 +#: ../app/tools/gimpbucketfilloptions.c:261 +#: ../app/tools/gimpselectionoptions.c:438 msgid "Finding Similar Colors" msgstr "비슷한 색상 찾기" -#: app/tools/gimpbucketfilloptions.c:277 -#, fuzzy +#: ../app/tools/gimpbucketfilloptions.c:277 msgid "Fill transparent areas" msgstr "투명한 영역 채우기" -#: app/tools/gimpbucketfilloptions.c:283 -#: app/tools/gimpcolorpickeroptions.c:179 app/tools/gimpselectionoptions.c:454 -#: app/tools/gimpselectionoptions.c:502 -#, fuzzy +#: ../app/tools/gimpbucketfilloptions.c:283 +#: ../app/tools/gimpcolorpickeroptions.c:179 +#: ../app/tools/gimpselectionoptions.c:454 +#: ../app/tools/gimpselectionoptions.c:502 msgid "Sample merged" msgstr "샘플 머지" -#: app/tools/gimpbucketfilltool.c:92 +#: ../app/tools/gimpbucketfilltool.c:92 msgid "Fill with a color or pattern" msgstr "색상이나 무늬로 채우기" -#: app/tools/gimpbucketfilltool.c:93 -#, fuzzy +#: ../app/tools/gimpbucketfilltool.c:93 msgid "_Bucket Fill" -msgstr "영역 채우기" +msgstr "영역 채우기(_B)" -#: app/tools/gimpbycolorselecttool.c:82 +#: ../app/tools/gimpbycolorselecttool.c:82 msgid "Select By Color" msgstr "색상으로 선택" -#: app/tools/gimpbycolorselecttool.c:83 +#: ../app/tools/gimpbycolorselecttool.c:83 msgid "Select regions by color" msgstr "색상으로 영역 선택" -#: app/tools/gimpbycolorselecttool.c:84 -#, fuzzy +#: ../app/tools/gimpbycolorselecttool.c:84 msgid "_By Color Select" -msgstr "레이어 선택" +msgstr "색상으로 선택(_B)" -#: app/tools/gimpclonetool.c:90 +#: ../app/tools/gimpclonetool.c:90 msgid "Paint using Patterns or Image Regions" msgstr "무늬나 이미지 영역을 사용하여 칠하기" -#: app/tools/gimpclonetool.c:91 -#, fuzzy +#: ../app/tools/gimpclonetool.c:91 msgid "_Clone" -msgstr "도장" +msgstr "복제(_C)" -#: app/tools/gimpclonetool.c:266 +#: ../app/tools/gimpclonetool.c:288 msgid "Source" msgstr "소스" -#: app/tools/gimpclonetool.c:275 +#: ../app/tools/gimpclonetool.c:297 msgid "Alignment" msgstr "정렬" -#: app/tools/gimpcolorbalancetool.c:97 +#: ../app/tools/gimpcolorbalancetool.c:97 msgid "Adjust color balance" msgstr "색상 균형 조정" -#: app/tools/gimpcolorbalancetool.c:98 -#, fuzzy +#: ../app/tools/gimpcolorbalancetool.c:98 msgid "Color _Balance..." -msgstr "색상 균형" +msgstr "색상 균형(_B)..." -#: app/tools/gimpcolorbalancetool.c:149 +#: ../app/tools/gimpcolorbalancetool.c:149 msgid "Adjust Color Balance" msgstr "색상 균형 조절" -#: app/tools/gimpcolorbalancetool.c:193 +#: ../app/tools/gimpcolorbalancetool.c:193 msgid "Color balance operates only on RGB color layers." msgstr "색상 균형은 RGB 색상 레이어에만 동작합니다." -#: app/tools/gimpcolorbalancetool.c:276 +#: ../app/tools/gimpcolorbalancetool.c:276 msgid "Select Range to Modify" msgstr "변경할 범위를 선택하십시오" -#: app/tools/gimpcolorbalancetool.c:284 +#: ../app/tools/gimpcolorbalancetool.c:284 msgid "Modify Selected Range's Color Levels" msgstr "선택한 범위의 색상 레벨을 변경합니다." -#: app/tools/gimpcolorbalancetool.c:301 +#: ../app/tools/gimpcolorbalancetool.c:301 msgid "Cyan" msgstr "청록색" -#: app/tools/gimpcolorbalancetool.c:308 +#: ../app/tools/gimpcolorbalancetool.c:308 msgid "Magenta" msgstr "자홍색" -#: app/tools/gimpcolorbalancetool.c:315 +#: ../app/tools/gimpcolorbalancetool.c:315 msgid "Yellow" msgstr "노란색" -#: app/tools/gimpcolorbalancetool.c:325 -#, fuzzy +#: ../app/tools/gimpcolorbalancetool.c:325 msgid "R_eset range" msgstr "범위 초기화(_E)" -#: app/tools/gimpcolorbalancetool.c:334 -#, fuzzy +#: ../app/tools/gimpcolorbalancetool.c:334 msgid "Preserve _luminosity" -msgstr "휘도 유지(_L)" +msgstr "명도 유지(_L)" -#: app/tools/gimpcolorizetool.c:97 +#: ../app/tools/gimpcolorizetool.c:97 msgid "Colorize the image" msgstr "이미지 컬러화(Colorize)" -#: app/tools/gimpcolorizetool.c:98 -#, fuzzy +#: ../app/tools/gimpcolorizetool.c:98 msgid "Colori_ze..." -msgstr "컬러화(Colorize)" +msgstr "컬러화(_Z)..." -#: app/tools/gimpcolorizetool.c:152 +#: ../app/tools/gimpcolorizetool.c:152 msgid "Colorize the Image" msgstr "이미지 컬러화" -#: app/tools/gimpcolorizetool.c:195 +#: ../app/tools/gimpcolorizetool.c:195 msgid "Colorize operates only on RGB color layers." msgstr "컬러화는 RGB 색상 레이어에서만 동작합니다." -#: app/tools/gimpcolorizetool.c:235 +#: ../app/tools/gimpcolorizetool.c:235 msgid "Select Color" msgstr "색상 선택" -#: app/tools/gimpcolorizetool.c:253 app/tools/gimphuesaturationtool.c:361 +#: ../app/tools/gimpcolorizetool.c:253 +#: ../app/tools/gimphuesaturationtool.c:361 msgid "_Hue:" msgstr "색상(_H):" -#: app/tools/gimpcolorizetool.c:267 app/tools/gimphuesaturationtool.c:389 +#: ../app/tools/gimpcolorizetool.c:267 +#: ../app/tools/gimphuesaturationtool.c:389 msgid "_Saturation:" msgstr "채도(_S):" -#: app/tools/gimpcolorizetool.c:281 app/tools/gimphuesaturationtool.c:375 +#: ../app/tools/gimpcolorizetool.c:281 +#: ../app/tools/gimphuesaturationtool.c:375 msgid "_Lightness:" msgstr "명도(_L):" -#: app/tools/gimpcoloroptions.c:184 -#, fuzzy +#: ../app/tools/gimpcoloroptions.c:184 msgid "Sample average" msgstr "샘플 평균" -#: app/tools/gimpcoloroptions.c:194 app/tools/gimpselectionoptions.c:416 -#: app/widgets/gimpbrusheditor.c:153 +#: ../app/tools/gimpcoloroptions.c:194 ../app/tools/gimpselectionoptions.c:416 +#: ../app/widgets/gimpbrusheditor.c:153 msgid "Radius:" msgstr "반경:" #. the pick FG/BG frame -#: app/tools/gimpcolorpickeroptions.c:184 +#: ../app/tools/gimpcolorpickeroptions.c:184 #, c-format msgid "Pick Mode %s" msgstr "추출 모드 %s" #. the add to palette toggle -#: app/tools/gimpcolorpickeroptions.c:193 -#, fuzzy, c-format +#: ../app/tools/gimpcolorpickeroptions.c:193 +#, c-format msgid "Add to palette %s" -msgstr "/색상표 편집(_E)..." +msgstr "색상표에 더하기 %s" -#: app/tools/gimpcolorpickertool.c:99 +#: ../app/tools/gimpcolorpickertool.c:99 msgid "Color Picker" msgstr "색상 추출" -#: app/tools/gimpcolorpickertool.c:100 +#: ../app/tools/gimpcolorpickertool.c:100 msgid "Pick colors from the image" msgstr "이미지에서 색상 추출" -#: app/tools/gimpcolorpickertool.c:101 -#, fuzzy +#: ../app/tools/gimpcolorpickertool.c:101 msgid "C_olor Picker" -msgstr "색상 추출" +msgstr "색상 추출(_O)" #. tool->gdisp->shell -#: app/tools/gimpcolorpickertool.c:343 +#: ../app/tools/gimpcolorpickertool.c:343 msgid "Color Picker Information" msgstr "색상 추출 정보" -#: app/tools/gimpconvolvetool.c:71 +#: ../app/tools/gimpconvolvetool.c:71 msgid "Blur or Sharpen" msgstr "흐릿하게 혹은 선명하게" -#: app/tools/gimpconvolvetool.c:72 -#, fuzzy +#: ../app/tools/gimpconvolvetool.c:72 msgid "Con_volve" -msgstr "흐리게 선명하게" +msgstr "컨벌브(_V)" #. the type radio box -#: app/tools/gimpconvolvetool.c:193 +#: ../app/tools/gimpconvolvetool.c:193 #, c-format msgid "Convolve Type %s" msgstr "컨벌브 유형 %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 "도구 전환 %s" -#: app/tools/gimpcropoptions.c:200 -#, fuzzy +#: ../app/tools/gimpcropoptions.c:200 msgid "Current layer only" msgstr "현재 레이어만" #. enlarge toggle -#: app/tools/gimpcropoptions.c:205 -#, fuzzy, c-format +#: ../app/tools/gimpcropoptions.c:205 +#, c-format msgid "Allow enlarging %s" -msgstr "확대 허용 %s" +msgstr "확대 허용 %s" #. layer toggle -#: app/tools/gimpcropoptions.c:215 -#, fuzzy, c-format +#: ../app/tools/gimpcropoptions.c:215 +#, c-format msgid "Keep aspect ratio %s" -msgstr "고정된 종횡비" +msgstr "종횡비 유지 %s" -#: app/tools/gimpcroptool.c:164 +#: ../app/tools/gimpcroptool.c:164 msgid "Crop & Resize" msgstr "자르기 & 크기 바꾸기" -#: app/tools/gimpcroptool.c:165 +#: ../app/tools/gimpcroptool.c:165 msgid "Crop or Resize an image" msgstr "이미지를 자르거나 크기를 바꿉니다" -#: app/tools/gimpcroptool.c:166 -#, fuzzy +#: ../app/tools/gimpcroptool.c:166 msgid "_Crop & Resize" -msgstr "자르기 & 크기 바꾸기" +msgstr "자르기 & 크기 바꾸기(_C)" #. initialize the statusbar display -#: app/tools/gimpcroptool.c:499 app/tools/gimpcroptool.c:983 +#: ../app/tools/gimpcroptool.c:499 ../app/tools/gimpcroptool.c:983 msgid "Crop: " msgstr "자르기: " -#: app/tools/gimpcroptool.c:1010 +#: ../app/tools/gimpcroptool.c:1010 msgid "Crop & Resize Information" msgstr "자르기 & 크기 바꾸기 정보" -#: app/tools/gimpcroptool.c:1029 +#: ../app/tools/gimpcroptool.c:1029 msgid "Origin X:" msgstr "시작 X:" -#: app/tools/gimpcroptool.c:1033 -#, fuzzy +#: ../app/tools/gimpcroptool.c:1033 msgid "Origin Y:" -msgstr "시작 X:" +msgstr "시작 Y:" -#: app/tools/gimpcroptool.c:1071 app/widgets/gimpbrusheditor.c:194 -#, fuzzy +#: ../app/tools/gimpcroptool.c:1071 ../app/widgets/gimpbrusheditor.c:194 msgid "Aspect ratio:" msgstr "종횡비:" -#: app/tools/gimpcroptool.c:1082 -#, fuzzy +#: ../app/tools/gimpcroptool.c:1082 msgid "From selection" msgstr "선택에서" -#: app/tools/gimpcroptool.c:1090 -#, fuzzy +#: ../app/tools/gimpcroptool.c:1090 msgid "Auto shrink" msgstr "자동 줄이기" -#: app/tools/gimpcurvestool.c:142 +#: ../app/tools/gimpcurvestool.c:142 msgid "Adjust color curves" msgstr "색상 곡선 조절" -#: app/tools/gimpcurvestool.c:143 -#, fuzzy +#: ../app/tools/gimpcurvestool.c:143 msgid "_Curves..." -msgstr "곡선" +msgstr "곡선(_C)..." -#: app/tools/gimpcurvestool.c:202 +#: ../app/tools/gimpcurvestool.c:202 msgid "Adjust Color Curves" msgstr "색상 곡선 조절" -#: app/tools/gimpcurvestool.c:204 +#: ../app/tools/gimpcurvestool.c:204 msgid "Load Curves" msgstr "곡선 읽기" -#: app/tools/gimpcurvestool.c:205 -#, fuzzy +#: ../app/tools/gimpcurvestool.c:205 msgid "Load curves settings from file" msgstr "곡선 설정을 파일에서 읽음" -#: app/tools/gimpcurvestool.c:206 +#: ../app/tools/gimpcurvestool.c:206 msgid "Save Curves" msgstr "곡선 저장" -#: app/tools/gimpcurvestool.c:207 +#: ../app/tools/gimpcurvestool.c:207 msgid "Save curves settings to file" msgstr "곡선 설정을 파일에 저장" -#: app/tools/gimpcurvestool.c:283 +#: ../app/tools/gimpcurvestool.c:283 msgid "Curves for indexed layers cannot be adjusted." msgstr "곡선 조절은 인덱스된 색상 레이어에서 동작하지 않습니다." -#: app/tools/gimpcurvestool.c:479 app/tools/gimplevelstool.c:415 -#: app/widgets/gimphistogrameditor.c:161 +#: ../app/tools/gimpcurvestool.c:479 ../app/tools/gimplevelstool.c:415 +#: ../app/widgets/gimphistogrameditor.c:161 msgid "Channel:" msgstr "채널:" -#: app/tools/gimpcurvestool.c:494 app/tools/gimplevelstool.c:430 -#, fuzzy +#: ../app/tools/gimpcurvestool.c:494 ../app/tools/gimplevelstool.c:430 msgid "R_eset channel" -msgstr "채널 초기화" +msgstr "채널 초기화(_E)" #. Horizontal button box for load / save -#: app/tools/gimpcurvestool.c:596 app/tools/gimplevelstool.c:640 +#: ../app/tools/gimpcurvestool.c:596 ../app/tools/gimplevelstool.c:640 msgid "All Channels" msgstr "모든 채널" #. The radio box for selecting the curve type -#: app/tools/gimpcurvestool.c:614 +#: ../app/tools/gimpcurvestool.c:614 msgid "Curve Type" -msgstr "곡선 종류:" +msgstr "곡선 유형" -#: app/tools/gimpdodgeburntool.c:71 +#: ../app/tools/gimpdodgeburntool.c:71 msgid "Dodge or Burn strokes" msgstr "피하기 또는 태우기 따라 그리기" -#: app/tools/gimpdodgeburntool.c:72 -#, fuzzy +#: ../app/tools/gimpdodgeburntool.c:72 msgid "Dod_geBurn" -msgstr "피하기/태우기" +msgstr "피하기/태우기(_G)" #. the type (dodge or burn) -#: app/tools/gimpdodgeburntool.c:192 +#: ../app/tools/gimpdodgeburntool.c:192 #, c-format msgid "Type %s" msgstr "유형 %s" -#: app/tools/gimpdodgeburntool.c:204 +#: ../app/tools/gimpdodgeburntool.c:204 msgid "Mode" msgstr "모드" -#: app/tools/gimpdodgeburntool.c:216 +#: ../app/tools/gimpdodgeburntool.c:216 msgid "Exposure:" msgstr "노출:" -#: app/tools/gimpeditselectiontool.c:262 -#: app/tools/gimpeditselectiontool.c:1203 -#, fuzzy +#: ../app/tools/gimpeditselectiontool.c:262 +#: ../app/tools/gimpeditselectiontool.c:1203 msgid "Move Floating Selection" -msgstr "떠있는 선택" +msgstr "떠있는 선택 이동" -#: app/tools/gimpeditselectiontool.c:464 app/tools/gimpeditselectiontool.c:732 +#: ../app/tools/gimpeditselectiontool.c:464 +#: ../app/tools/gimpeditselectiontool.c:732 msgid "Move: " msgstr "이동: " -#: app/tools/gimpellipseselecttool.c:72 +#: ../app/tools/gimpellipseselecttool.c:72 msgid "Select elliptical regions" msgstr "타원형으로 영역 선택" -#: app/tools/gimpellipseselecttool.c:73 -#, fuzzy +#: ../app/tools/gimpellipseselecttool.c:73 msgid "_Ellipse Select" -msgstr "타원 선택" +msgstr "타원 선택(_E)" -#: app/tools/gimperasertool.c:71 +#: ../app/tools/gimperasertool.c:71 msgid "Erase to background or transparency" -msgstr "배경색 또는 투명하게 지우기" +msgstr "배경색 또는 투명색으로 지우기" -#: app/tools/gimperasertool.c:72 -#, fuzzy +#: ../app/tools/gimperasertool.c:72 msgid "_Eraser" -msgstr "지우개" +msgstr "지우개(_E)" #. the anti_erase toggle -#: app/tools/gimperasertool.c:185 -#, fuzzy, c-format +#: ../app/tools/gimperasertool.c:185 +#, c-format msgid "Anti erase %s" msgstr "지우기 복구 %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 "영향:" #. tool toggle -#: app/tools/gimpflipoptions.c:167 +#: ../app/tools/gimpflipoptions.c:167 #, c-format msgid "Flip Type %s" msgstr "뒤집기 유형 %s" -#: app/tools/gimpfliptool.c:83 +#: ../app/tools/gimpfliptool.c:83 msgid "Flip the layer or selection" msgstr "레이어 혹은 선택 뒤집기" -#: app/tools/gimpfliptool.c:84 -#, fuzzy +#: ../app/tools/gimpfliptool.c:84 msgid "_Flip" -msgstr "뒤집기" +msgstr "뒤집기(_F)" -#: app/tools/gimpfreeselecttool.c:97 +#: ../app/tools/gimpfreeselecttool.c:97 msgid "Select hand-drawn regions" msgstr "손으로 그려서 영역 선택" -#: app/tools/gimpfreeselecttool.c:98 -#, fuzzy +#: ../app/tools/gimpfreeselecttool.c:98 msgid "_Free Select" -msgstr "자유 선택" +msgstr "자유 선택(_F)" -#: app/tools/gimpfuzzyselecttool.c:98 +#: ../app/tools/gimpfuzzyselecttool.c:98 msgid "Select contiguous regions" msgstr "연속적인 영역 선택" -#: app/tools/gimpfuzzyselecttool.c:99 -#, fuzzy +#: ../app/tools/gimpfuzzyselecttool.c:99 msgid "Fu_zzy Select" -msgstr "퍼지 선택" +msgstr "퍼지 선택(_Z)" -#: app/tools/gimphistogramoptions.c:151 +#: ../app/tools/gimphistogramoptions.c:151 msgid "Histogram Scale" msgstr "히스토그램 배율" -#: app/tools/gimphuesaturationtool.c:111 +#: ../app/tools/gimphuesaturationtool.c:111 msgid "Adjust hue and saturation" msgstr "색상(Hue)과 채도(Saturation) 조절" -#: app/tools/gimphuesaturationtool.c:112 -#, fuzzy +#: ../app/tools/gimphuesaturationtool.c:112 msgid "Hue-_Saturation..." -msgstr "색상-채도" +msgstr "색상-채도(_S)..." -#: app/tools/gimphuesaturationtool.c:166 -#, fuzzy +#: ../app/tools/gimphuesaturationtool.c:166 msgid "Adjust hue / lightness / saturation" msgstr "색상 / 명도 / 채도 조절" -#: app/tools/gimphuesaturationtool.c:210 +#: ../app/tools/gimphuesaturationtool.c:210 msgid "Hue-Saturation operates only on RGB color layers." msgstr "색상-채도는 RGB 색상 레이어에서만 동작합니다." -#: app/tools/gimphuesaturationtool.c:263 -#, fuzzy +#: ../app/tools/gimphuesaturationtool.c:263 msgid "M_aster" -msgstr "마스터(_M)" +msgstr "마스터(_A)" -#: 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 "변경할 원색을 선택하십시오" -#: app/tools/gimphuesaturationtool.c:300 +#: ../app/tools/gimphuesaturationtool.c:300 msgid "Modify all colors" msgstr "모든 색상 변경" -#: app/tools/gimphuesaturationtool.c:343 +#: ../app/tools/gimphuesaturationtool.c:343 msgid "Modify Selected Color" msgstr "선택한 색상 변경" -#: app/tools/gimphuesaturationtool.c:405 -#, fuzzy +#: ../app/tools/gimphuesaturationtool.c:405 msgid "R_eset color" msgstr "색상 초기화(_E)" -#: app/tools/gimpimagemaptool.c:259 app/widgets/gimpthumbbox.c:354 +#: ../app/tools/gimpimagemaptool.c:259 ../app/widgets/gimpthumbbox.c:354 msgid "_Preview" msgstr "미리보기(_P)" -#: app/tools/gimpimagemaptool.c:292 -#, fuzzy +#: ../app/tools/gimpimagemaptool.c:292 msgid "Quick Load" -msgstr "퀵마스크" +msgstr "퀵마스크 불러오기" -#: app/tools/gimpimagemaptool.c:322 -#, fuzzy +#: ../app/tools/gimpimagemaptool.c:322 msgid "Quick Save" -msgstr "퀵마스크" +msgstr "퀵마스크 저장" #. adjust sliders -#: app/tools/gimpinkoptions-gui.c:59 +#: ../app/tools/gimpinkoptions-gui.c:59 msgid "Adjustment" msgstr "조절" -#: app/tools/gimpinkoptions-gui.c:71 app/tools/gimpinkoptions-gui.c:96 -#: app/tools/gimptextoptions.c:426 +#: ../app/tools/gimpinkoptions-gui.c:71 ../app/tools/gimpinkoptions-gui.c:96 +#: ../app/tools/gimptextoptions.c:426 msgid "Size:" msgstr "크기:" -#: app/tools/gimpinkoptions-gui.c:79 app/tools/gimpmeasuretool.c:891 -#: app/tools/gimprotatetool.c:169 app/widgets/gimpbrusheditor.c:207 +#: ../app/tools/gimpinkoptions-gui.c:79 ../app/tools/gimpmeasuretool.c:891 +#: ../app/tools/gimprotatetool.c:169 ../app/widgets/gimpbrusheditor.c:207 msgid "Angle:" msgstr "각도:" #. sens sliders -#: app/tools/gimpinkoptions-gui.c:84 +#: ../app/tools/gimpinkoptions-gui.c:84 msgid "Sensitivity" msgstr "감도" -#: app/tools/gimpinkoptions-gui.c:103 +#: ../app/tools/gimpinkoptions-gui.c:103 msgid "Tilt:" msgstr "기울기:" -#: app/tools/gimpinkoptions-gui.c:110 +#: ../app/tools/gimpinkoptions-gui.c:110 msgid "Speed:" msgstr "속도:" -#: app/tools/gimpinkoptions-gui.c:121 +#: ../app/tools/gimpinkoptions-gui.c:121 msgid "Type" msgstr "유형" #. Blob shape widget -#: app/tools/gimpinkoptions-gui.c:151 +#: ../app/tools/gimpinkoptions-gui.c:151 msgid "Shape" msgstr "모양" -#: app/tools/gimpinktool.c:63 +#: ../app/tools/gimpinktool.c:63 msgid "Draw in ink" msgstr "잉크로 그리기" -#: app/tools/gimpinktool.c:64 -#, fuzzy +#: ../app/tools/gimpinktool.c:64 msgid "In_k" -msgstr "잉크" +msgstr "잉크(_K)" -#: app/tools/gimpiscissorstool.c:277 +#: ../app/tools/gimpiscissorstool.c:277 msgid "Scissors" msgstr "가위" -#: app/tools/gimpiscissorstool.c:278 +#: ../app/tools/gimpiscissorstool.c:278 msgid "Select shapes from image" msgstr "이미지에서 모양 선택" -#: app/tools/gimpiscissorstool.c:279 -#, fuzzy +#: ../app/tools/gimpiscissorstool.c:279 msgid "Intelligent _Scissors" -msgstr "/도구(T)/선택 도구(S)/똑똑한 가위(_I)" +msgstr "똑똑한 가위(_S)" -#: app/tools/gimplevelstool.c:161 +#: ../app/tools/gimplevelstool.c:161 msgid "Adjust color levels" msgstr "색상 레벨 조절" -#: app/tools/gimplevelstool.c:162 -#, fuzzy +#: ../app/tools/gimplevelstool.c:162 msgid "_Levels..." -msgstr "레벨" +msgstr "레벨(_L)..." -#: app/tools/gimplevelstool.c:220 +#: ../app/tools/gimplevelstool.c:220 msgid "Adjust Color Levels" msgstr "색상 레벨 조절" -#: app/tools/gimplevelstool.c:222 +#: ../app/tools/gimplevelstool.c:222 msgid "Load Levels" msgstr "레벨 읽기" -#: app/tools/gimplevelstool.c:223 -#, fuzzy +#: ../app/tools/gimplevelstool.c:223 msgid "Load levels settings from file" msgstr "레벨 설정을 파일에서 읽음" -#: app/tools/gimplevelstool.c:224 +#: ../app/tools/gimplevelstool.c:224 msgid "Save Levels" msgstr "레벨 저장" -#: app/tools/gimplevelstool.c:225 +#: ../app/tools/gimplevelstool.c:225 msgid "Save levels settings to file" msgstr "레벨 설정을 파일에 저장" -#: app/tools/gimplevelstool.c:285 +#: ../app/tools/gimplevelstool.c:285 msgid "Levels for indexed layers cannot be adjusted." msgstr "레벨 조절은 인덱스된 레이어에서 동작하지 않습니다." -#: app/tools/gimplevelstool.c:355 -#, fuzzy +#: ../app/tools/gimplevelstool.c:355 msgid "Pick black point" msgstr "검정색 점 고르기" -#: app/tools/gimplevelstool.c:359 -#, fuzzy +#: ../app/tools/gimplevelstool.c:359 msgid "Pick gray point" msgstr "회색 점 고르기" -#: app/tools/gimplevelstool.c:363 -#, fuzzy +#: ../app/tools/gimplevelstool.c:363 msgid "Pick white point" msgstr "흰색 점 고르기" #. Input levels frame -#: app/tools/gimplevelstool.c:445 +#: ../app/tools/gimplevelstool.c:445 msgid "Input Levels" msgstr "입력 레벨" -#: app/tools/gimplevelstool.c:539 +#: ../app/tools/gimplevelstool.c:539 msgid "Gamma" msgstr "감마" #. Output levels frame -#: app/tools/gimplevelstool.c:569 +#: ../app/tools/gimplevelstool.c:569 msgid "Output Levels" msgstr "출력 레벨" -#: app/tools/gimplevelstool.c:667 +#: ../app/tools/gimplevelstool.c:667 msgid "Adjust levels automatically" msgstr "레벨 자동 조절" -#: app/tools/gimpmagnifyoptions.c:203 -#, fuzzy +#: ../app/tools/gimpmagnifyoptions.c:203 msgid "Auto-resize window" -msgstr "확대시 창 크기 조정(_Z)" +msgstr "확대시 창 크기 조정" -#: app/tools/gimpmagnifytool.c:95 +#: ../app/tools/gimpmagnifytool.c:95 msgid "Magnify" msgstr "확대" -#: app/tools/gimpmagnifytool.c:96 +#: ../app/tools/gimpmagnifytool.c:96 msgid "Zoom in & out" msgstr "확대 & 축소" -#: app/tools/gimpmagnifytool.c:97 -#, fuzzy +#: ../app/tools/gimpmagnifytool.c:97 msgid "M_agnify" -msgstr "확대" +msgstr "확대(_A)" -#: app/tools/gimpmeasureoptions.c:157 -#, fuzzy +#: ../app/tools/gimpmeasureoptions.c:157 msgid "Use info window" msgstr "정보 창 사용" -#: app/tools/gimpmeasuretool.c:118 +#: ../app/tools/gimpmeasuretool.c:118 msgid "Measure" msgstr "측정" -#: app/tools/gimpmeasuretool.c:119 +#: ../app/tools/gimpmeasuretool.c:119 msgid "Measure distances and angles" msgstr "거리와 각도를 측정" -#: app/tools/gimpmeasuretool.c:120 -#, fuzzy +#: ../app/tools/gimpmeasuretool.c:120 msgid "_Measure" -msgstr "측정" +msgstr "측정(_M)" -#: app/tools/gimpmeasuretool.c:264 +#: ../app/tools/gimpmeasuretool.c:264 msgid "Add Guides" msgstr "안내선 더하기" #. tool->gdisp->shell -#: app/tools/gimpmeasuretool.c:847 +#: ../app/tools/gimpmeasuretool.c:847 msgid "Measure Distances and Angles" msgstr "거리와 각도를 측정" -#: app/tools/gimpmeasuretool.c:865 +#: ../app/tools/gimpmeasuretool.c:865 msgid "Distance:" msgstr "거리:" -#: app/tools/gimpmoveoptions.c:171 -#, fuzzy +#: ../app/tools/gimpmoveoptions.c:171 msgid "Pick a layer or guide" -msgstr "이동할 레이어나 안내선 고르기" +msgstr "레이어나 안내선 고르기" -#: app/tools/gimpmoveoptions.c:172 -#, fuzzy +#: ../app/tools/gimpmoveoptions.c:172 msgid "Move the current layer" msgstr "현재 레이어 이동" -#: app/tools/gimpmoveoptions.c:176 -#, fuzzy +#: ../app/tools/gimpmoveoptions.c:176 msgid "Move selection" msgstr "선택 이동" -#: app/tools/gimpmoveoptions.c:180 -#, fuzzy +#: ../app/tools/gimpmoveoptions.c:180 msgid "Pick a path" -msgstr "이동할 경로 고르기" +msgstr "경로 고르기" -#: app/tools/gimpmoveoptions.c:181 -#, fuzzy +#: ../app/tools/gimpmoveoptions.c:181 msgid "Move the current path" msgstr "현재 경로 이동" -#: app/tools/gimpmovetool.c:117 +#: ../app/tools/gimpmovetool.c:117 msgid "Move layers & selections" -msgstr "레이어 선택 이동" +msgstr "레이어 & 선택 이동" -#: app/tools/gimpmovetool.c:118 -#, fuzzy +#: ../app/tools/gimpmovetool.c:118 msgid "_Move" -msgstr "이동" +msgstr "이동(_M)" -#: app/tools/gimpmovetool.c:298 app/tools/gimpmovetool.c:576 -#, fuzzy +#: ../app/tools/gimpmovetool.c:298 ../app/tools/gimpmovetool.c:576 msgid "Move Guide: " msgstr "안내선 이동" -#: app/tools/gimpmovetool.c:570 -#, fuzzy +#: ../app/tools/gimpmovetool.c:570 msgid "Cancel Guide" -msgstr "취소" +msgstr "안내선 취소" -#: app/tools/gimpmovetool.c:576 -#, fuzzy +#: ../app/tools/gimpmovetool.c:576 msgid "Add Guide: " msgstr "안내선 더하기" -#: app/tools/gimppaintbrushtool.c:52 +#: ../app/tools/gimppaintbrushtool.c:52 msgid "Paint fuzzy brush strokes" msgstr "퍼지 브러시 따라 그리기" -#: app/tools/gimppaintbrushtool.c:53 -#, fuzzy +#: ../app/tools/gimppaintbrushtool.c:53 msgid "_Paintbrush" -msgstr "페인트브러시" +msgstr "페인트브러시(_P)" -#: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 -#: app/widgets/gimplayertreeview.c:332 +#: ../app/tools/gimppaintoptions-gui.c:103 +#: ../app/widgets/gimpbrushselect.c:201 ../app/widgets/gimplayertreeview.c:332 msgid "Opacity:" msgstr "불투명:" -#: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 -#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:325 +#: ../app/tools/gimppaintoptions-gui.c:108 +#: ../app/tools/gimpselectionoptions.c:374 +#: ../app/widgets/gimpbrushselect.c:218 ../app/widgets/gimplayertreeview.c:325 msgid "Mode:" msgstr "모드:" -#: app/tools/gimppaintoptions-gui.c:126 +#: ../app/tools/gimppaintoptions-gui.c:126 msgid "Brush:" msgstr "브러시:" -#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:394 +#: ../app/tools/gimppaintoptions-gui.c:135 +#: ../app/tools/gimppaintoptions-gui.c:395 msgid "Gradient:" msgstr "그라디언트:" -#: app/tools/gimppaintoptions-gui.c:177 -#, fuzzy +#: ../app/tools/gimppaintoptions-gui.c:177 msgid "Hard edge" msgstr "가장자리 딱딱하게" -#: app/tools/gimppaintoptions-gui.c:216 -#, fuzzy +#: ../app/tools/gimppaintoptions-gui.c:216 msgid "Pressure sensitivity" msgstr "압력 감도" -#: app/tools/gimppaintoptions-gui.c:236 +#: ../app/tools/gimppaintoptions-gui.c:236 msgid "Opacity" msgstr "불투명" -#: app/tools/gimppaintoptions-gui.c:250 +#: ../app/tools/gimppaintoptions-gui.c:250 msgid "Hardness" msgstr "경도" -#: app/tools/gimppaintoptions-gui.c:261 +#: ../app/tools/gimppaintoptions-gui.c:261 msgid "Rate" msgstr "비율" -#: app/tools/gimppaintoptions-gui.c:274 +#: ../app/tools/gimppaintoptions-gui.c:274 msgid "Size" msgstr "크기" -#: app/tools/gimppaintoptions-gui.c:313 -#, fuzzy +#: ../app/tools/gimppaintoptions-gui.c:313 msgid "Fade out" msgstr "패이드 아웃" -#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:403 +#: ../app/tools/gimppaintoptions-gui.c:333 +#: ../app/tools/gimppaintoptions-gui.c:404 msgid "Length:" msgstr "길이:" -#: app/tools/gimppaintoptions-gui.c:367 -#, fuzzy +#: ../app/tools/gimppaintoptions-gui.c:368 msgid "Use color from gradient" msgstr "그라디언트의 색상 사용" -#: app/tools/gimppenciltool.c:52 +#: ../app/tools/gimppenciltool.c:52 msgid "Paint hard edged pixels" msgstr "가장자리가 딱딱한 픽셀로 그리기" -#: app/tools/gimppenciltool.c:53 -#, fuzzy +#: ../app/tools/gimppenciltool.c:53 msgid "Pe_ncil" -msgstr "연필" +msgstr "연필(_N)" -#: app/tools/gimpperspectivetool.c:81 +#: ../app/tools/gimpperspectivetool.c:81 msgid "Perspective" msgstr "원근법" -#: app/tools/gimpperspectivetool.c:82 +#: ../app/tools/gimpperspectivetool.c:82 msgid "Change perspective of the layer or selection" msgstr "레이어나 선택의 원근법 바꾸기" -#: app/tools/gimpperspectivetool.c:83 -#, fuzzy +#: ../app/tools/gimpperspectivetool.c:83 msgid "_Perspective" -msgstr "원근법" +msgstr "원근법(_P)" -#: app/tools/gimpperspectivetool.c:140 +#: ../app/tools/gimpperspectivetool.c:140 msgid "Perspective Transform Information" msgstr "원근법 변형 정보" -#: app/tools/gimpperspectivetool.c:149 +#: ../app/tools/gimpperspectivetool.c:149 msgid "Matrix:" msgstr "행렬:" -#: app/tools/gimpposterizetool.c:79 +#: ../app/tools/gimpposterizetool.c:79 msgid "Reduce image to a fixed number of colors" msgstr "이미지의 색상을 고정된 수로 줄이기" -#: app/tools/gimpposterizetool.c:80 -#, fuzzy +#: ../app/tools/gimpposterizetool.c:80 msgid "_Posterize..." -msgstr "포스터화" +msgstr "포스터화(_P)..." -#: app/tools/gimpposterizetool.c:131 +#: ../app/tools/gimpposterizetool.c:131 msgid "Posterize (Reduce Number of Colors)" msgstr "포스터화(색상 수 줄이기)" -#: app/tools/gimpposterizetool.c:173 +#: ../app/tools/gimpposterizetool.c:173 msgid "Posterize does not operate on indexed layers." msgstr "포스터화는 인덱스된 레이어에서 동작하지 않습니다." -#: app/tools/gimpposterizetool.c:223 -#, fuzzy +#: ../app/tools/gimpposterizetool.c:223 msgid "Posterize _levels:" msgstr "포스터화 단계(_L):" -#: app/tools/gimprectselecttool.c:97 +#: ../app/tools/gimprectselecttool.c:97 msgid "Select rectangular regions" msgstr "사각 영역 선택" -#: app/tools/gimprectselecttool.c:98 -#, fuzzy +#: ../app/tools/gimprectselecttool.c:98 msgid "_Rect Select" -msgstr "사각 선택" +msgstr "사각 선택(_R)" -#: app/tools/gimprectselecttool.c:224 +#: ../app/tools/gimprectselecttool.c:226 msgid "Selection: ADD" msgstr "선택: 더하기" -#: app/tools/gimprectselecttool.c:227 +#: ../app/tools/gimprectselecttool.c:229 msgid "Selection: SUBTRACT" msgstr "선택: 빼기" -#: app/tools/gimprectselecttool.c:230 +#: ../app/tools/gimprectselecttool.c:232 msgid "Selection: INTERSECT" msgstr "선택: 교차하기" -#: app/tools/gimprectselecttool.c:233 +#: ../app/tools/gimprectselecttool.c:235 msgid "Selection: REPLACE" msgstr "선택: 바꾸기" -#: app/tools/gimprectselecttool.c:468 +#: ../app/tools/gimprectselecttool.c:414 msgid "Selection: " msgstr "선택: " -#: app/tools/gimprotatetool.c:98 +#: ../app/tools/gimprotatetool.c:98 msgid "Rotate the layer or selection" msgstr "레이어나 선택 회전" -#: app/tools/gimprotatetool.c:99 -#, fuzzy +#: ../app/tools/gimprotatetool.c:99 msgid "_Rotate" -msgstr "회전" +msgstr "회전(_R)" -#: app/tools/gimprotatetool.c:158 +#: ../app/tools/gimprotatetool.c:158 msgid "Rotation Information" msgstr "회전 정보" -#: app/tools/gimprotatetool.c:185 +#: ../app/tools/gimprotatetool.c:185 msgid "Center X:" msgstr "X 중앙:" -#: app/tools/gimprotatetool.c:190 -#, fuzzy +#: ../app/tools/gimprotatetool.c:190 msgid "Center Y:" msgstr "X 중앙:" -#: app/tools/gimpscaletool.c:91 +#: ../app/tools/gimpscaletool.c:91 msgid "Scale" msgstr "배율 조정" -#: app/tools/gimpscaletool.c:92 +#: ../app/tools/gimpscaletool.c:92 msgid "Scale the layer or selection" msgstr "레이어나 선택 배율 조정" -#: app/tools/gimpscaletool.c:93 -#, fuzzy +#: ../app/tools/gimpscaletool.c:93 msgid "_Scale" -msgstr "배율 조정" +msgstr "배율 조정(_S)" -#: app/tools/gimpscaletool.c:152 -#, fuzzy +#: ../app/tools/gimpscaletool.c:152 msgid "Scaling information" msgstr "배율 조정 정보" -#: app/tools/gimpscaletool.c:163 +#: ../app/tools/gimpscaletool.c:163 msgid "Original Width:" msgstr "원래 너비:" -#: app/tools/gimpscaletool.c:170 -#, fuzzy +#: ../app/tools/gimpscaletool.c:170 msgid "Current width:" msgstr "현재 너비:" -#: app/tools/gimpscaletool.c:174 -#, fuzzy +#: ../app/tools/gimpscaletool.c:174 msgid "Current height:" -msgstr "현재 너비:" +msgstr "현재 높이:" -#: app/tools/gimpscaletool.c:189 -#, fuzzy +#: ../app/tools/gimpscaletool.c:189 msgid "Scale ratio X:" msgstr "확대 비율 X:" -#: app/tools/gimpscaletool.c:192 -#, fuzzy +#: ../app/tools/gimpscaletool.c:192 msgid "Scale ratio Y:" msgstr "확대 비율 X:" -#: app/tools/gimpscaletool.c:196 -#, fuzzy +#: ../app/tools/gimpscaletool.c:196 msgid "Aspect Ratio:" msgstr "종횡비:" -#: app/tools/gimpselectionoptions.c:136 +#: ../app/tools/gimpselectionoptions.c:136 msgid "Smooth edges" msgstr "가장자리 부드럽게" -#: app/tools/gimpselectionoptions.c:150 +#: ../app/tools/gimpselectionoptions.c:150 msgid "Allow completely transparent regions to be selected" msgstr "완전히 투명한 영역을 선택할 수 있음" -#: app/tools/gimpselectionoptions.c:156 +#: ../app/tools/gimpselectionoptions.c:156 msgid "Base selection on all visible layers" msgstr "모든 보이는 레이어에서 기본 선택" -#: app/tools/gimpselectionoptions.c:171 +#: ../app/tools/gimpselectionoptions.c:171 msgid "Use all visible layers when shrinking the selection" msgstr "선택을 줄일 때 모든 보이는 레이어를 사용" -#: app/tools/gimpselectionoptions.c:382 app/tools/gimptextoptions.c:447 +#: ../app/tools/gimpselectionoptions.c:382 ../app/tools/gimptextoptions.c:447 msgid "Antialiasing" msgstr "부드럽게 하기" -#: app/tools/gimpselectionoptions.c:399 -#, fuzzy +#: ../app/tools/gimpselectionoptions.c:399 msgid "Feather edges" msgstr "가장자리 페더" -#: app/tools/gimpselectionoptions.c:425 -#, fuzzy +#: ../app/tools/gimpselectionoptions.c:425 msgid "Show interactive boundary" msgstr "즉시 경계 보기" -#: app/tools/gimpselectionoptions.c:448 -#, fuzzy +#: ../app/tools/gimpselectionoptions.c:448 msgid "Select transparent areas" msgstr "투명한 영역 선택" -#: app/tools/gimpselectionoptions.c:488 -#, fuzzy +#: ../app/tools/gimpselectionoptions.c:488 msgid "Auto shrink selection" msgstr "선택 자동 줄임" -#: app/tools/gimpsheartool.c:98 +#: ../app/tools/gimpsheartool.c:98 msgid "Shear" msgstr "기울이기" -#: app/tools/gimpsheartool.c:99 +#: ../app/tools/gimpsheartool.c:99 msgid "Shear the layer or selection" msgstr "레이어 또는 선택 기울이기" -#: app/tools/gimpsheartool.c:100 -#, fuzzy +#: ../app/tools/gimpsheartool.c:100 msgid "S_hear" -msgstr "기울이기" +msgstr "기울이기(_H)" -#: app/tools/gimpsheartool.c:157 +#: ../app/tools/gimpsheartool.c:157 msgid "Shearing Information" msgstr "기울이기 정보" -#: app/tools/gimpsheartool.c:167 -#, fuzzy +#: ../app/tools/gimpsheartool.c:167 msgid "Shear magnitude X:" msgstr "기울이기 크기 X:" -#: app/tools/gimpsheartool.c:174 -#, fuzzy +#: ../app/tools/gimpsheartool.c:174 msgid "Shear magnitude Y:" -msgstr "기울이기 크기 X:" +msgstr "기울이기 크기 Y:" -#: app/tools/gimpsmudgetool.c:55 +#: ../app/tools/gimpsmudgetool.c:55 msgid "Smudge image" msgstr "이미지 문지르기" -#: app/tools/gimpsmudgetool.c:56 -#, fuzzy +#: ../app/tools/gimpsmudgetool.c:56 msgid "_Smudge" -msgstr "문지르기" +msgstr "문지르기(_S)" -#: app/tools/gimptextoptions.c:146 +#: ../app/tools/gimptextoptions.c:146 msgid "" "Hinting alters the font outline to produce a crisp bitmap at small sizes" msgstr "힌팅은 글꼴 윤곽을 변형하여 작은 크기에서 깔끔한 비트맵을 만듭니다." -#: app/tools/gimptextoptions.c:153 +#: ../app/tools/gimptextoptions.c:153 msgid "" "If available, hints from the font are used but you may prefer to always use " "the automatic hinter" msgstr "" "가능하다면, 글꼴의 힌트가 사용되지만 항상 자동 힌팅을 사용할 수 있습니다." -#: app/tools/gimptextoptions.c:178 +#: ../app/tools/gimptextoptions.c:178 msgid "Indentation of the first line" msgstr "첫 줄 들여쓰기" -#: app/tools/gimptextoptions.c:183 +#: ../app/tools/gimptextoptions.c:183 msgid "Modify line spacing" msgstr "줄 간격 고치기" -#: app/tools/gimptextoptions.c:419 -#, fuzzy +#: ../app/tools/gimptextoptions.c:419 msgid "Font:" -msgstr "글꼴(_F):" +msgstr "글꼴:" -#: app/tools/gimptextoptions.c:431 -#, fuzzy +#: ../app/tools/gimptextoptions.c:431 msgid "Hinting" -msgstr "힌팅(_H)" +msgstr "힌팅" -#: app/tools/gimptextoptions.c:438 -#, fuzzy +#: ../app/tools/gimptextoptions.c:438 msgid "Force auto-hinter" msgstr "항상 자동-힌팅 사용" -#: app/tools/gimptextoptions.c:453 +#: ../app/tools/gimptextoptions.c:453 msgid "Text Color" msgstr "글자 색상" -#: app/tools/gimptextoptions.c:458 +#: ../app/tools/gimptextoptions.c:458 msgid "Color:" msgstr "색상:" -#: app/tools/gimptextoptions.c:463 +#: ../app/tools/gimptextoptions.c:463 msgid "Justify:" msgstr "정렬:" -#: app/tools/gimptextoptions.c:469 +#: ../app/tools/gimptextoptions.c:469 msgid "Indent:" msgstr "들여쓰기:" -#: app/tools/gimptextoptions.c:475 -#, fuzzy +#: ../app/tools/gimptextoptions.c:475 msgid "" "Line\n" "spacing:" @@ -9938,29 +9176,27 @@ "줄\n" "간격:" -#: app/tools/gimptextoptions.c:478 -#, fuzzy +#: ../app/tools/gimptextoptions.c:478 msgid "Create path from text" -msgstr "텍스트에서 새 경로 만들기" +msgstr "텍스트에서 경로 만들기" -#: app/tools/gimptexttool.c:143 +#: ../app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "이미지에 텍스트 더하기" -#: app/tools/gimptexttool.c:144 -#, fuzzy +#: ../app/tools/gimptexttool.c:146 msgid "Te_xt" -msgstr "텍스트" +msgstr "텍스트(_X)" -#: app/tools/gimptexttool.c:732 +#: ../app/tools/gimptexttool.c:744 msgid "GIMP Text Editor" msgstr "김프 텍스트 편집기" -#: app/tools/gimptexttool.c:842 app/tools/gimptexttool.c:845 +#: ../app/tools/gimptexttool.c:854 ../app/tools/gimptexttool.c:857 msgid "Confirm Text Editing" msgstr "텍스트 편집 확인" -#: app/tools/gimptexttool.c:866 +#: ../app/tools/gimptexttool.c:878 msgid "" "The layer you selected is a text layer but it has been modified using other " "tools. Editing the layer with the text tool will discard these " @@ -9971,90 +9207,86 @@ "선택한 레이어는 텍스트 레이어지만 다른 도구로 수정했습니다. 텍스트 도구로 그 " "레이어를 편집하면 변경 사항들이 무시됩니다." -#: app/tools/gimpthresholdtool.c:93 +#: ../app/tools/gimpthresholdtool.c:93 msgid "Reduce image to two colors using a threshold" msgstr "이미지를 임계값을 기준으로 두 개의 색상으로 줄입니다" -#: app/tools/gimpthresholdtool.c:94 -#, fuzzy +#: ../app/tools/gimpthresholdtool.c:94 msgid "_Threshold..." -msgstr "임계값" +msgstr "임계값(_T)..." -#: app/tools/gimpthresholdtool.c:148 +#: ../app/tools/gimpthresholdtool.c:148 msgid "Apply Threshold" msgstr "임계값 적용" -#: app/tools/gimpthresholdtool.c:199 +#: ../app/tools/gimpthresholdtool.c:199 msgid "Threshold does not operate on indexed layers." msgstr "고대비는 인덱스된 레이어에서 동작하지 않습니다." -#: app/tools/gimptransformoptions.c:329 +#: ../app/tools/gimptransformoptions.c:329 msgid "Transform Direction" msgstr "변형 방향" -#: app/tools/gimptransformoptions.c:338 +#: ../app/tools/gimptransformoptions.c:338 msgid "Interpolation:" msgstr "보간:" -#: app/tools/gimptransformoptions.c:348 +#: ../app/tools/gimptransformoptions.c:348 msgid "Supersampling" msgstr "슈퍼샘플링" #. the clip resulting image toggle button -#: app/tools/gimptransformoptions.c:353 -#, fuzzy +#: ../app/tools/gimptransformoptions.c:353 msgid "Clip result" msgstr "결과 절단" -#: app/tools/gimptransformoptions.c:367 -#, fuzzy +#: ../app/tools/gimptransformoptions.c:367 msgid "Preview:" -msgstr "미리보기" +msgstr "미리보기:" #. the constraints frame -#: app/tools/gimptransformoptions.c:413 +#: ../app/tools/gimptransformoptions.c:413 msgid "Constraints" msgstr "제약 조건" -#: app/tools/gimptransformoptions.c:425 -#, fuzzy, c-format +#: ../app/tools/gimptransformoptions.c:425 +#, c-format msgid "15 degrees %s" msgstr "15도 %s" -#: app/tools/gimptransformoptions.c:445 -#, fuzzy, c-format +#: ../app/tools/gimptransformoptions.c:445 +#, c-format msgid "Keep height %s" msgstr "높이 유지 %s" -#: app/tools/gimptransformoptions.c:447 -#, fuzzy, c-format +#: ../app/tools/gimptransformoptions.c:447 +#, c-format msgid "Keep width %s" msgstr "너비 유지 %s" -#: app/tools/gimptransformoptions.c:449 -#, fuzzy, c-format +#: ../app/tools/gimptransformoptions.c:449 +#, c-format msgid "Keep aspect %s" -msgstr "고정된 종횡비" +msgstr "종횡비 유지 %s" -#: app/tools/gimptransformtool.c:253 +#: ../app/tools/gimptransformtool.c:253 msgid "Transforming..." msgstr "변형 중..." -#: app/tools/gimpvectoroptions.c:113 -#, fuzzy +#: ../app/tools/gimpvectoroptions.c:113 msgid "Restrict editing to polygons" msgstr "다각형으로 편집 제한" -#: app/tools/gimpvectoroptions.c:177 +#: ../app/tools/gimpvectoroptions.c:177 msgid "Edit Mode" msgstr "편집 모드" -#: app/tools/gimpvectoroptions.c:182 +#: ../app/tools/gimpvectoroptions.c:182 msgid "Polygonal" msgstr "다각형" -#: app/tools/gimpvectoroptions.c:186 -#, fuzzy, c-format +#: ../app/tools/gimpvectoroptions.c:186 +#, c-format msgid "" "Path to Selection\n" "%s Add\n" @@ -10064,1039 +9296,1013 @@ "경로를 선택으로\n" "%s 더하기\n" "%s 빼기\n" -"%s%s%s 교차하기" +"%s 교차하기" -#: app/tools/gimpvectoroptions.c:196 -#, fuzzy +#: ../app/tools/gimpvectoroptions.c:196 msgid "Create selection from path" -msgstr "선택을 경로로" +msgstr "경로에서 선택 만들기" -#: app/tools/gimpvectoroptions.c:207 -#, fuzzy +#: ../app/tools/gimpvectoroptions.c:207 msgid "Stroke path" msgstr "경로 따라 그리기" -#: app/tools/gimpvectortool.c:161 +#: ../app/tools/gimpvectortool.c:161 msgid "Create and edit paths" msgstr "경로를 만들고 편집합니다" -#: app/tools/gimpvectortool.c:363 +#: ../app/tools/gimpvectortool.c:363 msgid "Add Stroke" msgstr "획 더하기" -#: app/tools/gimpvectortool.c:381 +#: ../app/tools/gimpvectortool.c:381 msgid "Add Anchor" msgstr "고정점 더하기" -#: app/tools/gimpvectortool.c:404 +#: ../app/tools/gimpvectortool.c:404 msgid "Insert Anchor" msgstr "고정점 삽입" -#: app/tools/gimpvectortool.c:433 +#: ../app/tools/gimpvectortool.c:433 msgid "Drag Handle" msgstr "조절점 끌기" -#: app/tools/gimpvectortool.c:462 +#: ../app/tools/gimpvectortool.c:462 msgid "Drag Anchor" msgstr "고정점 끌기" -#: app/tools/gimpvectortool.c:479 +#: ../app/tools/gimpvectortool.c:479 msgid "Drag Anchors" msgstr "여러 고정점 끌기" -#: app/tools/gimpvectortool.c:499 +#: ../app/tools/gimpvectortool.c:499 msgid "Drag Curve" msgstr "곡선 끌기" -#: app/tools/gimpvectortool.c:527 +#: ../app/tools/gimpvectortool.c:527 msgid "Connect Strokes" msgstr "획 연결" -#: app/tools/gimpvectortool.c:557 +#: ../app/tools/gimpvectortool.c:557 msgid "Drag Path" msgstr "경로 끌기" -#: app/tools/gimpvectortool.c:567 +#: ../app/tools/gimpvectortool.c:567 msgid "Convert Edge" msgstr "모서리 변환" -#: app/tools/gimpvectortool.c:597 +#: ../app/tools/gimpvectortool.c:597 msgid "Delete Anchor" msgstr "고정점 지우기" -#: app/tools/gimpvectortool.c:619 +#: ../app/tools/gimpvectortool.c:619 msgid "Delete Segment" msgstr "구획 지우기" -#: app/tools/gimpvectortool.c:831 +#: ../app/tools/gimpvectortool.c:831 msgid "Move Anchors" msgstr "여러 고정점 이동" -#: app/tools/gimpvectortool.c:1196 +#: ../app/tools/gimpvectortool.c:1196 msgid "Click to pick path to edit." msgstr "클릭으로 편집할 경로를 선택하십시오." -#: app/tools/gimpvectortool.c:1199 +#: ../app/tools/gimpvectortool.c:1199 msgid "Click to create a new path." msgstr "클릭으로 새 경로를 만드십시오." -#: app/tools/gimpvectortool.c:1202 +#: ../app/tools/gimpvectortool.c:1202 msgid "Click to create a new component of the path." msgstr "클릭으로 경로의 새 구성 요소를 만드십시오." -#: app/tools/gimpvectortool.c:1205 +#: ../app/tools/gimpvectortool.c:1205 msgid "Click to create a new anchor. (try SHIFT)" msgstr "클릭으로 새 고정점을 만드십시오. (SHIFT도 해보십시오)" -#: app/tools/gimpvectortool.c:1208 +#: ../app/tools/gimpvectortool.c:1208 msgid "Click-Drag to move the anchor around." msgstr "클릭-끌기로 고정점을 주위로 이동하십시오." -#: app/tools/gimpvectortool.c:1211 +#: ../app/tools/gimpvectortool.c:1211 ../app/tools/gimpvectortool.c:1218 msgid "Click-Drag to move the anchors around." msgstr "클릭-끌기로 여러 고정점을 주위로 이동하십시오." -#: app/tools/gimpvectortool.c:1214 +#: ../app/tools/gimpvectortool.c:1214 msgid "Click-Drag to move the handle around. (try SHIFT)" msgstr "클릭-끌기로 조절점을 주위로 이동하십시오. (SHIFT도 해보십시오)" -#: app/tools/gimpvectortool.c:1217 +#: ../app/tools/gimpvectortool.c:1220 msgid "Click-Drag to change the shape of the curve. (SHIFT: symmetrical)" msgstr "클릭-끌기로 고선의 모양을 바꾸십시오. (SHIFT: 대칭)" -#: app/tools/gimpvectortool.c:1221 +#: ../app/tools/gimpvectortool.c:1224 msgid "Click-Drag to move the component around. (try SHIFT)" msgstr "클릭-끌기로 구성 요소를 주위로 이동하십시오. (SHIFT도 해보십시오)" -#: 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 "클릭으로 경로에 새 고정점을 삽입하십시오. (SHIFT도 해보십시오)" -#: 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 -#, fuzzy +#: ../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 "따라 그릴 활성 레이어나 채널이 없습니다" -#: app/vectors/gimpvectors.c:229 +#: ../app/vectors/gimpvectors.c:229 msgid "Path" msgstr "경로" -#: app/vectors/gimpvectors.c:230 +#: ../app/vectors/gimpvectors.c:230 msgid "Rename Path" msgstr "경로 이름 바꾸기" -#: app/vectors/gimpvectors.c:231 app/vectors/gimpvectors.c:356 +#: ../app/vectors/gimpvectors.c:231 ../app/vectors/gimpvectors.c:356 msgid "Move Path" msgstr "경로 이동" -#: app/vectors/gimpvectors.c:232 +#: ../app/vectors/gimpvectors.c:232 msgid "Scale Path" msgstr "경로 배율 조정" -#: app/vectors/gimpvectors.c:233 +#: ../app/vectors/gimpvectors.c:233 msgid "Resize Path" msgstr "경로 크기 조정" -#: app/vectors/gimpvectors.c:234 app/vectors/gimpvectors.c:447 +#: ../app/vectors/gimpvectors.c:234 ../app/vectors/gimpvectors.c:447 msgid "Flip Path" msgstr "경로 뒤집기" -#: app/vectors/gimpvectors.c:235 app/vectors/gimpvectors.c:491 +#: ../app/vectors/gimpvectors.c:235 ../app/vectors/gimpvectors.c:491 msgid "Rotate Path" msgstr "경로 회전" -#: app/vectors/gimpvectors.c:236 app/vectors/gimpvectors.c:522 +#: ../app/vectors/gimpvectors.c:236 ../app/vectors/gimpvectors.c:522 msgid "Transform Path" msgstr "경로 변형" -#: app/vectors/gimpvectors.c:551 +#: ../app/vectors/gimpvectors.c:551 msgid "Cannot stroke empty path." msgstr "빈 경로를 따라 그릴 수 없습니다." -#: app/vectors/gimpvectors-import.c:287 +#: ../app/vectors/gimpvectors-import.c:287 msgid "Import Paths" msgstr "경로 가져오기" -#: app/vectors/gimpvectors-import.c:298 +#: ../app/vectors/gimpvectors-import.c:298 msgid "Imported Path" msgstr "경로 가져오기" -#: app/vectors/gimpvectors-import.c:324 +#: ../app/vectors/gimpvectors-import.c:324 #, c-format msgid "No paths found in '%s'" msgstr "'%s'에서 경로를 찾을 수 없습니다" -#: app/vectors/gimpvectors-import.c:327 +#: ../app/vectors/gimpvectors-import.c:327 msgid "No paths found in the buffer" msgstr "버퍼에서 경로를 찾을 수 없습니다" -#: app/vectors/gimpvectors-import.c:337 +#: ../app/vectors/gimpvectors-import.c:337 #, c-format msgid "Failed to import paths from '%s': %s" msgstr "'%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 -#, fuzzy +#: ../app/widgets/gimpactionview.c:354 +#: ../app/widgets/gimpcontrollereditor.c:374 msgid "Action" -msgstr "더하기" +msgstr "액션" -#: app/widgets/gimpactionview.c:383 -#, fuzzy +#: ../app/widgets/gimpactionview.c:383 msgid "Shortcut" -msgstr "키보드 단축키" +msgstr "단축키" -#: app/widgets/gimpactionview.c:405 -#, fuzzy +#: ../app/widgets/gimpactionview.c:405 msgid "Name" -msgstr "이름(_N):" +msgstr "이름" -#: app/widgets/gimpactionview.c:545 app/widgets/gimpactionview.c:738 +#: ../app/widgets/gimpactionview.c:545 ../app/widgets/gimpactionview.c:738 msgid "Changing shortcut failed." -msgstr "" +msgstr "단축키 변경 실패." -#: app/widgets/gimpactionview.c:585 +#: ../app/widgets/gimpactionview.c:585 msgid "Conflicting Shortcuts" -msgstr "" +msgstr "단축키 충돌" -#: app/widgets/gimpactionview.c:591 +#: ../app/widgets/gimpactionview.c:591 msgid "_Reassign shortcut" -msgstr "" +msgstr "단축키 재할당(_R)" -#: app/widgets/gimpactionview.c:602 -#, c-format +#: ../app/widgets/gimpactionview.c:602 +#, c-format, fuzzy msgid "Shortcut \"%s\" is already taken by \"%s\" from the \"%s\" group." -msgstr "" +msgstr "단축키 \"%s\"은(는) 이미 \"%2$s\"그룹의 \"%1$s\"에 사용 중입니다." -#: app/widgets/gimpactionview.c:606 +#: ../app/widgets/gimpactionview.c:606 #, c-format msgid "Reassigning the shortcut will cause it to be removed from \"%s\"." -msgstr "" +msgstr "단축키를 새로 할당하면 \"%s\"에서 지워집니다." -#: app/widgets/gimpactionview.c:673 +#: ../app/widgets/gimpactionview.c:673 msgid "Removing shortcut failed." -msgstr "" +msgstr "단축키를 지우지 못했습니다." -#: app/widgets/gimpactionview.c:678 +#: ../app/widgets/gimpactionview.c:678 msgid "Invalid shortcut." -msgstr "" +msgstr "잘못된 단축키." -#: app/widgets/gimpbrusheditor.c:168 -#, fuzzy +#: ../app/widgets/gimpbrusheditor.c:168 msgid "Spikes:" -msgstr "크기:" +msgstr "돌출:" -#: app/widgets/gimpbrusheditor.c:181 +#: ../app/widgets/gimpbrusheditor.c:181 msgid "Hardness:" msgstr "경도:" -#: app/widgets/gimpbrusheditor.c:220 app/widgets/gimpbrushfactoryview.c:114 +#: ../app/widgets/gimpbrusheditor.c:220 +#: ../app/widgets/gimpbrushfactoryview.c:114 msgid "Spacing:" msgstr "간격:" -#: app/widgets/gimpbrusheditor.c:223 app/widgets/gimpbrushfactoryview.c:117 +#: ../app/widgets/gimpbrusheditor.c:223 +#: ../app/widgets/gimpbrushfactoryview.c:117 msgid "Percentage of width of brush" msgstr "브러시 너비의 백분율" -#: app/widgets/gimpbufferview.c:165 app/widgets/gimpbufferview.c:246 -#: app/widgets/gimpcontainergridview.c:206 -#: app/widgets/gimpcontainergridview.c:657 -#: app/widgets/gimphistogrameditor.c:147 app/widgets/gimphistogrameditor.c:359 +#: ../app/widgets/gimpbufferview.c:165 ../app/widgets/gimpbufferview.c:246 +#: ../app/widgets/gimpcontainergridview.c:206 +#: ../app/widgets/gimpcontainergridview.c:657 +#: ../app/widgets/gimphistogrameditor.c:147 +#: ../app/widgets/gimphistogrameditor.c:359 msgid "(None)" msgstr "(없음)" -#: app/widgets/gimpcellrendereraccel.c:234 -#: app/widgets/gimpcellrendereraccel.c:459 +#: ../app/widgets/gimpcellrendereraccel.c:234 +#: ../app/widgets/gimpcellrendereraccel.c:459 msgid "Type a new accelerator, or press Backspace to clear" -msgstr "" +msgstr "새 단축키를 입력하거나, Backspace를 눌러서 지우세요." -#: app/widgets/gimpcellrendereraccel.c:462 +#: ../app/widgets/gimpcellrendereraccel.c:462 msgid "Type a new accelerator" -msgstr "" +msgstr "새 단축키를 입력하세요." -#: app/widgets/gimpchanneltreeview.c:151 +#: ../app/widgets/gimpchanneltreeview.c:151 msgid "Reorder Channel" msgstr "채널 순서 조정" -#: app/widgets/gimpchanneltreeview.c:261 +#: ../app/widgets/gimpchanneltreeview.c:261 msgid "Empty Channel" msgstr "빈 채널" -#: app/widgets/gimpclipboard.c:283 +#: ../app/widgets/gimpclipboard.c:283 msgid "Clipboard" -msgstr "" +msgstr "클립보드" -#: app/widgets/gimpcolordialog.c:169 +#: ../app/widgets/gimpcolordialog.c:169 msgid "Add the current color to the color history" msgstr "현재 색상을 색상 이력에 더하기" -#: app/widgets/gimpcolordisplayeditor.c:177 +#: ../app/widgets/gimpcolordisplayeditor.c:177 msgid "Available Filters" msgstr "가용한 필터" -#: app/widgets/gimpcolordisplayeditor.c:204 +#: ../app/widgets/gimpcolordisplayeditor.c:204 msgid "Add the selected filter to the list of active filters." msgstr "선택한 필터를 활성 필터 목록에 더하기." -#: app/widgets/gimpcolordisplayeditor.c:221 +#: ../app/widgets/gimpcolordisplayeditor.c:221 msgid "Remove the selected filter from the list of active filters." msgstr "선택한 필터를 현재 필터 목록에서 지우기." -#: app/widgets/gimpcolordisplayeditor.c:235 +#: ../app/widgets/gimpcolordisplayeditor.c:235 msgid "Move the selected filter up" msgstr "선택한 필터를 위로 이동" -#: app/widgets/gimpcolordisplayeditor.c:244 +#: ../app/widgets/gimpcolordisplayeditor.c:244 msgid "Move the selected filter down" msgstr "선택한 필터를 아래로 이동" -#: app/widgets/gimpcolordisplayeditor.c:289 +#: ../app/widgets/gimpcolordisplayeditor.c:289 msgid "Active Filters" msgstr "활성 필터" -#: app/widgets/gimpcolordisplayeditor.c:322 +#: ../app/widgets/gimpcolordisplayeditor.c:322 msgid "Reset the selected filter to default values" msgstr "선택한 필터를 기본 값으로 초기화" -#: app/widgets/gimpcolordisplayeditor.c:543 -#, fuzzy, c-format +#: ../app/widgets/gimpcolordisplayeditor.c:543 +#, c-format msgid "Configure selected filter: %s" msgstr "선택한 필터 설정: %s" -#: app/widgets/gimpcolordisplayeditor.c:550 -#, fuzzy +#: ../app/widgets/gimpcolordisplayeditor.c:550 msgid "No filter selected" msgstr "선택한 필터 없음" -#: app/widgets/gimpcolordisplayeditor.c:554 -#, fuzzy +#: ../app/widgets/gimpcolordisplayeditor.c:554 msgid "Configure selected filter" msgstr "선택한 필터 설정" -#: app/widgets/gimpcolorframe.c:240 +#: ../app/widgets/gimpcolorframe.c:240 msgid "Index:" msgstr "색인:" -#: app/widgets/gimpcolorframe.c:244 app/widgets/gimpcolorframe.c:265 +#: ../app/widgets/gimpcolorframe.c:244 ../app/widgets/gimpcolorframe.c:265 msgid "Red:" msgstr "빨강:" -#: app/widgets/gimpcolorframe.c:245 app/widgets/gimpcolorframe.c:266 +#: ../app/widgets/gimpcolorframe.c:245 ../app/widgets/gimpcolorframe.c:266 msgid "Green:" msgstr "초록:" -#: app/widgets/gimpcolorframe.c:246 app/widgets/gimpcolorframe.c:267 +#: ../app/widgets/gimpcolorframe.c:246 ../app/widgets/gimpcolorframe.c:267 msgid "Blue:" msgstr "파랑:" -#: app/widgets/gimpcolorframe.c:256 app/widgets/gimpcolorframe.c:287 +#: ../app/widgets/gimpcolorframe.c:256 ../app/widgets/gimpcolorframe.c:287 msgid "Value:" msgstr "값:" -#: app/widgets/gimpcolorframe.c:275 +#: ../app/widgets/gimpcolorframe.c:275 msgid "Hex:" msgstr "16진수:" -#: app/widgets/gimpcolorframe.c:285 +#: ../app/widgets/gimpcolorframe.c:285 msgid "Hue:" msgstr "색상:" -#: app/widgets/gimpcolorframe.c:286 +#: ../app/widgets/gimpcolorframe.c:286 msgid "Sat.:" msgstr "채도:" -#: app/widgets/gimpcolorframe.c:303 +#: ../app/widgets/gimpcolorframe.c:303 msgid "Cyan:" msgstr "청록색:" -#: app/widgets/gimpcolorframe.c:304 +#: ../app/widgets/gimpcolorframe.c:304 msgid "Magenta:" msgstr "자홍색:" -#: app/widgets/gimpcolorframe.c:305 +#: ../app/widgets/gimpcolorframe.c:305 msgid "Yellow:" msgstr "노란색:" -#: app/widgets/gimpcolorframe.c:306 +#: ../app/widgets/gimpcolorframe.c:306 msgid "Black:" msgstr "검정색:" -#: app/widgets/gimpcolorframe.c:320 +#: ../app/widgets/gimpcolorframe.c:320 msgid "Alpha:" msgstr "알파:" -#: app/widgets/gimpcolormapeditor.c:247 -#, fuzzy +#: ../app/widgets/gimpcolormapeditor.c:247 msgid "Color index:" msgstr "색상 색인:" -#: app/widgets/gimpcolormapeditor.c:258 -#, fuzzy +#: ../app/widgets/gimpcolormapeditor.c:258 msgid "HTML notation:" -msgstr "위치:" +msgstr "HTML 형식:" -#: app/widgets/gimpcontainerpopup.c:502 +#: ../app/widgets/gimpcontainerpopup.c:502 msgid "Smaller Previews" msgstr "더 작은 미리보기" -#: app/widgets/gimpcontainerpopup.c:507 +#: ../app/widgets/gimpcontainerpopup.c:507 msgid "Larger Previews" msgstr "더 큰 미리보기" -#: app/widgets/gimpcontrollereditor.c:210 +#: ../app/widgets/gimpcontrollereditor.c:210 msgid "Dump events from this controller" -msgstr "" +msgstr "이 제어기의 이벤트 덤프" -#: app/widgets/gimpcontrollereditor.c:215 +#: ../app/widgets/gimpcontrollereditor.c:215 msgid "Enable this controller" -msgstr "" +msgstr "이 제어기 사용함" -#: app/widgets/gimpcontrollereditor.c:236 -#, fuzzy +#: ../app/widgets/gimpcontrollereditor.c:236 msgid "Name:" -msgstr "이름(_N):" +msgstr "이름:" -#: app/widgets/gimpcontrollereditor.c:369 -#, fuzzy +#: ../app/widgets/gimpcontrollereditor.c:369 msgid "Event" -msgstr "환경" +msgstr "이벤트" -#: app/widgets/gimpcontrollereditor.c:550 +#: ../app/widgets/gimpcontrollereditor.c:550 msgid "Select Controller Event Action" -msgstr "" +msgstr "제어기 이벤트 액션 설정" -#: app/widgets/gimpcontrollerkeyboard.c:69 +#: ../app/widgets/gimpcontrollerkeyboard.c:69 msgid "Key Up (Shift + Control + Alt)" -msgstr "" +msgstr "Key Up (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:72 +#: ../app/widgets/gimpcontrollerkeyboard.c:72 msgid "Key Up (Control + Alt)" -msgstr "" +msgstr "Key Up (Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:75 +#: ../app/widgets/gimpcontrollerkeyboard.c:75 msgid "Key Up (Shift + Alt)" -msgstr "" +msgstr "Key Up (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:78 +#: ../app/widgets/gimpcontrollerkeyboard.c:78 msgid "Key Up (Shift + Control)" -msgstr "" +msgstr "Key Up (Shift + Control)" -#: app/widgets/gimpcontrollerkeyboard.c:81 +#: ../app/widgets/gimpcontrollerkeyboard.c:81 msgid "Key Up (Alt)" -msgstr "" +msgstr "Key Up (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:84 +#: ../app/widgets/gimpcontrollerkeyboard.c:84 msgid "Key Up (Control)" -msgstr "" +msgstr "Key Up (Control)" -#: app/widgets/gimpcontrollerkeyboard.c:87 +#: ../app/widgets/gimpcontrollerkeyboard.c:87 msgid "Key Up (Shift)" -msgstr "" +msgstr "Key Up (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:90 +#: ../app/widgets/gimpcontrollerkeyboard.c:90 msgid "Key Up" -msgstr "" +msgstr "Key Up" -#: app/widgets/gimpcontrollerkeyboard.c:94 +#: ../app/widgets/gimpcontrollerkeyboard.c:94 msgid "Key Down (Shift + Control + Alt)" -msgstr "" +msgstr "Key Down (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:97 +#: ../app/widgets/gimpcontrollerkeyboard.c:97 msgid "Key Down (Control + Alt)" -msgstr "" +msgstr "Key Down (Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:100 +#: ../app/widgets/gimpcontrollerkeyboard.c:100 msgid "Key Down (Shift + Alt)" -msgstr "" +msgstr "Key Down (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:103 +#: ../app/widgets/gimpcontrollerkeyboard.c:103 msgid "Key Down (Shift + Control)" -msgstr "" +msgstr "Key Down (Shift + Control)" -#: app/widgets/gimpcontrollerkeyboard.c:106 +#: ../app/widgets/gimpcontrollerkeyboard.c:106 msgid "Key Down (Alt)" -msgstr "" +msgstr "Key Down (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:109 +#: ../app/widgets/gimpcontrollerkeyboard.c:109 msgid "Key Down (Control)" -msgstr "" +msgstr "Key Down (Control)" -#: app/widgets/gimpcontrollerkeyboard.c:112 +#: ../app/widgets/gimpcontrollerkeyboard.c:112 msgid "Key Down (Shift)" -msgstr "" +msgstr "Key Down (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:115 -#, fuzzy +#: ../app/widgets/gimpcontrollerkeyboard.c:115 msgid "Key Down" -msgstr "아래로 합치기" +msgstr "Key Down" -#: app/widgets/gimpcontrollerkeyboard.c:119 +#: ../app/widgets/gimpcontrollerkeyboard.c:119 msgid "Key Left (Shift + Control + Alt)" -msgstr "" +msgstr "Key Left (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:122 +#: ../app/widgets/gimpcontrollerkeyboard.c:122 msgid "Key Left (Control + Alt)" -msgstr "" +msgstr "Key Left (Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:125 +#: ../app/widgets/gimpcontrollerkeyboard.c:125 msgid "Key Left (Shift + Alt)" -msgstr "" +msgstr "Key Left (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:128 +#: ../app/widgets/gimpcontrollerkeyboard.c:128 msgid "Key Left (Shift + Control)" -msgstr "" +msgstr "Key Left (Shift + Control)" -#: app/widgets/gimpcontrollerkeyboard.c:131 +#: ../app/widgets/gimpcontrollerkeyboard.c:131 msgid "Key Left (Alt)" -msgstr "" +msgstr "Key Left (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:134 +#: ../app/widgets/gimpcontrollerkeyboard.c:134 msgid "Key Left (Control)" -msgstr "" +msgstr "Key Left (Control)" -#: app/widgets/gimpcontrollerkeyboard.c:137 +#: ../app/widgets/gimpcontrollerkeyboard.c:137 msgid "Key Left (Shift)" -msgstr "" +msgstr "Key Left (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:140 +#: ../app/widgets/gimpcontrollerkeyboard.c:140 msgid "Key Left" -msgstr "" +msgstr "Key Left" -#: app/widgets/gimpcontrollerkeyboard.c:144 +#: ../app/widgets/gimpcontrollerkeyboard.c:144 msgid "Key Right (Shift + Control + Alt)" -msgstr "" +msgstr "Key Right (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:147 +#: ../app/widgets/gimpcontrollerkeyboard.c:147 msgid "Key Right (Control + Alt)" -msgstr "" +msgstr "Key Right (Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:150 +#: ../app/widgets/gimpcontrollerkeyboard.c:150 msgid "Key Right (Shift + Alt)" -msgstr "" +msgstr "Key Right (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:153 +#: ../app/widgets/gimpcontrollerkeyboard.c:153 msgid "Key Right (Shift + Control)" -msgstr "" +msgstr "Key Right (Shift + Control)" -#: app/widgets/gimpcontrollerkeyboard.c:156 +#: ../app/widgets/gimpcontrollerkeyboard.c:156 msgid "Key Right (Alt)" -msgstr "" +msgstr "Key Right (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:159 -#, fuzzy +#: ../app/widgets/gimpcontrollerkeyboard.c:159 msgid "Key Right (Control)" -msgstr "/오른쪽 색상 저장(_V)" +msgstr "Key Right (Control)" -#: app/widgets/gimpcontrollerkeyboard.c:162 +#: ../app/widgets/gimpcontrollerkeyboard.c:162 msgid "Key Right (Shift)" -msgstr "" +msgstr "Key Right (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:165 -#, fuzzy +#: ../app/widgets/gimpcontrollerkeyboard.c:165 msgid "Key Right" -msgstr "높이" +msgstr "Key Right" -#: app/widgets/gimpcontrollerkeyboard.c:207 -#, fuzzy +#: ../app/widgets/gimpcontrollerkeyboard.c:207 msgid "Keyboard" -msgstr "키보드 단축키" +msgstr "키보드" -#: app/widgets/gimpcontrollerkeyboard.c:230 -#, fuzzy +#: ../app/widgets/gimpcontrollerkeyboard.c:230 msgid "Keyboard Events" -msgstr "키보드 단축키" +msgstr "키보드 이벤트" -#: app/widgets/gimpcontrollerkeyboard.c:231 -#: app/widgets/gimpcontrollerwheel.c:230 -#, fuzzy +#: ../app/widgets/gimpcontrollerkeyboard.c:231 +#: ../app/widgets/gimpcontrollerwheel.c:230 msgid "Ready" -msgstr "빨강" +msgstr "준비" -#: app/widgets/gimpcontrollerwheel.c:68 +#: ../app/widgets/gimpcontrollerwheel.c:68 msgid "Scroll Up (Shift + Control + Alt)" -msgstr "" +msgstr "Scroll Up (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:71 +#: ../app/widgets/gimpcontrollerwheel.c:71 msgid "Scroll Up (Control + Alt)" -msgstr "" +msgstr "Scroll Up (Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:74 +#: ../app/widgets/gimpcontrollerwheel.c:74 msgid "Scroll Up (Shift + Alt)" -msgstr "" +msgstr "Scroll Up (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:77 +#: ../app/widgets/gimpcontrollerwheel.c:77 msgid "Scroll Up (Shift + Control)" -msgstr "" +msgstr "Scroll Up (Shift + Control)" -#: app/widgets/gimpcontrollerwheel.c:80 +#: ../app/widgets/gimpcontrollerwheel.c:80 msgid "Scroll Up (Alt)" -msgstr "" +msgstr "Scroll Up (Alt)" -#: app/widgets/gimpcontrollerwheel.c:83 +#: ../app/widgets/gimpcontrollerwheel.c:83 msgid "Scroll Up (Control)" -msgstr "" +msgstr "Scroll Up (Control)" -#: app/widgets/gimpcontrollerwheel.c:86 +#: ../app/widgets/gimpcontrollerwheel.c:86 msgid "Scroll Up (Shift)" -msgstr "" +msgstr "Scroll Up (Shift)" -#: app/widgets/gimpcontrollerwheel.c:89 +#: ../app/widgets/gimpcontrollerwheel.c:89 msgid "Scroll Up" -msgstr "" +msgstr "Scroll Up" -#: app/widgets/gimpcontrollerwheel.c:93 +#: ../app/widgets/gimpcontrollerwheel.c:93 msgid "Scroll Down (Shift + Control + Alt)" -msgstr "" +msgstr "Scroll Down (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:96 +#: ../app/widgets/gimpcontrollerwheel.c:96 msgid "Scroll Down (Control + Alt)" -msgstr "" +msgstr "Scroll Down (Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:99 +#: ../app/widgets/gimpcontrollerwheel.c:99 msgid "Scroll Down (Shift + Alt)" -msgstr "" +msgstr "Scroll Down (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:102 +#: ../app/widgets/gimpcontrollerwheel.c:102 msgid "Scroll Down (Shift + Control)" -msgstr "" +msgstr "Scroll Down (Shift + Control)" -#: app/widgets/gimpcontrollerwheel.c:105 +#: ../app/widgets/gimpcontrollerwheel.c:105 msgid "Scroll Down (Alt)" -msgstr "" +msgstr "Scroll Down (Alt)" -#: app/widgets/gimpcontrollerwheel.c:108 +#: ../app/widgets/gimpcontrollerwheel.c:108 msgid "Scroll Down (Control)" -msgstr "" +msgstr "Scroll Down (Control)" -#: app/widgets/gimpcontrollerwheel.c:111 +#: ../app/widgets/gimpcontrollerwheel.c:111 msgid "Scroll Down (Shift)" -msgstr "" +msgstr "Scroll Down (Shift)" -#: app/widgets/gimpcontrollerwheel.c:114 +#: ../app/widgets/gimpcontrollerwheel.c:114 msgid "Scroll Down" -msgstr "" +msgstr "Scroll Down" -#: app/widgets/gimpcontrollerwheel.c:118 +#: ../app/widgets/gimpcontrollerwheel.c:118 msgid "Scroll Left (Shift + Control + Alt)" -msgstr "" +msgstr "Scroll Left (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:121 +#: ../app/widgets/gimpcontrollerwheel.c:121 msgid "Scroll Left (Control + Alt)" -msgstr "" +msgstr "Scroll Left (Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:124 +#: ../app/widgets/gimpcontrollerwheel.c:124 msgid "Scroll Left (Shift + Alt)" -msgstr "" +msgstr "Scroll Left (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:127 +#: ../app/widgets/gimpcontrollerwheel.c:127 msgid "Scroll Left (Shift + Control)" -msgstr "" +msgstr "Scroll Left (Shift + Control)" -#: app/widgets/gimpcontrollerwheel.c:130 +#: ../app/widgets/gimpcontrollerwheel.c:130 msgid "Scroll Left (Alt)" -msgstr "" +msgstr "Scroll Left (Alt)" -#: app/widgets/gimpcontrollerwheel.c:133 +#: ../app/widgets/gimpcontrollerwheel.c:133 msgid "Scroll Left (Control)" -msgstr "" +msgstr "Scroll Left (Control)" -#: app/widgets/gimpcontrollerwheel.c:136 +#: ../app/widgets/gimpcontrollerwheel.c:136 msgid "Scroll Left (Shift)" -msgstr "" +msgstr "Scroll Left (Shift)" -#: app/widgets/gimpcontrollerwheel.c:139 +#: ../app/widgets/gimpcontrollerwheel.c:139 msgid "Scroll Left" -msgstr "" +msgstr "Scroll Left" -#: app/widgets/gimpcontrollerwheel.c:143 +#: ../app/widgets/gimpcontrollerwheel.c:143 msgid "Scroll Right (Shift + Control + Alt)" -msgstr "" +msgstr "Scroll Right (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:146 +#: ../app/widgets/gimpcontrollerwheel.c:146 msgid "Scroll Right (Control + Alt)" -msgstr "" +msgstr "Scroll Right (Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:149 +#: ../app/widgets/gimpcontrollerwheel.c:149 msgid "Scroll Right (Shift + Alt)" -msgstr "" +msgstr "Scroll Right (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:152 +#: ../app/widgets/gimpcontrollerwheel.c:152 msgid "Scroll Right (Shift + Control)" -msgstr "" +msgstr "Scroll Right (Shift + Control)" -#: app/widgets/gimpcontrollerwheel.c:155 +#: ../app/widgets/gimpcontrollerwheel.c:155 msgid "Scroll Right (Alt)" -msgstr "" +msgstr "Scroll Right (Alt)" -#: app/widgets/gimpcontrollerwheel.c:158 +#: ../app/widgets/gimpcontrollerwheel.c:158 msgid "Scroll Right (Control)" -msgstr "" +msgstr "Scroll Right (Control)" -#: app/widgets/gimpcontrollerwheel.c:161 +#: ../app/widgets/gimpcontrollerwheel.c:161 msgid "Scroll Right (Shift)" -msgstr "" +msgstr "Scroll Right (Shift)" -#: app/widgets/gimpcontrollerwheel.c:164 -#, fuzzy +#: ../app/widgets/gimpcontrollerwheel.c:164 msgid "Scroll Right" -msgstr "부드러운 조명" +msgstr "Scroll Right" -#: app/widgets/gimpcontrollerwheel.c:206 -#, fuzzy +#: ../app/widgets/gimpcontrollerwheel.c:206 msgid "Mouse Wheel" -msgstr "채널 이동" +msgstr "Mouse Wheel" -#: app/widgets/gimpcontrollerwheel.c:229 -#, fuzzy +#: ../app/widgets/gimpcontrollerwheel.c:229 msgid "Mouse Wheel Events" -msgstr "채널 이동" +msgstr "Mouse Wheel Events" -#: app/widgets/gimpdataeditor.c:205 +#: ../app/widgets/gimpdataeditor.c:205 msgid "Save" msgstr "저장" -#: app/widgets/gimpdataeditor.c:213 +#: ../app/widgets/gimpdataeditor.c:213 msgid "Revert" -msgstr "원래대로" +msgstr "복원" -#: app/widgets/gimpdevicestatus.c:281 +#: ../app/widgets/gimpdevicestatus.c:281 msgid "Save device status" msgstr "장치 상태 저장" -#: app/widgets/gimpdevicestatus.c:385 +#: ../app/widgets/gimpdevicestatus.c:385 #, c-format msgid "Foreground: %d, %d, %d" -msgstr "전경: %d, %d, %d" +msgstr "전경색: %d, %d, %d" -#: app/widgets/gimpdevicestatus.c:390 +#: ../app/widgets/gimpdevicestatus.c:390 #, c-format msgid "Background: %d, %d, %d" -msgstr "배경: %d, %d, %d" +msgstr "배경색: %d, %d, %d" -#: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 -#, fuzzy +#: ../app/widgets/gimpdock.c:348 ../app/widgets/gimpdock.c:359 msgid "Close all tabs?" -msgstr "/탭 닫기(_C)" +msgstr "모든 탭을 닫을까요?" -#: app/widgets/gimpdock.c:354 -#, fuzzy +#: ../app/widgets/gimpdock.c:354 msgid "Close all Tabs" -msgstr "/탭 닫기(_C)" +msgstr "모든 탭 닫기" -#: app/widgets/gimpdock.c:361 +#: ../app/widgets/gimpdock.c:361 #, c-format msgid "" "This window has %d tabs open. Closing the window will also close all its " "tabs." msgstr "" +"이 창에는 %d개의 탭이 열려있습니다. 창을 닫으면 모든 하위 탭들도 닫습니다." -#: app/widgets/gimpdock.c:474 +#: ../app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." msgstr "도킹가능한 대화상자를 여기에 끌어다 놓으십시오." -#: app/widgets/gimpdockable.c:210 +#: ../app/widgets/gimpdockable.c:210 msgid "Close this Tab" msgstr "이 탭 닫기" -#: app/widgets/gimperrorconsole.c:235 app/widgets/gimperrordialog.c:252 +#: ../app/widgets/gimperrorconsole.c:235 ../app/widgets/gimperrordialog.c:252 #, c-format msgid "%s Message" msgstr "%s 메시지" -#: app/widgets/gimperrordialog.c:229 +#: ../app/widgets/gimperrordialog.c:229 msgid "Too many error messages!" -msgstr "" +msgstr "오류 메시지가 너무 많습니다!" -#: app/widgets/gimperrordialog.c:230 -#, fuzzy +#: ../app/widgets/gimperrordialog.c:230 msgid "Messages are redirected to stderr." -msgstr "메시지를 한 번 반복합니다." +msgstr "메시지를 stderr로 보냅니다." -#: app/widgets/gimpfiledialog.c:304 +#: ../app/widgets/gimpfiledialog.c:304 msgid "Automatically Detected" -msgstr "" +msgstr "자동 감지" -#: app/widgets/gimpfiledialog.c:310 -#, fuzzy +#: ../app/widgets/gimpfiledialog.c:310 msgid "By Extension" -msgstr "/확장자로" +msgstr "확장자로" -#: app/widgets/gimpfiledialog.c:469 -#, fuzzy +#: ../app/widgets/gimpfiledialog.c:469 msgid "All Files" msgstr "모든 파일" -#: app/widgets/gimpfiledialog.c:608 -#, fuzzy, c-format +#: ../app/widgets/gimpfiledialog.c:608 +#, c-format msgid "Select File _Type (%s)" -msgstr "채우기 유형 %s" +msgstr "파일 유형 (%s) (_T)" -#: app/widgets/gimpfileprocview.c:234 -#, fuzzy +#: ../app/widgets/gimpfileprocview.c:234 msgid "File Type" -msgstr "채우기 유형" +msgstr "파일 유형" -#: app/widgets/gimpfileprocview.c:253 -#, fuzzy +#: ../app/widgets/gimpfileprocview.c:253 msgid "Extensions" -msgstr "/확장자로" +msgstr "확장자" -#: app/widgets/gimpgradienteditor.c:362 +#: ../app/widgets/gimpgradienteditor.c:362 msgid "Instant update" msgstr "즉시 갱신" -#: app/widgets/gimpgradienteditor.c:619 +#: ../app/widgets/gimpgradienteditor.c:619 #, c-format msgid "Zoom factor: %d:1" msgstr "확대 배율: %d:1" -#: app/widgets/gimpgradienteditor.c:622 +#: ../app/widgets/gimpgradienteditor.c:622 #, c-format msgid "Displaying [%0.6f, %0.6f]" msgstr "표시 중 [%0.6f, %0.6f]" -#: app/widgets/gimpgradienteditor.c:814 +#: ../app/widgets/gimpgradienteditor.c:814 #, c-format msgid "Position: %0.6f" msgstr "위치: %0.6f" -#: app/widgets/gimpgradienteditor.c:816 -#, fuzzy, c-format +#: ../app/widgets/gimpgradienteditor.c:816 +#, c-format msgid "RGB (%0.3f, %0.3f, %0.3f)" -msgstr "(%0.3f, %0.3f, %0.3f)" +msgstr "RGB (%0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpgradienteditor.c:819 +#: ../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 -#, fuzzy, c-format +#: ../app/widgets/gimpgradienteditor.c:821 +#, c-format msgid "Intensity: %0.3f Opacity: %0.3f" -msgstr "RGB (%0.3f, %0.3f, %0.3f) 불투명도: %0.3f" +msgstr "강도: %0.3f 불투명도: %0.3f" -#: app/widgets/gimpgradienteditor.c:854 app/widgets/gimpgradienteditor.c:889 +#: ../app/widgets/gimpgradienteditor.c:854 +#: ../app/widgets/gimpgradienteditor.c:889 #, c-format msgid "RGB (%d, %d, %d)" msgstr "RGB (%d, %d, %d)" -#: app/widgets/gimpgradienteditor.c:862 +#: ../app/widgets/gimpgradienteditor.c:862 msgid "Foreground color set to:" msgstr "전경색 지정:" -#: app/widgets/gimpgradienteditor.c:894 +#: ../app/widgets/gimpgradienteditor.c:894 #, c-format msgid "(%0.3f, %0.3f, %0.3f)" msgstr "(%0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpgradienteditor.c:898 +#: ../app/widgets/gimpgradienteditor.c:898 msgid "Background color set to:" msgstr "배경색 지정:" -#: app/widgets/gimpgradienteditor.c:1101 app/widgets/gimpgradienteditor.c:1167 +#: ../app/widgets/gimpgradienteditor.c:1101 +#: ../app/widgets/gimpgradienteditor.c:1167 #, c-format msgid "%s%sDrag: move & compress" msgstr "%s%s끌기: 이동 & 압축" -#: app/widgets/gimpgradienteditor.c:1107 +#: ../app/widgets/gimpgradienteditor.c:1107 msgid "Drag: move" msgstr "끌기: 이동" -#: app/widgets/gimpgradienteditor.c:1114 app/widgets/gimpgradienteditor.c:1128 -#: app/widgets/gimpgradienteditor.c:1142 app/widgets/gimpgradienteditor.c:1164 +#: ../app/widgets/gimpgradienteditor.c:1114 +#: ../app/widgets/gimpgradienteditor.c:1128 +#: ../app/widgets/gimpgradienteditor.c:1142 +#: ../app/widgets/gimpgradienteditor.c:1164 #, c-format msgid "%s%sClick: extend selection" msgstr "%s%s클릭: 선택 확장" -#: app/widgets/gimpgradienteditor.c:1120 app/widgets/gimpgradienteditor.c:1134 +#: ../app/widgets/gimpgradienteditor.c:1120 +#: ../app/widgets/gimpgradienteditor.c:1134 msgid "Click: select" msgstr "클릭: 선택" -#: app/widgets/gimpgradienteditor.c:1148 app/widgets/gimpgradienteditor.c:1172 +#: ../app/widgets/gimpgradienteditor.c:1148 +#: ../app/widgets/gimpgradienteditor.c:1172 msgid "Click: select Drag: move" msgstr "클릭: 선택 끌기: 이동" -#: app/widgets/gimpgradienteditor.c:1394 app/widgets/gimpgradienteditor.c:1402 +#: ../app/widgets/gimpgradienteditor.c:1394 +#: ../app/widgets/gimpgradienteditor.c:1402 #, c-format msgid "Handle position: %0.6f" msgstr "조절점 위치: %0.6f" -#: app/widgets/gimpgradienteditor.c:1419 +#: ../app/widgets/gimpgradienteditor.c:1419 #, c-format msgid "Distance: %0.6f" msgstr "거리: %0.6f" -#: app/widgets/gimpgrideditor.c:219 +#: ../app/widgets/gimpgrideditor.c:219 msgid "Line _Style:" msgstr "선 형태(_S):" -#: app/widgets/gimpgrideditor.c:223 -#, fuzzy +#: ../app/widgets/gimpgrideditor.c:223 msgid "Change grid foreground color" msgstr "모눈의 전경색 바꾸기" -#: app/widgets/gimpgrideditor.c:228 -#, fuzzy +#: ../app/widgets/gimpgrideditor.c:228 msgid "_Foreground color:" msgstr "전경색(_F):" -#: app/widgets/gimpgrideditor.c:232 -#, fuzzy +#: ../app/widgets/gimpgrideditor.c:232 msgid "Change grid background color" msgstr "모눈의 배경색 바꾸기" -#: app/widgets/gimpgrideditor.c:237 -#, fuzzy +#: ../app/widgets/gimpgrideditor.c:237 msgid "_Background color:" msgstr "배경색(_B):" -#: app/widgets/gimpgrideditor.c:242 +#: ../app/widgets/gimpgrideditor.c:242 msgid "Spacing" msgstr "간격" -#: app/widgets/gimpgrideditor.c:263 app/widgets/gimpgrideditor.c:295 +#: ../app/widgets/gimpgrideditor.c:263 ../app/widgets/gimpgrideditor.c:295 msgid "Width" msgstr "너비" -#: app/widgets/gimpgrideditor.c:265 app/widgets/gimpgrideditor.c:297 +#: ../app/widgets/gimpgrideditor.c:265 ../app/widgets/gimpgrideditor.c:297 msgid "Height" msgstr "높이" -#: app/widgets/gimphelp.c:187 -#, fuzzy +#: ../app/widgets/gimphelp.c:187 msgid "Help browser not found" -msgstr "사용할 도움말 브라우저(_B):" +msgstr "도움말 브라우저를 찾을 수 없습니다" -#: app/widgets/gimphelp.c:188 -#, fuzzy +#: ../app/widgets/gimphelp.c:188 msgid "Could not find GIMP help browser." -msgstr "김프 도움말 브라우저를 찾을 수 없습니다" +msgstr "김프 도움말 브라우저를 찾을 수 없습니다." -#: app/widgets/gimphelp.c:189 +#: ../app/widgets/gimphelp.c:189 msgid "" "The GIMP help browser plug-in appears to be missing from your installation." -msgstr "" +msgstr "김프 도움말 브라우저 플러그인이 설치되지 않은 것 같습니다." -#: app/widgets/gimphelp.c:213 -#, fuzzy +#: ../app/widgets/gimphelp.c:213 msgid "Help browser doesn't start" -msgstr "사용할 도움말 브라우저(_B):" +msgstr "도움말 브라우저를 시작할 수 없습니다" -#: app/widgets/gimphelp.c:214 -#, fuzzy +#: ../app/widgets/gimphelp.c:214 msgid "Could not start the GIMP help browser plug-in." -msgstr "김프 도움말 브라우저를 시작할 수 없습니다." +msgstr "김프 도움말 브라우저 플러그인을 시작할 수 없습니다." -#: app/widgets/gimphelp.c:240 -#, fuzzy +#: ../app/widgets/gimphelp.c:240 msgid "Use _web browser instead" -msgstr "웹 브라우저를 대신 사용하십시오" +msgstr "대신 웹 브라우저를 사용(_W)" -#: app/widgets/gimphistogrameditor.c:134 +#: ../app/widgets/gimphistogrameditor.c:134 msgid "Mean:" msgstr "평균:" -#: app/widgets/gimphistogrameditor.c:135 +#: ../app/widgets/gimphistogrameditor.c:135 msgid "Std Dev:" msgstr "표준 편차:" -#: app/widgets/gimphistogrameditor.c:136 +#: ../app/widgets/gimphistogrameditor.c:136 msgid "Median:" msgstr "중간:" -#: app/widgets/gimphistogrameditor.c:137 +#: ../app/widgets/gimphistogrameditor.c:137 msgid "Pixels:" msgstr "픽셀:" -#: app/widgets/gimphistogrameditor.c:138 +#: ../app/widgets/gimphistogrameditor.c:138 msgid "Count:" msgstr "총계:" -#: app/widgets/gimphistogrameditor.c:139 +#: ../app/widgets/gimphistogrameditor.c:139 msgid "Percentile:" msgstr "백분율:" -#: app/widgets/gimpimagedock.c:203 +#: ../app/widgets/gimpimagedock.c:203 msgid "Auto" msgstr "자동" -#: app/widgets/gimpimagedock.c:214 +#: ../app/widgets/gimpimagedock.c:214 msgid "" "When enabled the dialog automatically follows the image you are working on." msgstr "선택하면, 대화상자가 자동으로 현재 작업 중인 이미지를 반영합니다." -#: app/widgets/gimpitemtreeview.c:996 +#: ../app/widgets/gimpitemtreeview.c:996 msgid "Set Item Exclusive Visible" msgstr "항목을 배타적으로 표시" -#: app/widgets/gimpitemtreeview.c:1004 +#: ../app/widgets/gimpitemtreeview.c:1004 msgid "Set Item Exclusive Linked" msgstr "배타적으로 연결된 항목 지정" -#: app/widgets/gimplayertreeview.c:252 +#: ../app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "레이어 순서 조정" -#: app/widgets/gimplayertreeview.c:313 -#, fuzzy +#: ../app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "투명도 유지" -#: app/widgets/gimplayertreeview.c:848 +#: ../app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "빈 레이어" -#: app/widgets/gimpmessagebox.c:460 +#: ../app/widgets/gimpmessagebox.c:461 #, c-format msgid "Message repeated %d times." msgstr "메시지를 %d번 반복합니다." -#: app/widgets/gimpmessagebox.c:462 +#: ../app/widgets/gimpmessagebox.c:463 msgid "Message repeated once." msgstr "메시지를 한 번 반복합니다." -#: app/widgets/gimppaletteeditor.c:258 app/widgets/gimppaletteeditor.c:999 +#: ../app/widgets/gimppaletteeditor.c:258 +#: ../app/widgets/gimppaletteeditor.c:999 msgid "Undefined" msgstr "정의안됨" -#: app/widgets/gimppaletteeditor.c:266 +#: ../app/widgets/gimppaletteeditor.c:266 msgid "Columns:" msgstr "열:" -#: app/widgets/gimppropwidgets.c:1537 +#: ../app/widgets/gimppropwidgets.c:1537 #, c-format msgid "This text input field is limited to %d characters." msgstr "이 텍스트 입력란은 %d 글자로 제한되어 있습니다." -#: app/widgets/gimpselectiondata.c:317 +#: ../app/widgets/gimpselectiondata.c:319 #, c-format msgid "" "The filename '%s' couldn't be converted to a valid URI:\n" @@ -11107,103 +10313,92 @@ "\n" "%s" -#: app/widgets/gimpselectiondata.c:321 +#: ../app/widgets/gimpselectiondata.c:323 msgid "Invalid UTF-8" msgstr "잘못된 UTF-8" -#: app/widgets/gimpsizebox.c:456 -#, fuzzy, c-format +#: ../app/widgets/gimpsizebox.c:456 +#, c-format msgid "%d x %d dpi" -msgstr "%d x %d 픽셀" +msgstr "%d x %d dpi" -#: app/widgets/gimpsizebox.c:458 -#, fuzzy, c-format +#: ../app/widgets/gimpsizebox.c:458 +#, c-format msgid "%d dpi" -msgstr "dpi" +msgstr "%d dpi" -#: app/widgets/gimpstrokeeditor.c:198 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:198 msgid "Line Width:" -msgstr "레이어 너비:" +msgstr "선 너비:" -#: app/widgets/gimpstrokeeditor.c:209 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:209 msgid "_Line Style" -msgstr "선 형태(_S):" +msgstr "선 형태(_L):" -#: app/widgets/gimpstrokeeditor.c:228 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:228 msgid "_Cap style:" msgstr "선 끝 형태(_C):" -#: app/widgets/gimpstrokeeditor.c:234 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:234 msgid "_Join style:" -msgstr "선 결합 형태(_S):" +msgstr "선 결합 형태(_J):" -#: app/widgets/gimpstrokeeditor.c:239 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:239 msgid "_Miter limit:" msgstr "뾰족한 선 결합 제한(_M):" -#: app/widgets/gimpstrokeeditor.c:246 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:246 msgid "Dash pattern:" msgstr "파선 무늬:" -#: app/widgets/gimpstrokeeditor.c:288 -#, fuzzy +#: ../app/widgets/gimpstrokeeditor.c:288 msgid "Dash preset:" msgstr "파선 견본:" -#: app/widgets/gimpstrokeeditor.c:300 +#: ../app/widgets/gimpstrokeeditor.c:300 msgid "_Antialiasing" msgstr "부드럽게 하기(_A)" -#: app/widgets/gimptemplateeditor.c:255 +#: ../app/widgets/gimptemplateeditor.c:255 #, c-format msgid "%p" -msgstr "" +msgstr "%p" -#: app/widgets/gimptemplateeditor.c:330 -#, fuzzy +#: ../app/widgets/gimptemplateeditor.c:330 msgid "_Advanced Options" -msgstr "저장된 선택사항" +msgstr "고급 선택사항(_A)" -#: app/widgets/gimptemplateeditor.c:437 -#, fuzzy +#: ../app/widgets/gimptemplateeditor.c:437 msgid "Color_space:" -msgstr "색상:" +msgstr "색상공간(_S):" -#: app/widgets/gimptemplateeditor.c:445 -#, fuzzy +#: ../app/widgets/gimptemplateeditor.c:445 msgid "_Fill with:" -msgstr "흰색으로 채우기" +msgstr "채우기(_F):" -#: app/widgets/gimptemplateeditor.c:455 -#, fuzzy +#: ../app/widgets/gimptemplateeditor.c:455 msgid "Comme_nt:" -msgstr "총계:" +msgstr "설명(_N):" -#: app/widgets/gimptemplateeditor.c:565 +#: ../app/widgets/gimptemplateeditor.c:565 msgid "_Name:" msgstr "이름(_N):" -#: app/widgets/gimptemplateeditor.c:576 +#: ../app/widgets/gimptemplateeditor.c:576 msgid "_Icon:" msgstr "아이콘(_I):" -#: app/widgets/gimptemplateeditor.c:699 -#, fuzzy, c-format +#: ../app/widgets/gimptemplateeditor.c:699 +#, c-format msgid "%d x %d dpi, %s" -msgstr "%d x %d 픽셀" +msgstr "%d x %d dpi, %s" -#: app/widgets/gimptemplateeditor.c:701 +#: ../app/widgets/gimptemplateeditor.c:701 #, c-format msgid "%d dpi, %s" -msgstr "" +msgstr "%d dpi, %s" -#: app/widgets/gimpthumbbox.c:337 +#: ../app/widgets/gimpthumbbox.c:337 #, c-format msgid "" "Click to update preview\n" @@ -11212,39 +10407,36 @@ "미리보기를 갱신하려면 누르세요\n" "%s 미리보기가 최신이더라도 강제로 갱신하려면 누르세요" -#: app/widgets/gimpthumbbox.c:407 app/widgets/gimpthumbbox.c:477 -#, fuzzy +#: ../app/widgets/gimpthumbbox.c:407 ../app/widgets/gimpthumbbox.c:477 msgid "No selection" msgstr "선택 없음" -#: 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 "썸네일 %d / %d" -#: app/widgets/gimpthumbbox.c:730 app/widgets/gimpthumbbox.c:740 -#, fuzzy +#: ../app/widgets/gimpthumbbox.c:730 ../app/widgets/gimpthumbbox.c:740 msgid "Creating Preview ..." -msgstr "미리보기 읽는 중 ..." +msgstr "미리보기 만드는 중 ..." -#: app/widgets/gimptoolbox-color-area.c:135 +#: ../app/widgets/gimptoolbox-color-area.c:135 msgid "Change Foreground Color" msgstr "전경색 바꾸기" -#: app/widgets/gimptoolbox-color-area.c:140 +#: ../app/widgets/gimptoolbox-color-area.c:140 msgid "Change Background Color" msgstr "배경색 바꾸기" -#: app/widgets/gimptoolbox-image-area.c:90 -#, fuzzy +#: ../app/widgets/gimptoolbox-image-area.c:90 msgid "" "The active image.\n" "Click to open the Image Dialog." msgstr "" -"활성 무늬.\n" -"무늬 대화상자를 열려면 클릭하십시오." +"활성 이미지.\n" +"이미지 대화상자를 열려면 클릭하십시오." -#: 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." @@ -11252,7 +10444,7 @@ "활성 브러시.\n" "브러시 대화상자를 열려면 클릭하십시오." -#: 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." @@ -11260,7 +10452,7 @@ "활성 무늬.\n" "무늬 대화상자를 열려면 클릭하십시오." -#: 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." @@ -11268,7 +10460,7 @@ "활성 그라디언트.\n" "그라디언트 대화상자를 열려면 클릭하십시오." -#: 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." @@ -11277,277 +10469,256 @@ "합니다. 화살표는 전경색과 배경색을 맞바꿉니다. 색 선택 대화상자를 열려면 더" "블 클릭 하십시오." -#: app/widgets/gimptooloptionseditor.c:185 +#: ../app/widgets/gimptooloptionseditor.c:185 msgid "Save options to..." msgstr "선택사항 저장..." -#: app/widgets/gimptooloptionseditor.c:193 +#: ../app/widgets/gimptooloptionseditor.c:193 msgid "Restore options from..." msgstr "선택사항 복원..." -#: app/widgets/gimptooloptionseditor.c:201 +#: ../app/widgets/gimptooloptionseditor.c:201 msgid "Delete saved options..." msgstr "저장된 선택사항 지우기..." -#: app/widgets/gimpuimanager.c:495 +#: ../app/widgets/gimpuimanager.c:495 msgid "Your GIMP installation is incomplete:" -msgstr "" +msgstr "김프 설치가 불완전합니다:" -#: app/widgets/gimpuimanager.c:497 +#: ../app/widgets/gimpuimanager.c:497 msgid "Plase make sure the menu XML files are correctly installed." -msgstr "" +msgstr "메뉴 XML 파일이 제대로 설치되었는지 확인하십시오." -#: app/widgets/gimpundoeditor.c:255 +#: ../app/widgets/gimpundoeditor.c:255 msgid "[ Base Image ]" msgstr "[ 기본 이미지 ]" -#: app/widgets/gimpvectorstreeview.c:151 -#, fuzzy +#: ../app/widgets/gimpvectorstreeview.c:151 msgid "Reorder path" msgstr "경로 순서 조정" -#: app/widgets/gimpvectorstreeview.c:289 +#: ../app/widgets/gimpvectorstreeview.c:289 msgid "Empty Path" msgstr "빈 경로" -#: app/widgets/gimpviewablebox.c:75 +#: ../app/widgets/gimpviewablebox.c:75 msgid "Open the brush selection dialog" msgstr "브러시 선택 대화상자 표시" -#: app/widgets/gimpviewablebox.c:115 +#: ../app/widgets/gimpviewablebox.c:115 msgid "Open the pattern selection dialog" msgstr "무늬 대화상자 표시" -#: app/widgets/gimpviewablebox.c:155 +#: ../app/widgets/gimpviewablebox.c:155 msgid "Open the gradient selection dialog" msgstr "그라디언트 대화상자 표시" -#: app/widgets/gimpviewablebox.c:167 +#: ../app/widgets/gimpviewablebox.c:167 msgid "Reverse" msgstr "반대로" -#: app/widgets/gimpviewablebox.c:210 -#, fuzzy +#: ../app/widgets/gimpviewablebox.c:210 msgid "Open the palette selection dialog" -msgstr "무늬 대화상자 표시" +msgstr "색상표 선택 대화상자 표시" -#: app/widgets/gimpviewablebox.c:250 +#: ../app/widgets/gimpviewablebox.c:250 msgid "Open the font selection dialog" msgstr "글꼴 선택 대화상자 표시" -#: app/widgets/gimpwidgets-constructors.c:50 -#: app/widgets/gimpwidgets-constructors.c:85 +#: ../app/widgets/gimpwidgets-constructors.c:50 +#: ../app/widgets/gimpwidgets-constructors.c:85 msgid "Normal" msgstr "보통" -#: app/widgets/gimpwidgets-constructors.c:51 -#: app/widgets/gimpwidgets-constructors.c:86 +#: ../app/widgets/gimpwidgets-constructors.c:51 +#: ../app/widgets/gimpwidgets-constructors.c:86 msgid "Dissolve" msgstr "분해" -#: app/widgets/gimpwidgets-constructors.c:52 +#: ../app/widgets/gimpwidgets-constructors.c:52 msgid "Behind" msgstr "뒤로" -#: app/widgets/gimpwidgets-constructors.c:53 -#, fuzzy +#: ../app/widgets/gimpwidgets-constructors.c:53 msgid "Color erase" msgstr "색상 지우기" -#: app/widgets/gimpwidgets-constructors.c:55 -#: app/widgets/gimpwidgets-constructors.c:88 +#: ../app/widgets/gimpwidgets-constructors.c:55 +#: ../app/widgets/gimpwidgets-constructors.c:88 msgid "Multiply" msgstr "곱하기" -#: app/widgets/gimpwidgets-constructors.c:56 -#: app/widgets/gimpwidgets-constructors.c:89 +#: ../app/widgets/gimpwidgets-constructors.c:56 +#: ../app/widgets/gimpwidgets-constructors.c:89 msgid "Divide" msgstr "나누기" -#: app/widgets/gimpwidgets-constructors.c:57 -#: app/widgets/gimpwidgets-constructors.c:90 +#: ../app/widgets/gimpwidgets-constructors.c:57 +#: ../app/widgets/gimpwidgets-constructors.c:90 msgid "Screen" msgstr "화면" -#: app/widgets/gimpwidgets-constructors.c:58 -#: app/widgets/gimpwidgets-constructors.c:91 +#: ../app/widgets/gimpwidgets-constructors.c:58 +#: ../app/widgets/gimpwidgets-constructors.c:91 msgid "Overlay" msgstr "씌우기" -#: app/widgets/gimpwidgets-constructors.c:62 -#: app/widgets/gimpwidgets-constructors.c:95 -#, fuzzy +#: ../app/widgets/gimpwidgets-constructors.c:62 +#: ../app/widgets/gimpwidgets-constructors.c:95 msgid "Hard light" msgstr "강한 조명" -#: app/widgets/gimpwidgets-constructors.c:63 -#: app/widgets/gimpwidgets-constructors.c:96 -#, fuzzy +#: ../app/widgets/gimpwidgets-constructors.c:63 +#: ../app/widgets/gimpwidgets-constructors.c:96 msgid "Soft light" msgstr "부드러운 조명" -#: app/widgets/gimpwidgets-constructors.c:64 -#: app/widgets/gimpwidgets-constructors.c:97 -#, fuzzy +#: ../app/widgets/gimpwidgets-constructors.c:64 +#: ../app/widgets/gimpwidgets-constructors.c:97 msgid "Grain extract" msgstr "질감 드러내기" -#: app/widgets/gimpwidgets-constructors.c:65 -#: app/widgets/gimpwidgets-constructors.c:98 -#, fuzzy +#: ../app/widgets/gimpwidgets-constructors.c:65 +#: ../app/widgets/gimpwidgets-constructors.c:98 msgid "Grain merge" msgstr "질감 합치기" -#: app/widgets/gimpwidgets-constructors.c:67 -#: app/widgets/gimpwidgets-constructors.c:100 +#: ../app/widgets/gimpwidgets-constructors.c:67 +#: ../app/widgets/gimpwidgets-constructors.c:100 msgid "Difference" msgstr "차이점" -#: app/widgets/gimpwidgets-constructors.c:68 -#: app/widgets/gimpwidgets-constructors.c:101 +#: ../app/widgets/gimpwidgets-constructors.c:68 +#: ../app/widgets/gimpwidgets-constructors.c:101 msgid "Addition" msgstr "더하기" -#: app/widgets/gimpwidgets-constructors.c:70 -#: app/widgets/gimpwidgets-constructors.c:103 -#, fuzzy +#: ../app/widgets/gimpwidgets-constructors.c:70 +#: ../app/widgets/gimpwidgets-constructors.c:103 msgid "Darken only" msgstr "어둡게만" -#: app/widgets/gimpwidgets-constructors.c:71 -#: app/widgets/gimpwidgets-constructors.c:104 -#, fuzzy +#: ../app/widgets/gimpwidgets-constructors.c:71 +#: ../app/widgets/gimpwidgets-constructors.c:104 msgid "Lighten only" msgstr "밝게만" -#: app/widgets/gimpwidgets-constructors.c:73 -#: app/widgets/gimpwidgets-constructors.c:106 +#: ../app/widgets/gimpwidgets-constructors.c:73 +#: ../app/widgets/gimpwidgets-constructors.c:106 msgid "Hue" msgstr "색상" -#: app/widgets/gimpwidgets-constructors.c:74 -#: app/widgets/gimpwidgets-constructors.c:107 +#: ../app/widgets/gimpwidgets-constructors.c:74 +#: ../app/widgets/gimpwidgets-constructors.c:107 msgid "Saturation" msgstr "채도" #. The format string which is used to display modifier names #. * , and #. -#: app/widgets/gimpwidgets-utils.c:391 +#: ../app/widgets/gimpwidgets-utils.c:391 #, c-format msgid "<%s>" msgstr "<%s>" -#: app/widgets/gimpwidgets-utils.c:795 +#: ../app/widgets/gimpwidgets-utils.c:795 #, c-format msgid "Invalid UTF-8 data in file '%s'." msgstr "파일 '%s'에 잘못된 UTF-8 데이터가 있습니다." -#: app/widgets/widgets-enums.c:23 +#: ../app/widgets/widgets-enums.c:23 msgid "Foreground" msgstr "전경" -#: app/widgets/widgets-enums.c:53 +#: ../app/widgets/widgets-enums.c:53 msgid "Portrait" msgstr "세로 방향" -#: app/widgets/widgets-enums.c:54 +#: ../app/widgets/widgets-enums.c:54 msgid "Landscape" msgstr "가로 방향" -#: app/widgets/widgets-enums.c:113 -#, fuzzy +#: ../app/widgets/widgets-enums.c:113 msgid "Pixel values" msgstr "픽셀 값" -#: app/widgets/widgets-enums.c:115 +#: ../app/widgets/widgets-enums.c:115 msgid "HSV" msgstr "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 "" +msgstr "흑백" -#: app/widgets/widgets-enums.c:172 +#: ../app/widgets/widgets-enums.c:172 msgid "Fancy" -msgstr "" +msgstr "깜찍하게" -#: app/widgets/widgets-enums.c:199 -#, fuzzy +#: ../app/widgets/widgets-enums.c:199 msgid "GIMP help browser" -msgstr "도움말 브라우저" +msgstr "김프 도움말 브라우저" -#: app/widgets/widgets-enums.c:200 -#, fuzzy +#: ../app/widgets/widgets-enums.c:200 msgid "Web browser" msgstr "웹 브라우저" -#: app/widgets/widgets-enums.c:228 +#: ../app/widgets/widgets-enums.c:228 msgid "Logarithmic" msgstr "대수" -#: app/widgets/widgets-enums.c:261 +#: ../app/widgets/widgets-enums.c:261 msgid "Icon" msgstr "아이콘" -#: app/widgets/widgets-enums.c:262 -#, fuzzy +#: ../app/widgets/widgets-enums.c:262 msgid "Current status" msgstr "현재 상태" -#: app/widgets/widgets-enums.c:264 +#: ../app/widgets/widgets-enums.c:264 msgid "Description" msgstr "설명" -#: app/widgets/widgets-enums.c:265 -#, fuzzy +#: ../app/widgets/widgets-enums.c:265 msgid "Icon & text" -msgstr "아이콘과 글자" +msgstr "아이콘 & 글자" -#: app/widgets/widgets-enums.c:266 -#, fuzzy +#: ../app/widgets/widgets-enums.c:266 msgid "Icon & desc" -msgstr "아이콘과 설명" +msgstr "아이콘 & 설명" -#: app/widgets/widgets-enums.c:267 -#, fuzzy +#: ../app/widgets/widgets-enums.c:267 msgid "Status & text" -msgstr "상태와 글자" +msgstr "상태 & 글자" -#: app/widgets/widgets-enums.c:268 -#, fuzzy +#: ../app/widgets/widgets-enums.c:268 msgid "Status & desc" -msgstr "상태와 설명" +msgstr "상태 & 설명" -#: app/widgets/widgets-enums.c:295 -#, fuzzy +#: ../app/widgets/widgets-enums.c:295 msgid "View as list" msgstr "목록으로 보기" -#: app/widgets/widgets-enums.c:296 -#, fuzzy +#: ../app/widgets/widgets-enums.c:296 msgid "View as grid" msgstr "모눈으로 표시" -#: app/widgets/widgets-enums.c:324 -#, fuzzy +#: ../app/widgets/widgets-enums.c:324 msgid "Normal window" msgstr "보통 창" -#: app/widgets/widgets-enums.c:325 -#, fuzzy +#: ../app/widgets/widgets-enums.c:325 msgid "Utility window" msgstr "유틸리티 창" -#: app/widgets/widgets-enums.c:326 +#: ../app/widgets/widgets-enums.c:326 msgid "Keep above" -msgstr "" +msgstr "위에 유지" -#: app/xcf/xcf-load.c:297 +#: ../app/xcf/xcf-load.c:297 msgid "" "XCF warning: version 0 of XCF file format\n" "did not save indexed colormaps correctly.\n" @@ -11557,1514 +10728,40 @@ "정확하게 인덱스된 색상표를 저장하지 못합니다.\n" "그레이스케일 맵으로 대체합니다." -#: app/xcf/xcf-read.c:107 +#: ../app/xcf/xcf-read.c:107 msgid "Invalid UTF-8 string in XCF file" msgstr "XCF 파일에 잘못된 UTF-8 문자열이 있습니다." -#: app/xcf/xcf-save.c:157 app/xcf/xcf-save.c:167 app/xcf/xcf-save.c:177 -#: app/xcf/xcf-save.c:187 app/xcf/xcf-save.c:211 app/xcf/xcf.c:342 +#: ../app/xcf/xcf-save.c:157 ../app/xcf/xcf-save.c:167 +#: ../app/xcf/xcf-save.c:177 ../app/xcf/xcf-save.c:187 +#: ../app/xcf/xcf-save.c:211 ../app/xcf/xcf.c:342 #, c-format msgid "Error saving XCF file: %s" msgstr "XCF 파일 저장 오류: %s" -#: app/xcf/xcf-write.c:86 +#: ../app/xcf/xcf-write.c:86 #, c-format msgid "Error writing XCF: %s" msgstr "XCF 쓰기 오류: %s" -#: app/xcf/xcf-seek.c:44 app/xcf/xcf-seek.c:61 app/xcf/xcf-seek.c:72 +#: ../app/xcf/xcf-seek.c:44 ../app/xcf/xcf-seek.c:61 ../app/xcf/xcf-seek.c:72 #, c-format msgid "Could not seek in XCF file: %s" msgstr "XCF 파일 탐색 오류: %s" -#: app/xcf/xcf.c:86 app/xcf/xcf.c:143 -#, fuzzy +#: ../app/xcf/xcf.c:86 ../app/xcf/xcf.c:143 msgid "GIMP XCF image" -msgstr "김프 메시지" +msgstr "김프 XCF 이미지" -#: app/xcf/xcf.c:282 +#: ../app/xcf/xcf.c:282 #, c-format msgid "XCF error: unsupported XCF file version %d encountered" msgstr "XCF 오류: XCF 파일 버젼 %d은(는) 지원되지 않습니다." -#: data/misc/gimp.desktop.in.in.h:1 +#: ../data/misc/gimp.desktop.in.in.h:1 msgid "Create and edit images or photographs" msgstr "이미지나 사진을 만들고 편집합니다" -#: data/misc/gimp.desktop.in.in.h:2 -#, fuzzy +#: ../data/misc/gimp.desktop.in.in.h:2 msgid "Image Editor" msgstr "색상표 편집기" - -#, fuzzy -#~ msgid "Keep aspect ratio" -#~ msgstr "고정된 종횡비" - -#~ msgid "Y:" -#~ msgstr "Y:" - -#~ msgid "Transformations do not work on layers that contain layer masks." -#~ msgstr "변형은 레이어 마스크를 포함한 레이어에서는 동작하지 않습니다." - -#~ msgid "Resize Error: Both width and height must be greater than zero." -#~ msgstr "크기 바꾸기 오류: 너비와 높이는 0보다 커야 합니다." - -#~ msgid "Scale Error: Both width and height must be greater than zero." -#~ msgstr "배율 조정 오류: 너비와 높이는 0보다 커야 합니다." - -#~ msgid "C_enter" -#~ msgstr "가운데(_E)" - -#~ msgid "Indexed Palette Menu" -#~ msgstr "인덱스된 색상표 메뉴" - -#, fuzzy -#~ msgid "Inde_xed Palette" -#~ msgstr "인덱스된 색상표" - -#, fuzzy -#~ msgid "_Undo History" -#~ msgstr "실행 취소 이력" - -#, fuzzy -#~ msgid "Brus_hes" -#~ msgstr "브러시" - -#, fuzzy -#~ msgid "Show Image _Menu" -#~ msgstr "/이미지 메뉴 표시(_M)" - -#, fuzzy -#~ msgid "Buffer" -#~ msgstr "버퍼" - -#~ msgid "Layer _Name" -#~ msgstr "레이어 이름(_N)" - -#~ msgid "Set Indexed Palette" -#~ msgstr "인덱스된 색상표 지정" - -#~ msgid "Change Indexed Palette Entry" -#~ msgstr "인덱스된 색상표 항목 바꾸기" - -#~ msgid "Add Color to Indexed Palette" -#~ msgstr "인덱스된 색상표에 색상 더하기" - -#~ msgid "No preview available" -#~ msgstr "미리보기 없음" - -#~ msgid "Indexed Palette" -#~ msgstr "인덱스된 색상표" - -#~ msgid "Scale Layer Options" -#~ msgstr "레이어 배율 조정 선택사항" - -#~ msgid "Scale Image Options" -#~ msgstr "이미지 배율 조정 선택사항" - -#~ msgid "Pixel Dimensions" -#~ msgstr "픽셀 단위 크기" - -#~ msgid "Layer Boundary Size" -#~ msgstr "레이어 경계 크기" - -#, fuzzy -#~ msgid "New width:" -#~ msgstr "새 너비:" - -#, fuzzy -#~ msgid "New height:" -#~ msgstr "높이:" - -#, fuzzy -#~ msgid "X ratio:" -#~ msgstr "X 배율:" - -#, fuzzy -#~ msgid "Y ratio:" -#~ msgstr "X 배율:" - -#~ msgid "Constrain aspect ratio" -#~ msgstr "종횡비 유지" - -#~ msgid "Print Size & Display Unit" -#~ msgstr "인쇄 크기와 화면 표시 단위" - -#, fuzzy -#~ msgid "X resolution:" -#~ msgstr "해상도:" - -#, fuzzy -#~ msgid "Y resolution:" -#~ msgstr "해상도:" - -#~ msgid "Stroke Options" -#~ msgstr "따라 그리기 선택사항" - -#~ msgid "_Size:" -#~ msgstr "크기(_S):" - -#~ msgid "" -#~ "New Channel\n" -#~ "%s New Channel Dialog" -#~ msgstr "" -#~ "새 채널\n" -#~ "%s 새 채널 대화상자" - -#~ msgid "Delete Channel" -#~ msgstr "채널 지우기" - -#, fuzzy -#~ msgid "" -#~ "Channel to selection\n" -#~ "%s Add\n" -#~ "%s Subtract\n" -#~ "%s Intersect" -#~ msgstr "" -#~ "채널을 선택으로\n" -#~ "%s 더하기\n" -#~ "%s 빼기\n" -#~ "%s%s%s 교차하기" - -#, fuzzy -#~ msgid "He_x triplet:" -#~ msgstr "세개의 16진수:" - -#, fuzzy -#~ msgid "" -#~ "Add color from FG\n" -#~ "%s from BG" -#~ msgstr "" -#~ "전경에서 색상 더하기\n" -#~ "배경에서 %s" - -#~ msgid "Edit Indexed Color" -#~ msgstr "인덱스된 색상 편집" - -#, fuzzy -#~ msgid "Edit indexed image palette color" -#~ msgstr "인덱스된 이미지 색상표의 색상 편집" - -#~ msgid "" -#~ "Open the selected entry\n" -#~ "%s Raise window if already open\n" -#~ "%s Open image dialog" -#~ msgstr "" -#~ "선택한 항목을 열기\n" -#~ "%s 이미 열려 있으면 창을 올리기\n" -#~ "%s 이미지 대화상자 열기" - -#~ msgid "" -#~ "Recreate preview\n" -#~ "%s Reload all previews\n" -#~ "%s Remove Dangling Entries" -#~ msgstr "" -#~ "미리보기 다시 만들기\n" -#~ "%s 모든 미리보기 다시 읽기\n" -#~ "%s 원본이 없는 항목 지우기" - -#, fuzzy -#~ msgid "" -#~ "Save all errors\n" -#~ "%s Save selection" -#~ msgstr "" -#~ " 모든 오류 저장\n" -#~ " %s 선택 저장" - -#~ msgid "" -#~ "%s\n" -#~ "%s To Top" -#~ msgstr "" -#~ "%s\n" -#~ "%s 맨 위로" - -#~ msgid "" -#~ "%s\n" -#~ "%s To Bottom" -#~ msgstr "" -#~ "%s\n" -#~ "%s 맨 아래로" - -#~ msgid "" -#~ "New Layer\n" -#~ "%s New Layer Dialog" -#~ msgstr "" -#~ "새 레이어\n" -#~ "%s 새 레이어 대화상자" - -#~ msgid "Delete Layer" -#~ msgstr "레이어 지우기" - -#, fuzzy -#~ msgid "" -#~ "New color from FG\n" -#~ "%s from BG" -#~ msgstr "" -#~ "전경에서 새 색상\n" -#~ "%s에서 배경" - -#, fuzzy -#~ msgid "" -#~ "Selection to path\n" -#~ "%s Advanced options" -#~ msgstr "" -#~ "선택을 경로로\n" -#~ "%s 고급 선택사항" - -#~ msgid "" -#~ "Reset to default values\n" -#~ "%s Reset all Tool Options" -#~ msgstr "" -#~ "기본 값으로 초기화\n" -#~ "%s 모든 도구 선택사항을 초기화" - -#~ msgid "" -#~ "Selection to Path\n" -#~ "%s Advanced Options" -#~ msgstr "" -#~ "선택을 경로로\n" -#~ "%s 고급 선택사항" - -#~ msgid "" -#~ "You are trying to create an image with a size of %s.\n" -#~ "\n" -#~ "Choose OK to create this image anyway.\n" -#~ "Choose Cancel if you did not intend to create such a large image.\n" -#~ "\n" -#~ "To prevent this dialog from appearing, increase the \"Maximum Image Size" -#~ "\" setting (currently %s) in the Preferences dialog." -#~ msgstr "" -#~ "초기 크기가 %s인 이미지를 만들고 있습니다.\n" -#~ "\n" -#~ "그대로 이미지를 만들려면 확인을 선택하십시오.\n" -#~ "그렇게 큰 이미지를 만들려고 했던 게 아니라면 취소를 선택하십시오.\n" -#~ "\n" -#~ "이 대화상자를 보고 싶지 않으시면 기본 설정 대화상자에서 \"최대 이미지 크기" -#~ "\" 설정(현재 %s)를 늘이십시오." - -#~ msgid "Image exceeds maximum image size" -#~ msgstr "이미지가 최대 이미지 크기를 넘었습니다" - -#~ msgid "Layer Too Small" -#~ msgstr "레이어가 너무 작습니다" - -#, fuzzy -#~ msgid "Positioned color dithering" -#~ msgstr "Positioned Color Dithering" - -#~ msgid "General Palette Options" -#~ msgstr "일반 색상표 선택사항" - -#~ msgid "Dithering Options" -#~ msgstr "디더링 선택사항" - -#~ msgid "[ Warning ]" -#~ msgstr "[ 경고 ]" - -#~ msgid "" -#~ "You are attempting to convert an image with an alpha channel to indexed " -#~ "colors.\n" -#~ "Do not generate a palette of more than 255 colors if you intend to create " -#~ "a transparent or animated GIF file." -#~ msgstr "" -#~ "알파 채널이 있는 이미지를 인덱스된 색상으로 변환하려고 합니다.\n" -#~ "투명 또는 움직이는 GIF 파일을 만들려고 한다면 색상표는 255개 이상의 색상" -#~ "을 가진 색상표를 만들지 마십시오." - -#~ msgid "" -#~ "You are trying to create an image with an initial size of %s.\n" -#~ "\n" -#~ "Choose OK to create this image anyway.\n" -#~ "Choose Cancel if you did not intend to create such a large image.\n" -#~ "\n" -#~ "To prevent this dialog from appearing, increase the \"Maximum Image Size" -#~ "\" setting (currently %s) in the Preferences dialog." -#~ msgstr "" -#~ "초기 크기가 %s인 이미지를 만들려고 합니다.\n" -#~ "\n" -#~ "그대로 이미지를 만들려면 확인을 선택하십시오.\n" -#~ "그렇게 큰 이미지를 만들려고 했던 게 아니라면 취소를 선택하십시오.\n" -#~ "\n" -#~ "이 대화상자를 표시하지 않으려면, 기본 설정 대화상자에서 \"최대 이미지 크기" -#~ "\" 설정(현재 %s)을 늘이십시오." - -#~ msgid "Extended" -#~ msgstr "확장" - -#~ msgid "File Saving" -#~ msgstr "파일 저장" - -#~ msgid "Pattern:" -#~ msgstr "무늬:" - -#~ msgid "Density:" -#~ msgstr "밀도:" - -#~ msgid "" -#~ "Could not find the GIMP Help Browser procedure. It probably was not " -#~ "compiled because you don't have GtkHtml2 installed." -#~ msgstr "" -#~ "김프 도움말 브라우저 프로시져가 없습니다. GtkHtml2가 설치되어 있지 않았다" -#~ "면 컴파일되지 않았을 수 있습니다." - -#~ msgid "Could not start GIMP Help Browser" -#~ msgstr "김프 도움말 브라우저를 시작할 수 없습니다" - -#~ msgid "Internal" -#~ msgstr "내부" - -#~ msgid "Black" -#~ msgstr "검정색" - -#~ msgid "Move Floating Layer" -#~ msgstr "떠있는 레이어 이동" - -#~ msgid "Changes were made to '%s'." -#~ msgstr "'%s'이(가) 바뀌었습니다." - -#~ msgid "Unsaved changes will be lost." -#~ msgstr "저장하지 않은 바뀐 내용을 잃게 됩니다." - -#~ msgid "Select Custom Palette" -#~ msgstr "사용자 색상표 선택" - -#~ msgid "Light Checks" -#~ msgstr "밝은 격자" - -#~ msgid "Mid-Tone Checks" -#~ msgstr "중간 격자" - -#~ msgid "Dark Checks" -#~ msgstr "어두운 격자" - -#~ msgid "White Only" -#~ msgstr "흰색으로" - -#~ msgid "Gray Only" -#~ msgstr "회색으로" - -#~ msgid "Black Only" -#~ msgstr "검정색으로" - -#~ msgid "Configure input devices" -#~ msgstr "입력 장치 설정" - -#~ msgid "" -#~ "WARNING:\n" -#~ "Too many open message dialogs.\n" -#~ "Messages are redirected to stderr." -#~ msgstr "" -#~ "너무 많은 메시지 대화상자가 열려있습니다.\n" -#~ "메시지를 표준오류(stderr)로 출력합니다." - -#, fuzzy -#~ msgid "RGB color" -#~ msgstr "RGB 색상" - -#, fuzzy -#~ msgid "Indexed color" -#~ msgstr "인덱스된 색상" - -#, fuzzy -#~ msgid "RGB-alpha" -#~ msgstr "RGB-알파" - -#, fuzzy -#~ msgid "Grayscale-alpha" -#~ msgstr "그레이스케일-투명" - -#, fuzzy -#~ msgid "Indexed-alpha" -#~ msgstr "인덱스됨-알파" - -#, fuzzy -#~ msgid "Clear Saved Keyboard Shortcuts Now" -#~ msgstr "저장된 키보드 단축키 지금 지우기" - -#~ msgid "Clear Saved Window Positions Now" -#~ msgstr "저장된 창 위치 지금 지움" - -#, fuzzy -#~ msgid "Automatic" -#~ msgstr "/자동" - -#, fuzzy -#~ msgid "File Open Menu" -#~ msgstr "열기 메뉴" - -#, fuzzy -#~ msgid "File Save Menu" -#~ msgstr "저장 메뉴" - -#, fuzzy -#~ msgid "Foreground Color" -#~ msgstr "전경색(_F):" - -#~ msgid "" -#~ "File '%s' exists.\n" -#~ "Overwrite it?" -#~ msgstr "" -#~ "'%s'이(가) 존재합니다.\n" -#~ "덮어쓰겠습니까?" - -#~ msgid "" -#~ "Unable to run font callback. The corresponding plug-in may have crashed." -#~ msgstr "" -#~ "글꼴 콜백을 실행할 수 없습니다. 해당 플러그인이 비정상 종료했습니다." - -#~ msgid "" -#~ "Unable to run gradient callback. The corresponding plug-in may have " -#~ "crashed." -#~ msgstr "" -#~ "그라디언트 콜백을 실행할 수 없습니다. 해당 플러그인에 비정상 종료했습니다." - -#, fuzzy -#~ msgid "" -#~ "Some images have unsaved changes.\n" -#~ "\n" -#~ "Really quit The GIMP?" -#~ msgstr "" -#~ "저장하지 않은 파일이 있습니다.\n" -#~ "\n" -#~ "정말로 김프를 마치겠습니까?" - -#~ msgid "" -#~ "Unable to run palette callback. The corresponding plug-in may have " -#~ "crashed." -#~ msgstr "" -#~ "색상표 콜백을 실행할 수 없습니다. 해당 플러그인이 비정상 종료 했습니다." - -#~ msgid "" -#~ "Unable to run pattern callback. The corresponding plug-in may have " -#~ "crashed." -#~ msgstr "" -#~ "무늬 콜백을 실행할 수 없습니다. 해당 플러그인이 비정상 종료 했습니다." - -#~ msgid "Pointer Movement Feedback" -#~ msgstr "포인터 이동 반응" - -#~ msgid "Select Temp Dir" -#~ msgstr "임시 디렉토리 선택" - -#, fuzzy -#~ msgid "Swap dir:" -#~ msgstr "스왑 디렉토리:" - -#~ msgid "Select Swap Dir" -#~ msgstr "스왑 디렉토리 선택" - -#, fuzzy -#~ msgid "Don't show grid" -#~ msgstr "모눈 표시 안함" - -#~ msgid "Determine File _Type:" -#~ msgstr "파일 유형 결정(_T):" - -#, fuzzy -#~ msgid "Zoom to _Fit Window" -#~ msgstr "창 크기에 맞춤" - -#~ msgid "Trying legacy loader on file '%s' with unknown extension." -#~ msgstr "알 수 없는 확장자를 가진 파일 '%s'에 기본 로더를 사용합니다." - -#~ msgid "Set canvas padding color" -#~ msgstr "캔버스 채우기 색상 지정" - -#~ msgid "Zoom to fit window" -#~ msgstr "창 크기에 맞춤" - -#~ msgid "Show S_election" -#~ msgstr "선택 표시(_E)" - -#~ msgid "_Undo History Preview Size:" -#~ msgstr "실행 취소 이력 미리보기 크기(_U):" - -#~ msgid "Dialog Behavior" -#~ msgstr "대화상자 동작" - -#~ msgid "_Info Window Per Display" -#~ msgstr "화면 표시 별로 정보 창 사용(_I)" - -#~ msgid "Menus" -#~ msgstr "메뉴" - -#~ msgid "Enable _Tearoff Menus" -#~ msgstr "메뉴 떼어내기 허용(_T)" - -#~ msgid "Open _Recent Menu Size:" -#~ msgstr "최근 파일 메뉴 크기(_R):" - -#~ msgid "Context Sensitive _Help with \"F1\"" -#~ msgstr "\"F1\"으로 문맥에 맞는 도움말 보기(_H)" - -#~ msgid "Perfect-but-Slow _Pointer Tracking" -#~ msgstr "완벽하지만 느린 포인터 추적(_P)" - -#~ msgid "Enable Cursor _Updating" -#~ msgstr "상황에 따른 커서 사용(_U)" - -#~ msgid "8-Bit Displays" -#~ msgstr "8비트 화면 표시" - -#~ msgid "Minimum Number of Colors:" -#~ msgstr "최소 색상 수:" - -#~ msgid "Install Colormap" -#~ msgstr "컬러맵 설치" - -#~ msgid "Monitor Resolution" -#~ msgstr "모니터 해상도" - -#~ msgid "Monitor" -#~ msgstr "모니터" - -#~ msgid "(Currently %d x %d dpi)" -#~ msgstr "(현재 %d x %d dpi)" - -#~ msgid "From _Windowing System" -#~ msgstr "윈도 시스템 기본값(_W)" - -#~ msgid "Conservative Memory Usage" -#~ msgstr "신중한 메모리 사용" - -#~ msgid "Only when Modified" -#~ msgstr "바뀌었을 때만" - -#~ msgid "Always" -#~ msgstr "항상" - -#~ msgid "\"File -> Save\" Saves the Image:" -#~ msgstr "\"파일 -> 저장\"으로 이미지 저장:" - -#~ msgid "Session Management" -#~ msgstr "세션 관리" - -#~ msgid "Session" -#~ msgstr "세션" - -#~ msgid "Click \"Continue\" to start The GIMP." -#~ msgstr "김프를 시작하려면 \"계속\"을 누르십시오." - -#~ msgid "" -#~ "To display images in their natural size, GIMP needs to know your " -#~ "monitor resolution." -#~ msgstr "" -#~ "이미지를 원래 크기로 보여주려면, 김프가 사용하는 모니터의 해상도를 알아" -#~ "야 합니다." - -#~ msgid "" -#~ "GIMP can obtain this information from the windowing system. However, " -#~ "usually this does not give useful values." -#~ msgstr "" -#~ "김프는 윈도 시스템에서 이 정보를 얻을 수 있지만, 그다지 유용한 값은 아닙니" -#~ "다." - -#~ msgid "Alternatively, you can set the monitor resolution manually." -#~ msgstr "그 대신, 모니터 해상도를 직접 지정할 수 있습니다." - -#~ msgid "" -#~ "You can also press the \"Calibrate\" button to open a window which lets " -#~ "you determine your monitor resolution interactively." -#~ msgstr "" -#~ "\"측정\" 단추를 창이 열리고, 거기에서 모니터 해상도를 정확하게 결정할 수 " -#~ "있습니다." - -#~ msgid "Calibrate" -#~ msgstr "측정" - -#~ msgid "/Tools/Selection Tools/Fu_zzy Select" -#~ msgstr "/도구(T)/선택 도구(S)/퍼지 선택(_Z)" - -#~ msgid "Threshold Range:" -#~ msgstr "임계값 범위:" - -#~ msgid "" -#~ "Activate both the \"Keep Height\" and\n" -#~ "\"Keep Width\" toggles to constrain\n" -#~ "the aspect ratio" -#~ msgstr "" -#~ "종횡비를 유지하려면,\n" -#~ "\"높이 유지\"와 \"너비 유지\"를\n" -#~ "모두 선택하십시오." - -#~ msgid "Intensity Range:" -#~ msgstr "명암 범위:" - -#~ msgid "Transparent" -#~ msgstr "투명" - -#~ msgid "Spiral (anticlockwise)" -#~ msgstr "나선형 (반시계방향)" - -#~ msgid "/Add Tab/Tool _Options" -#~ msgstr "/탭 더하기(A)/도구 선택사항(_O)" - -#~ msgid "/Add Tab/_Device Status" -#~ msgstr "/탭 더하기(A)/장치 상태(_D)" - -#~ msgid "/Add Tab/_Layers" -#~ msgstr "/탭 더하기(A)/레이어(_L)" - -#~ msgid "/Add Tab/_Channels" -#~ msgstr "/탭 더하기(A)/채널(_C)" - -#~ msgid "/Add Tab/_Paths" -#~ msgstr "/탭 더하기(A)/경로(_P)" - -#~ msgid "/Add Tab/Inde_xed Palette" -#~ msgstr "/탭 더하기(A)/인덱스된 색상표(_X)" - -#~ msgid "/Add Tab/Histogra_m" -#~ msgstr "/탭 더하기(A)/히스토그램(_M)" - -#~ msgid "/Add Tab/_Selection Editor" -#~ msgstr "/탭 더하기(A)/선택 편집기(_S)" - -#~ msgid "/Add Tab/Na_vigation" -#~ msgstr "/탭 더하기(A)/네비게이션(_V)" - -#~ msgid "/Add Tab/_Undo History" -#~ msgstr "/탭 더하기(A)/실행 취소 이력(_U)" - -#~ msgid "/Add Tab/Colo_rs" -#~ msgstr "/탭 더하기(A)/색상(_R)" - -#~ msgid "/Add Tab/Brus_hes" -#~ msgstr "/탭 더하기(A)/브러시(_H)..." - -#~ msgid "/Add Tab/P_atterns" -#~ msgstr "/탭 더하기(A)/무늬(_A)" - -#~ msgid "/Add Tab/_Gradients" -#~ msgstr "/탭 더하기(A)/그라디언트(_G)" - -#~ msgid "/Add Tab/Pal_ettes" -#~ msgstr "/탭 더하기(A)/색상표(_E)" - -#~ msgid "/Add Tab/_Fonts" -#~ msgstr "/탭 더하기(A)/글꼴(_F)" - -#~ msgid "/Add Tab/_Buffers" -#~ msgstr "/탭 더하기(A)/버퍼(_B)" - -#~ msgid "/Add Tab/_Images" -#~ msgstr "/탭 더하기(A)/이미지(_M)" - -#~ msgid "/Add Tab/Document Histor_y" -#~ msgstr "/탭 더하기(A)/문서 이력(_Y)" - -#~ msgid "/Add Tab/_Templates" -#~ msgstr "/탭 더하기(A)/템플릿(_T)" - -#~ msgid "/Add Tab/T_ools" -#~ msgstr "/탭 더하기(A)/도구(_O)" - -#~ msgid "/Add Tab/Error Co_nsole" -#~ msgstr "/탭 더하기(A)/오류 콘솔(_N)" - -#~ msgid "/Preview Size/_Tiny" -#~ msgstr "/미리보기 크기(Z)/아주 작게(_T)" - -#~ msgid "/Preview Size/E_xtra Small" -#~ msgstr "/미리보기 크기(Z)/더 작게(_X)" - -#~ msgid "/Preview Size/_Small" -#~ msgstr "/미리보기 크기(Z)/작게(_S)" - -#~ msgid "/Preview Size/_Medium" -#~ msgstr "/미리보기 크기(Z)/보통(_M)" - -#~ msgid "/Preview Size/_Large" -#~ msgstr "/미리보기 크기(Z)/크게(_L)" - -#~ msgid "/Preview Size/Ex_tra Large" -#~ msgstr "/미리보기 크기(Z)/더 크게(_T)" - -#~ msgid "/Preview Size/_Huge" -#~ msgstr "/미리보기 크기(Z)/아주 크게(_H)" - -#~ msgid "/Preview Size/_Enormous" -#~ msgstr "/미리보기 크기(Z)/거대하게(_E)" - -#~ msgid "/Preview Size/_Gigantic" -#~ msgstr "/미리보기 크기(Z)/더 거대하게(_G)" - -#~ msgid "/Tab Style/_Icon" -#~ msgstr "/탭 형태(T)/아이콘(_I)" - -#~ msgid "/Tab Style/Current _Status" -#~ msgstr "/탭 형태(T)/현재 상태(_S)" - -#~ msgid "/Tab Style/_Text" -#~ msgstr "/탭 형태(T)/글자(_T)" - -#~ msgid "/Tab Style/I_con & Text" -#~ msgstr "/탭 형태(T)/아이콘과 글자(_C)" - -#~ msgid "/Tab Style/St_atus & Text" -#~ msgstr "/탭 형태(T)/상태와 글자(_A)" - -#~ msgid "From _Template:" -#~ msgstr "템플릿(_T):" - -#~ msgid "/Load Left Color From/_Right Endpoint" -#~ msgstr "/왼쪽 색상 불러오기(L)/오른쪽 끝점(_R)" - -#~ msgid "/Load Left Color From/_FG Color" -#~ msgstr "/왼쪽 색상 불러오기(L)/전경색(_F)" - -#~ msgid "/Load Left Color From/_BG Color" -#~ msgstr "/왼쪽 색상 불러오기(L)/배경색(_B)" - -#~ msgid "/Load Right Color From/_Left Endpoint" -#~ msgstr "/오른쪽 색상 불러오기(_O)/왼쪽 끝점(_L)" - -#~ msgid "/Load Right Color From/_FG Color" -#~ msgstr "/오른쪽 색상 불러오기(_O)/전경색(_F)" - -#~ msgid "/Load Right Color From/_BG Color" -#~ msgstr "/오른쪽 색상 불러오기(_O)/배경색(_B)" - -#~ msgid "/blendingfunction/_Linear" -#~ msgstr "/혼합 함수/선형(_L)" - -#~ msgid "/blendingfunction/_Curved" -#~ msgstr "/혼합 함수/곡선(_C)" - -#~ msgid "/blendingfunction/_Sinusodial" -#~ msgstr "/혼합 함수/사인 곡선(_S)" - -#~ msgid "/blendingfunction/(Varies)" -#~ msgstr "/혼합 함수/(변형)" - -#~ msgid "/coloringtype/_RGB" -#~ msgstr "/배색 유형/_RGB" - -#~ msgid "/coloringtype/HSV (clockwise _hue)" -#~ msgstr "/배색 유형/HSV (시계방향 색상)(_H)" - -#~ msgid "/coloringtype/(Varies)" -#~ msgstr "/배색 유형/(변형)" - -#~ msgid "Final, Anchored Layer should be:" -#~ msgstr "고정된 마지막 레이어는 다음과 같아야 합니다:" - -#~ msgid "/File/_New..." -#~ msgstr "/파일(F)/새 그림(_N)..." - -#~ msgid "/File/Open Recent/(None)" -#~ msgstr "/파일(F)/최근 파일 열기(R)/(없음)" - -#~ msgid "/File/Open Recent/Document _History" -#~ msgstr "/파일(F)/최근 파일 열기(R)/문서 이력(_H)" - -#~ msgid "/File/_Save" -#~ msgstr "/파일(F)/저장(_S)" - -#~ msgid "/File/Re_vert" -#~ msgstr "/파일(F)/원상 복구(_V)" - -#~ msgid "/File/_Close" -#~ msgstr "/파일(F)/닫기(_C)" - -#~ msgid "/Edit/_Undo" -#~ msgstr "/편집(E)/실행 취소(_U)" - -#~ msgid "/Edit/_Redo" -#~ msgstr "/편집(E)/재실행(_R)" - -#~ msgid "/Edit/Undo _History" -#~ msgstr "/편집(E)/실행 취소 이력(_H)" - -#~ msgid "/Edit/Cu_t" -#~ msgstr "/편집(E)/잘라내기(_T)" - -#~ msgid "/Edit/_Copy" -#~ msgstr "/편집(E)/복사(_C)" - -#~ msgid "/Edit/_Paste" -#~ msgstr "/편집(E)/붙여 넣기(_P)" - -#~ msgid "/Edit/Paste _Into" -#~ msgstr "/편집(E)/새 레이어으로 붙여 넣기(_I)" - -#~ msgid "/Edit/Paste as _New" -#~ msgstr "/편집(E)/새 이미지로 붙여 넣기(_N)" - -#~ msgid "/Edit/_Buffer" -#~ msgstr "/편집(E)/버퍼(_B)" - -#~ msgid "/Edit/Buffer/Cu_t Named..." -#~ msgstr "/편집(E)/버퍼(B)/이름붙여 잘라내기(_T)..." - -#~ msgid "/Edit/Buffer/_Copy Named..." -#~ msgstr "/편집(E)/버퍼(B)/이름붙여 복사(_C)..." - -#~ msgid "/Edit/Cl_ear" -#~ msgstr "/편집(E)/지우기(_E)" - -#~ msgid "/Edit/Fill with _FG Color" -#~ msgstr "/편집(E)/전경색으로 채우기(_F)" - -#~ msgid "/Edit/Fill with B_G Color" -#~ msgstr "/편집(E)/배경색으로 채우기(_G)" - -#~ msgid "/Edit/Fill with P_attern" -#~ msgstr "/편집(E)/무늬로 채우기(_A)" - -#~ msgid "/Edit/_Stroke Selection..." -#~ msgstr "/편집(E)/선택 따라 그리기(_S)..." - -#~ msgid "/Edit/St_roke Path..." -#~ msgstr "/편집(E)/경로 따라 그리기(_R)..." - -#~ msgid "/Select/_All" -#~ msgstr "/선택(S)/모두(_A)" - -#~ msgid "/Select/_None" -#~ msgstr "/선택(S)/없음(_N)" - -#~ msgid "/Select/_Invert" -#~ msgstr "/선택(S)/반전(_I)" - -#~ msgid "/Select/_Float" -#~ msgstr "/선택(S)/띄우기(_F)" - -#~ msgid "/Select/_By Color" -#~ msgstr "/선택(S)/색상으로(_B)" - -#~ msgid "/Select/_Sharpen" -#~ msgstr "/선택(S)/선명하게(_S)" - -#~ msgid "/Select/S_hrink..." -#~ msgstr "/선택(S)/줄이기(_H)..." - -#~ msgid "/Select/Toggle _QuickMask" -#~ msgstr "/선택(S)/퀵마스크(_Q)" - -#~ msgid "/Select/To _Path" -#~ msgstr "/선택(S)/경로로(_P)" - -#~ msgid "/View/_New View" -#~ msgstr "/보기(V)/새로운 보기(_N)" - -#~ msgid "/View/_Zoom" -#~ msgstr "/보기(V)/배율(_Z)" - -#~ msgid "/View/Zoom/Zoom _Out" -#~ msgstr "/보기(V)/배율(Z)/축소(_O)" - -#~ msgid "/View/Zoom/Zoom _In" -#~ msgstr "/보기(V)/배율(Z)/확대(_I)" - -#~ msgid "/View/Zoom/Zoom to _Fit Window" -#~ msgstr "/보기(V)/배율(Z)/창 크기에 맞추기(_F)" - -#~ msgid "/View/_Info Window" -#~ msgstr "/보기(V)/정보 창(_F)" - -#~ msgid "/View/Show _Selection" -#~ msgstr "/보기(V)/선택(_S)" - -#~ msgid "/View/Show _Layer Boundary" -#~ msgstr "/보기(V)/레이어 경계(_L)" - -#~ msgid "/View/Show _Guides" -#~ msgstr "/보기(V)/안내선(_G)" - -#~ msgid "/View/S_how Grid" -#~ msgstr "/보기(V)/모눈(_H)" - -#~ msgid "/View/Show _Menubar" -#~ msgstr "/보기(V)/메뉴표시줄(_M)" - -#~ msgid "/View/Show R_ulers" -#~ msgstr "/보기(V)/눈금자(_U)" - -#~ msgid "/View/Show Scroll_bars" -#~ msgstr "/보기(V)/스크롤막대(_B)" - -#~ msgid "/View/Show S_tatusbar" -#~ msgstr "/보기(V)/상태표시줄(_T)" - -#~ msgid "/View/Shrink _Wrap" -#~ msgstr "/보기(V)/덮개 줄이기(_W)" - -#~ msgid "/View/Move to Screen..." -#~ msgstr "/보기(V)/화면으로 이동..." - -#~ msgid "/Image/_Mode" -#~ msgstr "/이미지(I)/모드(_M)" - -#~ msgid "/Image/Mode/_RGB" -#~ msgstr "/이미지(I)/모드(M)/_RGB" - -#~ msgid "/Image/Mode/_Grayscale" -#~ msgstr "/이미지(I)/모드(M)/그레이스케일(_G)" - -#~ msgid "/Image/Mode/_Indexed..." -#~ msgstr "/이미지(I)/모드(M)/인덱스됨(_I)..." - -#~ msgid "/Image/_Transform" -#~ msgstr "/이미지(I)/변형(_T)" - -#~ msgid "/Image/Transform/Flip _Horizontally" -#~ msgstr "/이미지(I)/변형(T)/가로로 뒤집기(_H)" - -#~ msgid "/Image/Transform/Flip _Vertically" -#~ msgstr "/이미지(I)/변형(T)/세로로 뒤집기(_V)" - -#~ msgid "/Image/Transform/Rotate 90 degrees _CW" -#~ msgstr "/이미지(I)/변형(T)/시계방향으로 90도 회전(_C)" - -#~ msgid "/Image/Can_vas Size..." -#~ msgstr "/이미지(I)/캔버스 크기(_V)..." - -#~ msgid "/Image/_Scale Image..." -#~ msgstr "/이미지(I)/이미지 배율 조정(_S)..." - -#~ msgid "/Image/_Crop Image" -#~ msgstr "/이미지(I)/이미지 자르기(_C)" - -#~ msgid "/Image/_Duplicate" -#~ msgstr "/이미지(I)/복제(_D)" - -#~ msgid "/Image/Merge Visible _Layers..." -#~ msgstr "/이미지(I)/보이는 레이어 합치기(_L)..." - -#~ msgid "/Image/_Flatten Image" -#~ msgstr "/이미지(I)/이미지 배경으로 합치기(_F)" - -#~ msgid "/Image/Configure G_rid..." -#~ msgstr "/이미지(I)/모눈 설정(_R)..." - -#~ msgid "/Layer/_New Layer..." -#~ msgstr "/레이어(L)/새 레이어(_N)..." - -#~ msgid "/Layer/Du_plicate Layer" -#~ msgstr "/레이어(L)/레이어 복제(_P)" - -#~ msgid "/Layer/Anchor _Layer" -#~ msgstr "/레이어(L)/레이어 고정(_L)" - -#~ msgid "/Layer/Me_rge Down" -#~ msgstr "/레이어(L)/아래로 합치기(_R)" - -#~ msgid "/Layer/_Delete Layer" -#~ msgstr "/레이어(L)/레이어 지우기(_D)" - -#~ msgid "/Layer/Discard _Text Information" -#~ msgstr "/레이어(L)/텍스트 정보 버리기(_T)" - -#~ msgid "/Layer/Stack/_Raise Layer" -#~ msgstr "/레이어(L)/쌓기(S)/레이어 올리기(_R)" - -#~ msgid "/Layer/Stack/_Lower Layer" -#~ msgstr "/레이어(L)/쌓기(S)/레이어 내리기(_L)" - -#~ msgid "/Layer/Stack/Layer to T_op" -#~ msgstr "/레이어(L)/쌓기(S)/레이어를 맨 위로(_O)" - -#~ msgid "/Layer/Stack/Layer to Botto_m" -#~ msgstr "/레이어(L)/쌓기(S)/레이어를 맨 아래로(_M)" - -#~ msgid "/Layer/_Colors" -#~ msgstr "/레이어(L)/색상(_C)" - -#~ msgid "/Layer/Colors/Color _Balance..." -#~ msgstr "/레이어(L)/색상(C)/색상 균형(_B)..." - -#~ msgid "/Layer/Colors/Hue-_Saturation..." -#~ msgstr "/레이어(L)/색상(C)/색상-채도(_S)..." - -#~ msgid "/Layer/Colors/Colori_ze..." -#~ msgstr "/이미지(L)/색상(C)/컬러화(_Z)..." - -#~ msgid "/Layer/Colors/B_rightness-Contrast..." -#~ msgstr "/레이어(L)/색상(C)/명도-대비(_R)..." - -#~ msgid "/Layer/Colors/_Threshold..." -#~ msgstr "/레이어(L)/색상(C)/고대비(_T)..." - -#~ msgid "/Layer/Colors/_Levels..." -#~ msgstr "/레이어(L)/색상(C)/레벨(_L)..." - -#~ msgid "/Layer/Colors/_Curves..." -#~ msgstr "/레이어(L)/색상(C)/곡선(_C)..." - -#~ msgid "/Layer/Colors/_Posterize..." -#~ msgstr "/레이어(L)/색상(C)/포스터화(_P)..." - -#~ msgid "/Layer/Colors/_Desaturate" -#~ msgstr "/레이어(L)/색상(C)/무채화(_D)" - -#~ msgid "/Layer/Colors/In_vert" -#~ msgstr "/레이어/색상(C)/반전(_V)" - -#~ msgid "/Layer/Colors/_Auto" -#~ msgstr "/레이어(L)/색상(C)/자동(_A)" - -#~ msgid "/Layer/Colors/Auto/_Equalize" -#~ msgstr "/레이어(L)/색상(C)/자동(A)/균등화(_E)" - -#~ msgid "/Layer/Colors/_Histogram" -#~ msgstr "/레이어(L)/색상(C)/히스토그램(_H)" - -#~ msgid "/Layer/_Mask" -#~ msgstr "/레이어(L)/마스크(_M)" - -#~ msgid "/Layer/Mask/_Add Layer Mask..." -#~ msgstr "/레이어(L)/마스크(M)/레이어 마스크 더하기(_A)..." - -#~ msgid "/Layer/Mask/A_pply Layer Mask" -#~ msgstr "/레이어(L)/마스크(M)/레이어 마스크 적용(_P)" - -#~ msgid "/Layer/Mask/_Delete Layer Mask" -#~ msgstr "/레이어(L)/마스크(M)/레이어 마스크 지우기(_D)" - -#~ msgid "/Layer/Mask/_Mask to Selection" -#~ msgstr "/레이어(L)/마스크(M)/선택을 마스크로(_M)" - -#~ msgid "/Layer/Mask/_Add to Selection" -#~ msgstr "/레이어(L)/마스크(M)/선택에 더하기(_A)" - -#~ msgid "/Layer/Mask/_Subtract from Selection" -#~ msgstr "/레이어(L)/마스크(M)/선택에서 빼기(_S)" - -#~ msgid "/Layer/Mask/_Intersect with Selection" -#~ msgstr "/레이어(L)/마스크(M)/선택과 교차하기(_I)" - -#~ msgid "/Layer/Tr_ansparency" -#~ msgstr "/레이어(L)/투명도(_A)" - -#~ msgid "/Layer/Transparency/_Add Alpha Channel" -#~ msgstr "/레이어(L)/투명도(A)/알파 채널 더하기(_A)" - -#~ msgid "/Layer/Transparency/Al_pha to Selection" -#~ msgstr "/레이어(L)/투명도(A)/알파를 선택으로(_P)" - -#~ msgid "/Layer/Transparency/A_dd to Selection" -#~ msgstr "/레이어(L)/투명도(A)/선택에 더하기(_D)" - -#~ msgid "/Layer/Transparency/_Subtract from Selection" -#~ msgstr "/레이어(L)/투명도(A)/선택에서 빼기(_S)" - -#~ msgid "/Layer/Transparency/_Intersect with Selection" -#~ msgstr "/레이어(L)/투명도(A)/선택과 교차하기(_I)" - -#~ msgid "/Layer/_Transform" -#~ msgstr "/레이어(L)/변형(_T)" - -#~ msgid "/Layer/Transform/Flip _Horizontally" -#~ msgstr "/레이어(L)/변형(T)/가로로 뒤집기(_H)" - -#~ msgid "/Layer/Transform/Flip _Vertically" -#~ msgstr "/레이어(L)/변형(T)/세로로 뒤집기(_V)" - -#~ msgid "/Layer/Transform/Rotate 90 degrees CC_W" -#~ msgstr "/레이어(L)/변형(T)/시계반대방향으로 90도 회전(_W)" - -#~ msgid "/Layer/Transform/Rotate _180 degrees" -#~ msgstr "/레이어(L)/변형(T)/_180도 회전(_W)" - -#~ msgid "/Layer/Transform/_Offset..." -#~ msgstr "/레이어(L)/변형(T)/옵셋(_O)..." - -#~ msgid "/Layer/Layer _Boundary Size..." -#~ msgstr "/레이어(L)/레이어 경계 크기(_B)..." - -#~ msgid "/Layer/Layer to _Image Size" -#~ msgstr "/레이어(L)/레이어를 이미지 크기에 맞추기" - -#~ msgid "/Layer/_Scale Layer..." -#~ msgstr "/레이어(L)/레이어 배율 조정(_S)..." - -#~ msgid "/Layer/Cr_op Layer" -#~ msgstr "/레이어(L)/레이어 자르기(_O)" - -#~ msgid "/Tools/Tool_box" -#~ msgstr "/도구(T)/도구 상자(_B)" - -#~ msgid "/Tools/_Paint Tools" -#~ msgstr "/도구(T)/그리기 도구(_P)" - -#~ msgid "/Dialogs/Create New Dock/_Misc. Stuff" -#~ msgstr "/대화상자(D)/새 독 만들기(K)/기타(_M)" - -#~ msgid "/Dialogs/Tool _Options" -#~ msgstr "/대화상자(D)/도구 선택사항(_O)" - -#~ msgid "/Dialogs/_Device Status" -#~ msgstr "/대화상자(D)/장치 상태(_D)" - -#~ msgid "/Dialogs/_Layers" -#~ msgstr "/대화상자(D)/레이어(_L)" - -#~ msgid "/Dialogs/_Channels" -#~ msgstr "/대화상자(D)/채널(_C)" - -#~ msgid "/Dialogs/_Paths" -#~ msgstr "/대화상자(D)/경로(_P)" - -#~ msgid "/Dialogs/Inde_xed Palette" -#~ msgstr "/대화상자(D)/인덱스된 색상표(_X)" - -#~ msgid "/Dialogs/Histogra_m" -#~ msgstr "/대화상자(D)/히스토그램(_M)" - -#~ msgid "/Dialogs/_Selection Editor" -#~ msgstr "/대화상자(D)/선택 편집기(_S)" - -#~ msgid "/Dialogs/Na_vigation" -#~ msgstr "/대화상자(D)/네비게이션(_V)" - -#~ msgid "/Dialogs/_Undo History" -#~ msgstr "/대화상자(D)/실행 취소 이력(_U)" - -#~ msgid "/Dialogs/Colo_rs" -#~ msgstr "/대화상자(D)/색상(_R)" - -#~ msgid "/Dialogs/Brus_hes" -#~ msgstr "/대화상자(D)/브러시(_H)" - -#~ msgid "/Dialogs/P_atterns" -#~ msgstr "/대화상자(D)/무늬(_A)" - -#~ msgid "/Dialogs/_Gradients" -#~ msgstr "/대화상자(D)/그라디언트(_G)" - -#~ msgid "/Dialogs/Pal_ettes" -#~ msgstr "/대화상자(D)/색상표(_E)" - -#~ msgid "/Dialogs/_Fonts" -#~ msgstr "/대화상자(D)/글꼴(_F)" - -#~ msgid "/Dialogs/_Buffers" -#~ msgstr "/대화상자(D)/버퍼(_B)" - -#~ msgid "/Dialogs/_Images" -#~ msgstr "/대화상자(D)/이미지(_M)" - -#~ msgid "/Dialogs/Document Histor_y" -#~ msgstr "/대화상자(D)/문서 이력(_Y)" - -#~ msgid "/Dialogs/_Templates" -#~ msgstr "/대화상자(D)/템플릿(_T)" - -#~ msgid "/Dialogs/T_ools" -#~ msgstr "/대화상자(D)/도구(_O)" - -#~ msgid "/Dialogs/Error Co_nsole" -#~ msgstr "/대화상자(D)/오류 콘솔(_N)" - -#~ msgid "/Filters/Repeat Last" -#~ msgstr "/필터(R)/마지막 필터 반복" - -#~ msgid "/Filters/Re-Show Last" -#~ msgstr "/필터(R)/마지막 필터 다시 보여주기" - -#~ msgid "/Filters/_Blur" -#~ msgstr "/필터(R)/흐릿하게(_B)" - -#~ msgid "/Filters/_Colors" -#~ msgstr "/필터(R)/색상(_C)" - -#~ msgid "/Filters/Colors/Ma_p" -#~ msgstr "/필터(R)/색상/맵(_P)" - -#~ msgid "/Filters/_Noise" -#~ msgstr "/필터(R)/잡음(_N)" - -#~ msgid "/Filters/_Generic" -#~ msgstr "/필터(R)/일반(_G)" - -#~ msgid "/Filters/_Map" -#~ msgstr "/필터(R)/맵(_M)" - -#~ msgid "/Filters/_Render" -#~ msgstr "/필터(R)/렌더링(_R)" - -#~ msgid "/Filters/Render/_Clouds" -#~ msgstr "/필터(R)/렌더링(R)/구름(_C)" - -#~ msgid "/Filters/Render/_Nature" -#~ msgstr "/필터(R)/렌더링(R)/자연(_N)" - -#~ msgid "/Filters/Render/_Pattern" -#~ msgstr "/필터(R)/렌더링(R)/무늬" - -#~ msgid "/Filters/_Web" -#~ msgstr "/필터(R)/웹(_W)" - -#~ msgid "/Filters/To_ys" -#~ msgstr "/필터(R)/장난감(_Y)" - -#~ msgid "Offset _X:" -#~ msgstr "옵셋 X:" - -#~ msgid "_Wrap" -#~ msgstr "감싸기(_W)" - -#~ msgid "Show reversed zoom ratio" -#~ msgstr "역 확대 배율 표시" - -#~ msgid "Window Type Hints" -#~ msgstr "창 유형 힌트" - -#~ msgid "Qmask Attributes" -#~ msgstr "퀵마스크 속성" - -#~ msgid "Resolution X:" -#~ msgstr "해상도 X:" - -#~ msgid "Stroke" -#~ msgstr "따라 그리기" - -#~ msgid "/Save Options to/_New Entry..." -#~ msgstr "/선택사항 저장(A)/새 항목(_N)..." - -#~ msgid "/Restore Options from/(None)" -#~ msgstr "/선택사항 복원(R)/(없음)" - -#~ msgid "/Rename Saved Options/(None)" -#~ msgstr "/선택사항 이름 바꾸기(N)/(없음)" - -#~ msgid "/Delete Saved Options/(None)" -#~ msgstr "/선택사항 지우기(D)/(없음)" - -#~ msgid "/File/_Preferences" -#~ msgstr "/파일(F)/기본 설정(_P)" - -#~ msgid "/File/_Dialogs" -#~ msgstr "/파일(F)/대화상자(_D)" - -#~ msgid "/File/Dialogs/Create New Doc_k" -#~ msgstr "/파일(F)/대화상자(D)/새 독 만들기(_K)" - -#~ msgid "/File/Dialogs/Create New Dock/_Layers, Channels & Paths" -#~ msgstr "/파일(F)/대화상자(D)/새 독 만들기(K)/레이어, 채널, 경로(_L)" - -#~ msgid "/File/Dialogs/Create New Dock/_Brushes, Patterns & Gradients" -#~ msgstr "/파일(F)/대화상자(D)/새 독 만들기(K)/브러시, 무늬, 그라디언트(_B)" - -#~ msgid "/File/Dialogs/Create New Dock/_Misc. Stuff" -#~ msgstr "/파일(F)/대화상자(D)/새 독 만들기(K)/기타(_M)" - -#~ msgid "/File/Dialogs/Tool _Options" -#~ msgstr "/파일(F)/대화상자(D)/도구 선택사항(_O)" - -#~ msgid "/File/Dialogs/_Device Status" -#~ msgstr "/파일(F)/대화상자(D)/장치 상태(_D)" - -#~ msgid "/File/Dialogs/_Layers" -#~ msgstr "/파일(F)/대화상자(D)/레이어(_L)" - -#~ msgid "/File/Dialogs/_Channels" -#~ msgstr "/파일(F)/대화상자(D)/채널(_C)" - -#~ msgid "/File/Dialogs/_Paths" -#~ msgstr "/파일(F)/대화상자(D)/경로(_P)" - -#~ msgid "/File/Dialogs/Inde_xed Palette" -#~ msgstr "/파일(F)/대화상자(D)/인덱스된 색상표(_I)" - -#~ msgid "/File/Dialogs/Histogra_m" -#~ msgstr "/파일(F)/대화상자(D)/히스토그램(_M)" - -#~ msgid "/File/Dialogs/_Selection Editor" -#~ msgstr "/파일(F)/대화상자(D)/선택 편집기(_S)" - -#~ msgid "/File/Dialogs/Na_vigation" -#~ msgstr "/파일(F)/대화상자(D)/네비게이션(_V)" - -#~ msgid "/File/Dialogs/_Undo History" -#~ msgstr "/파일(F)/대화상자(D)/실행 취소 이력(_U)" - -#~ msgid "/File/Dialogs/Colo_rs" -#~ msgstr "/파일(F)/대화상자(D)/색상(_R)" - -#~ msgid "/File/Dialogs/Brus_hes" -#~ msgstr "/파일(F)/대화상자(D)/브러시(_H)" - -#~ msgid "/File/Dialogs/P_atterns" -#~ msgstr "/파일(F)/대화상자(D)/무늬(_A)" - -#~ msgid "/File/Dialogs/_Gradients" -#~ msgstr "/파일(F)/대화상자(D)/그라디언트(_G)" - -#~ msgid "/File/Dialogs/Pal_ettes" -#~ msgstr "/파일(F)/대화상자(D)/색상표(_E)" - -#~ msgid "/File/Dialogs/_Fonts" -#~ msgstr "/파일(F)/대화상자(D)/글꼴(_F)" - -#~ msgid "/File/Dialogs/_Buffers" -#~ msgstr "/파일(F)/대화상자(D)/버퍼(_B)" - -#~ msgid "/File/Dialogs/_Images" -#~ msgstr "/파일(F)/대화상자(D)/이미지(_M)" - -#~ msgid "/File/Dialogs/Document Histor_y" -#~ msgstr "/파일(F)/대화상자(D)/문서 이력(_Y)" - -#~ msgid "/File/Dialogs/_Templates" -#~ msgstr "/파일(F)/대화상자(D)/템플릿(_T)" - -#~ msgid "/File/Dialogs/T_ools" -#~ msgstr "/파일(F)/대화상자(D)/도구(_O)" - -#~ msgid "/File/Dialogs/Error Co_nsole" -#~ msgstr "/파일(F)/대화상자(D)/오류 콘솔(_N)" - -#~ msgid "/File/D_ebug" -#~ msgstr "/파일(F)/디버그(_D)" - -#~ msgid "/Xtns/_Module Manager" -#~ msgstr "/확장(X)/모듈 관리기(_M)" - -#~ msgid "/Help/_Help" -#~ msgstr "/도움말(H)/도움말(_H)" - -#~ msgid "/Help/_About" -#~ msgstr "/도움말(H)/정보(_A)" - -#~ msgid "Aborting Installation..." -#~ msgstr "설치 취소..." - -#~ msgid "/Tools/Paint Tools/_Airbrush" -#~ msgstr "/도구(T)/그리기 도구(P)/에어브러시(_A)" - -#~ msgid "/Tools/Paint Tools/Blen_d" -#~ msgstr "/도구(T)/그리기 도구(P)/혼합(_D)" - -#~ msgid "/Tools/Color Tools/B_rightness-Contrast..." -#~ msgstr "/도구(T)/색상 도구(C)/명도-대비(_R)..." - -#~ msgid "/Tools/Paint Tools/_Bucket Fill" -#~ msgstr "/도구(T)/그리기 도구(P)/영역 채우기(_B)" - -#~ msgid "/Tools/Selection Tools/_By Color Select" -#~ msgstr "/도구(T)/선택 도구(S)/색상으로 선택(_B)" - -#~ msgid "/Tools/Paint Tools/_Clone" -#~ msgstr "/도구(T)/그리기 도구(P)/복제(_C)" - -#~ msgid "/Tools/Color Tools/Color _Balance..." -#~ msgstr "/도구(T)/색상 도구(C)/색상 균형(_B)..." - -#~ msgid "/Tools/Color Tools/Colori_ze..." -#~ msgstr "/도구(T)/색상 도구(C)/컬러화(_Z)..." - -#~ msgid "/Tools/C_olor Picker" -#~ msgstr "/도구(T)/색상 추출(_O)" - -#~ msgid "/Tools/Paint Tools/Con_volve" -#~ msgstr "/도구(T)/그리기 도구(P)/흐리게 선명하게(_V)" - -#~ msgid "/Tools/Transform Tools/_Crop & Resize" -#~ msgstr "/도구(T)/변형 도구(T)/자르기 & 크기 바꾸기(_C)" - -#~ msgid "/Tools/Color Tools/_Curves..." -#~ msgstr "/도구(T)/색상 도구(C)/곡선(_C)..." - -#~ msgid "/Tools/Paint Tools/Dod_geBurn" -#~ msgstr "/도구(T)/그리기 도구(P)/피하기 태우기(_G)" - -#~ msgid "/Tools/Selection Tools/_Ellipse Select" -#~ msgstr "/도구(T)/선택 도구(S)/타원형 선택(_E)" - -#~ msgid "/Tools/Paint Tools/_Eraser" -#~ msgstr "/도구(T)/그리기 도구(P)/지우개(_E)" - -#~ msgid "/Tools/Transform Tools/_Flip" -#~ msgstr "/도구(T)/변형 도구(T)/뒤집기(_F)" - -#~ msgid "/Tools/Selection Tools/_Free Select" -#~ msgstr "/도구(T)/선택 도구(S)/자유 선택(_F)" - -#~ msgid "/Tools/Color Tools/Hue-_Saturation..." -#~ msgstr "/도구(T)/색상 도구(C)/색상/색상-채도(_S)..." - -#~ msgid "/Tools/Paint Tools/In_k" -#~ msgstr "/도구(T)/그리기 도구(P)/잉크(_K)" - -#~ msgid "/Tools/Color Tools/_Levels..." -#~ msgstr "/도구(T)/색상 도구(C)/레벨(_L)..." - -#~ msgid "Allow Window Resizing" -#~ msgstr "창 크기 조정을 허용" - -#~ msgid "/Tools/M_agnify" -#~ msgstr "/도구(T)/확대(_A)" - -#~ msgid "/Tools/_Measure" -#~ msgstr "/도구(T)/측정(_M)" - -#~ msgid "/Tools/Transform Tools/_Move" -#~ msgstr "/도구(T)/변형 도구(T)/이동(_M)" - -#~ msgid "/Tools/Paint Tools/_Paintbrush" -#~ msgstr "/도구(T)/그리기 도구(P)/페인트 브러시(_P)" - -#~ msgid "/Tools/Paint Tools/Pe_ncil" -#~ msgstr "/도구(T)/그리기 도구(P)/연필(_N)" - -#~ msgid "/Tools/Transform Tools/_Perspective" -#~ msgstr "/도구(T)/변형 도구(T)/원근법(_P)" - -#~ msgid "/Tools/Color Tools/_Posterize..." -#~ msgstr "/이미지/색상/포스터화(_P)..." - -#~ msgid "/Tools/Selection Tools/_Rect Select" -#~ msgstr "/도구(T)/선택 도구(S)/사각 선택(_R)" - -#~ msgid "/Tools/Transform Tools/_Rotate" -#~ msgstr "/도구(T)/변형 도구(T)/회전(_R)" - -#~ msgid "/Tools/Transform Tools/_Scale" -#~ msgstr "/도구(T)/변형 도구(T)/배율 조정(_S)" - -#~ msgid "/Tools/Transform Tools/S_hear" -#~ msgstr "/도구(T)/변형 도구(T)/기울이기(_H)" - -#~ msgid "/Tools/Paint Tools/_Smudge" -#~ msgstr "/도구(T)/그리기 도구(P)/문지르기(_S)" - -#~ msgid "/Tools/Te_xt" -#~ msgstr "/도구(T)/텍스트(_X)" - -#~ msgid "/Tools/Color Tools/_Threshold..." -#~ msgstr "/도구(T)/색상 도구(C)/고대비(_T)..." - -#~ msgid "/Tools/_Paths" -#~ msgstr "/도구(T)/경로(_P)" - -#~ msgid "Delete" -#~ msgstr "지우기" - -#~ msgid "FG" -#~ msgstr "FG" - -#~ msgid "BG" -#~ msgstr "BG" - -#~ msgid "Edit Foreground Color" -#~ msgstr "전경색 편집" - -#~ msgid "New" -#~ msgstr "새로 만들기" - -#~ msgid "Refresh" -#~ msgstr "새로 고치기" - -#~ msgid "Stroke _Width:" -#~ msgstr "따라 그리기 너비(_W):" - -#~ msgid "Style" -#~ msgstr "형태(_S):" - -#~ msgid "Image Comment" -#~ msgstr "이미지 설명" - -#~ msgid "%s Options" -#~ msgstr "%s 선택사항" diff -uraN gimp-2.2.6/po/ru.gmo gimp-2.2.7/po/ru.gmo --- gimp-2.2.6/po/ru.gmo 2005-01-22 17:33:17.000000000 +0100 +++ gimp-2.2.7/po/ru.gmo 2005-04-29 13:45:48.000000000 +0200 @@ -1,220 +1,223 @@ -< I[ ܓHI&_kG9:GtANiM<k@`2;POa29-9L;7  -  - -+ 6BR -alo -06GZb -y - -   ) . :KG.1H!z $ -6 AM -cn  -!0*F6q5J^r# -(3DL^g 13Oci| -4Jdk z -AJc<v  (- GSi|  - -#:&P$w " 3?DJO -_jy7   # 0< DQV [mh  - '5ECL7=@6Gd~3K<_#! % ;ENf|,,Ys{  ! (>Shq z   .5?5u78),Fs2 3OOA%&4.1c#  "(1 -@KS Yg }0   " /<Wt+}   - &$Fk~ +;"Ps  U^o w ""AZc -u -),!5#W#{!%.5 <HYm#-%7Mc~  - - -' , :GWgz  -- $; ?INTex   # 1>EK%Q!w & )< N\k {   0M_n - --    - )<Ohp   :$?_8   -)4: -P [ i u - -   > @aq & 5BG_r  ( -6A -Yd |    -#.*?js!. #"6Yv& ,#(LS bp'' -'=YFsT )? Rs  -   2D JV_ ht($=6%<\?A79Sc9B+=nf>CRJg IUe w     &=Rey#@GPo  -   -) 4> N\o -  9M(f  -O  -2=  -)  4  @ L  U .a     -       - - 0 - = -J -[ -o - -u -   c   z!   r 6MVhw&'   % 4 BN S]cjo .=F\ s -}    - -/FHN -  -H!B:}1  - # /`;C61z0   - -%<L]| ( - -H -= H -U` gs     !?F N\u 1Gcg y  K36"Yh"~  $0 E S t(+)*!?a/s*'#K[kt -, Cd  ' 8BRl! $9Xq-      ! ! !3&!Z!k!!! ! -! ! !!!"9"R"f"w" """ """""@#E#-L#z# ## # # ### ## # $$*$I$h$|$ $ $ $$ $$$ %% -*%5%J% `%n% %% -%%%%%%%%& -&&4& J&X&m&& -&#&&&&' ''.'+K'w'' ' ' -' ' ''''(!( 6(C( R(`(s(("(((( ))) )&)$<)a)s))) )) ) )) ) )) - -* -* * 0*:*I* Y* c*m*******+++ 1+=+P+j+o+ -u+ +++++ + +++ , , ,),F,U,g, y, -, ,, , ,, , , -, -:-!M-o---)- -- . . .%.4.;. L. X.f.By.A../1/ C/M/T/c/ s//////<0K0]0e0 -n0y0 000 0001""1!E1!g1111 1 1 112 22V%2+|2 2(22"23 3 &323L3%d3 -3 33333 -33 34 44 -4 74E4K4^4 s4 4 44&4,4 555 -)5 -45?5\5z555545 66 -#6.666 -F6 Q6^6m6 v6666 66 6!66 77 27>7O7j7 z777 777?7888.8>8[8x849O9X9-`9 ::: -: :#::-: +;7;L; a;k;s;;; ;;N<b<v< <<<<<< -< -<<< - = = "=0=4=N= _= i=!s= === = ===> ->>-> C>O> -b>m>> >> >> ->>> ?*?/? 5?!B?d?!?#?? ? -?9?U0@=@<@=A"?A?bAAA AAAA(A,B5BEBWBhB -yBBBBJB CC*CCC ]C jCwCC C CCCCD;"D^DxD D DDD D DD D E EE%E CEMEhEEEEEEEEF!F3FHF+_FFFFF F F FF G G*G#AG eGqG GGGG6G -H'H/H6H KH7XHHHHHHHI I #I/IAI UIbI IIII -I -II III I J -JJ!J 6JBJ -YJdJJ JJJJJ KK-KFKVKjK4KKKKKL-LQ]Q rQ|QQQQ!QQR"R -)R4RIR YRfRRRRRR RSS3SJSiSS SSS SSSTT.TATXT -jTuTT"TTT TUU1UIUbU=rU6USUJ;VVVV VVVVWW.WLW ^WjWyWWW WWWW X X-XCX]XxXX XXXXXX YY)YNYLZK`[=[[*n\\>]3]T^?j^`^2 _>__pa4sb/bb cccccccccddd,d?d\d qd }dd;dd ddd ee /e=eMe#ae ee e e&ee -eff*fDf"Vfyfffffffgg,g;g LgYgrg ggggg+gggh hh h-h =h -KhVh\hchkh th h8hvh=iDi\iti |i ii i!iiij-jFjcjjjjjjjj j j j kkk "k/k?k NkZk kk wkkk!kkk(k'l#0l Tl blolvl -|l l lllll -l -l lmmKm1jm7m1m5nH,tkt`U@0ƛ+ <J6Lo4#9]G&XnUǞ4=FN -W b nx #ʟ ҟ!4=O ak p ~  Ƞ۠ 6 <IPY x    ϡ - 9 BPVe  -Ģ Ԣ  # 1? O\o  ģУߣ   -*5;Jfuˤܤ   )3 ;E KWl{  ƥӥ֥ ߥ  - - "+ 3= CPV\bipx  Ʀ Φۦ  -:EX g s  ͧ Чڧߧ$7M m z - ˨ ۨ  -    ' 4A R\ dnu -{   ̩թ ܩ -  %2 ; I Wcv|   ֪ );MU^t41/Oeu Ĭ#լ 9@P"` -ɭ߭  -B -[ -f -q|  -Ӯޮ - 2HW _l{ -5 #* 2@!U w  -ٰ   %/5< CQ.dW0G9`kXs̵^dXuX\YyDc`Fĺe RqQĻ ") I Ucs# -׼45K c;qLf!%Ⱦ-ݾ   -) -4? W -d o -} -  -" -ο -ٿoAJ=': blM-4'E&m8)F/(v$,BG''1$ 51Fgc%78(p@?6/0f,>408,iL7:V)o';= ^|`^J+<(?8+:d8 &*&Qx&y?+i}1) %A.p/&3!*L$h* '){Eh * 7DY o9}%%KOcb - ,1C!c)o -<Ge   -  ("4@K( eiW`<6`4o+1aL(;u>6 - AO"a;7<25:h-B<LQR -:9:t'+  : [ |  ,"3*Oz*muKxx:si'U@M(;vrJ%2pYO)Oy~zHQ [6;+* -=H$Z! ."5#Tx )3 O[5t7x-p-,$:JbyA> !B4`AA36M@58|4'1/ !;]pv#RS5S81IHL=28N6Q,/N\,X@1@rE?39`m '("0K"|(KD(YcA-(FVA#7UT--R&y#/#0$M!r  v)' - . J Y %i ' , " ( -(0 -)Y -+ - - -! - -   0  ? I XX R  " 1@ Hr #   " "6 Y v     " !"9 \}$,0 -,;!h,aN_'p$,+6X")%&Lcy':z (',)@j9)!!%#G!k#8!!1$S(x%&$L&q,"(((:8c%,& 4P<m$6I(P.y6.G&An+<#4MX"(.@/_<!(6V_*>;3 >o ?  N!HP!4!6!S"Y"x"#""^">'# f#s##$#1#E$4I$?~$4$!$5%&K%mr%% i&v&&2&2&T '8^''<''9(=>(F|(((((()(>)g)#~) ))))2)C!*?e**z*m/+v+,,z -z-.b/t//{0XO115223383 49,4f4,o4"44445,%5R5,k565.5$5"#69F666#6696"672Y737+7747,18&^81818189-69'd9#99999,:@:,^:(:::J::;P;%f;%;;*;1;1+<%]<_<v< -Z=e=t== = = ===Ae>>>&?<?%8@'^@@%@%@@@cAlAAA A5AA4BKBPBjB<BBB"BC7%C]CoC#BD>fDEJGH%H -H -HH5I:JOJdJ~JJ%J0J%KQ(KSzKKKK L 'L 5L -ALLLjLyL -L9LL8L*%MPMAiM+MMM(MN6NKNNZN NNNN O !O .Od>eLXeReJeJCfUfYf>gg%g-hb6h-hChF i!Ri4tii+ii)j)9j#cj+j#jjjjkk 2kSknkkkkkk kkl 'l1lAl[lol!llll llmm(mGm`m3omo.o0op/p>p'Wp ppnpq%2qXq)wqqqqq8r5:r'pr+r1r$r1s'Msusss4s-s -t t,t tvt5uDu -`u(kuuu!uu uv+vKvGkv@vDv-9wRgwwww$ x2x2Nx%xx$xx(y(-yVy2ryy$yy(z +z 5z*Cz -nzyzzz#z>z5 {(B{:k{>{{{=|JM|6|8|}}5-}5c}S}}} ~,&~,S~~#~,~2~/"/R2##%/A5q:F<: w  - 0Qف"+0N!%  !.#P<t/*#,)P0z,)؄J)M.w2?مA*[̆*'8J]"w,!LJ6! BV.n͈D(!A6cΉB%<@VʊnS0r",Ƌ2M&tAь .C -^i}#; ,=[k$!̏ޏ!%Gd%5ޑ0'("P%s35͒;7?7w0+, 9Nbv˔nJOdW">zϖ00nO -ɗٗ(1OaxҘ/ۘ -;i#0UDG  ٚ"<<Z+/Û33'\[3!$FXxѝ#,CKZ0ܞ #)9M!3!ݟ)):Ky]*נ'%?JeNAzAѣ-1F\kQ&ئ^^!q0 ħЧK-/?!o,7,dЩ 1( Ii*"#Ѫ%)CTX!g#D$"):2d 4Ԭ' 1&Ip**41&Ip*B>9J1\ECԯMQfD|xS|̲IFϳ|%%-ߴ ,^?c#Bb).ȶ.c& 04'?1W+Ѹ04!V0lcR'T#|+D̺6-Hv'%)% - 02>q*?*,!Nl'0#P 0ZHPԾo%BUؿ!.*P4{&,;4@uLf H'i113 z?8 -(#/L|:/7 gt3/*7b%{3(2Rj+E#7Qk/E)-CW;>*6Ia6 4!&V-}+u<M:;@(B%k56^"])0)# 'Dl'{3%)8'3`+9964Vk6!:! -#,;Tg ~ -"0Sp $6 -KVg",.[v2%.42.g,04BG7). 0;l&&, .8(g"65>8<w&>105b._K'sv4y,30"0S.>.Q!3s%55593o J*>:0yJ.5$8Z9#:&,;S5(:-)/W~tC+**_hf\t -v$SoxGk -   (%N_4}55;50q.p$x%44--,[*',C.L-{+%Z8V 24><WC)(5+5aM=(#(L@u88=>*|7 + - 6SD' -/6?(v J('s'+ * *6aItK6 -9A3{8;7$ \ !q   ! (  -# -: -&Z - -! - -" -% - "2 2U  - " H % P% &v ? W 5 7H -     - " !0%J/p -%!x&iw {oPmGo1j.]))*] iYV7@ iA Z T"P["L"L";F##&$%^%9&e&,))z*2* 0,_<./J<1/2F3N4M6&38Z9 :;L'=At= -=P= >>:>Q> h>v>(>>>0>0 -?A;?+}?+?5?, @-8@If@%@.@.A4A.KAzAD>0DoD%D3D%D' E:4E>oE%E'E-E*F/GFwFFF F!FGG -"G.-GS\GoG H HIyiKKK L'LALPL(hLLLLOL6M>UMfMHM=DN1N>NSN2GO3zOOOOO,P 4PBP[PIP:QTQrQ,Q*Q+Q)R 1R$RROwR<R%S%*SbPSS~TUjUf#WXrYwY -ZZiy\\]^M__`abwc} dyd efggXh -ii i i7i7ij3jFjQHj jk k kRkGl`lv{mmnR/oo/o%o%op p/0p%`p%p)ppfp%Rq#xq%qq)qqr''r1Or"r&r)rrss,s&Esls}sssss7s;s99tstt t t1tt tt"u2u4u Iu8Wu+u uu u u!v 'v>1vpv#vv9v<v83wlw ww w#wwwx!x#9x%]xx!xxx!xy!:y\yzy y(yy$y6zNzaz~z zz0zz#{+3{_{1{{,{"{I!|k|| || ||1|#}*}:}#Z}~} } }'}&}} -}~~.~@~5_~~~~~~ #;Sk ,"&(0N_n w)$EЀ'6Vl:57 -F Q2]#ʂ&قB9C!} "ȃ$;RlԄ";Xl{ -&Ӆ )  JVfx6̆܆"/6)f*  6RBj. $/ T u-/09JajHQ*/ŋE;Mg8{(W݌E5>{ ʍ(EZn1) ގ'&$K^ q)}#&ˏ&6G Wcr:Ȑ3! UcwN9A\%k ڒݒ - - c=~(ړ - )6+`MDڔLBl• ו !9M -a ly'eR%ht-  #-33&QdYLy$NZ"+ M*.C0hX, /xK[ g.|KFJS)%y,9JrkOg\q[&0F ', a7qB+TO. :LYnwV I=rC'- S8h8MPKn-E"3g=f({2>}8  85BG1S<JNme m(v{|=6ZK& NP2>pd 4@n@jM[n~XF!%BE E5 mq[aD @z? u Jx76+ Dpet}@s -<! b -_+{k*sMFY)tgj|}s7 # 0i}Ed2 /bx> Jv.IE G"c^7mFU`` e::p>1:\u3*?pgyhzsAXwTUZ?; ,D F -Wv;!Y\b%CwOfN)|>% 'z3 [a4U&6N [@=O'GQE]]WK 4"5Y:)!H y]! 0rM'pwa/OQ- TRw[ -~IJUb Yvi} M#i/}5Z 1/H(5c9AtI;[Cl 4 a%uU9bmC$ >g -}9Xt=HUSQc1G#89 e/6 Y =*88 4 (|+vR .QL8T?nHCH_`5:z jPNvVhxFOh il=)H$fWuG( sn^V8f{R -?{rXUrm< -)14Xap$6x`v#eM{q~;b -u~(E+tz)ts-<#|i`y"oX S6X0{AU*Rs".Go;;:; i#D9IS0  -Z~Zj;%thdf-~o / N - c^Zkkk7A8^uA22\$7 |AP:wy6ukYGeWcSR^Z >6WPQ|$D% &CSDRV+' q<1_^~Q*{D ll})1 P Wd{b (\?Lf4Ej`b&wzxqa\_3 ,0holTd+^; c@e~ 2i*uG %or`v fIJ%. 6Iz_,,'"/Rk-cuHA6 L39@Ud`* ?w9 &Npooi7meO 1  lCM#]\)7RI2/1 TB g(Sd   |23  iX !/lO9H "z><$xP30< $+!oFyW@T$Bz +_7Ko 5 g&ra%0]> ~mV254\TD$AC&4Lp &B GA^_ :mp) dj;BLlVInywZ=V1! K#njN!JVe' q]KFs=" ?c5-OJ`5 ,.B\n7h<-xcE}WBvlyx]TL!Hj_ 3j?]]rfWK<q'tQL*#g'P 2k: [f,.9^ ak(YDq4RQb(,*.@V<r0s"_PM  +^  K  &kFG9G4A|Ni <wk@ 2a;PO!2q9-9 ;F7  + + +  +!,/? +Wbjr0#+ +BMT\d s + +   K\.1!Cew~ + + , +8CX ku +*6F} +3Gf{# +!3<\p x 13$8>QX + 9@ O +\gxAJ8<K  (>QZq  +&%$Lqx ~ " $ +4?N_s7   &+ 0m=   + !C.7r=@6)d`3-<A#~!   '1:Rh,*Wqy  ! &<Qfo x   .5=5s78),Dq2 1OMA%&4,1a#   &/>N +]hp v 0  !. 5 ? LYt+  & +. 9C$c 5HX"m  r{  +"";^w +  +),F!`##!%.1` gs#-&%<bx  + + +$<CR W er  +-+ 2?Of jty &2 B N \ipv%|! &# 7ETg y    (@[x + +-   '4 +< GTgz   *1:O?8 * ;E +T_e +{ + +   >, k$4 DQ `mr  "= S +al +    +% 4 B +NY*j!.4#="a&  ,&#Sw~ '' 5RhFT:A GTj }  +  -<K]o u ($ 0=C61<?'Ag79c09B=-fk>CJUg $ 6DY^p     $8K^p  . I ` t     +     +    + +. + +? +J +f + n +z + + + + + + + (% N T [  c p x ~  + O   +       +      . O b u  +           .EuTco 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   K362ix"  $%@ U c (+)*$!Oq/*  '3 [ k {   +       !!)!? I?#S?w?-? ??? ??@@ @ +)@ 4@@@@@A A$A-A5A;AQA +iA +tAAA +A A AAAA A B! B-B 1B?BSB bB oB|BBB BBB BB +B CC .CM\MqMMMMM M MMM NN .N:NONUN +\N +gNrN zNNN NN +NNN NN +OO2O OO[OmOOO OOOOPP4-PbPPPPPPP.QE3QyQ Q QQ Q QQQ Q R R + R+R OUZior  &3E U cm  +<  !3GWf{ȏ׏ 1 +ALQZ3q;;Fƒ   )7=E WxΓ3#?WjzȔΔ ՔFW +w +     ȕ ֕!! ( 4+@Kl0Q;ԗ$w5PҘG#-kOjoTeěj*~pow<m?>t)t`t~0¡ԡ 6 +oA4¢#G%,XRUOQhqz +   ȥ#ڥ #29BUhq    צ * Ij p}  ˧ܧ ߧ   +%0 8EMm v ǨӨ +ۨ % 5C W es ɩ۩  - G Q +^io~ժ" 2 S ]g oy  ëӫګ  +   +' +2=V_ gq w Ǭ Ӭ %?N +ny  í٭   ,GPXk  ®Үخ߮ +    ++ 6 D Q [ hu   + ïϯد    .5 > K Yf o } °ǰϰ ް   ,9?HYl~(ʱ +4$1Y/Ѳ 0#A e"̳ +%,5K \how +Ǵ +Ҵ +ݴ  +?J[a +ju{õ ˵ص + $5(^ pz !  % +E P\cgotz   .зL0iGo`khXԻ-dTuGXYpyD|cF%elRQ% w  # +8CF4a ;L[qfz!%):-O} + +  +  + +  +" +@ +KV[voJ#=n' M +X-x'&"8>+w)F(=$W|,B'('P1x$5FcL%7(7@L?60,5>b40,L47:) 7'Iq;=3GYu`^+Gs<8:8= v&&&4[y+W/1E)w A/$&T{3!$*+ Vdk'}){h_   9%U%{Kcd +v ,!#)@oj + ! / +;F\ kx@(*S n'{e/`6`o[+aL;;>w6  #"5;X7<2 1<:n-B<LWR + :?:z'+  @ a   ,(9*U*muQxx@si-U@M.;|rJ+2vYO/O~zNQ [<;+* +CN&`'$!  .)X"g#Mg ~ 577xL--!,=$jA>7 v4AA,3n6@58P|'1./`!#R7SS821kIL=4r8%69QX,N,&XS@@E.?t3` I U 'u ( 0 " ( +KC +D +( +c +Aa - F A #Z ~ 7 U -% S -s R  # 1/C#s$! ,9Tl v)3'].%' +,2"_(()+ *7!Qs  XR,1H#6Zt""-Ga"y" $3,X0,!,2Jag'(7QZk$,6 +"5)X%'8:Gz (*'S{,)9)6`!~!#!#8,e!!$(%$&, "@ (c ( ( 8 %!,=!j!&!!!<!$%"6J"I"("."##6;#.r#G#A#++$W$<r$#$M$"!%(D%m%.%%/%< +&!G&i&&&(&V&1'*D'>o';'>'?)(i(N|(H(4)6I)S)))#***^C*>* ** +$'+1L+E~+4+?+49,!n,5,&,m,[- --.2.2Q.T.8./<(/e/9/=/F/(>0(g0(0(00#0 1+1;1J12i1C1?1 2b/2z2m 3b{3v3U44za5z5W6bR7b7889X9L::e;E<]<8w<<9< +=,="@=c=u===,==,>6<>.s>$>">9>$?B?#b??9?"?2?30@+d@@4@,@&A/)A/YA/AA-A'B#*BNB]ByBB,BB,B()C:RCJCCC%D%*DPD*lD1D1D%D_!EvE +EFF#F AF OF [FhFFAGEGcG&rH<H%H'H$I%8I%^IIIcI +J$J>J VJ5dJJ4JJJK< K]KwK"KK7KK L#L>MCNOPP +Q +QQ5|R:RRSS8S%IS0oS%SQSSTlTT UU0U NU \U +hUsUUU +U9UU8V*LVwVAV+VVW(WEW]WrWNW WW X!X4X HX UXcX#rXXJXKX'IYqY +vY7YAY YZZZ#[([7[T[M[;\\\_\ B]c]k]%|]]*]]]^*(^$S^x^"R_ru`J`T3aa#a'a0ab##n>bnLnRnJAoJoUoY-ppq%+q-Qqbq-qCrFTr!r4rr+s/5n(:̈́>GW=qJ681jz55ņSO_n,,#,$2Q//2#5#Y%}/5Ӊ: DFU< ي  + 0 +Q;"0!%# I Vcy!#Ȍ</)0Y*#Ս)0#,T)J). 2O?A*/H[u*А" ,C!p6!ɑ.F`vDђ!6 C_wBΓ@@[sn0"L,o2MϕA8zז +2}N̗;P Ę՘$.!Su!Κ +%:5`0'"%+3Q5;77/0g+,ĝ.McrnJadq֟W>A00n +(ϡ(?Xg}/Ң-0N#c0UDS s "<<!+^/33\"3¦ܦ! ?]l#ͧ,ݧ +K!m0Ԩ#9!N3p!)ƩY$y~*#'8%`JNѫA zbݭ-5Rg}Q&^ !0 KN/` !Ӳ,y,ӳ #10(b*Ŵ"#7Qgk!˵#ϵD$8"])2ݶ 4'Ow&*ҷ*(4Bw&*ҸB>@1EԹCM^QDCU|dx| +F |g%% +-0^m}^cS#o)..Hcw 043'h1+"0A4r-0cR'#+DK6-'%9)_% 2* +?5*u,' 03#dP0H +PSoBUW!*4&/,V;4Lf` '1&1X3z89r(/:{/ 3/8h*%3 T(h+E.#t7/FEf)C;V>v*I6*a 4&-+*uV<: ;D@(%56F^}"))0D)u#''3"%V)|83+9?9y6VA6`!!<^ +mx 9 +JUf" "?V$q +"/Ro, 2)%\.4.,30`4B7 )Ak.0&*&Ho,.("'6J5><3&I>p15._FKv4,-3Z00.>2.qQ3%&5L553 "JC*>0J).t<589O#:&;5K(:-/~CRt+t**_h"\0 +v$o4G'o +   ( +49n55;0-^x.p$4%Y44-,*D'o,C.-7+e%Z8  K 2l 4 > < +CP +) +( +5 +5 MS = ( ( @1 r 8 8 = *8 7c   +  ST'g +/6(2[q J'/W'i+ **I0Kz69378k;7!- O\!s(#& =!^"%"21 +d"oH%P&R?yW7$-\   +" %&/L +|%x iw{{oPgAo1d.]# !)#$*%]'c'YP))1****@*i;+Z+T-PU-L-L-;@.|. /0^031e1&44z|525 *7_69:J6</=F>N?GA&-CTDEFL!HAnHH +5IP@I IIII II(J1J4AJvK0K0KAK+1L+]L5L,L-LIM%dM.M.MM.M.NP>P#Q%@Q3fQ%Q'Q:Q>#R%bR'R-RR/R+SKSZS sS!SSS +S.SSTodTT [UgVyXXXXXXY(Y;EYYYYOY6Z>EZfZHZ=4[1r[>[S[27\3j\\\\\,\ $]2]K]I]*^D^b^,s^*^+^)^ !_$B_Og_<_%_%`b@``~aajbfdzerfwffgiiiijk=llmnowp}pyzq qsttHu +uv v v7v7v w#w6wQ8w wx x xRxGyPyvkz9z{{Y|R|9}/L}%|}%}}}/}%~%=~)c~~f~% #/%Sy)'1"8&[)ŀ&#4LUWi7|;9*@ P \1h "Ƃ 8+G s  ! ރ>'#9]9s<8# ;H X#e؅#%:!Su!ӆ!1 O(p$6·5 P^0y#ƈ+16h,"I؉"6 P^ y/#ߊ#3 F R'`& +ҋ5Jb|ƌ،  8,E"r&(# ,)6$`Eˎ܎ !9J:[̏ + 2#Ei&B9!2T q"}ʑّ!?\qג !0F +MXj&“)Փ  -6Jה/)E#[* Ǖɕ Εܕ+BC. Ȗ֖$ - Nfo֗-/)0Y9aĘj&H*ڙ/E5{8(WEu> +(+ET1œ) *'<&d )#& &2Yv Ş؞:C3a џN9G%Ѡ , +@ +KVcZ=(C +LW)v+M̢DL_B $(7@Iay + Ȥ'פeRe[}r27=-~U>8 W8WVn0er<4O S +#c8tWslBg\0'G=bm/x:6 \T\#B-LSsM2 =MHv;3%(w$ Z_v !Re`Hx+ BZ X!+[!+*hescw3 0i# oLTKXg_ +N;69 ^P z}"+, n( 2.C/VG9EO=Ov!1_>?p _,] C 6`G|  {89vSX(M U0 NXE : 2rHa5oVh|?BA &4~ >Lf$0547z} +]P +]F 2 +"x[i'e&("q>U9m> t`,rGQv + ' |,N34 DnE3$ igLc>tIB'^"~@! ]Y  ]w7Q-h iUA yJOyAjapmZ Dk,{Zol *#(S1 W@zo*VoELVrG J; ?=|Q  fJY@0bX% =vRIm/IjF1Y&wX$ mYi4 TsGA}*2CNRkHm!rkE^Tm A^N YI?3[' K1e,&n-wkkd6oI;0C5?HuW qSB >I dIa;udFLe[BR +zfN\[)NC ^.ku1:vKdAt*5 XsCH6vTFcx'^+f( H*N JO #QqAj;:Q &(mB +6u.j. \tpkb%Q`zFg0|8Sq w&"F)}P@ Ja2xJw<FPp#4p5 qc)KS';$'O/ tx< L tlC%B ji+ ,1lK@ f-= "& )sd+T "W=A&sj<H ?DEO$CbU +%MVJ ag<~\ 6K ? yBD"/r =[ ZTh- <@]i lc d] JU:*p4`V}Pku  V A?4 ^FPZDaswx~nD7.[7 l-1o;~C@b 12/%w: ;#Xy(+"MWUy. %nd{eIyh`h{ O 6 @gl >5 C@9VXG=:lM {pLbK :f ~tES Gn!Guj$2)<KTu*P9>ls#5E9Y[$zz[Gef jDM}u,>~c3xi9I7.z#FQSA8%1 +)/{Qag9(b;oR4Q\ #:M LP,D %$}* ._|'-h 7&8|$) _) x]q^iU)O!{+ ^MYH nR ?@ Y M^ hRJbX 7-ER _]<{TEa\5k\(! yqW3yPV5/ WZ`I 3Pf 4p7S|r~!& 3rZ ZU <-Y<L*nKq. +H e " d| NW p,:8j\zaZ0b_c0  `5R1g 6_U{ODhD 2Jc]`9vF?)8'QRKy8/ g  om%dtq6 Nf}7. u3/TY Invalid option "%s" Usage: %s [option ... ] [file ... ] @@ -243,40 +246,40 @@ -s, --no-splash Do not show the startup window. -v, --version Output version information. %d Layers%d dpi%d dpi, %s%d layers%d minutes%d seconds%d x %d dpi%d x %d dpi, %s%d x %d pixels%g x %g %s%p%s Channel Copy%s Channel to Selection%s Message%s copy%s mask%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) -(Unnamed Buffer)(Unnamed Template)(clean)(invalid UTF-8 string)(modified)(none)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program +(Unnamed Buffer)(Unnamed Template)(Varies)(clean)(invalid UTF-8 string)(modified)(none)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAdaptive supersamplingAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': +Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAdaptive supersamplingAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) +AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:Center Y:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview +%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. +The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d +GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection (%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:Open ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: +To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' +InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine +spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: %sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...Output LevelsOverlayPDB calling error for procedure '%s': +Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': Argument #%d type mismatch (expected %s, got %s)PDB calling error: procedure '%s' not foundP_atternsPack my box with five dozen liquor jugs.PaintPaint Options Shared Between ToolsPaint Tool proceduresPaint Tool:Paint _ModePaint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPal_ettesPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:Palette _filePalettesPalettes MenuParasite proceduresParasitesParsing '%s' PastePaste Buffer _IntoPaste Buffer as _NewPaste Pat_hPaste _IntoPaste as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPathPath AttributesPath Name:Path _ToolPath cannot be lowered more.Path cannot be raised higher.Path is already on the bottom.Path is already on top.Path to Sele_ctionPath to SelectionPath to Selection %s Add %s Subtract -%s IntersectPath to selectionPathsPaths MenuPatternPattern FoldersPattern UIPattern fillPattern sourcePatternsPatterns MenuPe_ncilPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick a layer or guidePick a pathPick black pointPick colors from the imagePick gray pointPick onlyPick white pointPixel dimensions:Pixel valuesPixelsPixels:Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" +%s IntersectPath to selectionPathsPaths MenuPatternPattern FoldersPattern UIPattern fillPattern sourcePatternsPatterns MenuPe_ncilPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick a layer or guidePick a pathPick black pointPick colors from the imagePick gray pointPick onlyPick white pointPixel dimensions:Pixel valuesPixelsPixels:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" (%s) -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint size:Problems parsing the text parasite for layer '%s': +The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': %s Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)R_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.Really clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: +Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove 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: @@ -285,9 +288,9 @@ to replicate the selected segment.Select the number of times to replicate the selection.Select the number of uniform parts in which to split the segments in the selection.Select the number of uniform parts -in which to split the selected segment.Select transparent areasSelect web browserSelecti_on to PathSelectionSelection EditorSelection Editor MenuSelection MaskSelection Tool proceduresSelection maskSelection to Path (_Advanced)Selection to pathSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet ColormapSet Custom Canvas Padding ColorSet Image Canvas SizeSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSet OpacitySet background colorSet foreground colorSet item linkedSet layer modeSet layer opacitySet preserve transSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the monitor's horizontal resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the monitor's vertical resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the pixel format of cursors the GIMP will use.Sets the preview size used for layers and channel previews in newly created dialogs.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can not create thumbnails if layer previews are disabled.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.Shadow typeShadowsShapeShape:Shaped (angular)Shaped (dimpled)Shaped (spherical)SharpenSharpen ChannelSharpen SelectionShearShear magnitude X:Shear magnitude Y:Shear the layer or selectionShearing InformationShearing...Short dashesShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show Layer MaskShow R_ulersShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _SelectionShow _brush outlineShow _foreground & background colorShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _brush, pattern & gradientShow active _imageShow gri_dShow help _buttonsShow image sizeShow interactive boundaryShow memory usageShow menu _mnemonics (access keys)Show paint _tool cursorShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink _WrapShrink from image borderShrink selection byShrink wrapSizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSn_ap to GuidesSna_p to GridSoft lightSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:Spherical (_decreasing)Spherical (i_ncreasing)Spikes:Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStro_ke PathStro_ke Path...Stroke ChannelStroke PathStroke SelectionStroke lineStroke pathStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...Stroke with a paint toolStyle of bevel around the statusbar textSubtractSubtract from the current selectionSupersamplingSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' -TextText ColorText LayerText modifiedText proceduresThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The active brush. +in which to split the selected segment.Select transparent areasSelect web browserSelecti_on to PathSelectionSelection EditorSelection Editor MenuSelection MaskSelection Tool proceduresSelection maskSelection to Path (_Advanced)Selection to pathSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet ColormapSet Custom Canvas Padding ColorSet Image Canvas SizeSet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSet OpacitySet background colorSet foreground colorSet item linkedSet layer modeSet layer opacitySet preserve transSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the monitor's horizontal resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the monitor's vertical resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the pixel format of cursors the GIMP will use.Sets the preview size used for layers and channel previews in newly created dialogs.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can not create thumbnails if layer previews are disabled.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.Shadow typeShadowsShapeShape:Shaped (angular)Shaped (dimpled)Shaped (spherical)SharpenSharpen ChannelSharpen SelectionShearShear magnitude X:Shear magnitude Y:Shear the layer or selectionShearing InformationShearing...Short dashesShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show Layer MaskShow R_ulersShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _SelectionShow _brush outlineShow _foreground & background colorShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _brush, pattern & gradientShow active _imageShow gri_dShow help _buttonsShow image sizeShow interactive boundaryShow memory usageShow menu _mnemonics (access keys)Show paint _tool cursorShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink _WrapShrink from image borderShrink selection byShrink wrapSizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSn_ap to GuidesSna_p to GridSoft lightSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:Spherical (_decreasing)Spherical (i_ncreasing)Spikes:Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' +State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStock IDStro_ke PathStro_ke Path...Stroke ChannelStroke PathStroke SelectionStroke lineStroke pathStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...Stroke with a paint toolStyle of bevel around the statusbar textSubtractSubtract from the current selectionSupersamplingSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' +TextText ColorText EditorText LayerText modifiedText proceduresThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The active brush. Click to open the Brush Dialog.The active gradient. Click to open the Gradient Dialog.The active image. Click to open the Image Dialog.The active pattern. @@ -299,7 +302,8 @@ You can edit the layer or create a new text layer from its text attributes.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s -Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _dynamic keyboard shortcutsUse _web browser insteadUse all visible layers when shrinking the selectionUse black and white (1-bit) paletteUse color from gradientUse custom paletteUse info windowUse web-optimized paletteUser Installation LogUser InterfaceUtility windowValueValue:Vectors modVersion %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListView as gridView as listVisual class:Visual depth:Warning: Failed to load data: +Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.This window has %d tabs open. Closing the window will also close all its tabs.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo edit a shortcut key, click on the corresponding row and type a new accelerator, or press backspace to clear.To_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: +%sUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _dynamic keyboard shortcutsUse _web browser insteadUse all visible layers when shrinking the selectionUse black and white (1-bit) paletteUse color from gradientUse custom paletteUse info windowUse web-optimized paletteUser Installation LogUser InterfaceUtility windowValueValue:Vectors modVersion %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListView as gridView as listVisual class:Visual depth:Warning: Failed to load data: %sWarning: Failed to save data: @@ -307,11 +311,11 @@ The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, dialogs will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp.HEAD.ru +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: ru Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-11-23 14:55+0300 -Last-Translator: Roxana Chernogolova +POT-Creation-Date: 2005-04-25 00:38+0400 +PO-Revision-Date: 2005-04-25 00:39+0400 +Last-Translator: AnatolyA. Yakushin Language-Team: russian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 @@ -346,26 +350,26 @@ -s, --no-splash Не показывать окно запуска. -v, --version Вывести информацию о версии. %d Слои%d dpi%d точек на дюйм, %s%d слои%d минут%d секунд%d x %d точек растра%d x %d точек растра, %s%d x %d точек растра%g x %g %s%p%s Копия канала%s Канал -> Выделенная область%s Сообщение%s копировать%s маска%s%sЩелчок: расширенное выделение%s%sНажать и потянуть: Перемещение и сжатие(%0.3f, %0.3f, %0.3f)(Нет)(Это консольное окно закроется в течение десяти секунд) -(Безымянный буфер)(Безымянный образец)(неизменен)(недопустимая строка UTF-8)(измененен)(Нет)1 Слой1 слой15 градусов %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Преобразование...4:1 (400%)8:1 (800%)<%s><<неправильно>><Нет модулей>Для лучшей производительности GIMP некоторые параметры могут быть изменены.The GIMP - GNU Image Manipulation Program +(Безымянный буфер)(Безымянный образец)(Разница)(неизменен)(недопустимая строка UTF-8)(измененен)(Нет)1 Слой1 слой15 градусов %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Преобразование...4:1 (400%)8:1 (800%)<%s><<неправильно>><Нет модулей>Для лучшей производительности GIMP некоторые параметры могут быть изменены.The GIMP - GNU Image Manipulation Program Copyright (C) 1995-2003 -Spencer Kimball, Peter Mattis и Команда разработки GIMP.Файл советов GIMP не может быть корректно проанализирован!Файл, содержащий подсказки не найден!Файл с таким именем'%s' существует._Добавить к выделениюУ_голО программе GIMPДействиеСделать активным изображение под фокусом.Активные фильтрыАдаптивная интерполяцияДобавитьДобавить _альфа-каналДобавить альфа-каналДобавить точкуДобавить каналДобавить цвет в цветовую картуДобавить направляющиеДобавить горизонтальную направляющуюДобавить _маску слоя...Добавить слойДобавить маску слояДобавить контурДобавить контурДобавить текстовый слойДобавить вертикальную направляющуюДобавить маску к слоюДобавить цвет из фонаДобавить цвет из основногоДобавить маску слояДобавить текст к изображениюДобавить текущий цвет к истории цветаДобавить выбранный фильтр в список активных фильтров.Добавить в палитру %sДобавить к текущему выделениюДобавление темы '%s' (%s) +Spencer Kimball, Peter Mattis и Команда разработки GIMP.Файл советов GIMP не может быть корректно проанализирован!Файл, содержащий подсказки не найден!Файл с таким именем'%s' существует._Добавить к выделениюУ_голО программе GIMPДействиеСделать активным изображение под фокусом.Активные фильтрыАдаптивная интерполяцияДобавитьДобавить _альфа-каналДобавить альфа-каналДобавить точкуДобавить каналДобавить цвет в цветовую картуДобавить направляющую: Добавить направляющиеДобавить горизонтальную направляющуюДобавить _маску слоя...Добавить слойДобавить маску слояДобавить контурДобавить контурДобавить текстовый слойДобавить вертикальную направляющуюДобавить маску к слоюДобавить цвет из фонаДобавить цвет из основногоДобавить маску слояДобавить текст к изображениюДобавить текущий цвет к истории цветаДобавить выбранный фильтр в список активных фильтров.Добавить в палитру %sДобавить к текущему выделениюДобавление темы '%s' (%s) ДобавлениеДополнительные способы управленияНастройка яркости и контрастностиПодстройка цветового балансаНастройка цветовых кривыхПодбор цветовых уровнейПодстройка яркости-контрастностиНастройка цветового балансаНастройка цветовых кривыхПодбор цветовых уровнейИзменение тона, осветления, насыщенности Настройка тона и насыщенностиПодобрать уровни автоматическиВыравниваниеРасширенные параметрыСмещение:Область применения %sАэрографАэрограф с переменным давлениемАль_фа-канал -> Выделенная областьС выравниваниемВыравниваниеВсе каналыВсе файлыВсе фильтры (*.*)Все изображения и данные для отката, которые не поместятся в "Tile Cache", будут записаны в файл подкачки. Этот файл должен располагаться в локальной файловой системе с достаточным свободным местом (несколько сот MB). В системах -UNIX вы можете использовать системный временный каталог ("/tmp" or "/var/tmp").Разрешить заполнение абсолютно прозрачных областейРазрешить выделение абсолютно прозрачных областейПозволить увеличение %sАльфа-каналАльфа-канал -> Выделенная областьАльфа-канал:Изображение такого размера займет больше памяти, чем указано в разделе настройки "Максимальный размер изображения" (%s).АнимацияПрицепить плавающее выделениеПрикрепить плавающее выделениеПрицепить плавающее выделениеУгол:Антиластик %sАнтиалиасингВнешний видПрименить маску слояПрименить маску слояПрименить порогПрименить маску слояВы уверены в том, что хотите удалить '%s' из списка изображений и с диска?Вы уверены в том, что хотите удалить образец '%s' из списка и с диска?Так же, как в настройкахЗапрашивать подтверждение перед закрытим несохраненного изображения.Пропорции:Пропорции:Добавит шумДобавить шум к изображениюДобавить шум в элементДобавит шумАвтор:АвтоСледовать за активным изображениемАвто-сжатиеАвтосокращение выделенияИзменять размер окнаАвтозагрузкаАвтоматическое определениеДоступные фильтрыДоступные типыЗаливка цветом фона_Яркость-Контрастность_БуферыФонЦвет фонаУстановить цвет фона:Фон: %d, %d, %dНазад (корректирующее)Использовать для определения заполняемой области все видимые слоиИспользовать для определения выделения все видимые слоиПозадиУровниБилинейныйЧерно-белыйЧерный:Цвета крайних точек смешиванияГрадиентная заливкаГрадиентная заливкаНепрозрачность крайних точек смешиванияГрадиент: Градиент: не годится для индексированных изображений.Заливка...СинийСиний:РазмываниеРезкость или размытостьГраница...Ограничить каналГраница выделенияРазмер границы:Яркость-КонтрастностьЯркость-Контрастность не действует на индексированные слои.КистиРедактор кистейКаталоги кистейUI кистиКисти:КистиМеню кистейЗаливкаБуферыМеню буферовЗатемнительButtПо расширениюВосстановив изображение до его состояния на диске вы потеряете все изменения, включая информацию для отката.CMYKО_ткалибровать_ПипеткаСтолбцов:ОбъединениеОткалибровать разрешение монитораНевозможно отменить %sРа_змер холстаОтменаНевозможно добавить маску слоя, отличающуюся +UNIX вы можете использовать системный временный каталог ("/tmp" or "/var/tmp").Разрешить заполнение абсолютно прозрачных областейРазрешить выделение абсолютно прозрачных областейПозволить увеличение %sАльфа-каналАльфа-канал -> Выделенная областьАльфа-канал:Изображение такого размера займет больше памяти, чем указано в разделе настройки "Максимальный размер изображения" (%s).АнимацияПрицепить плавающее выделениеПрикрепить плавающее выделениеПрицепить плавающее выделениеУгол:Антиластик %sАнтиалиасингВнешний видПрименить маску слояПрименить маску слояПрименить порогПрименить маску слояВы уверены в том, что хотите удалить '%s' из списка изображений и с диска?Вы уверены в том, что хотите удалить образец '%s' из списка и с диска?Так же, как в настройкахЗапрашивать подтверждение перед закрытим несохраненного изображения.Пропорции:Пропорции:Добавит шумДобавить шум к изображениюДобавить шум в элементДобавит шумАвтор:АвтоСледовать за активным изображениемАвто-сжатиеАвтосокращение выделенияИзменять размер окнаАвтозагрузкаАвтоматическое определениеДоступные фильтрыДоступные типыЗаливка цветом фона_Яркость-Контрастность_БуферыФонЦвет фонаУстановить цвет фона:Фон: %d, %d, %dНазад (корректирующее)Использовать для определения заполняемой области все видимые слоиИспользовать для определения выделения все видимые слоиПозадиУровниБилинейныйЧерно-белыйЧерный:Цвета крайних точек смешиванияГрадиентная заливкаГрадиентная заливкаНепрозрачность крайних точек смешиванияГрадиент: Градиент: не годится для индексированных изображений.Заливка...СинийСиний:РазмываниеРезкость или размытостьГраница...Ограничить каналГраница выделенияРазмер границы:Яркость-КонтрастностьЯркость-Контрастность не действует на индексированные слои.КистиРедактор кистейКаталоги кистейUI кистиКисти:КистиМеню кистейЗаливкаБуферыМеню буферовЗатемнительButtПо расширениюВосстановив изображение до его состояния на диске вы потеряете все изменения, включая информацию для отката.CMYKО_ткалибровать_ПипеткаСтолбцов:ОбъединениеОткалибровать разрешение монитораНевозможно отменить %sРа_змер холстаОтменаУдалить направляющуюНевозможно добавить маску слоя, отличающуюся размерами от указанного слоя.Невозможно добавить маску слоя к слою без альфа-канала.Невозможно добавить маску слоя к слою, не являющемуся частью изображения.Невозможно прикрепить этот слой, потому что это не плавающее выделение.Невозможно преобразовать в палитру больше 256 цветов.Невозможно создать новый слой из плавающего выделения, потому что оно принадлежит маске слоя или каналу.Не удается создать папку '%s': %sНе удалось создать файл предварительного просмотра.Не удалось вырезать из-за того, что выделенная область пуста.неверное расширение ${%s}Невозможно создать плавающее выделение из-за того, -что выделенная область пуста.Невозможно поднять слой, у которого нет альфа-канала.Невозможно сохранить. Ничего не выделено.Невозможно обвести пустой каналНевозможно обвести пустой контур.Размер холстаЦвет фона вокруг изображения:Центр X:По центруИзменить цвет фонаИзменить элемент цветовой картыИзменить цвет переднего планаИзменить разрешение изображенияИзменить единицы измеренияСменить текущий слой или контурИзменить цвет фона сеткиИзменить цвет переднего плана сеткиСменить индексированную палитруИзменение перспективы слоя или выделенияНе удалось сменить клавиши быстрого доступа.КаналАтрибуты каналаНазвание канала:Канал не может быть опущен ниже.Канал не может быть поднят выше.Цвет каналаСлой уже в самом низу.Слой уже на самом верху.Канал -> ВыделениеКанал -> ВыделениеКанал -> ВыделениеКанал:КаналыМеню каналовПроверить размер:Стиль обведения областиОкружность_ОчиститьОчиститьОчистить каналОчистить историю отменУдалить текстОчистить ошибкиОчистить историю отменНажмите "Продолжить", чтобы принять предложенные параметры.Нажмите "Продолжить", чтобы создать ваш персональный каталог GIMP.Нажмите "Продолжить", чтобы перейти к пользовательской установке.Нажмите "Продолжить", чтобы перейти к пользовательской установке.Нажмите чтобы соединить эту точку с выбранной конечной точкой.Нажмите чтобы создать новую точку. (попробуйте нажать SHIFT)Нажмите чтобы создать новый компонент контураНажмите чтобы создать новый контурНажмите для создания файла предпросмотра.Нажмите чтобы удалить эту точку.Нажмите чтобы создать точку на контуре. (попробуйте нажать SHIFT)Нажмите чтобы сделать эту точку угловой.Нажмите чтобы открыть путь.Нажмите чтобы выбрать контур для редактированияНажмите, чтобы обновить просмотр -Нажмите с %s чтобы принудительно обновить просмотрНажмите и потащите чтобы изменить линию. С SHIFT рычаги перемещаются симметрично.Нажмите и потащите чтобы переместить точкуНажмите и потащите чтобы переместить точкиНажмите и потащите чтобы переместить элемент. (попробуйте нажать SHIFT)Нажмите и потащите чтобы переместить рычаг. (попробуйте нажать SHIFT)Нажмите и потащите чтобы переместить контурЩелчок: выделениеЩелчок: выделение Нажать и потянуть: перемещениеОтсекать по границе изображенияБуфер обменаОтсечен по нижнему слоюОтсечен по изображениюШтампЗакрыть %sЗакрыть этот диалогКопировать контур_ЦветаЦветЦветовой балансЦветные экранные фильтрыПипеткаИнформация о цветеЦветовой _балансСмешивание _цветов:Цветовой баланс действует только на цветные изображения в формате RGB.Очистка цветаНомер цвета:Цвет:Цветовая картаРежим:Тон_ировать...Тип окрашивания для сегментаТип окрашивания для выделенияТонироватьТонирование действует только на цветные изображения в формате RGB.Тонирование изображенияТонирование изображенияЦветовая картаРедактор цветовой картыМеню цветовой картыСтолбцы:Комментарий:КомментарийКонтраст:РазмываниеНастроить цветные экранные фильтрыКонфигурировать устройства вводаНастроить сетку...Настроить сеткуНастроить сетку изображенияНастроить клавиши быстрого доступаНастроить клавиши быстрого доступаНастроить выбранный фильтр Настроить выбранный фильтр: %sПодтверждение размера изображенияПодтвердить масштабированиеПодтвердитте изменение текстаЗапрашивать подтверждение при закрытии несохраненных изображений.Используемые клавишиКонический (асимметричный)Конический (симметричный)Соединить контурыКонстантаОграниченияКонтекстПиктограмма курсора, меняющаяся в зависимости от выбранного инструмента - это очень удобно. Опция включена по умолчанию.ПродолжитьПри участииПреобразованиеПреобразовать уголПреобразовать изображение в Градации серогоПреобразовать изображение в индексированноеПреобразовать изображение в индексированноеПреобразовать изображение в RGBПреобразовать изображениеПреобразовать в индексированное (2 этап)Преобразовать в индексированное (3 этап)...Преобразовать в индексированноеРазмываниеВид действия %sСкопировать из буфера с именемКопирование файлов: '%s' из '%s'...Авторское право:Повреждённый сегмент %d в файле градиента '%s'.Невозможно создать '%s': %sНе удалось создать временный файл для '%s': %sНевозможно удалить '%s': %sНе удалось найти программу просмотра справки GIMPНевозможно открыть '%s' для чтения: %sНевозможно открыть '%s' для записи: %sНе удалось открыть файл миниатюр '%s': %sНевозможно прочесть %d байт из '%s': %sНе удалось открыть XCF файл: %sНе удалось запустить программу просмотра справки GIMPЧисло:Кадрировать слойСоздать новую _панельСоздать новый образецСоздать новое изображениеСоздать новый слойСоздать новый образецСоздать новое окно для этого изображенияСоздать новое изображение из образцаСоздать новый образецСоздание и редактирование изображений или фотографийСоздание и редактирование контуровСоздать кривую из текстаСоздать выделенную область из контураСоздать предварительный просмотр...Создание папки '%s'...КадрированиеКадрировать и изменить размерИнформация о кадрировании и изменении размераКадрировать изображениеКадрировать слойКадрировать изображениеКадрировать или изменить размер изображенияКадрировать: Только перекрестьеВы_резатьВы_резать в буфер с именемКубическое (лучшее)_СостояниеТекущая высота:Только текущий слойТекущее состояниеТекущая ширина:КурсорРежим курсора:Вид к_урсора:Тип кривой:КривыеКривые для индексированных изображений не могут быть настроены.По выборуВыбранный цветГрадиент пользователяОпределить цвет фона:ВырезатьВырезать в буфер с именемГолубойГолубой:С_оздать копию кистиСо_здать копию каналаСоздать копию градиентаСоздать копию слояСоздать копию палитрыСоздать копию контураСоздать _копию шаблонаСоздать копию образца...ТемныйТолько тёмноеТире-точка-точка...Тире-точка...Шаблон:Тип линии:ПунктирДата:ОтладкаВнешний вид по умолчанию в полноэкранном режимеВнешний вид по умолчанию в нормальном режимеПараметры сеткиПараметры сеткиИнтерполяция по умолчанию:_Размер пред. просмотра слоев и каналов:Порог по умолчанию:Удалить точкуУдалить якоряУдалить маску слояУдалить маску слояУдалить объект Удалить сегментУдалить образецУдалить кистьУдалить каналУдалить цветУдалить градиент...Удалить слойУдалить маску слояУдалить палитру...Удалить контурУдалить шаблон...Удалить параметры...Удалить выбранный буферУдалить выбранный образецУдалить это изображениеУдаление векторовНевозможно "%s" удалить: %sЧастые точкиОбесцвечиваниеОбесцвечивание действует только на слои в формате RGB.ОписаниеСозданиеСостояние устройстваУстройстваДиалогиМеню диалоговРомбРазличиеЧистый цветСпрятать маску слояВыключить быструю маскуУдалить текстовую информациюДисплейОкно навигацииЭкранные фильтры...Процедуры отображенияТип изображения:Отображение [%0.6f, %0.6f]РастворениеРасстояние:Расстояние: %0.6fПараметры смешиванияДелениеВыполнить полную переустановкуДействительно вернуться к настройкам по умолчанию для всех фильтров?Действительно вернуться к настройкам по умолчанию для всех инструментов?Вы хотите заменить это изображение тем, которое сейчас сохраняете?Не сохранятьПанельНе_давние изображенияНедавние изображенияДокументыМеню списка изображенийОсветление/ЗатемнениеОсветлительОсветлить или затемнить штрихиОсветление/ЗатемнениеДвойной пунктирПереместить точкуПереместить точкиПереместить кривуюПереместить рычагПереместить контурНажать и потянуть: перемещениеРисовать перомDrawableПроцедуры рисункаПроцедуры рисункаОпустить новый слойОпустить новый контурИз-за недостатка шрифтов функциональные возможности текста недоступны.Отображать действияСоздать копию кистиСоздать копию каналаСоздать копию градиентаСоздать копию слояСоздать копию палитрыСоздать копию контураСоздать копию шаблонаКопировать выделенный образецНевозможно отменитьЭкспортировать контур...Очень маленькийПустое пространство:Выделение краяРедактированиеРедактирование атрибутов каналаПравка цвета каналаРедактирование цвета палитрыРедактирование элемента цветовой картыПравка атрибутов слояРедактировать маску слояТип действияРедактирование цвета палитрыПравка атрибутов контураРедактировать атрибутов быстрой маскиРедактирование цвета быстрой маскиРедактирование образцаПравка кисти...Редактирование атрибутов каналаРедактировать цветРедактирование элемента цветовой карты #%dПравка градиента...Правка атрибутов слояПравка палитры...Правка атрибутов контураПравка шаблона...Процедуры редактированияРедактировать выбранный образецВыделение эллипсаПустой каналПустой слойПустой контурПустой текстовый слойОтсутствует имя переменной в файле окружения %sУлучшениеВключить быструю маскуВключить размывание прозрачностиВключить этот способ управленияПоказывать подсказки при запуске.Показывать всплывающие подсказки.ГромадныйВведите название для объединённой палитрыВведите имя для сохраненных параметровВведите имя для этого буфераВведите имя для этого образцаВведите новое имя для сохраненных параметровВведите путь (URI):ОкружениеКаталоги окруженияВыравниваниеВыравнивание не действует на индексированные слои.Стирание до фона или прозрачностиЛастикКонс_оль ошибокКонсоль ошибокМеню консоли ошибокОшибка при записи XCF файла%sСинтаксическая ошибка '%s' в строке %d: %sОшибка при чтении файла '%s': %sОшибка при чтении файла кисти '%s': %sОшибка при записи файла '%s': %sОшибка записи XCF: %sОшибка сохранения файла '%s': +что выделенная область пуста.Невозможно поднять слой, у которого нет альфа-канала.Невозможно сохранить. Ничего не выделено.Невозможно обвести пустой каналНевозможно обвести пустой контур.Размер холстаЦвет фона вокруг изображения:Центр X:Центр Y:По центруИзменить цвет фонаИзменить элемент цветовой картыИзменить цвет переднего планаИзменить разрешение изображенияИзменить единицы измеренияИзменить размер для печатиСменить текущий слой или контурИзменить цвет фона сеткиИзменить цвет переднего плана сеткиСменить индексированную палитруИзменение перспективы слоя или выделенияНе удалось сменить клавиши быстрого доступа.КаналАтрибуты каналаНазвание канала:Канал не может быть опущен ниже.Канал не может быть поднят выше.Цвет каналаСлой уже в самом низу.Слой уже на самом верху.Канал -> ВыделениеКанал -> ВыделениеКанал -> ВыделениеКанал:КаналыМеню каналовПроверить размер:Стиль обведения областиОкружность_ОчиститьОчиститьОчистить каналОчистить историю отменУдалить текстОчистить ошибкиОчистить историю отменНажмите "Продолжить", чтобы принять предложенные параметры.Нажмите "Продолжить", чтобы создать ваш персональный каталог GIMP.Нажмите "Продолжить", чтобы перейти к пользовательской установке.Нажмите "Продолжить", чтобы перейти к пользовательской установке.Нажмите чтобы соединить эту точку с выбранной конечной точкой.Нажмите чтобы создать новую точку. (попробуйте нажать SHIFT)Нажмите чтобы создать новый компонент контураНажмите чтобы создать новый контурНажмите для создания файла предпросмотра.Нажмите чтобы удалить эту точку.Нажмите чтобы создать точку на контуре. (попробуйте нажать SHIFT)Нажмите чтобы сделать эту точку угловой.Нажмите чтобы открыть путь.Нажмите чтобы выбрать контур для редактированияНажмите, чтобы обновить просмотр +Нажмите с %s чтобы принудительно обновить просмотрНажмите и потащите чтобы изменить линию. С SHIFT рычаги перемещаются симметрично.Нажмите и потащите чтобы переместить точкуНажмите и потащите чтобы переместить точкиНажмите и потащите чтобы переместить элемент. (попробуйте нажать SHIFT)Нажмите и потащите чтобы переместить рычаг. (попробуйте нажать SHIFT)Нажмите и потащите чтобы переместить контурЩелчок: выделениеЩелчок: выделение Нажать и потянуть: перемещениеОтсекать по границе изображенияБуфер обменаОтсечен по нижнему слоюОтсечен по изображениюШтампЗакрыть %sЗакрыть все закладкиЗакрыть все закладки?Закрыть этот диалогКопировать контур_ЦветаЦветЦветовой балансЦветные экранные фильтрыПипеткаИнформация о цветеЦветовой _балансСмешивание _цветов:Цветовой баланс действует только на цветные изображения в формате RGB.Очистка цветаНомер цвета:Цвет:Цветовая картаРежим:Тон_ировать...Тип окрашивания для сегментаТип окрашивания для выделенияТонироватьТонирование действует только на цветные изображения в формате RGB.Тонирование изображенияТонирование изображенияЦветовая картаРедактор цветовой картыМеню цветовой картыСтолбцы:Комментарий:КомментарийКонтраст:РазмываниеНастроить цветные экранные фильтрыКонфигурировать устройства вводаНастроить сетку...Настроить сеткуНастроить сетку изображенияНастроить клавиши быстрого доступаНастроить клавиши быстрого доступаНастроить выбранный фильтр Настроить выбранный фильтр: %sПодтверждение размера изображенияПодтвердить масштабированиеПодтвердитте изменение текстаЗапрашивать подтверждение при закрытии несохраненных изображений.Используемые клавишиКонический (асимметричный)Конический (симметричный)Соединить контурыКонстантаОграниченияКонтекстПиктограмма курсора, меняющаяся в зависимости от выбранного инструмента - это очень удобно. Опция включена по умолчанию.ПродолжитьПри участииПреобразованиеПреобразовать уголПреобразовать изображение в Градации серогоПреобразовать изображение в индексированноеПреобразовать изображение в индексированноеПреобразовать изображение в RGBПреобразовать изображениеПреобразовать в индексированное (2 этап)Преобразовать в индексированное (3 этап)...Преобразовать в индексированноеРазмываниеВид действия %sСкопировать из буфера с именемСкопировать видимоеКопирование файлов: '%s' из '%s'...Авторское право:Повреждённый сегмент %d в файле градиента '%s'.Невозможно создать '%s': %sНе удалось создать временный файл для '%s': %sНевозможно удалить '%s': %sНе удалось найти программу просмотра справки GIMPНевозможно открыть '%s' для чтения: %sНевозможно открыть '%s' для записи: %sНе удалось открыть файл миниатюр '%s': %sНевозможно прочесть %d байт из '%s': %sНе удалось открыть XCF файл: %sНе удалось запустить программу просмотра справки GIMPЧисло:Кадрировать слойСоздать новую _панельСоздать новый образецСоздать новое изображениеСоздать новый слойСоздать новый образецСоздать новое окно для этого изображенияСоздать новое изображение из образцаСоздать новый образецСоздание и редактирование изображений или фотографийСоздание и редактирование контуровСоздать кривую из текстаСоздать выделенную область из контураСоздать предварительный просмотр...Создание папки '%s'...КадрированиеКадрировать и изменить размерИнформация о кадрировании и изменении размераКадрировать изображениеКадрировать слойКадрировать изображениеКадрировать или изменить размер изображенияКадрировать: Только перекрестьеВы_резатьВы_резать в буфер с именемКубическое (лучшее)_СостояниеТекущая высота:Только текущий слойТекущее состояниеТекущая ширина:КурсорРежим курсора:Вид к_урсора:Тип кривой:КривыеКривые для индексированных изображений не могут быть настроены.По выборуВыбранный цветГрадиент пользователяОпределить цвет фона:ВырезатьВырезать в буфер с именемГолубойГолубой:С_оздать копию кистиСо_здать копию каналаСоздать копию градиентаСоздать копию слояСоздать копию палитрыСоздать копию контураСоздать _копию шаблонаСоздать копию образца...ТемныйТолько тёмноеТире-точка-точка...Тире-точка...Шаблон:Тип линии:ПунктирДата:ОтладкаВнешний вид по умолчанию в полноэкранном режимеВнешний вид по умолчанию в нормальном режимеПараметры сеткиПараметры сеткиИнтерполяция по умолчанию:_Размер пред. просмотра слоев и каналов:Порог по умолчанию:Удалить точкуУдалить якоряУдалить маску слояУдалить маску слояУдалить объект Удалить сегментУдалить образецУдалить кистьУдалить каналУдалить цветУдалить градиент...Удалить слойУдалить маску слояУдалить палитру...Удалить контурУдалить шаблон...Удалить параметры...Удалить выбранный буферУдалить выбранный образецУдалить это изображениеУдаление векторовНевозможно "%s" удалить: %sЧастые точкиОбесцвечиваниеОбесцвечивание действует только на слои в формате RGB.ОписаниеСозданиеСостояние устройстваУстройстваДиалогиМеню диалоговРомбРазличиеЧистый цветСпрятать маску слояВыключить быструю маскуУдалить текстовую информациюДисплейОкно навигацииЭкранные фильтры...Процедуры отображенияТип изображения:Отображение [%0.6f, %0.6f]РастворениеРасстояние:Расстояние: %0.6fПараметры смешиванияДелениеВыполнить полную переустановкуДействительно вернуться к настройкам по умолчанию для всех фильтров?Действительно вернуться к настройкам по умолчанию для всех инструментов?Вы хотите заменить это изображение тем, которое сейчас сохраняете?Не сохранятьПанельНе_давние изображенияНедавние изображенияДокументыМеню списка изображенийОсветление/ЗатемнениеОсветлительОсветлить или затемнить штрихиОсветление/ЗатемнениеДвойной пунктирПереместить точкуПереместить точкиПереместить кривуюПереместить рычагПереместить контурНажать и потянуть: перемещениеРисовать перомDrawableПроцедуры рисункаПроцедуры рисункаОпустить новый слойОпустить новый контурИз-за недостатка шрифтов функциональные возможности текста недоступны.Отображать действияСоздать копию кистиСоздать копию каналаСоздать копию градиентаСоздать копию слояСоздать копию палитрыСоздать копию контураСоздать копию шаблонаКопировать выделенный образецНевозможно отменитьЭкспортировать контур...Очень маленькийПустое пространство:Выделение краяРедактированиеРедактирование атрибутов каналаПравка цвета каналаРедактирование цвета палитрыРедактирование элемента цветовой картыПравка атрибутов слояРедактировать маску слояТип действияРедактирование цвета палитрыПравка атрибутов контураРедактировать атрибутов быстрой маскиРедактирование цвета быстрой маскиРедактирование образцаПравка кисти...Редактирование атрибутов каналаРедактировать цветРедактирование элемента цветовой карты #%dПравка градиента...Правка атрибутов слояПравка палитры...Правка атрибутов контураПравка шаблона...Процедуры редактированияРедактировать выбранный образецВыделение эллипсаПустой каналПустой слойПустой контурПустой текстовый слойОтсутствует имя переменной в файле окружения %sУлучшениеВключить быструю маскуВключить размывание прозрачностиВключить этот способ управленияПоказывать подсказки при запуске.Показывать всплывающие подсказки.ГромадныйВведите название для объединённой палитрыВведите имя для сохраненных параметровВведите имя для этого буфераВведите имя для этого образцаВведите новое имя для сохраненных параметровВведите путь (URI):ОкружениеКаталоги окруженияВыравниваниеВыравнивание не действует на индексированные слои.Стирание до фона или прозрачностиЛастикКонс_оль ошибокКонсоль ошибокМеню консоли ошибокОшибка при записи XCF файла%sСинтаксическая ошибка '%s' в строке %d: %sОшибка при чтении файла '%s': %sОшибка при чтении файла кисти '%s': %sОшибка при записи файла '%s': %sОшибка записи XCF: %sОшибка сохранения файла '%s': %sОшибка записи в '%s': %sОшибка при записи во временный файл для '%s': %s Файл не создан.Ошибка при записи во временный файл для '%s': %s -Оригинальный файл не изменен.ОшибкиОкружениеОчень большойРасширен при необходимостиЭкспортировать контур из SVGЭкспортировать все контуры этого изображенияЭкспортировать текущий контурЭкспозиция:Дополнительные устройства вводаПо расширениюЗаливка цветом переднего планаОсновной в фоновой (HSV по часовой )Основной в фоновой (HSV против часовой )Основной в фоновой (HSV)Основной в фоновой (RGB)Основной в прозрачныйОсновной в прозрачныйПер.план/ФонЦвет пер.плана/фонаFS мягкоFS строгоFS в слойПо размеру слоевФиксированная длина штрихаОшибка при импорте градиента из '%s': %sОшибка при импорте контура из '%s': %sЦветнойНеисправимая ошибка разбора файла кисти '%s': файл вероятно оборван.Неисправимая ошибка разбора файла кисти '%s': файл повреждён.Неисправимая ошибка разбора файла кисти '%s': это не файл кисти GIMP.Неисправимая ошибка разбора файла кисти '%s': неизвестная версия кисти GIMP.Неисправимая ошибка разбора файла кисти '%s': неизвестная версия кисти GIMP.Неисправимая ошибка разбора файла кисти '%s': неизвестная глубина %d.Неисправимая ошибка разбора файла кисти '%s': неизвестная версия '%d'.Неисправимая ошибка разбора файла кисти '%s': неподдерживаемая глубина цвета кисти %d -Кисти GIMP должны быть в режиме RGBA или градации серого.Неисправимая ошибка разбора файла '%s': файл поврежден.Неисправимая ошибка разбора файла градиента '%s': это не файл градиента GIMP.Неисправимая ошибка разбора файла палитры '%s': отсутствует заголовок.Неисправимая ошибка разбора файла палитры '%s': отсутствует заголовок. +Оригинальный файл не изменен.ОшибкиОкружениеОчень большойРасширен при необходимостиЭкспортировать контур из SVGЭкспортировать все контуры этого изображенияЭкспортировать текущий контурЭкспозиция:Дополнительные устройства вводаПо расширениюЗаливка цветом переднего планаОсновной в фоновой (HSV по часовой )Основной в фоновой (HSV против часовой )Основной в фоновой (HSV)Основной в фоновой (RGB)Основной в прозрачныйОсновной в прозрачныйПер.план/ФонЦвет пер.плана/фонаFS мягкоFS строгоFS в слойПо размеру слоевФиксированная длина штрихаОшибка при импорте градиента из '%s': %sОшибка при импорте контура из '%s': %sЦветнойНеисправимая ошибка разбора файла кисти '%s': Размер = 0.Неисправимая ошибка разбора файла кисти '%s': файл вероятно оборван.Неисправимая ошибка разбора файла кисти '%s': файл повреждён.Неисправимая ошибка разбора файла кисти '%s': Высота = 0.Неисправимая ошибка разбора файла кисти '%s': это не файл кисти GIMP.Неисправимая ошибка разбора файла кисти '%s': неизвестная версия кисти GIMP.Неисправимая ошибка разбора файла кисти '%s': неизвестная версия кисти GIMP.Неисправимая ошибка разбора файла кисти '%s': неизвестная глубина %d.Неисправимая ошибка разбора файла кисти '%s': неизвестная версия '%d'.Неисправимая ошибка разбора файла кисти '%s': неподдерживаемая глубина цвета кисти %d +Кисти GIMP должны быть в режиме RGBA или градации серого.Неисправимая ошибка разбора файла кисти '%s': Ширина = 0 Неисправимая ошибка разбора файла '%s': файл поврежден.Неисправимая ошибка разбора файла градиента '%s': это не файл градиента GIMP.Неисправимая ошибка разбора файла палитры '%s': отсутствует заголовок.Неисправимая ошибка разбора файла палитры '%s': отсутствует заголовок. Надо ли преобразовать этот файл из формата DOS?Загружается палитра '%s': ошибка чтения в строке %dНеисправимая ошибка разбора файла шаблона '%s': невозможно прочитать %d байт: %sНеисправимая ошибка разбора файла шаблона '%s': неизвестная версия формата %d.Неисправимая ошибка разбора файла шаблона '%s': неподдерживаемая глубина %d. -Шаблоны GIMP должны быть в оттенках серого или RGB.Растушевка...Размыть каналРазмывание выделенной областиРастушевать краяРазмыть границу выделенного наФайл_Диалог открытия файла...Действия с файламиТип файлаФайл существуетФайл обрезанЗаполнить каналНепрозрачность заливки:Тип заливки %sЗаполнить похожие цветаЗаполнить прозрачные областиЗаполнить все выделенноеЗаливка цветом фонаЗалить цветом фонаЗаливка цветом переднего планаЗалить образцомЗаливка образцомЗаливка прозрачнымЗаливка белымЗаливка цветом переднего планаЗалить цветом фонаЗаливка цветным градиентомЗаливка цветом или шаблономОптимальное заполнениеФи_льтрыПолученный слой должен быть:Поиск связанной областиПоиск похожих цветовИзображение к размеру окнаИзображение к размеру окнаИзображение к размеру окнаК размеру окнаФиксированные пропорцииФиксированный размерСвести изображениеЗеркалоОтразить каналОтразить слойОтразить контурОтразить текстовый слойТип отражения %sОтразить по горизонталиОтразить по вертикалиЗеркально отразить изображениеОтражение слоев или выделенных областейОтражение...Отражение...Плавающее выделениеПлавающее выделениеПлавающий слойПлавающее выделение +Шаблоны GIMP должны быть в оттенках серого или RGB.Растушевка...Размыть каналРазмывание выделенной областиРастушевать краяРазмыть границу выделенного наФайл_Диалог открытия файла...Действия с файламиТип файлаФайл существуетФайл обрезанЗаполнить каналНепрозрачность заливки:Тип заливки %sЗаполнить похожие цветаЗаполнить прозрачные областиЗаполнить все выделенноеЗаливка цветом фонаЗалить цветом фонаЗаливка цветом переднего планаЗалить образцомЗаливка образцомЗаливка прозрачнымЗаливка белымЗаливка цветом переднего планаЗалить цветом фонаЗаливка цветным градиентомЗаливка цветом или шаблономОптимальное заполнениеФи_льтрыПолученный слой должен быть:Поиск связанной областиПоиск похожих цветовИзображение к ширине окнаИзображение к высоте окнаИзображение к ширине окнаК размеру окнаФиксированные пропорцииФиксированный размерСвести изображениеЗеркалоОтразить каналОтразить слойОтразить контурОтразить текстовый слойТип отражения %sОтразить по горизонталиОтразить по вертикалиЗеркально отразить изображениеОтражение слоев или выделенных областейОтражение...Отражение...Плавающее выделениеПлавающее выделениеПлавающий слойПлавающее выделение (%s)Плавающее выделение в слойПлавающее выделение в слойПлавающее выделениеСмешивание цветов по Флойду-Стейнбергу (нормальное)Смешивание цветов по Флойду-Стейнбергу (уменьшенное растекание)ФокусКаталогКаталогиКаталог шрифтовШрифт UIШрифт:ШрифтыМеню шрифтовДля правильной установки GIMP должен быть создан каталог с именем '%s'.Использовать автоинструктированиеПереднего планаЦвета переднего плана и фона. Черный и белый квадратики сбрасывают цвета. Стрелки переключают цвета. Двойной щелчок позволяет выбрать цвет из меню.Цвет переднего планаУстановить цвет переднего плана:Передний план: %d, %d, %dВперёд (традиционное)Из контураСвободное выделениеСвободное выделениеСвободныйИз _темыПолучить разрешение от оконной системы (сейчас %d x %d dpi)Слева направоСправа налевоИз выделенияИз темыВ_ыделение связанной областиВо весь _экранВыделение связанной областиGIMPРасширения GIMPСообщение GIMPНастройка производительности GIMPДополнения GIMPЗапуск GIMPРедактор текста GIMPСовет дня GIMPУстановка GIMP для пользователяФайл GIMP XCFGIMP не смог запустить графический интерфейс пользователя. Убедитесь в правильности настроек Вашего видеоадаптера.Справочная системаGIMP неправильно установлен для текущего пользователя. @@ -373,9 +377,9 @@ Для пользовательской установки запустите GIMP без опции '--no-interface' .Gimp использует ограниченное количество памяти для хранения данных изображения, так называемый "Tile Cache". Вы должны подобрать занимаемый им в памяти размер. Обдумайте количество памяти, используемое другими запущенными процессами. GIMP использует дополнительный файл gtkrc, поэтому вы можете -сконфигурировать его иначе чем другие приложения GTK.Версия GIMPПри попытке создать файл, размер которого превышает указанное здесь значение, GIMP предупредит вас об этом.ГаммаОбщаяЭта настройка - для 8-битных мониторов. Она устанавливает минимальное количество системных цветов, предназначенных для GIMP.Создать оптимальную палитру:Установить разрешение монитораГигантскийПроцедуры GimprcЭффекты стеколГрадиентРедактор градиентовМеню редактора градиентовКаталоги градиентовЦвет крайней левой точки сегмента градиентаЦвет крайней правой точки сегмента градиентаUI градиентаГрадиент:ГрадиентыМеню градиентовGrain extractGrain mergeСерыйГрадации серогоЗеленыйЗеленый:СеткаРасстояние между линиями сеткиРасширить каналУвеличение выделенной областиУвеличить выделение наНаправляющая"Прилипание" к направляющим и сетке.Процедуры направляющейHSVHSV (%0.3f, %0.3f, %0.3f)HSV (Тон против часовой)HSV по часовойНотация HTML:_Высота:Используемая программа просмотра справки:Позиция метки: %0.6fЖесткие краяЖесткий светЖесткостьЖесткость:ВысотаВысота:СправкаСправочная системаСистема помощиПрограмма просмотра справки не стартуетПрограмма просмотра справки отсутствуетСправочные процедурыHex:БликиСтиль окна для других панелей:Стиль окна для панели инструментов:ИнструктированиеИнструктирование изменяет контуры символа, чтобы выдать более чёткие растры при маленьких размерахГистограм_маГистограммаМасштаб гистораммыИсторияГоризонтальноеСмещение по горизонтали для первой линии сетки. Значение может быть отрицательным.Расстояние между горизонтальными линиямиКоличество названий ранее открывавшихся файлов, отображаемых в меню.ТонТон-НасыщенностьТон-Насыщенность действует только слои в формате RGB.Тон-_НасыщенностьТон:Огромный_Пиктограмма и текстИзображениеИмпортировать контур...И_нтерполяция:Интервал:ПиктограммаПиктограмма и описаниеПиктограмма и текстЕсли доступны, используются инструкции из шрифта, но вы можете предпочесть всегда использовать автоинструктирование.При включении этой опции инструмент "Перемещение" делает активным перемещаемый слой или контур. В прошлых версиях такое поведение было включено по умолчанию.Если Вы не сохраните изображение, изменения в %s будут утеряны.Несохраненные изменения будут потеряны.Неверное имя переменной в файле окружения %s: %sИзображениеИзображение + СеткаРедактор изображенийИнформация об изображенииМеню изображенияРазмер изображенияФормат строки состоянияОбразцыМиниатюры изображенийФормат заголовка изображения и строки состоянияФормат заголовка изображенияВнешний вид окна изображенияОкно изображенияИзображение не содержит видимых слоевФайл изображенияМаска изображенияРазрешение изображения вне допустимого, +сконфигурировать его иначе чем другие приложения GTK.Версия GIMPПри попытке создать файл, размер которого превышает указанное здесь значение, GIMP предупредит вас об этом.ГаммаОбщаяЭта настройка - для 8-битных мониторов. Она устанавливает минимальное количество системных цветов, предназначенных для GIMP.Создать оптимальную палитру:Установить разрешение монитораГигантскийПроцедуры GimprcЭффекты стеколГрадиентРедактор градиентовМеню редактора градиентовКаталоги градиентовЦвет крайней левой точки сегмента градиентаЦвет крайней правой точки сегмента градиентаUI градиентаФайл градиента '%s' поврежден: сегмент не укладывается в промежуток от 0 до 1.Градиент:ГрадиентыМеню градиентовGrain extractGrain mergeСерыйГрадации серогоЗеленыйЗеленый:СеткаРасстояние между линиями сеткиРасширить каналУвеличение выделенной областиУвеличить выделение наНаправляющая"Прилипание" к направляющим и сетке.Процедуры направляющейHSVHSV (%0.3f, %0.3f, %0.3f)HSV (Тон против часовой)HSV по часовойНотация HTML:_Высота:Используемая программа просмотра справки:Позиция метки: %0.6fЖесткие краяЖесткий светЖесткостьЖесткость:ВысотаВысота:СправкаСправочная системаСистема помощиПрограмма просмотра справки не стартуетПрограмма просмотра справки отсутствуетСправочные процедурыHex:БликиСтиль окна для других панелей:Стиль окна для панели инструментов:ИнструктированиеИнструктирование изменяет контуры символа, чтобы выдать более чёткие растры при маленьких размерахГистограм_маГистограммаМасштаб гистораммыИсторияГоризонтальноеСмещение по горизонтали для первой линии сетки. Значение может быть отрицательным.Расстояние между горизонтальными линиямиКоличество названий ранее открывавшихся файлов, отображаемых в меню.ТонТон-НасыщенностьТон-Насыщенность действует только слои в формате RGB.Тон-_НасыщенностьТон:Огромный_Пиктограмма и текстИзображениеИмпортировать контур...И_нтерполяция:Интервал:ПиктограммаПиктограмма и описаниеПиктограмма и текстЕсли доступны, используются инструкции из шрифта, но вы можете предпочесть всегда использовать автоинструктирование.При включении этой опции инструмент "Перемещение" делает активным перемещаемый слой или контур. В прошлых версиях такое поведение было включено по умолчанию.Если Вы не сохраните изображение, изменения в %s будут утеряны.Несохраненные изменения будут потеряны.Неверное имя переменной в файле окружения %s: %sИзображениеИзображение + СеткаРедактор изображенийИнформация об изображенииМеню изображенияРазмер изображенияФормат строки состоянияОбразцыМиниатюры изображенийФормат заголовка изображения и строки состоянияФормат заголовка изображенияВнешний вид окна изображенияОкно изображенияИзображение не содержит видимых слоевФайл изображенияМаска изображенияРазрешение изображения вне допустимого, используется значение по умолчанию.Размер изображенияИсходное изображениеТип изображенияИзображенияМеню списка изображенийПараметры импортаИмпортировать палитруИмпортировать контурыИмпортировать контур из SVGИмпортировать новую палитруИмпортировать палитруИмпортировать контурыИмпортированный контурП_ероИн_вертированиеИнвертировать маскуДополняющийОтступ:Расопложение первой строкиНомер:ИндексированныйИндексированный цветПреобразование изображения в индексированноеИндексированные слои масштабируются без интерполяции. При выбранном типе интерполяции будут отмасштабированы только каналы и маски.Информационное окноИсходные пропорции масштаба:Инициализировать маску слоя с:Инициализация дополненийинициализация дополнения: '%s' -ПероСпособы управленияУстройства вводаУровни на входе:Вставить точкуУстановить свою цветовую карту может быть полезно при работе с 8-битными (256 цветов) дисплеями.Установка не удалась. +ПероБуфер изображенийСпособы управленияУстройства вводаУровни на входе:Вставить точкуУстановить свою цветовую карту может быть полезно при работе с 8-битными (256 цветов) дисплеями.Установка не удалась. Обратитесь к системному администратору.Установка завершена. Нажмите кнопку "Продолжить" для дальнейшей работы.Быстрое обновление_Умные ножницыЯркость %0.3f Непрозрачность: %0.3fИнтерфейсВнутренняя процедура GIMPВнутренние процедурыИнтерполяция:ПересечениеПересечь с текущим выделениемПересечения (крестики)Пересечения (точки)недопустимая строка UTF-8Недопустимая строка UTF-8 в файле'%s'.Недопустимая строка UTF-8 в XCF файле.Недопустимая строка UTF-8 в файле кистей '%s'.Недопустимая строка UTF-8 в файле градиента '%s'.Недопустимая строка UTF-8 файле палитры "%s"Недопустимая строка UTF-8 файле шаблона '%s'Неправильная последовательность символов в URLНекорректное сочетание клавиш быстрого доступа.Неправильная ширина или высота. Оба значения должны быть положительными.ИнвертированиеИнвертировать каналИнвертировать выделениеИнвертирование не действует на индексированные слои.Инвертировать выделениеВы действительно хотите это сделать?Возможно, Вы использовали раньше GIMP 2.0.Свойства элементаВидимость области рисованияФорматирование:Сохранять прозрачностьВсегда наверхуСохранить пропорции %sСохранить пропорции %sСохранить высоту %sСохранять прозрачностьСохранить ширину %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Комбинации клавиш могут быть динамически переопределены @@ -383,17 +387,17 @@ поэтому ее можно запомнить для последующих сеансов. Вы можете править этот файл, если захотите, но гораздо проще переопределять клавиши из Gimp. Удаление этого -файла восстановит исходные комбинации клавиш.КлавиатураКлавиши быстрого доступаЦвет крайней левой точки...ЛандшафтныйБольшойБольшой (256x256)Увеличенный просмотрПоследняя ошибка:СлойСлой '%s' не имеет альфа-канала. Этот слой будет размещен выше.Атрибуты слояРазмер границ слоя...Тип заливки слояМаска слоя -> ВыделениеВыделить слойРазмер слояРежим с_лояНазвание слоя:Слой невозможно опустить ниже.Cлой невозможно поднять выше.Слой уже в самом низу.Слой уже на самом верху.Слой к размеру изображенияСделать слой нижнимСлой к размеру изображенияСделать слой _верхним_Альфа-канал слояСлоиМеню слоевПараметры объединения слоевЦвет крайней левой точкиВлевоДлина:Восстанавливать последнюю сохраненную позицию окон при каждом запуске.УровниУровни для индексированных изображений не могут быть выровнены.СветлыйТолько светлоеЛинияМежстрочный -интервал:Ширина линии:Стиль линии:Стиль линий сетки.ЛинейноеCвязанный элементЗагрузитьЗагрузить кривыеЗагрузить уровниЗагрузить цвет крайней правой точки изЗагрузить значения кривых из файлаЗагрузить установки уровней из файлаЗагрузить текст из файлаЗагрузка файла предварительного просмотра...Расположение:ЛогарифмическийДлинные линииПоиск файлов данныхОпустить каналОпустить канал в низ стопкиОпустить канал вниз Опустить слойСделать слой нижнимОпустить контурСделать контур нижнимСделать контур нижнимОпустить каналОпустить канал в низ стопкиОпустить слойСделать слой нижнимОпустить контурСделать контур нижним_ЛупаМ_астерПереместить на _экран...КартаПурпурныйПурпурный:ЛупаСделать прозрачнымУправление загружаемыми модулямиСкорость муравьиной дорожки:Непрозрачность маски:Маскировать выделенные областиМаскировать невыделенные областиМатрица:Макс. глубина:Макс. размер файла предпросмотра:Максимальный размер нового изображения:Максимальное различие цветовМаксимально памяти для отката:Среднее:ИзмерительИзмерение расстояний и угловИзмерение расстояний и угловИзмерьте линейки и введите значение их длины:Медиана:СреднийСредние линииОбъединить с предыдущимОбъединить с предыдущимОбъединить слоиОбъединить палитрыОбъединить видимые слоиОбъединить видимые контурыОбъединить видимые слои...Объединить видимые слои...Объединить видимые контурыОбъединить слоиОбъединить палитрыОбъединить векторыПроцедуры сообщенийСообщение повторено %d разСообщение повторено один разСообщения перенаправлены в stderr.ПолутонаПреенести пользовательские установкиМинимальное число уровней отмен:РазноеМастерРежимРежим:Изменять выделенные цветаИзменить уровни цвета для выбранной областиИзменять все цветаРасстояние между строкамиКаталоги модулейДиспетчер модулейРасположение модуляМодулиКурсорКолесо мышиПеремещениеПереместить точкиПеремещение каналаПереместить плавающее выделениеПереместить направляющуюПереместить слойПереместить маску слояПереместить контурПереместить выделениеПеремещать текстовый слойПереместить инструмент Перемещение 'элемента Перемещение слоев и выделенных областейПереместить выделениеПереместить текущий слойПереместить текущий контурПереместить выбранный фильтр внизПереместить выбранный фильтр вверхПереместить на _экран...Перемещение: Умножение_Число цветов:На_вигацияОкно навигацииРа_змер окна навигации:НазваниеНазвание:НавигацияСоздать каналЦвет нового каналаПараметры нового каналаНовый цвет из фонаНовый цвет из переднего планаНовое изображениеНовый слойНовый контурПараметры нового контураНовый образецНовая кистьНовый каналНовый канал с последними параметрамиНовый канал...Новый цвет из фонаНовый цвет из переднего планаНовый градиентНовый импортНовый слойНовый слой с последними параметрамиНовый слой...Новая палитраНовый контур со старыми значениямиНовый контур...Новый шаблонНовые векторыНет кистей доступных для использования с этим инструментом.Фильтр не выбранВ '%s' не найдено градиентовБольше не доступенВ '%s' не найдено контуровВ буфере не найдены контурыНет шаблонов, доступных для этой операции.Нет выделения.Нет выделенной области для обводки.Без миниатюрБез выравниванияНетНет (Быстрейший)НормальноеСтандарт (128x128)ТочкиСтандартное окноНеобычный файлНедостаточно видимых слоёв для объединения. Должно быть хотя бы два.Недостаточно видимых контуров для объединения. Должно быть хотя бы два.Число используемых процессоров:Число линий сеткиЧисло слоев:_Другой...СмещениеСмещение каналаOffset DrawableСмещение слояСмещение маски слояСместить на (x/2),(y/2)Смещение:На дискеНа многопроцессорных компьютерах, если GIMP был собран с функцией --enable-mp, эта опция устанавливает, сколько процессоров GIMP может использовать одновременно.Только в памятиОткрыть как слой...НепрозрачностьНепрозрачность:Открыть изображениеОткрыть изображение как слойРасположениеОткрыть текствый файл (UTF-8)Открыть из _Интернет..Открыть _последниеОткрыть изображениеОткрыть диалог выбора кистиОткрыть диалог выбора шрифтаОткрыть диалог выбора градиентаОткрыть диалог выбора палитрыОткрыть диалог выбора шаблонаОткрыть выбранный элементНе удалось открыть '%s': +файла восстановит исходные комбинации клавиш.КлавиатураКлавиатураКлавиши быстрого доступаLTRЦвет крайней левой точки...ЛандшафтныйБольшойБольшой (256x256)Увеличенный просмотрПоследняя ошибка:СлойСлой '%s' не имеет альфа-канала. Этот слой будет размещен выше.Атрибуты слояРазмер границ слоя...Тип заливки слояМаска слоя -> ВыделениеВыделить слойРазмер слояРежим с_лояНазвание слоя:Слой невозможно опустить ниже.Cлой невозможно поднять выше.Слой уже в самом низу.Слой уже на самом верху.Слой к размеру изображенияСделать слой нижнимСлой к размеру изображенияСделать слой _верхним_Альфа-канал слояСлоиМеню слоевПараметры объединения слоевЦвет крайней левой точкиВлевоДлина:Восстанавливать последнюю сохраненную позицию окон при каждом запуске.УровниУровни для индексированных изображений не могут быть выровнены.СветлыйТолько светлоеЛинияМежстрочный +интервал:Ширина линии:Стиль линии:Стиль линий сетки.ЛинейноеCвязанный элементЗагрузитьЗагрузить кривыеЗагрузить уровниЗагрузить цвет крайней правой точки изЗагрузить значения кривых из файлаЗагрузить установки уровней из файлаЗагрузить текст из файлаЗагрузка файла предварительного просмотра...Расположение:ЛогарифмическийДлинные линииПоиск файлов данныхОпустить каналОпустить канал в низ стопкиОпустить канал вниз Опустить слойСделать слой нижнимОпустить контурСделать контур нижнимСделать контур нижнимОпустить каналОпустить канал в низ стопкиОпустить слойСделать слой нижнимОпустить контурСделать контур нижним_ЛупаМ_астерПереместить на _экран...КартаПурпурныйПурпурный:ЛупаСделать прозрачнымУправление загружаемыми модулямиСкорость муравьиной дорожки:Непрозрачность маски:Маскировать выделенные областиМаскировать невыделенные областиМатрица:Макс. глубина:Макс. размер файла предпросмотра:Максимальный размер нового изображения:Максимальное различие цветовМаксимально памяти для отката:Среднее:ИзмерительИзмерение расстояний и угловИзмерение расстояний и угловИзмерьте линейки и введите значение их длины:Медиана:СреднийСредние линииОбъединить с предыдущимОбъединить с предыдущимОбъединить слоиОбъединить палитрыОбъединить видимые слоиОбъединить видимые контурыОбъединить видимые слои...Объединить видимые слои...Объединить видимые контурыОбъединить слоиОбъединить палитрыОбъединить векторыПроцедуры сообщенийСообщение повторено %d разСообщение повторено один разСообщения перенаправлены в stderr.ПолутонаПреенести пользовательские установкиМинимальное число уровней отмен:РазноеМастерРежимРежим:Изменять выделенные цветаИзменить уровни цвета для выбранной областиИзменять все цветаРасстояние между строкамиКаталоги модулейДиспетчер модулейРасположение модуляМодулиКурсорКолесо мышиКолесо мышиПеремещениеПереместить точкиПеремещение каналаПереместить плавающее выделениеПереместить направляющуюПереместить направляющую:Переместить слойПереместить маску слояПереместить контурПереместить выделениеПеремещать текстовый слойПереместить инструмент Перемещение 'элемента Перемещение слоев и выделенных областейПереместить выделениеПереместить текущий слойПереместить текущий контурПереместить выбранный фильтр внизПереместить выбранный фильтр вверхПереместить на _экран...Перемещение: Умножение_Число цветов:На_вигацияОкно навигацииРа_змер окна навигации:НазваниеНазвание:НавигацияСоздать каналЦвет нового каналаПараметры нового каналаНовый цвет из фонаНовый цвет из переднего планаНовое изображениеНовый слойНовый контурПараметры нового контураНовый образецНовая кистьНовый каналНовый канал с последними параметрамиНовый канал...Новый цвет из фонаНовый цвет из переднего планаНовый градиентНовый импортНовый слойНовый слой с последними параметрамиНовый слой...Новая палитраНовый контур со старыми значениямиНовый контур...Новый шаблонНовые векторыНет кистей доступных для использования с этим инструментом.Фильтр не выбранВ '%s' не найдено градиентовБольше не доступенВ '%s' не найдено контуровВ буфере не найдены контурыНет шаблонов, доступных для этой операции.Нет выделения.Нет выделенной области для обводки.Без миниатюрБез выравниванияНетНет (Быстрейший)НормальноеСтандарт (128x128)ТочкиСтандартное окноНеобычный файлНедостаточно видимых слоёв для объединения. Должно быть хотя бы два.Недостаточно видимых контуров для объединения. Должно быть хотя бы два.Число используемых процессоров:Число линий сеткиЧисло слоев:_Другой...СмещениеСмещение каналаOffset DrawableСмещение слояСмещение маски слояСместить на (x/2),(y/2)Смещение:На дискеНа многопроцессорных компьютерах, если GIMP был собран с функцией --enable-mp, эта опция устанавливает, сколько процессоров GIMP может использовать одновременно.Только в памятиОткрыть как слой...НепрозрачностьНепрозрачность:ОткрытьОткрыть изображениеОткрыть изображение как слойРасположениеОткрыть текствый файл (UTF-8)Открыть из _Интернет..Открыть _последниеОткрыть изображениеОткрыть диалог выбора кистиОткрыть диалог выбора шрифтаОткрыть диалог выбора градиентаОткрыть диалог выбора палитрыОткрыть диалог выбора шаблонаОткрыть выбранный элементНе удалось открыть '%s': %sНевозможно открыть '%s': %sПараметры: -Исходное X:Исходное X:Исходная ширина:Другой (%s) ...Уровни на выходе:ПерекрытиеОшибка вызова PDB для процедуры '%s': +Исходное X:Исходное X:Исходная ширина:Другой (%s) ...ОбвестиУровни на выходе:ПерекрытиеОшибка вызова PDB для процедуры '%s': Argument #%d type mismatch (expected %s, got %s)Ошибка вызова PDB: процедура '%s' не найдена_ШаблоныВ чащах юга жил-был цитрус. Да, но фальшивый экземпляръ!РисованиеОпции рисования разделены между инструментами.Процедуры инструментов рисованияИнструмент:Режим рисованияРисование мягкими линиямиРисование резкими линиямиРисование с использованием шаблона или участка изображенияКистьПа_литрыПалитраРедактор палитрыМеню редактора палитрКаталоги палитрПалитра UIИмя палитры:Файл палитры:ПалитрыМеню палитрПроцедуры шумаШумыСинтаксический анализ '%s' ВставитьВставить буфер вВставить буфер как новыйВставить контурВ_ставить вВставить как _новоеВставить выделенный буферВставить выделенный буфер в новое изображениеВставить выбранный буфер в выделениеВставленный слойКонтурАтрибуты контураНазвание контура:Инструмент контурКонтур не может быть опущен ниже.Контур не может быть поднят выше.Контур уже в самом низу.Контур уже на самом верху.Контур -> Выделенная областьКонтур в выделенную областьКонтур Выделение %s Добавить %s Вычесть -%s ПересечьКонтур в выделенную областьКонтурыМеню контуровШаблоныКаталоги шаблоновUI шаблонаЗаливка шаблономИсходный шаблонШаблоныМеню шаблонов_КарандашКарандашСкорость рисованияПроцент:Персональный каталог GIMPПерспективаИнформация о преобразовании перспективыПерспектива...Вид действия %sВыбрать слой/направляющуюВыбрать контурВыбор _чёрной точкиПолучение цвета из изображенияВыбор _серой точкиПоказать информацию о цветеВыбор _белой точкиРазрешение в пикселях:ПикселейПикселейПикселей:Пожалуйста подождите пока будут +%s ПересечьКонтур в выделенную областьКонтурыМеню контуровШаблоныКаталоги шаблоновUI шаблонаЗаливка шаблономИсходный шаблонШаблоныМеню шаблонов_КарандашКарандашСкорость рисованияПроцент:Персональный каталог GIMPПерспективаИнформация о преобразовании перспективыПерспектива...Вид действия %sВыбрать слой/направляющуюВыбрать контурВыбор _чёрной точкиПолучение цвета из изображенияВыбор _серой точкиПоказать информацию о цветеВыбор _белой точкиРазрешение в пикселях:ПикселейПикселейПикселей:Убедитесь, что файлы меню корректно установлены.Пожалуйста подождите пока будут созданы ваши личные каталоги Gimp...Подождите пожалуйста...ДополнениеОкружение дополненийКаталоги дополненийДополнение не может открыть изображениеДополнение не может сохранить изображениеРухнуло дополнение: "%s" (%s) @@ -404,16 +408,16 @@ Эти программы разыскиваются при запуске и информация об их функциональности и mod-times кэшируются в этом файле. Этот файл предназначен только -для чтения GIMP'ом, и не должен редактироваться.МногоугольникиПортретныйПозиция: %0.6fПозицияПостеризоватьПостеризовать (Уменьшить количество цветов)Уровни постеризации:Постеризация не действует на индексированные слои.НастройкаСохранить яркостьЧувствительность к нажимуНажим:ПросмотрФайл предварительного просмотра устарелПросмотр:Предварительный просмотрРазмер при печати:Problems parsing the text parasite for layer '%s': +для чтения GIMP'ом, и не должен редактироваться.МногоугольникиПортретныйПозиция: %0.6fПозицияПостеризоватьПостеризовать (Уменьшить количество цветов)Уровни постеризации:Постеризация не действует на индексированные слои.НастройкаСохранить яркостьЧувствительность к нажимуНажим:ПросмотрФайл предварительного просмотра устарелПросмотр:Предварительный просмотрРазмер при печатиРазмер при печати:Problems parsing the text parasite for layer '%s': %s Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Процедурная база данныхПроцедурная база данныхПрогрессПсевдо-цветноеОписание:КачествоЗапросЗапрос к новым дополнениямзапрос дополнения: '%s' -Быстрая загрузкаБыстрая маскаАтрибуты быстрой маскиМеню быстрой маскиБыстрое сохранениеБыстрая маскаВыйти из GIMP?RGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGBRGB-пустоRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Показать "%s" ещё разВосстановить параметры инструментовВос_становить каналВосстановить _цветВосстановить значениеЦвет крайней правой точки...РадиальныйРадиус:Поднять каналПоднять канал на верх стопкиПоднять канал наверх Поднять слойСделать слой верхнимПоднять контурСделать контур верхнимСделать контур верхнимПоднять каналПоднять канал на верх стопкиПоднять слойСделать слой верхнимПоднять контурСделать контур верхнимРазвернуть окно с этим изображениемСделать активным если уже открытоСкоростьСкорость:Показать последний ещё разОтцентровать средние точки выделенияОтцентровать среднюю точку сегментаПерераспределить направляющие в сегментеПерераспределить направляющие в выделенномПереименовать сохраненные параметрыПовтор "%s"ВернутьЗагружается палитра '%s': +Быстрая загрузкаБыстрая маскаАтрибуты быстрой маскиМеню быстрой маскиБыстрое сохранениеБыстрая маскаВыйти из GIMP?RGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGBRGB-пустоRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLПоказать "%s" ещё разВосстановить параметры инструментовВос_становить каналВосстановить _цветВосстановить значениеЦвет крайней правой точки...РадиальныйРадиус:Поднять каналПоднять канал на верх стопкиПоднять канал наверх Поднять слойСделать слой верхнимПоднять контурСделать контур верхнимСделать контур верхнимПоднять каналПоднять канал на верх стопкиПоднять слойСделать слой верхнимПоднять контурСделать контур верхнимРазвернуть окно с этим изображениемСделать активным если уже открытоСкоростьСкорость:Показать последний ещё разОтцентровать средние точки выделенияОтцентровать среднюю точку сегментаПерераспределить направляющие в сегментеПерераспределить направляющие в выделенномПереименовать сохраненные параметрыПовтор "%s"ВернутьЗагружается палитра '%s': Неправильный компонент "Зелёный" в строке %d.Загружается палитра '%s': неправильное число столбцов в строке %d. Используется значение по умолчанию.Загружается палитра '%s': Неправильный компонент "Синий" в строке %d.Загружается палитра '%s': Неправильный компонент "Красный" в строке %d.Загружается палитра '%s': -значение RGB вне допустимого диапазона в строке %d.Действительно очистить историю отмен?Назначая эти клавиши вы отказываетесь от доступа по ним к пункту "%s".Перечитать просмотрПеречитать просмотрПрямоугольное выделениеКрасныйКрасный:ПовторитьУменьшить число цветов в изображении до указанногоПревратить изображение в двухцветное используя порогОбновить кистиОбновить градиентыОбновить палитрыОбновить шаблоныС регистрациейОбновить текущую тему.Перечитать все просмотрыПеречитать все просмотрыЗапомнить текущие инструменты, шаблоны, цвета и кисти.Remote imageУдалить каналУдалить устаревшие записиУдалить плавающее выделениеУдалить направляющуюУдалить слойУдалить шум из изображенияУдалить шум из элементаУдалить контур_Удалить элементУдалить устаревшие записиУдалить плавающее выделениеУдалить шумУдалить выбранный элементУдалить выбранный фильтр из списка активных фильтров.Не удалось удалить клавиши быстрого доступа.Переименовать каналаПереименовать слойПереименование контураПереименовать сохраненные параметрыПереименовать текстовый слойПереименование элементаОбвести контурРеорганизовать каналРеорганизовать слойРеорганизовать контурПовторить последнийПовтор:Заменить текущее выделениеСоздать копиюСделать копию сегментаСделать копию выделения градиентаСделать копию сегментаСделать копию выделенияСмещение каналаПереставить слойПеремещение векторовПеречитать список шрифтовСбросить параметрыВосстановить параметры всех инструментов...Перезагрузить все фильтрыВосстановить параметры всех фильтров...Восстановить параметры всех инструментов...Восстановить для выбранного фильтра настройки по умолчанию.Восстановить значение по умолчанию.Порядок и видимость инструментов по умолчаниюИзменение размераИзменить размер каналаИзменить размер изображенияИзменить размер слояИзменить размер контураИзменить размер текстового слояИзменить размер изображенияИзменить размер Изменять размер окна при масштабированииИзменять размер окна при изменении размера изображенияИзменить размер...Изменение разрешенияРазрешение:Конфигурирование ресурсовКонфигурирование ресурсовВосстановить параметры из...Восстановить сохраненные клавиши быстрого доступа при запуске GIMP.Создавать только прямые и углыПеревернутьВосстановитьВосстановить '%s' до '%s'?Восстановить изображениеСбой восстановления. +значение RGB вне допустимого диапазона в строке %d.ГотовДействительно очистить историю отмен?Назначая эти клавиши вы отказываетесь от доступа по ним к пункту "%s".Перечитать просмотрПеречитать просмотрПрямоугольное выделениеКрасныйКрасный:ПовторитьУменьшить число цветов в изображении до указанногоПревратить изображение в двухцветное используя порогОбновить кистиОбновить градиентыОбновить палитрыОбновить шаблоныС регистрациейОбновить текущую тему.Перечитать все просмотрыПеречитать все просмотрыЗапомнить текущие инструменты, шаблоны, цвета и кисти.Remote imageУдалить каналУдалить устаревшие записиУдалить плавающее выделениеУдалить направляющуюУдалить слойУдалить шум из изображенияУдалить шум из элементаУдалить контур_Удалить элементУдалить устаревшие записиУдалить плавающее выделениеПереименование элементаУдалить шумУдалить выбранный элементУдалить выбранный фильтр из списка активных фильтров.Не удалось удалить клавиши быстрого доступа.Переименовать каналаПереименовать слойПереименование контураПереименовать сохраненные параметрыПереименовать текстовый слойПереименование элементаОбвести контурРеорганизовать каналРеорганизовать слойРеорганизовать контурПовторить последнийПовтор:Заменить текущее выделениеСоздать копиюСделать копию сегментаСделать копию выделения градиентаСделать копию сегментаСделать копию выделенияСмещение каналаПереставить слойПеремещение векторовПеречитать список шрифтовСбросить параметрыВосстановить параметры всех инструментов...Перезагрузить все фильтрыВосстановить параметры всех фильтров...Восстановить параметры всех инструментов...Восстановить для выбранного фильтра настройки по умолчанию.Восстановить значение по умолчанию.Порядок и видимость инструментов по умолчаниюИзменение размераИзменить размер каналаИзменить размер изображенияИзменить размер слояИзменить размер контураИзменить размер текстового слояИзменить размер изображенияИзменить размер Изменять размер окна при масштабированииИзменять размер окна при изменении размера изображенияИзменить размер...Изменение разрешенияРазрешение:Конфигурирование ресурсовКонфигурирование ресурсовВосстановить параметры из...Восстановить сохраненные клавиши быстрого доступа при запуске GIMP.Создавать только прямые и углыПеревернутьВосстановитьВосстановить '%s' до '%s'?Восстановить изображениеСбой восстановления. Нет имени файла, связанного с этим изображением.Восстановление '%s' не удалось: %sЦвет крайней правой точкиВправоВращениеВращать на 90 про_тив часовойПовернуть на 90 _по часовойВращать каналВращать слойВращать контурВращать текстовый слой_Вращать на 180Вращать изображенияПоворот слоев или выделенийВращение...Информация о вращенииКругИскривлениеПоказывать сеткуУменьшение..._точек растраП_оменять местами цветаСохранить цвет крайней правой точки вВыборочное среднееОбъединять области по образцуНасыщенность:НасыщенностьСохранитьСохранить '%s' как файл POV-RayСохранить кривыеСохранить сообщения об ошибках в файлСохранить изображениеСохранить параметры устройств вводаСохранить быстрые клавиши сноваСохранить уровниСохранить параметры инструментовСохранить позицию окон_Сохранить сообщения об ошибках в файл...Сохранить выделенное в файл...Сохранить _как...Сохранить копию...Сохранить копию изображенияСохранить все ошибкиСохранить как файл POV-Ray...Сохранить как образец...Сохранить измененные клавиши быстрого доступа при выходе из GIMP.Сохранить значения кривых в файлСохранить состояние устройстваСохранить градиент как файл POV-RayСохранить установки уровней в файлСохранить параметры...Сохранить выделениеСохранить выделение в каналеСохранить '%s' перед закрытием?Сохранить положение и размеры окон при закрытии GIMP.Сохранить в каналеСохраненные параметрыСохранение '%s' @@ -423,11 +427,11 @@ копий выделенного сегментаВыбор числа создаваемых копий выделения.Выберите число равных частей на которое надо разделить сегменты в выделенииВыберите число равных частей -на которое надо разделить сегментВыделять прозрачные областиВыбрать внешний браузерВыделенная область -> КонтурВыделениеПравка выделенной областиПравка выделенной областиМаска выделенной областиПроцедуры инструментов выделенияМаска выделенной областиВыделенное в контур (Расширенные параметры)Выделенная область -> КонтурВыделенная область: Выделенная область: ДОБАВИТЬВыделенная область: ПЕРЕСЕЧЬВыделенная область: ЗАМЕНИТЬВыделенная область: ВЫЧЕСТЬЧувствительностьУстановить цвет фона вокруг изображенияУстановить цвет каналаУстановить непрозрачность каналаУстановить цветовую картуУстановить цвет фона вокруг изображенияУстановить размер холстаУстановить связь с элементомУстановить видимость элементаУстановить размеры границ слояНазвание из _текстаУстановить непрозрачность слояУстановить цвет фонаУстановить цвет переднего планаУстановить связь с элементомУстановить режим слояУстановить непрозрачность слояСохранение прозрачностиУстанавливает лимит памяти, используемый для откатов в каждом изображении. Лимит может быть превышен для использования количества откатов, указанного в настройках.Установите браузер, который должна использовать справочная система.Определяет цвет фона окна вокруг изображения, если в режиме заливки фона окна указано "Выбранный цвет".Укажите браузер, который будет использовать система помощи. По желанию можно указать полный путь или только команду для выполнения. Если команда содержит '%s', вместо этого выражения будет подставлен URL, если нет, то URL будет добавлен к команде через пробел.Устанавливает уровень интерполяции, используемый при масштабировании и подобных изменениях.Определяет, как будет отображаться прозрачность в изображении.Устанавливает минимальное количество возможных откатов. Большее количество откатов возможно до тех пор, пока не использован лимит памяти, отведенной для откатов.Определяет тип курсораУстанавливает горизонтальное разрешение монитора в точках на дюйм. При нулевом значении устанавливается системное значение.Устанавливает вертикальное разрешение монитора в точках на дюйм. При нулевом значении устанавливается системное значение.Определяет тип курсораУстанавливает размер просмотра для слоев и каналов.Устанавливает размер клеток, обозначающих прозрачность.Устанавливает размер окна навигации, находящегося в правом нижнем углу окна изображения.Устанавливает размер просмотра для истории отмен.Устанавливает размер изображений предпросмотра в диалоге открытия файла. Работает только в том случае, если включена опция предпросмотра слоев.Устанавливает местонахождение файла подкачки. Обратите внимание на то, что файл подкачки может стать очень большим, если работать с большими изображениями. Кроме того, процесс работы может стать очень медленным, если файл подкачки создан в папке, которая смонтирована поверх NFS. В этом случае, возможно, лучше всего поместить файл подкачки в /tmp.Определяет временный каталог. Здесь буду содержаться файлы, с которыми GIMP работает в данный момент. Большинство из них будут удаляться сразу после окончания работы с GIMP, однако некоторые останутся, поэтому лучше всего будет, если другие пользователи не будут иметь права просматривать этот каталог.Установите форму текста, отображающегося в строке состоянияУстановите форму текста, отображающегося в заголовке окна изображенияУказывает, надо ли создавать предпросмотр слоев и каналов. Предпросмотр слоев и каналов - приятная вещь, но эта опция может существенно замедлить работу с большими изображениями.Тип тениТениФормаФорма:По форме (угловой)По форме (ямочкой)По форме (сферический)РезкостьРезкость каналаРезкость выделенной областиИскривлениеКоэффициент искривления по X:Коэффициент искривления по X:Искривление слоев или выделенийИнформация об искривленииИскривление...Короткие линииКлавиши быстрого доступаКлавиши быстрого доступа "%s" использованы в пункте "%s" меню "%s".Показать маску слояПоказывать _линейки Показывать строку состоянияПоказывать полосы прокруткиПоказывать направляющиеПоказывать границы слояПоказывать панель менюПоказывать выделениеПоказывать контур кистиПоказать цвет переднего плана и фонаПоказывать _направляющиеПоказывать _границы слояПоказывать _панель менюПоказывать _линейки Показать используемые кисти, шаблоны и градиентыПоказать активное изображениеПоказывать _сеткуПоказывать кнопку "Справка"Показать размер изображенияПоказывать интерактивные границыПоказывать использование памятиПоказывать клавиши быстрого доступаПоказывать инструментПоказывать _выделениеПоказывать с_троку состоянияПоказывать полосы п_рокруткиПоказывать совет при следующем запуске GIMPПоказывать подсказки при запускеПоказывать по_дсказкиПоказывать масштаб в %Показывать масштабный коэффициентСжать каналСокращение выделенной областиСо_кратить окно по изображениюСократить по границе изображенияСократить выделение наСократить окно по изображениюРазмерРазмер в памяти:Размер файлов миниатюр:Размер:Пропуск '%s': неправильная версия протокола GIMP.МаленькийУменьшенный просмотрСглаживаниеСгладить краяПалецРазмазывание изображенияВыравнивание по направляющимВыравнивание по сеткеМягкий светОднотонныйИсточникЯчейкиИнтервал:Редкие точкиОсобый файлОпределяет цвет фона вокруг изображенияСкорость муравьиной дорожки в выделенной области. Значение указывается +на которое надо разделить сегментВыделять прозрачные областиВыбрать внешний браузерВыделенная область -> КонтурВыделениеПравка выделенной областиПравка выделенной областиМаска выделенной областиПроцедуры инструментов выделенияМаска выделенной областиВыделенное в контур (Расширенные параметры)Выделенная область -> КонтурВыделенная область: Выделенная область: ДОБАВИТЬВыделенная область: ПЕРЕСЕЧЬВыделенная область: ЗАМЕНИТЬВыделенная область: ВЫЧЕСТЬЧувствительностьУстановить цвет фона вокруг изображенияУстановить цвет каналаУстановить непрозрачность каналаУстановить цветовую картуУстановить цвет фона вокруг изображенияУстановить размер холстаИзменить разрешение изображенияУстановить связь с элементомУстановить видимость элементаУстановить размеры границ слояНазвание из _текстаУстановить непрозрачность слояУстановить цвет фонаУстановить цвет переднего планаУстановить связь с элементомУстановить режим слояУстановить непрозрачность слояСохранение прозрачностиУстанавливает лимит памяти, используемый для откатов в каждом изображении. Лимит может быть превышен для использования количества откатов, указанного в настройках.Установите браузер, который должна использовать справочная система.Определяет цвет фона окна вокруг изображения, если в режиме заливки фона окна указано "Выбранный цвет".Укажите браузер, который будет использовать система помощи. По желанию можно указать полный путь или только команду для выполнения. Если команда содержит '%s', вместо этого выражения будет подставлен URL, если нет, то URL будет добавлен к команде через пробел.Устанавливает уровень интерполяции, используемый при масштабировании и подобных изменениях.Определяет, как будет отображаться прозрачность в изображении.Устанавливает минимальное количество возможных откатов. Большее количество откатов возможно до тех пор, пока не использован лимит памяти, отведенной для откатов.Определяет тип курсораУстанавливает горизонтальное разрешение монитора в точках на дюйм. При нулевом значении устанавливается системное значение.Устанавливает вертикальное разрешение монитора в точках на дюйм. При нулевом значении устанавливается системное значение.Определяет тип курсораУстанавливает размер просмотра для слоев и каналов.Устанавливает размер клеток, обозначающих прозрачность.Устанавливает размер окна навигации, находящегося в правом нижнем углу окна изображения.Устанавливает размер просмотра для истории отмен.Устанавливает размер изображений предпросмотра в диалоге открытия файла. Работает только в том случае, если включена опция предпросмотра слоев.Устанавливает местонахождение файла подкачки. Обратите внимание на то, что файл подкачки может стать очень большим, если работать с большими изображениями. Кроме того, процесс работы может стать очень медленным, если файл подкачки создан в папке, которая смонтирована поверх NFS. В этом случае, возможно, лучше всего поместить файл подкачки в /tmp.Определяет временный каталог. Здесь буду содержаться файлы, с которыми GIMP работает в данный момент. Большинство из них будут удаляться сразу после окончания работы с GIMP, однако некоторые останутся, поэтому лучше всего будет, если другие пользователи не будут иметь права просматривать этот каталог.Установите форму текста, отображающегося в строке состоянияУстановите форму текста, отображающегося в заголовке окна изображенияУказывает, надо ли создавать предпросмотр слоев и каналов. Предпросмотр слоев и каналов - приятная вещь, но эта опция может существенно замедлить работу с большими изображениями.Тип тениТениФормаФорма:По форме (угловой)По форме (ямочкой)По форме (сферический)РезкостьРезкость каналаРезкость выделенной областиИскривлениеКоэффициент искривления по X:Коэффициент искривления по X:Искривление слоев или выделенийИнформация об искривленииИскривление...Короткие линииКлавиши быстрого доступаКлавиши быстрого доступа "%s" использованы в пункте "%s" меню "%s".Показать маску слояПоказывать _линейки Показывать строку состоянияПоказывать полосы прокруткиПоказывать направляющиеПоказывать границы слояПоказывать панель менюПоказывать выделениеПоказывать контур кистиПоказать цвет переднего плана и фонаПоказывать _направляющиеПоказывать _границы слояПоказывать _панель менюПоказывать _линейки Показать используемые кисти, шаблоны и градиентыПоказать активное изображениеПоказывать _сеткуПоказывать кнопку "Справка"Показать размер изображенияПоказывать интерактивные границыПоказывать использование памятиПоказывать клавиши быстрого доступаПоказывать инструментПоказывать _выделениеПоказывать с_троку состоянияПоказывать полосы п_рокруткиПоказывать совет при следующем запуске GIMPПоказывать подсказки при запускеПоказывать по_дсказкиПоказывать масштаб в %Показывать масштабный коэффициентСжать каналСокращение выделенной областиСо_кратить окно по изображениюСократить по границе изображенияСократить выделение наСократить окно по изображениюРазмерРазмер в памяти:Размер файлов миниатюр:Размер:Пропуск '%s': неправильная версия протокола GIMP.МаленькийУменьшенный просмотрСглаживаниеСгладить краяПалецРазмазывание изображенияВыравнивание по направляющимВыравнивание по сеткеМягкий светОднотонныйИсточникЯчейкиИнтервал:Редкие точкиОсобый файлОпределяет цвет фона вокруг изображенияСкорость муравьиной дорожки в выделенной области. Значение указывается в миллисекундах (чем меньше значение, тем быстрее двигается граница выделенной области).Скорость:Сфера (уменьшающаяся)Сфера (увеличивающаяся)Лучи:Спиральный (по часовой)Спиральный (по часовой)РазделитьРавномерно разделить сегмент градиентаРавномерно разделить сегменты градиентаРавномерно разделить сегментРавномерно разделить сегмент...Разделить сегмент по центруРавномерно разделить сегментыРавномерно разделить сегменты...Разделить сегменты по центрамКвадратный_Состояние и текстКаскадСтандартныйЗапуск расширенийЗапуск расширения: '%s' -Состояние:Постоянное цветноеПостоянное сероеСостояние и описаниеСостояние и текстСтанд. отклонение:ПунктирОбвести по контуруОбвести по контуру...Сжать каналОбвести по контуруОбвести выделенную областьЛинияОбвести по контуруОбвести контур с последними значениямиОбвести по контуру...Обвести выделенное с последними значениямиОбвести выделенное...Использовать один из инструментовСтиль элементов вокруг текста строки состоянияВычитаниеВычесть из текущего выделенияАдаптивная интерполяцияКаталог подкачки:_Инструменты_ТекстТекстВременный каталог:ОбразцыМеню образцовВременная процедураДополнение по образцу: '%s' -ТекстЦвет текстаТекстовый слойТекст изменененТекстовые процедурыGIMPВ Вашей установке GIMP отсутствует просмотрщик справочной системы.Действующая кисть. +Состояние:Постоянное цветноеПостоянное сероеСостояние и описаниеСостояние и текстСтанд. отклонение:ПунктирПорядковый номерОбвести по контуруОбвести по контуру...Сжать каналОбвести по контуруОбвести выделенную областьЛинияОбвести по контуруОбвести контур с последними значениямиОбвести по контуру...Обвести выделенное с последними значениямиОбвести выделенное...Использовать один из инструментовСтиль элементов вокруг текста строки состоянияВычитаниеВычесть из текущего выделенияАдаптивная интерполяцияКаталог подкачки:_Инструменты_ТекстТекстВременный каталог:ОбразцыМеню образцовВременная процедураДополнение по образцу: '%s' +ТекстЦвет текстаРедактор текстаТекстовый слойТекст изменененТекстовые процедурыGIMPВ Вашей установке GIMP отсутствует просмотрщик справочной системы.Действующая кисть. Щелкните, чтобы открыть диалог "Кисти".Действующий градиент. Щелкните, чтобы открыть диалог "Градиенты".Активное изображение. Щелкните, чтобы открыть диалог "Изображение".Действующий шаблон. @@ -484,8 +488,10 @@ Подробнее об этом смотрите GNU General Public License.Эта программа - свободная; вы можете распространять ее и/или изменять в соответствии с условиями GNU General Public License, опубликованной Free Software Foundation; в Лицензии версии 2, или (по вашему усмотрению) -любой более поздней версии.Это текствое поле ограничено %d символами.У этого инструмента нет параметров.ПорогПорог не действует на индексированные слои.Порог:Миниатюры %d %dРазмер кэша:Размер кэша:Наклон:КрошечныйЗаголовок и СостояниеВ контурРазвлечениеПереключить быструю маскуПереключить быструю маскуСлишком много сообщений об ошибках!Параметры инструментовПараметры инструментовПереключатель инструмента %s_Параметры инструментовПиктограмма инструментаПиктограмма инструмента с перекрестьемПанель инструментовМеню панели инструментовМеню панели инструментовИнструментыМеню панели инструментовТакие инструменты, как "Заливка" или "Свободное выделение" при работе используют алгоритм зернового заполнения. Зерновое заполнение начинается с изначально выбранного пиксела и продолжается до тех пор, пока разница между изначально выбранным и заполняемым пикселом не превысит определенного порога. Число, указываемое здесь, определяет этот порого по умолчанию.Про_зрачностьПреобразовать альфа-канал в маскуПреобразованиеПреобразовать каналНаправление преобразованияПреобразование слояПреобразовать контурПреобразование текстового слояПроцедуры инструментов рисованияПреобразование слояПреобразовать контурПреобразовать выделениеПреобразованиеПроцедуры преобразованияПреобразование...ПереводПрозрачностьТип прозрачности:Треугольная волнаПолноцветноеТипТип %sНажмите сочетание клавишНажмите сочетание клавиш или Backspace для отменыНе удалось добавить маску слоя, так как у слоя уже есть маска.Не удалось вырезать/скопировать из-за того, -что выделенная область пуста.Невозможно открыть тестовый файл подкачки. Чтобы избежать потерю данных, проверте расположение и права на файл подкачки в настройках. (сейчас "%s").Невозможно открыть файл подкачки. GIMP использовал всю доступную оперативную память и не может использовать файл подкачки. Ваше изображение может быть утеряно. Сохраните его, перезапустите GIMP и проверьте пути к файлу подкачки в настройках.Не удалось вызвать %s . Возможно, запрашиваемое дополнение рухнуло.НеопределеноОтменитьИстория отменИстория отменЕдиницыНеизвестный Неизвестный тип файлаВыгрузитьБезымянныйБезымянноеИспользовать "Точка за точкой" по умолчаниюИспользовать быстрые клавишиИспользовать внешний просмотрщикИспользовать все видимые слои при сокращении выделенияИспользовать черно-белую (1-бит) палитруИспользование цвета из градиентаИспользовать свою палитру:Использовать информационное окноИспользовать оптимизированную для WWW палитруФайл регистрации установкиПользовательский интерфейсВспомогательноеЯркостьЯркостьРежим векторовВерсия %s создана для ВасВерсия:ВертикальноеСмещение по вертикали для первой линии сетки. Значение может быть отрицательным.Расстояние между вертикальными линиямиОчень большойОчень маленькийПросмотрПросмотр в виде _таблицы_Просмотр в виде спискаПросмотр в виде таблицыПросмотр в виде спискаОптический класс:Оптическая глубина:Внимание: Не удалось загрузить данные из: +любой более поздней версии.Это текствое поле ограничено %d символами.У этого инструмента нет параметров.Окно содержит %d открытых закладок. Закрытие окна приведет к их закрытию.ПорогПорог не действует на индексированные слои.Порог:Миниатюры %d %dРазмер кэша:Размер кэша:Наклон:КрошечныйЗаголовок и СостояниеВ контурЧтобы редактировать клавишу быстрого доступа, нажмите на соответсвующей строке и +введите новое сочетание клавиш. Чтобы удалить клавишу быстрого доступа нажмите Backspace.РазвлечениеПереключить быструю маскуПереключить быструю маскуСлишком много сообщений об ошибках!Параметры инструментовПараметры инструментовПереключатель инструмента %s_Параметры инструментовПиктограмма инструментаПиктограмма инструмента с перекрестьемПанель инструментовМеню панели инструментовМеню панели инструментовИнструментыМеню панели инструментовТакие инструменты, как "Заливка" или "Свободное выделение" при работе используют алгоритм зернового заполнения. Зерновое заполнение начинается с изначально выбранного пиксела и продолжается до тех пор, пока разница между изначально выбранным и заполняемым пикселом не превысит определенного порога. Число, указываемое здесь, определяет этот порого по умолчанию.Про_зрачностьПреобразовать альфа-канал в маскуПреобразованиеПреобразовать каналНаправление преобразованияПреобразование слояПреобразовать контурПреобразование текстового слояПроцедуры инструментов рисованияПреобразование слояПреобразовать контурПреобразовать выделениеПреобразованиеПроцедуры преобразованияПреобразование...ПереводПрозрачностьТип прозрачности:Треугольная волнаПолноцветноеТипТип %sНажмите сочетание клавишНажмите сочетание клавиш или Backspace для отменыНе удалось добавить маску слоя, так как у слоя уже есть маска.Не удалось вырезать/скопировать из-за того, +что выделенная область пуста.Невозможно открыть тестовый файл подкачки. Чтобы избежать потерю данных, проверте расположение и права на файл подкачки в настройках. (сейчас "%s").Невозможно открыть файл подкачки. GIMP использовал всю доступную оперативную память и не может использовать файл подкачки. Ваше изображение может быть утеряно. Сохраните его, перезапустите GIMP и проверьте пути к файлу подкачки в настройках.Не удалось вызвать %s . Возможно, запрашиваемое дополнение рухнуло.НеопределеноОтменитьИстория отменИстория отменЕдиницыНеизвестный Неизвестный тип файлаНеизвестный тип файла палитры: +%sВыгрузитьБезымянныйБезымянноеИспользовать "Точка за точкой" по умолчаниюИспользовать быстрые клавишиИспользовать внешний просмотрщикИспользовать все видимые слои при сокращении выделенияИспользовать черно-белую (1-бит) палитруИспользование цвета из градиентаИспользовать свою палитру:Использовать информационное окноИспользовать оптимизированную для WWW палитруФайл регистрации установкиПользовательский интерфейсВспомогательноеЯркостьЯркостьРежим векторовВерсия %s создана для ВасВерсия:ВертикальноеСмещение по вертикали для первой линии сетки. Значение может быть отрицательным.Расстояние между вертикальными линиямиОчень большойОчень маленькийПросмотрПросмотр в виде _таблицы_Просмотр в виде спискаПросмотр в виде таблицыПросмотр в виде спискаОптический класс:Оптическая глубина:Внимание: Не удалось загрузить данные из: %sВнимание:Не удалось сохранить: @@ -497,5 +503,5 @@ вместе с этой программой; если этого не произошло, напишите в Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Надо перезапустить GIMP, чтобы -подействовали следующие изменения:При следующем запуске GIMP для устройств ввода будут использованы настройки по умолчанию.При следующем запуске GIMP будут использованы клавиши быстрого доступа по умолчанию.Правила масштабирования и изменения размераМасштаб 1:1Увеличить до размера окнаУвеличение масштабаУменьшение масштабаМасштабМасштаб:Увеличить до размера окнаУвеличение масштабаУменьшение масштабаВернуть к размеру окнаМасштаб: %d:1При изменении размера окна изменять размер изображенияУвеличение масштабаИзменение масштабаУменьшение масштабаМасштаб:[Основное изображение]О прог_рамме_ЗахватитьДобавить цвет из фонаДобавить цвет из основногоДо_бавить закладкуДобавить к выделениюРасширенные параметры_АэрографВсеПрикрепить слойАнтиалиасингПараметры вращения...Имитация_ПерспективаАвтоBЦвет фонаЦвет фона:_Черный (Абсолютно прозрачный)Функция смешивания для сегментаФункция смешения для выделения_РазмываниеЯркость:Кисти:_Кисти_Кисти, шаблоны и градиентыЗаливка_БуферПо _цветуВыделение по цветуCВид начала:_Каналы_Очистить сообщения об ошибкахО_чистить историю отмен_ШтампЗакрыть_Закрыть закладкуОблакаИнструменты цвета_ЦветНастроить цвет и непрозрачность..._КонтекстКонтекстная помощь_Копировать_Скопировать из буфера с именемСоздать образец из изображения...Ка_дрировать и изменить размерКа_дрироватьКривыеКривые...Темный_Цвета по умолчанию_Удалить кистьУдалить буферУдалить каналУдалить цвет_Удалить градиент...Удалить изображение_Удалить слой_Удалить палитру...Удалить контур_Удалить шаблон...Удалить параметрыУдалить сегментУдалить выделениеУдалить образец_Обесцвечивание_Выбрать закладку_Состояние устройства_Диалоги_Отменить измененияУдалить текстовую информациюИскаженияТочка за точкойСо_здать копию_ПравкаПравка кисти..._Правка атрибутов канала..._Правка цвета..._Правка градиента...Правка атрибутов слоя..._Правка палитры...Правка атрибутов контура..._Правка шаблона...Редактировать образец...Выделение _эллипсаВключить пред. _просмотр слоев и каналов_Громадный_Выравнивание_ЛастикЦвет пер.плана_ФайлФон:Изображение к размеру окнаСвести изображение_ЗеркалоОтразить сегментОтразить выделениеПлавающее_Шрифт_ШрифтыЦвет переднего плана:С_вободное выделениеGОбщиеГ_игантскийГрадиент_ГрадиентГрадации _серогоКопия слоя в оттенках _серогоУвеличение..._Направляющая_Жесткость_СправкаГоризонтальная:Тон:_Огромный_ПиктограммаПиктограмма:И_зображение_ИзображенияИмпортИмпортировать палитру...Ин_дексированное...Ин_формационное окноПересечь с выделением_ИнвертированиеВид угла:БольшойСлой_Слои_Слои, каналы и контурыКрайней левой точкиСоседней слева к крайней правой точке_Уровни...СветлыйСветовые эффектыОсветление:_Стиль линии:ЛинейнаяСвязаныйЗагрузить цвет крайней левой изОпустить каналОпустить слойОпустить контурMВручнуюКарта_Маска_Маска -> Выделенная область_Макс. число цветов:_ИзмерительСреднийОбъединить палитры...Объединить импортированные контурыИспользовать параметры из GIMP 2.0_Разн. инструментыОстрота скосов:Ре_жим_Диспетчер модулей_ПеремещениеНазвание:Природа_Новая кисть_Новый канал_Новый канал..._Новый элемент..._Новый градиент_Новый слой_Новый слой...Новая палитра_Новый контурНовый контур..._Новый шаблонНовый образец...Новое окно_Новый..._След. советШумСнять_Смещение_Непрозрачность_Открыть изображение_Открыть..._Цвет фонаИнструменты рисования_Кисть_Палитра_Вставить_Вставить буфер_Вставить из буфера с именем...Ко_нтурыШаблоныПе_рспектива_Постеризовать..._НастройкаПредварительный ПросмотрРазмер пред._просмотра_Пред. советСвойстваВключить быструю маскуВ_ыходR_RGB_РадиусПоднять канал_Поднять слойПоднять контурПоднять окна_Развернуть или открыть изображениеНазначитьПр_ямоугольное выделениеПовто_рПовторить %sОбновить кистиО_бновить градиентыО_бновить палитры_Обновить шаблоныРендеринг_ЗаменитьСделать копию сегмента...Сделать копию выделения...Перечитать список шрифтовПорядок/видимость по умолчаниюВосстановить параметры устройств ввода по умолчанию_Восстанавливать сохранённые быстрые клавиши при запускеВосстанавить позицию окон по умолчаниюЗагрузить параметры изЦвет крайней правой точкиСоседней справа к крайней левой точке_ВращениеНасыщенность:_СохранитьСохранить цвет крайней левой вСохранить параметры вСохранять параметры устройств ввода при выходе_Сохранять быстрые клавиши при выходеСохранять позицию окон при выходе_МасштабМас_штабировать...Масштабировать слой...Масштабировать к размеру изображения_Выделение_ВыделениеП_равка выделенной областиИнструменты выделения_ФормаРе_зкостьПоказывать выделениеПоказывать на панелиСинусоидаМаленькийПале_цДистанция "прилипания"Обвести выделенноеОбвести выделенное...Вычесть из выделенияСтиль _закладок_Образцы:_Образцы_ТекстПоро_г...Крошечный_Совет дня_Инструменты_ИнструментыП_реобразовать альфа-канал слояПре_образованиеИнструменты преобразования_ОтменаОтменить %sВертикальная:ПросмотрВидимыйВебИспользуемая программа просмотра справки:_Белый (Абсолютно непрозрачный)_Баланс белого_Ширина:Залить изображениемРазрешение по X:X:Расш.YРазрешение по Y:Y:МасштабМасштаб (%s)цветакопияdpiдля двоичного знака ожидалось 'yes' или 'no' %s, получено'%s' неисправимая ошибка лекс.анализаградации серогоградации серого-пустодюймдюймыиндексированноеиндексированное-пустонедопустимая строка UTF-8недопустимое значение '%ld' для пиктограммынедопустимое значение '%ld' для знака %sнедопустимое значение '%s' для пиктограммынедопустимое значение '%s' для знака%sмиллиметрмиллиметрыМинутаn/aпроцентпикапикиточка растраточек растрапикселей/%aпикселей/%sпунктпунктыСекундаtips-locale:ruAnatoly A. Yakushin +подействовали следующие изменения:Установка GIMP не была завершена:При следующем запуске GIMP для устройств ввода будут использованы настройки по умолчанию.При следующем запуске GIMP будут использованы клавиши быстрого доступа по умолчанию.При следующем запуске GIMP будет использовано расположение окон по умолчанию.Правила масштабирования и изменения размераМасштаб 1:1Увеличить до размера окнаУвеличение масштабаУменьшение масштабаМасштабМасштаб:Увеличить до размера окнаУвеличение масштабаУменьшение масштабаВернуть к размеру окнаМасштаб: %d:1При изменении размера окна изменять размер изображенияУвеличение масштабаИзменение масштабаУменьшение масштабаМасштаб:[Основное изображение]О прог_рамме_ЗахватитьДобавить цвет из фонаДобавить цвет из основногоДо_бавить закладкуДобавить к выделениюРасширенные параметры_АэрографВсеПрикрепить слойАнтиалиасингПараметры вращения...Имитация_ПерспективаАвтоBЦвет фонаЦвет фона:_Черный (Абсолютно прозрачный)Функция смешивания для сегментаФункция смешения для выделения_РазмываниеЯркость:Кисти:_Кисти_Кисти, шаблоны и градиентыЗаливка_БуферПо _цветуВыделение по цветуCВид начала:_Каналы_Очистить сообщения об ошибкахО_чистить историю отмен_ШтампЗакрыть_Закрыть закладкуОблакаИнструменты цвета_ЦветНастроить цвет и непрозрачность..._КонтекстКонтекстная помощь_Копировать_Скопировать из буфера с именемСоздать образец из изображения...Ка_дрировать и изменить размерКа_дрироватьКривыеКривые...Темный_Цвета по умолчанию_Удалить кистьУдалить буферУдалить каналУдалить цвет_Удалить градиент...Удалить изображение_Удалить слой_Удалить палитру...Удалить контур_Удалить шаблон...Удалить параметрыУдалить сегментУдалить выделениеУдалить образец_Обесцвечивание_Выбрать закладку_Состояние устройства_Диалоги_Отменить измененияУдалить текстовую информациюИскаженияТочка за точкойСо_здать копию_ПравкаПравка кисти..._Правка атрибутов канала..._Правка цвета..._Правка градиента...Правка атрибутов слоя..._Правка палитры...Правка атрибутов контура..._Правка шаблона...Редактировать образец...Выделение _эллипсаВключить пред. _просмотр слоев и каналов_Громадный_Выравнивание_ЛастикЦвет пер.плана_ФайлФон:Изображение к высоте окнаСвести изображение_ЗеркалоОтразить сегментОтразить выделениеПлавающее_Шрифт_ШрифтыЦвет переднего плана:С_вободное выделениеGОбщиеГ_игантскийГрадиент_ГрадиентГрадации _серогоКопия слоя в оттенках _серогоУвеличение..._Направляющая_Жесткость_СправкаГоризонтальная:Тон:_Огромный_ПиктограммаПиктограмма:И_зображение_ИзображенияИмпортИмпортировать палитру...Ин_дексированное...Ин_формационное окноПересечь с выделением_ИнвертированиеВид угла:БольшойСлой_Слои_Слои, каналы и контурыКрайней левой точкиСоседней слева к крайней правой точке_Уровни...СветлыйСветовые эффектыОсветление:_Стиль линии:ЛинейнаяСвязаныйЗагрузить цвет крайней левой изОпустить каналОпустить слойОпустить контурMВручнуюКарта_Маска_Маска -> Выделенная область_Макс. число цветов:_ИзмерительСреднийОбъединить палитры...Объединить импортированные контурыИспользовать параметры из GIMP 2.0_Разн. инструментыОстрота скосов:Ре_жим_Диспетчер модулей_ПеремещениеНазвание:Природа_Новая кисть_Новый канал_Новый канал..._Новый элемент..._Новый градиент_Новый слой_Новый слой...Новая палитра_Новый контурНовый контур..._Новый шаблонНовый образец...Новое окно_Новый..._След. советШумСнять_Смещение_Непрозрачность_Открыть изображение_Открыть..._Цвет фонаИнструменты рисования_Кисть_Палитра_Вставить_Вставить буфер_Вставить из буфера с именем...Ко_нтурыШаблоныПе_рспектива_Постеризовать..._НастройкаПредварительный ПросмотрРазмер пред._просмотра_Пред. советРазмер при печати...СвойстваВключить быструю маскуВ_ыходR_RGB_РадиусПоднять канал_Поднять слойПоднять контурПоднять окна_Развернуть или открыть изображениеНазначитьПр_ямоугольное выделениеПовто_рПовторить %sОбновить кистиО_бновить градиентыО_бновить палитры_Обновить шаблоны_Удалить неиспользуемые цвета из окончательной палитрыРендеринг_ЗаменитьСделать копию сегмента...Сделать копию выделения...Перечитать список шрифтовПорядок/видимость по умолчаниюВосстановить параметры устройств ввода по умолчанию_Восстанавливать сохранённые быстрые клавиши при запускеВосстанавить позицию окон по умолчаниюЗагрузить параметры изЦвет крайней правой точкиСоседней справа к крайней левой точке_ВращениеНасыщенность:_СохранитьСохранить цвет крайней левой вСохранить параметры вСохранять параметры устройств ввода при выходе_Сохранять быстрые клавиши при выходеСохранять позицию окон при выходе_МасштабМас_штабировать...Масштабировать слой...Масштабировать к размеру изображения_Выделение_ВыделениеП_равка выделенной областиИнструменты выделения_ФормаРе_зкостьПоказывать выделениеПоказывать на панелиСинусоидаМаленькийПале_цДистанция "прилипания"Обвести выделенноеОбвести выделенное...Вычесть из выделенияСтиль _закладок_Образцы:_Образцы_ТекстПоро_г...Крошечный_Совет дня_Инструменты_ИнструментыП_реобразовать альфа-канал слояПре_образованиеИнструменты преобразования_ОтменаОтменить %sВертикальная:ПросмотрВидимыйВебИспользуемая программа просмотра справки:_Белый (Абсолютно непрозрачный)_Баланс белого_Ширина:Залить изображениемРазрешение по X:X:Расш.YРазрешение по Y:Y:МасштабМасштаб (%s)цветакопияdpiдля двоичного знака ожидалось 'yes' или 'no' %s, получено'%s' неисправимая ошибка лекс.анализаградации серогоградации серого-пустодюймдюймыиндексированноеиндексированное-пустонедопустимая строка UTF-8недопустимое значение '%ld' для пиктограммынедопустимое значение '%ld' для знака %sнедопустимое значение '%s' для пиктограммынедопустимое значение '%s' для знака%sмиллиметрмиллиметрыМинутаn/aпроцентпикапикиточка растраточек растрапикселей/%aпикселей/%sпунктпунктыСекундаtips-locale:ruAnatoly A. Yakushin Roxana Chernogolovaзначение для знака %s не является допустимой строкой UTF-8сейчас происходит синтаксический анализ %s: %s \ No newline at end of file diff -uraN gimp-2.2.6/po/ru.po gimp-2.2.7/po/ru.po --- gimp-2.2.6/po/ru.po 2005-01-22 17:33:09.000000000 +0100 +++ gimp-2.2.7/po/ru.po 2005-04-25 18:22:54.000000000 +0200 @@ -1,3 +1,4 @@ +# translation of ru.po to russian # translation of gimp.HEAD.22.po to russian # translation of gimp.HEAD.1610.po to russian # translation of gimp.MAVKA.po to russian @@ -7,19 +8,19 @@ # translation of @GIMP 1.3@.po to @RU@ # translation of @GIMP@.po to @RU@ # translation of gimp.po to russian -# Copyright (C) 1999-2002,2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 1999-2002,2003, 2004, 2005 Free Software Foundation, Inc. # Valek Filippov , 1999-2002. # Anatoly A. Yakushin , 2003, 2004. -# Roxana Chernogolova , 2003, 2004. -# AnatolyA. Yakushin , 2004. +# AnatolyA. Yakushin , 2004, 2005. +# Roxana Chernogolova , 2003, 2004, 2005. # msgid "" msgstr "" -"Project-Id-Version: gimp.HEAD.ru\n" +"Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-01-22 17:32+0100\n" -"PO-Revision-Date: 2004-11-23 14:55+0300\n" -"Last-Translator: Roxana Chernogolova \n" +"POT-Creation-Date: 2005-04-25 00:38+0400\n" +"PO-Revision-Date: 2005-04-25 00:39+0400\n" +"Last-Translator: AnatolyA. Yakushin \n" "Language-Team: russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,8 +59,7 @@ #: app/batch.c:84 app/batch.c:101 #, c-format msgid "The batch interpreter '%s' is not available, batch mode disabled." -msgstr "" -"Интерпретатор '%s' недоступен, использование командного режима невозможно." +msgstr "Интерпретатор '%s' недоступен, использование командного режима невозможно." #: app/main.c:211 msgid "" @@ -155,8 +155,7 @@ #: app/main.c:522 msgid " --session Use an alternate sessionrc file.\n" -msgstr "" -" --session Использовать альтернативный файл sessionrc.\n" +msgstr " --session Использовать альтернативный файл sessionrc.\n" #: app/main.c:523 msgid " -g, --gimprc Use an alternate gimprc file.\n" @@ -169,10 +168,8 @@ "gimprc.\n" #: app/main.c:525 -msgid "" -" --dump-gimprc Output a gimprc file with default settings.\n" -msgstr "" -" --dump-gimprc ПОказать файл gimprc с параметрами по умолчанию.\n" +msgid " --dump-gimprc Output a gimprc file with default settings.\n" +msgstr " --dump-gimprc ПОказать файл gimprc с параметрами по умолчанию.\n" #: app/main.c:526 msgid "" @@ -183,8 +180,7 @@ "диалоговых окон.\n" #: app/main.c:527 -msgid "" -" --debug-handlers Enable non-fatal debugging signal handlers.\n" +msgid " --debug-handlers Enable non-fatal debugging signal handlers.\n" msgstr "" " --debug-handlers Разрешить отладку обработчиков сигналов для " "нефатальных сигналов.\n" @@ -246,148 +242,147 @@ "значение переменной окружения 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/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 "Буферы" -#: app/actions/actions.c:99 app/dialogs/dialogs.c:163 +#: app/actions/actions.c:100 app/dialogs/dialogs.c:163 msgid "Channels" msgstr "Каналы" -#: app/actions/actions.c:102 +#: app/actions/actions.c:103 msgid "Colormap Editor" 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 "Контекст" -#: app/actions/actions.c:108 +#: app/actions/actions.c:109 msgid "Debug" 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 "Панель" -#: 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 "Drawable" -#: 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 "Файл" #. initialize the list of gimp fonts -#: app/actions/actions.c:132 app/core/gimp.c:872 app/dialogs/dialogs.c:146 +#: 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/dialogs/dialogs.c:142 +#: 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/dialogs/dialogs.c:144 +#: 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/dialogs/dialogs.c:140 +#: 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 "Шаблоны" -#: 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 "Быстрая маска" -#: 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/dialogs/dialogs.c:154 +#: app/actions/actions.c:172 app/core/gimp.c:880 app/dialogs/dialogs.c:154 msgid "Templates" msgstr "Образцы" -#: app/actions/actions.c:174 -#, fuzzy +#: app/actions/actions.c:175 msgid "Text Editor" -msgstr "Редактор текста GIMP" +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 "Контуры" -#: app/actions/actions.c:186 +#: app/actions/actions.c:187 msgid "View" msgstr "Просмотр" @@ -511,7 +506,7 @@ msgid "_Delete Channel" msgstr "Удалить канал" -#: app/actions/channels-actions.c:73 app/core/core-enums.c:1089 +#: app/actions/channels-actions.c:73 app/core/core-enums.c:1091 msgid "Delete channel" msgstr "Удалить канал" @@ -752,8 +747,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 "" -"Вы уверены в том, что хотите удалить '%s' из списка изображений и с диска?" +msgstr "Вы уверены в том, что хотите удалить '%s' из списка изображений и с диска?" #: app/actions/dialogs-actions.c:38 msgid "_Dialogs" @@ -1045,7 +1039,7 @@ #: app/actions/documents-commands.c:251 app/actions/file-commands.c:170 #: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 -#: app/dialogs/file-open-location-dialog.c:193 +#: app/dialogs/file-open-location-dialog.c:195 #: app/display/gimpdisplayshell-dnd.c:334 app/widgets/gimplayertreeview.c:804 #: app/widgets/gimptoolbox-dnd.c:125 #, c-format @@ -1165,9 +1159,8 @@ #. GIMP_STOCK_COPY_VISIBLE, #: app/actions/edit-actions.c:93 -#, fuzzy msgid "Copy _Visible" -msgstr "Видимый" +msgstr "Скопировать видимое" #: app/actions/edit-actions.c:98 msgid "_Paste" @@ -1344,7 +1337,7 @@ msgid "_Quit" msgstr "В_ыход" -#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:281 +#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:282 #, c-format msgid "" "Saving '%s' failed:\n" @@ -1514,7 +1507,7 @@ #: 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 msgid "_RGB" @@ -1823,9 +1816,8 @@ msgstr "По размеру слоев" #: app/actions/image-actions.c:85 -#, fuzzy msgid "_Print Size..." -msgstr "Размер при печати:" +msgstr "Размер при печати..." #: app/actions/image-actions.c:90 msgid "_Scale Image..." @@ -1868,7 +1860,6 @@ msgstr "Изменить размер..." #: app/actions/image-commands.c:242 -#, fuzzy msgid "Set Image Print Resolution" msgstr "Изменить разрешение изображения" @@ -1889,9 +1880,8 @@ "что выделенная область пуста." #: app/actions/image-commands.c:484 -#, fuzzy msgid "Change Print Size" -msgstr "Размер при печати:" +msgstr "Изменить размер для печати" #: app/actions/image-commands.c:508 app/core/gimpimage-scale.c:71 #: app/dialogs/image-scale-dialog.c:91 @@ -2005,7 +1995,7 @@ 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 "Удалить слой" @@ -2680,14 +2670,12 @@ #: app/actions/templates-commands.c:243 #, c-format -msgid "" -"Are you sure you want to delete template '%s' from the list and from disk?" +msgid "Are you sure you want to delete template '%s' from the list and from disk?" msgstr "Вы уверены в том, что хотите удалить образец '%s' из списка и с диска?" #: app/actions/text-editor-actions.c:44 -#, fuzzy msgid "Open" -msgstr "_Открыть..." +msgstr "Открыть" #: app/actions/text-editor-actions.c:45 msgid "Load text from file" @@ -2703,7 +2691,7 @@ #: app/actions/text-editor-actions.c:59 msgid "LTR" -msgstr "" +msgstr "LTR" #: app/actions/text-editor-actions.c:60 app/text/text-enums.c:51 msgid "From left to right" @@ -2711,7 +2699,7 @@ #: app/actions/text-editor-actions.c:65 msgid "RTL" -msgstr "" +msgstr "RTL" #: app/actions/text-editor-actions.c:66 app/text/text-enums.c:52 msgid "From right to left" @@ -2799,8 +2787,7 @@ #: 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" @@ -2966,7 +2953,7 @@ msgid "Path to Sele_ction" msgstr "Контур -> Выделенная область" -#: app/actions/vectors-actions.c:163 app/tools/gimpvectortool.c:1893 +#: app/actions/vectors-actions.c:163 app/tools/gimpvectortool.c:1903 msgid "Path to selection" msgstr "Контур в выделенную область" @@ -3015,7 +3002,7 @@ msgid "Path to Selection" 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 "Обвести по контуру" @@ -3038,19 +3025,19 @@ #: app/actions/view-actions.c:78 msgid "_Fit Image in Window" -msgstr "Изображение к размеру окна" +msgstr "Изображение к высоте окна" #: app/actions/view-actions.c:79 msgid "Fit image in window" -msgstr "Изображение к размеру окна" +msgstr "Изображение к высоте окна" #: app/actions/view-actions.c:84 msgid "Fit Image to Window" -msgstr "Изображение к размеру окна" +msgstr "Изображение к ширине окна" #: app/actions/view-actions.c:85 msgid "Fit image to window" -msgstr "Изображение к размеру окна" +msgstr "Изображение к ширине окна" #: app/actions/view-actions.c:90 msgid "_Info Window" @@ -3469,8 +3456,7 @@ msgid "" "The window type hint that is set on dock windows. This may affect the way " "your window manager decorates and handles dock windows." -msgstr "" -"От этой настройки зависит то, какой вид придаст оконный менеджер панелям." +msgstr "От этой настройки зависит то, какой вид придаст оконный менеджер панелям." #: app/config/gimprc-blurbs.h:121 msgid "When enabled, the selected brush will be used for all tools." @@ -3511,15 +3497,13 @@ "масштабе 1:1." #: app/config/gimprc-blurbs.h:167 -msgid "" -"Install a private colormap; might be useful on 8-bit (256 colors) displays." +msgid "Install a private colormap; might be useful on 8-bit (256 colors) displays." msgstr "" "Установить свою цветовую карту может быть полезно при работе с 8-битными " "(256 цветов) дисплеями." #: app/config/gimprc-blurbs.h:170 -msgid "" -"Sets the level of interpolation used for scaling and other transformations." +msgid "Sets the level of interpolation used for scaling and other transformations." msgstr "" "Устанавливает уровень интерполяции, используемый при масштабировании и " "подобных изменениях." @@ -3650,8 +3634,7 @@ msgstr "Восстанавливать последнюю сохраненную позицию окон при каждом запуске." #: app/config/gimprc-blurbs.h:265 -msgid "" -"Remember the current tool, pattern, color, and brush across GIMP sessions." +msgid "Remember the current tool, pattern, color, and brush across GIMP sessions." msgstr "Запомнить текущие инструменты, шаблоны, цвета и кисти." #: app/config/gimprc-blurbs.h:269 @@ -4175,11 +4158,11 @@ #: app/core/core-enums.c:604 msgid "Stock ID" -msgstr "" +msgstr "Порядковый номер" #: app/core/core-enums.c:605 msgid "Inline pixbuf" -msgstr "" +msgstr "Буфер изображений" #: app/core/core-enums.c:606 msgid "Image file" @@ -4269,249 +4252,253 @@ 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 +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 "Cвязанный элемент" -#: 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/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 "Текст" -#: 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 "FS в слой" -#: app/core/core-enums.c:1097 +#: app/core/core-enums.c:1099 msgid "FS rigor" msgstr "FS строго" -#: app/core/core-enums.c:1098 +#: app/core/core-enums.c:1100 msgid "FS relax" msgstr "FS мягко" -#: 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 "Невозможно отменить" @@ -4595,19 +4582,19 @@ msgstr "Невозможно прочесть %d байт из '%s': %s" #: app/core/gimpbrush.c:554 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Width = 0." -msgstr "Неисправимая ошибка разбора файла кисти '%s': неизвестная глубина %d." +msgstr "Неисправимая ошибка разбора файла кисти '%s': Ширина = 0 " #: app/core/gimpbrush.c:563 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Height = 0." -msgstr "Неисправимая ошибка разбора файла кисти '%s': файл повреждён." +msgstr "Неисправимая ошибка разбора файла кисти '%s': Высота = 0." #: app/core/gimpbrush.c:572 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Bytes = 0." -msgstr "Неисправимая ошибка разбора файла кисти '%s': файл повреждён." +msgstr "Неисправимая ошибка разбора файла кисти '%s': Размер = 0." #: app/core/gimpbrush.c:596 #, c-format @@ -4654,14 +4641,12 @@ #: app/core/gimpbrushgenerated.c:630 #, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush version." -msgstr "" -"Неисправимая ошибка разбора файла кисти '%s': неизвестная версия кисти GIMP." +msgstr "Неисправимая ошибка разбора файла кисти '%s': неизвестная версия кисти GIMP." #: app/core/gimpbrushgenerated.c:669 #, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush shape." -msgstr "" -"Неисправимая ошибка разбора файла кисти '%s': неизвестная версия кисти GIMP." +msgstr "Неисправимая ошибка разбора файла кисти '%s': неизвестная версия кисти GIMP." #: app/core/gimpbrushgenerated.c:750 #, c-format @@ -4892,8 +4877,7 @@ #: app/core/gimpgradient-load.c:72 #, c-format msgid "Fatal parse error in gradient file '%s': Not a GIMP gradient file." -msgstr "" -"Неисправимая ошибка разбора файла градиента '%s': это не файл градиента GIMP." +msgstr "Неисправимая ошибка разбора файла градиента '%s': это не файл градиента GIMP." #: app/core/gimpgradient-load.c:87 #, c-format @@ -4914,6 +4898,8 @@ #, c-format msgid "Gradient file '%s' is corrupt: Segments do not span the range 0-1." msgstr "" +"Файл градиента '%s' поврежден: сегмент не укладывается в промежуток от 0 до " +"1." #: app/core/gimpgradient-load.c:281 #, c-format @@ -4934,8 +4920,7 @@ msgstr "Цвет переднего плана сетки" #: app/core/gimpgrid.c:139 -msgid "" -"The background color of the grid; only used in double dashed line style." +msgid "The background color of the grid; only used in double dashed line style." msgstr "Цвет фона сетки (для стиля \"Двойной пунктир\")" #: app/core/gimpgrid.c:145 @@ -4947,8 +4932,7 @@ msgstr "Расстояние между вертикальными линиями" #: app/core/gimpgrid.c:159 -msgid "" -"Horizontal offset of the first grid line; this may be a negative number." +msgid "Horizontal offset of the first grid line; this may be a negative number." msgstr "" "Смещение по горизонтали для первой линии сетки. Значение может быть " "отрицательным." @@ -4971,23 +4955,23 @@ msgid "Add Color to Colormap" msgstr "Добавить цвет в цветовую карту" -#: app/core/gimpimage-convert.c:788 +#: app/core/gimpimage-convert.c:789 msgid "Convert Image to RGB" msgstr "Преобразовать изображение в RGB" -#: app/core/gimpimage-convert.c:792 +#: app/core/gimpimage-convert.c:793 msgid "Convert Image to Grayscale" msgstr "Преобразовать изображение в Градации серого" -#: app/core/gimpimage-convert.c:796 +#: app/core/gimpimage-convert.c:797 msgid "Convert Image to Indexed" msgstr "Преобразовать изображение в индексированное" -#: app/core/gimpimage-convert.c:875 +#: app/core/gimpimage-convert.c:879 msgid "Converting to indexed (stage 2)..." msgstr "Преобразовать в индексированное (2 этап)" -#: app/core/gimpimage-convert.c:919 +#: app/core/gimpimage-convert.c:923 msgid "Converting to indexed (stage 3)..." msgstr "Преобразовать в индексированное (3 этап)..." @@ -5041,8 +5025,7 @@ #: app/core/gimpimage-merge.c:580 msgid "Not enough visible paths for a merge. There must be at least two." -msgstr "" -"Недостаточно видимых контуров для объединения. Должно быть хотя бы два." +msgstr "Недостаточно видимых контуров для объединения. Должно быть хотя бы два." #: app/core/gimpimage-qmask.c:67 msgid "Enable Quick Mask" @@ -5077,128 +5060,128 @@ msgid "Add Layer" msgstr "Добавить слой" -#: app/core/gimpimage.c:2745 +#: app/core/gimpimage.c:2742 app/core/gimpimage.c:2755 msgid "Remove Layer" msgstr "Удалить слой" -#: app/core/gimpimage.c:2816 +#: app/core/gimpimage.c:2829 msgid "Layer cannot be raised higher." msgstr "Cлой невозможно поднять выше." -#: app/core/gimpimage.c:2822 app/core/gimpimage.c:2872 +#: app/core/gimpimage.c:2835 app/core/gimpimage.c:2885 msgid "Cannot raise a layer without alpha." msgstr "Невозможно поднять слой, у которого нет альфа-канала." -#: app/core/gimpimage.c:2827 +#: app/core/gimpimage.c:2840 msgid "Raise Layer" msgstr "Поднять слой" -#: app/core/gimpimage.c:2844 +#: app/core/gimpimage.c:2857 msgid "Layer cannot be lowered more." msgstr "Слой невозможно опустить ниже." -#: app/core/gimpimage.c:2849 +#: app/core/gimpimage.c:2862 msgid "Lower Layer" msgstr "Опустить слой" -#: app/core/gimpimage.c:2866 +#: app/core/gimpimage.c:2879 msgid "Layer is already on top." msgstr "Слой уже на самом верху." -#: app/core/gimpimage.c:2877 +#: app/core/gimpimage.c:2890 msgid "Raise Layer to Top" msgstr "Сделать слой верхним" -#: app/core/gimpimage.c:2897 +#: app/core/gimpimage.c:2910 msgid "Layer is already on the bottom." msgstr "Слой уже в самом низу." -#: app/core/gimpimage.c:2902 +#: app/core/gimpimage.c:2915 msgid "Lower Layer to Bottom" msgstr "Сделать слой нижним" -#: app/core/gimpimage.c:2941 +#: app/core/gimpimage.c:2954 #, c-format msgid "Layer '%s' has no alpha. Layer was placed above it." msgstr "Слой '%s' не имеет альфа-канала. Этот слой будет размещен выше." -#: app/core/gimpimage.c:2993 +#: app/core/gimpimage.c:3006 msgid "Add Channel" msgstr "Добавить канал" -#: app/core/gimpimage.c:3038 +#: app/core/gimpimage.c:3050 app/core/gimpimage.c:3061 msgid "Remove Channel" msgstr "Удалить канал" -#: app/core/gimpimage.c:3082 +#: app/core/gimpimage.c:3108 msgid "Channel cannot be raised higher." msgstr "Канал не может быть поднят выше." -#: app/core/gimpimage.c:3087 +#: app/core/gimpimage.c:3113 msgid "Raise Channel" msgstr "Поднять канал" -#: app/core/gimpimage.c:3104 +#: app/core/gimpimage.c:3130 msgid "Channel is already on top." msgstr "Слой уже на самом верху." -#: app/core/gimpimage.c:3109 +#: app/core/gimpimage.c:3135 msgid "Raise Channel to Top" msgstr "Поднять канал на верх стопки" -#: app/core/gimpimage.c:3126 +#: app/core/gimpimage.c:3152 msgid "Channel cannot be lowered more." msgstr "Канал не может быть опущен ниже." -#: app/core/gimpimage.c:3131 +#: app/core/gimpimage.c:3157 msgid "Lower Channel" msgstr "Опустить канал" -#: app/core/gimpimage.c:3151 +#: app/core/gimpimage.c:3177 msgid "Channel is already on the bottom." msgstr "Слой уже в самом низу." -#: app/core/gimpimage.c:3156 +#: app/core/gimpimage.c:3182 msgid "Lower Channel to Bottom" msgstr "Опустить канал в низ стопки" -#: app/core/gimpimage.c:3231 +#: app/core/gimpimage.c:3257 msgid "Add Path" msgstr "Добавить контур" -#: app/core/gimpimage.c:3276 +#: app/core/gimpimage.c:3302 msgid "Remove Path" msgstr "Удалить контур" -#: app/core/gimpimage.c:3320 +#: app/core/gimpimage.c:3346 msgid "Path cannot be raised higher." msgstr "Контур не может быть поднят выше." -#: app/core/gimpimage.c:3325 +#: app/core/gimpimage.c:3351 msgid "Raise Path" msgstr "Поднять контур" -#: app/core/gimpimage.c:3342 +#: app/core/gimpimage.c:3368 msgid "Path is already on top." msgstr "Контур уже на самом верху." -#: app/core/gimpimage.c:3347 +#: app/core/gimpimage.c:3373 msgid "Raise Path to Top" msgstr "Сделать контур верхним" -#: app/core/gimpimage.c:3364 +#: app/core/gimpimage.c:3390 msgid "Path cannot be lowered more." msgstr "Контур не может быть опущен ниже." -#: app/core/gimpimage.c:3369 +#: app/core/gimpimage.c:3395 msgid "Lower Path" msgstr "Опустить контур" -#: app/core/gimpimage.c:3389 +#: app/core/gimpimage.c:3415 msgid "Path is already on the bottom." msgstr "Контур уже в самом низу." -#: app/core/gimpimage.c:3394 +#: app/core/gimpimage.c:3420 msgid "Lower Path to Bottom" msgstr "Сделать контур нижним" @@ -5332,8 +5315,7 @@ #: app/core/gimplayer.c:1035 msgid "Cannot add layer mask to layer which is not part of an image." -msgstr "" -"Невозможно добавить маску слоя к слою, не являющемуся частью изображения." +msgstr "Невозможно добавить маску слоя к слою, не являющемуся частью изображения." #: app/core/gimplayer.c:1042 msgid "Unable to add a layer mask since the layer already has one." @@ -5374,12 +5356,12 @@ msgstr "Переместить маску слоя" #: app/core/gimppalette-import.c:490 -#, fuzzy, c-format +#, c-format msgid "" "Unknown type of palette file:\n" "%s" msgstr "" -"Файл не является палитрой RIFF:\n" +"Неизвестный тип файла палитры:\n" "%s" #: app/core/gimppalette.c:375 @@ -5455,8 +5437,7 @@ #: app/core/gimppattern.c:357 #, c-format -msgid "" -"Fatal parse error in pattern file '%s': Unknown pattern format version %d." +msgid "Fatal parse error in pattern file '%s': Unknown pattern format version %d." msgstr "" "Неисправимая ошибка разбора файла шаблона '%s': неизвестная версия формата %" "d." @@ -5633,7 +5614,6 @@ msgstr "_Макс. число цветов:" #: app/dialogs/convert-dialog.c:206 -#, fuzzy msgid "_Remove unused colors from final palette" msgstr "_Удалить неиспользуемые цвета из окончательной палитры" @@ -5654,7 +5634,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 "Невозможно преобразовать в палитру больше 256 цветов." @@ -5726,20 +5706,20 @@ msgid "Enter location (URI):" msgstr "Введите путь (URI):" -#: app/dialogs/file-save-dialog.c:184 +#: app/dialogs/file-save-dialog.c:185 msgid "File exists" msgstr "Файл существует" -#: app/dialogs/file-save-dialog.c:189 +#: app/dialogs/file-save-dialog.c:190 msgid "_Replace" msgstr "_Заменить" -#: app/dialogs/file-save-dialog.c:199 +#: app/dialogs/file-save-dialog.c:200 #, c-format msgid "A file named '%s' already exists." msgstr "Файл с таким именем'%s' существует." -#: app/dialogs/file-save-dialog.c:204 +#: app/dialogs/file-save-dialog.c:205 msgid "Do you want to replace it with the image you are saving?" msgstr "Вы хотите заменить это изображение тем, которое сейчас сохраняете?" @@ -6199,11 +6179,14 @@ msgstr "Настроить клавиши быстрого доступа" #: app/dialogs/preferences-dialog.c:551 -#, fuzzy msgid "" "To edit a shortcut key, click on the corresponding row and type a new " "accelerator, or press backspace to clear." -msgstr "Нажмите сочетание клавиш или Backspace для отмены" +msgstr "" +"Чтобы редактировать клавишу быстрого доступа, нажмите на соответсвующей " +"строке и\n" +"введите новое сочетание клавиш. Чтобы удалить клавишу быстрого доступа " +"нажмите Backspace." #: app/dialogs/preferences-dialog.c:595 msgid "" @@ -6214,11 +6197,10 @@ "умолчанию." #: app/dialogs/preferences-dialog.c:629 -#, fuzzy msgid "" "Your window setup will be reset to default values the next time you start " "GIMP." -msgstr "При следующем запуске GIMP будут использованы настройки по умолчанию." +msgstr "При следующем запуске GIMP будет использовано расположение окон по умолчанию." #: app/dialogs/preferences-dialog.c:663 msgid "" @@ -6820,9 +6802,8 @@ msgstr "Выбрать каталоги тем" #: app/dialogs/print-size-dialog.c:128 -#, fuzzy msgid "Print Size" -msgstr "Размер при печати:" +msgstr "Размер при печати" #. the image size labels #: app/dialogs/print-size-dialog.c:155 app/widgets/gimpsizebox.c:223 @@ -7330,8 +7311,7 @@ msgstr "Нажмите \"Продолжить\", чтобы принять предложенные параметры." #: app/dialogs/user-install-dialog.c:1005 -msgid "" -"For optimal GIMP performance, some settings may have to be adjusted." +msgid "For optimal GIMP performance, some settings may have to be adjusted." msgstr "" "Для лучшей производительности GIMP некоторые параметры могут быть " "изменены." @@ -7578,7 +7558,7 @@ msgid "Style of bevel around the statusbar text" msgstr "Стиль элементов вокруг текста строки состояния" -#: app/display/gimpstatusbar.c:218 +#: app/display/gimpstatusbar.c:229 msgid "Cancel" msgstr "Отмена" @@ -7771,8 +7751,7 @@ msgstr "(недопустимая строка UTF-8)" #: app/pdb/image_cmds.c:3898 -msgid "" -"Image resolution is out of bounds, using the default resolution instead." +msgid "Image resolution is out of bounds, using the default resolution instead." msgstr "" "Разрешение изображения вне допустимого,\n" "используется значение по умолчанию." @@ -8038,7 +8017,7 @@ "В чащах юга жил-был цитрус.\n" "Да, но фальшивый экземпляръ!" -#: app/text/gimptext-compat.c:106 app/tools/gimptexttool.c:697 +#: app/text/gimptext-compat.c:108 app/tools/gimptexttool.c:699 msgid "Add Text Layer" msgstr "Добавить текстовый слой" @@ -8155,7 +8134,7 @@ #: app/tools/tools-enums.c:174 msgid "Outline" -msgstr "" +msgstr "Обвести" #: app/tools/tools-enums.c:177 msgid "Image + Grid" @@ -8169,7 +8148,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 "У этого инструмента нет параметров." @@ -8198,7 +8177,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 "Повтор:" @@ -8330,11 +8309,11 @@ msgid "_Clone" msgstr "_Штамп" -#: app/tools/gimpclonetool.c:266 +#: app/tools/gimpclonetool.c:288 msgid "Source" msgstr "Источник" -#: app/tools/gimpclonetool.c:275 +#: app/tools/gimpclonetool.c:297 msgid "Alignment" msgstr "Выравнивание" @@ -8938,19 +8917,16 @@ msgstr "_Перемещение" #: app/tools/gimpmovetool.c:298 app/tools/gimpmovetool.c:576 -#, fuzzy msgid "Move Guide: " -msgstr "Переместить направляющую" +msgstr "Переместить направляющую:" #: app/tools/gimpmovetool.c:570 -#, fuzzy msgid "Cancel Guide" -msgstr "Отмена" +msgstr "Удалить направляющую" #: app/tools/gimpmovetool.c:576 -#, fuzzy msgid "Add Guide: " -msgstr "Добавить направляющие" +msgstr "Добавить направляющую: " #: app/tools/gimppaintbrushtool.c:52 msgid "Paint fuzzy brush strokes" @@ -8974,7 +8950,7 @@ msgid "Brush:" msgstr "Кисти:" -#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:394 +#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:395 msgid "Gradient:" msgstr "Градиент:" @@ -9006,11 +8982,11 @@ msgid "Fade out" msgstr "Фиксированная длина штриха" -#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:403 +#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:404 msgid "Length:" msgstr "Длина:" -#: app/tools/gimppaintoptions-gui.c:367 +#: app/tools/gimppaintoptions-gui.c:368 msgid "Use color from gradient" msgstr "Использование цвета из градиента" @@ -9071,23 +9047,23 @@ msgid "_Rect Select" msgstr "Пр_ямоугольное выделение" -#: app/tools/gimprectselecttool.c:224 +#: app/tools/gimprectselecttool.c:226 msgid "Selection: ADD" msgstr "Выделенная область: ДОБАВИТЬ" -#: app/tools/gimprectselecttool.c:227 +#: app/tools/gimprectselecttool.c:229 msgid "Selection: SUBTRACT" msgstr "Выделенная область: ВЫЧЕСТЬ" -#: app/tools/gimprectselecttool.c:230 +#: app/tools/gimprectselecttool.c:232 msgid "Selection: INTERSECT" msgstr "Выделенная область: ПЕРЕСЕЧЬ" -#: app/tools/gimprectselecttool.c:233 +#: app/tools/gimprectselecttool.c:235 msgid "Selection: REPLACE" msgstr "Выделенная область: ЗАМЕНИТЬ" -#: app/tools/gimprectselecttool.c:468 +#: app/tools/gimprectselecttool.c:414 msgid "Selection: " msgstr "Выделенная область: " @@ -9108,9 +9084,8 @@ msgstr "Центр X:" #: app/tools/gimprotatetool.c:190 -#, fuzzy msgid "Center Y:" -msgstr "Центр X:" +msgstr "Центр Y:" #: app/tools/gimpscaletool.c:91 msgid "Scale" @@ -9221,8 +9196,7 @@ msgstr "Пале_ц" #: app/tools/gimptextoptions.c:146 -msgid "" -"Hinting alters the font outline to produce a crisp bitmap at small sizes" +msgid "Hinting alters the font outline to produce a crisp bitmap at small sizes" msgstr "" "Инструктирование изменяет контуры символа, чтобы выдать более чёткие растры " "при маленьких размерах" @@ -9283,23 +9257,23 @@ msgid "Create path from text" msgstr "Создать кривую из текста" -#: app/tools/gimptexttool.c:143 +#: app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "Добавить текст к изображению" -#: app/tools/gimptexttool.c:144 +#: app/tools/gimptexttool.c:146 msgid "Te_xt" msgstr "_Текст" -#: app/tools/gimptexttool.c:732 +#: app/tools/gimptexttool.c:744 msgid "GIMP Text Editor" msgstr "Редактор текста GIMP" -#: app/tools/gimptexttool.c:842 app/tools/gimptexttool.c:845 +#: app/tools/gimptexttool.c:854 app/tools/gimptexttool.c:857 msgid "Confirm Text Editing" msgstr "Подтвердитте изменение текста" -#: app/tools/gimptexttool.c:866 +#: app/tools/gimptexttool.c:878 msgid "" "The layer you selected is a text layer but it has been modified using other " "tools. Editing the layer with the text tool will discard these " @@ -9487,7 +9461,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 "Нажмите и потащите чтобы переместить точки" @@ -9495,46 +9469,45 @@ msgid "Click-Drag to move the handle around. (try SHIFT)" msgstr "Нажмите и потащите чтобы переместить рычаг. (попробуйте нажать SHIFT)" -#: app/tools/gimpvectortool.c:1217 +#: app/tools/gimpvectortool.c:1220 msgid "Click-Drag to change the shape of the curve. (SHIFT: symmetrical)" msgstr "" "Нажмите и потащите чтобы изменить линию. С SHIFT рычаги перемещаются " "симметрично." -#: app/tools/gimpvectortool.c:1221 +#: app/tools/gimpvectortool.c:1224 msgid "Click-Drag to move the component around. (try SHIFT)" -msgstr "" -"Нажмите и потащите чтобы переместить элемент. (попробуйте нажать SHIFT)" +msgstr "Нажмите и потащите чтобы переместить элемент. (попробуйте нажать SHIFT)" -#: 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 "Нажмите чтобы создать точку на контуре. (попробуйте нажать SHIFT)" -#: 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 "Нет активного слоя или канала для обводки" @@ -9628,14 +9601,12 @@ #: app/widgets/gimpactionview.c:602 #, c-format msgid "Shortcut \"%s\" is already taken by \"%s\" from the \"%s\" group." -msgstr "" -"Клавиши быстрого доступа \"%s\" использованы в пункте \"%s\" меню \"%s\"." +msgstr "Клавиши быстрого доступа \"%s\" использованы в пункте \"%s\" меню \"%s\"." #: app/widgets/gimpactionview.c:606 #, c-format msgid "Reassigning the shortcut will cause it to be removed from \"%s\"." -msgstr "" -"Назначая эти клавиши вы отказываетесь от доступа по ним к пункту \"%s\"." +msgstr "Назначая эти клавиши вы отказываетесь от доступа по ним к пункту \"%s\"." #: app/widgets/gimpactionview.c:673 msgid "Removing shortcut failed." @@ -9955,15 +9926,13 @@ msgstr "Клавиатура" #: app/widgets/gimpcontrollerkeyboard.c:230 -#, fuzzy msgid "Keyboard Events" msgstr "Клавиатура" #: app/widgets/gimpcontrollerkeyboard.c:231 #: app/widgets/gimpcontrollerwheel.c:230 -#, fuzzy msgid "Ready" -msgstr "Красный" +msgstr "Готов" #: app/widgets/gimpcontrollerwheel.c:68 msgid "Scroll Up (Shift + Control + Alt)" @@ -10098,7 +10067,6 @@ msgstr "Колесо мыши" #: app/widgets/gimpcontrollerwheel.c:229 -#, fuzzy msgid "Mouse Wheel Events" msgstr "Колесо мыши" @@ -10125,21 +10093,19 @@ msgstr "Фон: %d, %d, %d" #: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 -#, fuzzy msgid "Close all tabs?" -msgstr "_Закрыть закладку" +msgstr "Закрыть все закладки?" #: app/widgets/gimpdock.c:354 -#, fuzzy msgid "Close all Tabs" -msgstr "_Закрыть закладку" +msgstr "Закрыть все закладки" #: app/widgets/gimpdock.c:361 #, c-format msgid "" "This window has %d tabs open. Closing the window will also close all its " "tabs." -msgstr "" +msgstr "Окно содержит %d открытых закладок. Закрытие окна приведет к их закрытию." #: app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." @@ -10313,8 +10279,7 @@ msgstr "Не удалось найти программу просмотра справки GIMP" #: app/widgets/gimphelp.c:189 -msgid "" -"The GIMP help browser plug-in appears to be missing from your installation." +msgid "The GIMP help browser plug-in appears to be missing from your installation." msgstr "В Вашей установке GIMP отсутствует просмотрщик справочной системы." #: app/widgets/gimphelp.c:213 @@ -10358,8 +10323,7 @@ msgstr "Авто" #: app/widgets/gimpimagedock.c:214 -msgid "" -"When enabled the dialog automatically follows the image you are working on." +msgid "When enabled the dialog automatically follows the image you are working on." msgstr "" "При включении этой функции содержимое диалога меняется в соответствии с тем, " "какое изображение активно в данный момент." @@ -10384,12 +10348,12 @@ msgid "Empty Layer" msgstr "Пустой слой" -#: app/widgets/gimpmessagebox.c:460 +#: app/widgets/gimpmessagebox.c:461 #, c-format msgid "Message repeated %d times." msgstr "Сообщение повторено %d раз" -#: app/widgets/gimpmessagebox.c:462 +#: app/widgets/gimpmessagebox.c:463 msgid "Message repeated once." msgstr "Сообщение повторено один раз" @@ -10406,7 +10370,7 @@ msgid "This text input field is limited to %d characters." msgstr "Это текствое поле ограничено %d символами." -#: app/widgets/gimpselectiondata.c:317 +#: app/widgets/gimpselectiondata.c:319 #, c-format msgid "" "The filename '%s' couldn't be converted to a valid URI:\n" @@ -10417,7 +10381,7 @@ "\n" "%s" -#: app/widgets/gimpselectiondata.c:321 +#: app/widgets/gimpselectiondata.c:323 msgid "Invalid UTF-8" msgstr "недопустимая строка UTF-8" @@ -10586,11 +10550,11 @@ #: app/widgets/gimpuimanager.c:495 msgid "Your GIMP installation is incomplete:" -msgstr "" +msgstr "Установка GIMP не была завершена:" #: app/widgets/gimpuimanager.c:497 msgid "Plase make sure the menu XML files are correctly installed." -msgstr "" +msgstr "Убедитесь, что файлы меню корректно установлены." #: app/widgets/gimpundoeditor.c:255 msgid "[ Base Image ]" @@ -12772,3 +12736,4 @@ #~ msgid "/Save Options to/new-separator" #~ msgstr "/Сохранить параметры как/новое" + diff -uraN gimp-2.2.6/po-libgimp/bg.gmo gimp-2.2.7/po-libgimp/bg.gmo --- gimp-2.2.6/po-libgimp/bg.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/bg.gmo 2005-05-08 23:42:01.000000000 +0200 @@ -5,7 +5,7 @@ >Iau  BlueFolderGreenMerge Visible LayersRedValueYellow_Edit_Rotate_TransformProject-Id-Version: gimp 2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-18 19:49+0200 Last-Translator: Alexander Shopov Language-Team: Bulgarian diff -uraN gimp-2.2.6/po-libgimp/bg.po gimp-2.2.7/po-libgimp/bg.po --- gimp-2.2.6/po-libgimp/bg.po 2005-04-10 02:11:34.000000000 +0200 +++ gimp-2.2.7/po-libgimp/bg.po 2005-05-08 23:41:57.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-18 19:49+0200\n" "Last-Translator: Alexander Shopov \n" "Language-Team: Bulgarian \n" @@ -188,7 +188,7 @@ msgid "Gradient Selection" msgstr "" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/ca.gmo gimp-2.2.7/po-libgimp/ca.gmo --- gimp-2.2.6/po-libgimp/ca.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ca.gmo 2005-05-08 23:42:01.000000000 +0200 @@ -23,7 +23,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-12-29 17:42+0100 Last-Translator: Xavier Beà Language-Team: softcatala diff -uraN gimp-2.2.6/po-libgimp/ca.po gimp-2.2.7/po-libgimp/ca.po --- gimp-2.2.6/po-libgimp/ca.po 2005-04-10 02:11:34.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ca.po 2005-05-08 23:41:57.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-12-29 17:42+0100\n" "Last-Translator: Xavier Beà \n" "Language-Team: softcatala \n" @@ -200,7 +200,7 @@ msgid "Gradient Selection" msgstr "Selecció de gradient" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Buit)" diff -uraN gimp-2.2.6/po-libgimp/ChangeLog gimp-2.2.7/po-libgimp/ChangeLog --- gimp-2.2.6/po-libgimp/ChangeLog 2005-03-22 10:42:02.000000000 +0100 +++ gimp-2.2.7/po-libgimp/ChangeLog 2005-04-27 16:53:05.000000000 +0200 @@ -1,3 +1,16 @@ +2005-04-27 Jakub Friedl + + * cs.po: updated Czech translation, fixed some problems. + +2005-04-25 Dmitry G. Mastrukov + + * ru.po: Updated Russian translation + from Russian team . + +2005-04-22 Changwoo Ryu + + * ko.po: Updated Korean translation by Dongsu Jang. + 2005-03-22 Miloslav Trmac * cs.po: Updated Czech translation by Miloslav Trmač. diff -uraN gimp-2.2.6/po-libgimp/cs.gmo gimp-2.2.7/po-libgimp/cs.gmo --- gimp-2.2.6/po-libgimp/cs.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/cs.gmo 2005-05-08 23:42:01.000000000 +0200 @@ -1,49 +1,51 @@ -L| -   !)28>D*b(4#.!>-`. '/FX^ew~ -r -@ KWVsA; CPYkTM#%2X]f%k '   . 8BRX2h"     '.DL S]r  -% - !? C MW -[fx;  78*c"lf - -# -CNW_^PUehk} - -   - '/7:A -HSV]`=h $E5]F3D,S5 7 *K dp   y#iE b By -     t !f~!!!!" " ,"'9"a"s")z"" """" -"" - # #%#8# @#.N#-}## ### -###$$$0$9$S$ \$ -f$q$'$ $$ -$$5$% -"%-%@%O%%T%z% ~%% %%%%K% &&.&J&9P&;& &"&&'r'' -' '' -'''R'D9([~((((( -)) )() 1)=)N)Q)X) -[)f)m)p)s)))) ))))) ) ) ))))*sd_o1u`*X5#JY>h!=)~p}q2e6\zAF&-,j$xGZ[gWV(nm <Oa DM]yTi?"|0E/r ^f.QUK'wC @4%3BLI97kPlSv -Nt+cR;8{Hb:%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(Empty)(invalid UTF-8 string)Add Alpha ChannelAlphaAnchorApply Layer MasksBlac_kBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorCannot determine a valid home directory. -Thumbnails will be stored in the folder for temporary files (%s) instead.Check SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)ConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings +  $*B(m4#.!-@n.&<NT[mt +zr +> IUVq A*Ep xTM +X%g % ' "17 R\ o y2"   '1 AO Ub iu|   + %6 +H S` +r}!   +; : FTk7q8"f" + +_P=U +! +$/5=ORZ]enq t~  + +%%-5= EOU[$aE5F3ID},5 %7F~   , 1 9 O X ` l    y 3!N!e!i}!!""B,"=o" +"""""t"fo##!# $ $$&$'9$a$s$)z$$ $$$$ +$$ + % %%%8% @%.N%-}%% %%% +%%%&&*&3&E&N& +h& s& +}&&&'& && +&'5 +'@' +O'Z'm'|''%'' '' '''' (K(b(r(((9(;( )"+)N)W)rh)) +) )) +*&*5*R=*D*[*1+4+7+F+a+p+ s++ +++++ ++ +++++++ ++,,#, &, 2, +?, J,X,[,c,f,+4I\^$-Fl/H= +3V?vb0Z(d] <y){6"[o5,iRC mYB`&PfSph@1# a8;W2e%KT.cX~!9JA'N u*rGLEs>twDQ Mqx7_|U:Onzjgk}%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(Empty)(invalid UTF-8 string)Absolute ColorimetricAdd Alpha ChannelAlphaAnchorApply Layer MasksBlac_kBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorC_enterCannot determine a valid home directory. +Thumbnails will be stored in the folder for temporary files (%s) instead.Check SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor ProofColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)Color proof filter using ICC color profileConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings (Do it manually to tune the result)Convert to Indexed using default settings -(Do it manually to tune the result)Convert to RGBCould not create thumbnail for %s: %sCropCurrent:CyanDeuteranopia (insensitivity to green)Export FileFactorFailed to create thumbnail folder '%s'.Flatten ImageFolderFont SelectionGammaGamma color display filterGigabytesGradient SelectionGray OnlyGrayscaleGrayscale-alphaGreenHTML _Notation:Hexadecimal color notation as used in HTML and CSSHigh Contrast color display filterHueIndexedIndexed colorIndexed-alphaKilobytesL_etter SpacingL_ine SpacingLargeLinkedLoad failedLoadedLoading module: '%s' -MagentaMediumMegabytesMerge Visible LayersModule '%s' load error: %sModule errorMore...Not loadedOld:Painter-style triangle color selectorPalette SelectionPaste IntoPaste as NewPattern SelectionPressureProtanopia (insensitivity to red)RGBRGB colorRGB-alphaRedSaturationSave as AnimationScalesSeed random number generator with a generated random numberSelect FileSelect FolderSkipping module: '%s' +(Do it manually to tune the result)Convert to RGBCould not create thumbnail for %s: %sCropCurrent:CyanDark ChecksDeuteranopia (insensitivity to green)Export FileFactorFailed to create thumbnail folder '%s'.Flatten ImageFolderFont SelectionGammaGamma color display filterGigabytesGradient SelectionGray OnlyGrayscaleGrayscale-alphaGreenHTML _Notation:Hexadecimal color notation as used in HTML and CSSHigh Contrast color display filterHueIndexedIndexed colorIndexed-alphaKilobytesL_etter SpacingL_ine SpacingLargeLight ChecksLinkedLoad failedLoadedLoading module: '%s' +MagentaMediumMegabytesMerge Visible LayersMid-Tone ChecksModule '%s' load error: %sModule errorMore...Not loadedOld:Painter-style triangle color selectorPalette SelectionPaste IntoPaste as NewPattern SelectionPerceptualPressureProtanopia (insensitivity to red)RGBRGB colorRGB-alphaRedRelative ColorimetricSaturationSave as AnimationScalesSeed random number generator with a generated random numberSelect FileSelect FolderSkipping module: '%s' SmallThe export conversion won't modify your original image.The percentage of black to pull out of the colored inks.TriangleTritanopia (insensitivity to blue)UnitUnit SelectionUse this value for random number generator seed - this allows you to repeat a given "random" operationValueVisibleWatercolorWatercolor style color selectorWhite OnlyWritableYellowYou are about to save a channel (saved selection) as %s. This will not save the visible layers.You are about to save a layer mask as %s. -This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp VERSION +This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: cs Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 -PO-Revision-Date: 2005-03-22 09:30+0100 -Last-Translator: Miloslav Trmač -Language-Team: Czech +POT-Creation-Date: 2005-05-08 12:28+0200 +PO-Revision-Date: 2005-04-27 11:42+0200 +Last-Translator: Jakub Friedl +Language-Team: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d bajtů%d GB%d KB%d MB%s umí zpracovat pouze RGB obrázky%s umí zpracovat pouze RGB obrázky nebo obrázky ve stupních šedi%s umí zpracovat pouze RGB nebo indexované obrázky%s umí zpracovat pouze bitmapové (dvoubarevné) indexované obrázky%s umí zpracovat pouze obrázky ve stupních šedi%s umí zpracovat pouze obrázky ve stupních šedi nebo indexované%s umí zpracovat pouze indexované obrázky%s umí zpracovat vrstvy pouze jako políčka animace%s neumí zpracovat masky vrstev%s neumí zpracovat posuny vrstev, velikost nebo krytí%s neumí zpracovat vrstvy%s neumí zpracovat průhlednost%s vyžaduje alfa kanál(Prázdné)(neplatný řetězec v UTF-8)Přidat alfa kanálAlfaUkotvitPoužít masky vrstev_ČernáČernáJen černá_Použití černé:ModráVýběr stopyCMYKVýběr barev CMYKNemohu určit platný domovský adresář. -Miniatury budou místo něj uloženy do adresáře pro dočasné soubory (%s).Zkotrolovat velikostZkotrolovat stylZvolte profil barev ICCKlikněte na zaměřovač oka, a poté vyberte barvu kliknutím na tuto barvu kdekoli na vaší obrazovceVidění s barevnou poruchouTyp barevné _poruchy:Filtr simulace barevné poruchy (algoritmus Brettel-Vienot-Mollon)PotvrzeníPotvrzení zápisuKontrast_Cykly kontrastu:Převést do šedíPřevést do indexovaného pomocí implicitních nastavení bitmap +%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d bajtů%d GB%d KB%d MB%s umí zpracovat pouze RGB obrázky%s umí zpracovat pouze RGB obrázky nebo obrázky ve stupních šedi%s umí zpracovat pouze RGB nebo indexované obrázky%s umí zpracovat pouze bitmapové (dvoubarevné) indexované obrázky%s umí zpracovat pouze obrázky ve stupních šedi%s umí zpracovat pouze obrázky ve stupních šedi nebo indexované%s umí zpracovat pouze indexované obrázky%s umí zpracovat vrstvy pouze jako políčka animace%s neumí zpracovat masky vrstev%s neumí zpracovat posuny vrstev, velikost nebo krytí%s neumí zpracovat vrstvy%s neumí zpracovat průhlednost%s vyžaduje alfa kanál(Prázdné)(neplatný řetězec v UTF-8)Absolutní kolorimetrickýPřidat alfa kanálAlfaUkotvitPoužít masky vrstev_ČernáČernáJen černá_Použití černé:ModráVýběr stopyCMYKVýběr barev CMYKVystř_editNemohu určit platný domovský adresář. +Miniatury budou místo něj uloženy do adresáře pro dočasné soubory (%s).Velikost polí šachovniceStyl polí šachovniceZvolte profil barev ICCKlikněte na zaměřovač oka, a poté vyberte barvu kliknutím na tuto barvu kdekoli na vaší obrazovceVidění s barevnou poruchouBarevný náhledTyp barevné _poruchy:Filtr simulace barevné poruchy (algoritmus Brettel-Vienot-Mollon)Filtr barevného náhledu používající ICC barevný profilPotvrzeníPotvrzení zápisuKontrast_Cykly kontrastu:Převést do šedíPřevést do indexovaného pomocí implicitních nastavení bitmap (Výsledek můžete vyladit ručním provedením)Konverze do indexovaného použije implicitní nastavení -(Ručním provedením lze doladit výsledek)Převést do RGBNemohu vytvořit miniaturu %s: %sOřezatAktuální:ModrozelenáDeuteroanopie (barvoslepost na zelenou)Exportovat souborFaktorNemohu vytvořit adresář miniatur '%s'.Sloučit obrazAdresářVýběr písmaGamaZobrazovací filtr barvy gamaGigabajtůVýběr přechoduJen šedáStupně šediStupně šedi-alfaZelená_Notace HTML:Šestnáctková notace barev jako v HTML a CSSZobrazovací filtr vysoce kontrastních barevOdstínIndexovanáIndexovaná barvaIndexovaná-alfaKilobajtůRoz_estup písmenŘá_dkováníVelkéSpojenýNačtení selhaloNačtenoNačítá se modul: '%s' -FialováStředníMegabajtůSloučit viditelné vrstvyChyba při načítání modulu '%s': %sChyba moduluVíce...NenačtenoStaré:Výběr barev z trojúhelníku na malířský způsobVýběr paletyVložit doVložit jako novéVýběr vzorkuTlakProtanopie (necitlivost na červenou)RGBBarva RGBRGB-alfaČervenáSytostZapsat jako animaciStupniceHnízdo generátoru náhodného čísla z generovaného náhodného číslaVýběr souboruVýběr adresářeVynechává se modul: '%s' +(Ručním provedením lze doladit výsledek)Převést do RGBNemohu vytvořit miniaturu %s: %sOřezatAktuální:AzurováTmavá šachovniceDeuteroanopie (barvoslepost na zelenou)Exportovat souborFaktorNemohu vytvořit adresář miniatur '%s'.Sloučit obrazAdresářVýběr písmaGamaZobrazovací filtr barvy gamaGigabajtůVýběr přechoduJen šedáStupně šediStupně šedi-alfaZelená_Notace HTML:Šestnáctková notace barev jako v HTML a CSSZobrazovací filtr vysoce kontrastních barevOdstínIndexovanáIndexovaná barvaIndexovaná-alfaKilobajtůRoz_estup písmenŘá_dkováníVelkéSvětlá šachovniceSpojenýNačtení selhaloNačtenoNačítá se modul: '%s' +PurpurováStředníMegabajtůSloučit viditelné vrstvyStřední šachovniceChyba při načítání modulu '%s': %sChyba moduluVíce...NenačtenoStaré:Výběr barev z trojúhelníku na malířský způsobVýběr paletyVložit doVložit jako novéVýběr vzorkuPerceptuálníTlakProtanopie (necitlivost na červenou)RGBBarva RGBRGB-alfaČervenáRelativní kolorimetrickýSytostZapsat jako animaciStupniceHnízdo generátoru náhodného čísla z generovaného náhodného číslaVýběr souboruVýběr adresářeVynechává se modul: '%s' MaléExportní konverze by neměla změnit původní obrázek.Procenta černé, kterou vytáhnout z barevných inkoustů.TrojúhelníkTritanopie (necitlivost na modrou)JednotkaVýběr jednotekTato hodnota se použije pro hnízdo náhodného generátoru - umožňuje to zopakovat zadanou "náhodnou" operaciHodnotaViditelnýVodová barvaVýběr barev ve stylu vodovekJen bíláZapisovatelnýŽlutáChcete zapsat kanál (uložený výběr) jako %s. To nezapíše viditelné vrstvy.Chcete zapsat masku vrstev jako %s. -To nezapíše viditelné vrstvy.Váš obrázek by měl být před zápisem exportován jako %s z následujících důvodů:_A_BBarva po_zadí_Kompenzace černého bodu_Procházet..._C_Duplikovat_Úpravy_ExportovatBarva po_předí_G_Gama:_O_Ignorovat_Cíl:_K_M_Nové hnízdoNá_hled_Profil:_R_Randomizovat_ObnovitZměnit _velikost_Rotovat_SŠ_kálovatNa_klonění_Transformace_H_Bílá_Yprocenta \ No newline at end of file +To nezapíše viditelné vrstvy.Váš obrázek by měl být před zápisem exportován jako %s z následujících důvodů:_A_BBarva po_zadí_Kompenzace černého bodu_Procházet..._C_Duplikovat_Úpravy_ExportovatBarva po_předí_G_Gama:_O_Ignorovat_Záměr:_K_M_Nové hnízdoNá_hled_Profil:_R_Randomizovat_ObnovitZměnit _velikost_Rotovat_SŠ_kálovatNa_klonění_Vykreslit_Transformace_H_Bílá_Yprocenta \ No newline at end of file diff -uraN gimp-2.2.6/po-libgimp/cs.po gimp-2.2.7/po-libgimp/cs.po --- gimp-2.2.6/po-libgimp/cs.po 2005-04-10 02:11:34.000000000 +0200 +++ gimp-2.2.7/po-libgimp/cs.po 2005-05-08 23:41:58.000000000 +0200 @@ -1,18 +1,19 @@ # Translation of gimp-libgimp to Czech -# Copyright (C) 2000,2003 Free Software Foundation, Inc. +# Copyright (C) 2000, 2003, 2005 Free Software Foundation, Inc. # Copyright (C) 2004, 2005 Miloslav Trmac -# Stanislav Brabec , 2000 -# Michal Bukovjan , 2002,2003. +# Stanislav Brabec , 2000. +# Michal Bukovjan , 2002, 2003. # Miloslav Trmac , 2003, 2004, 2005. +# Jakub Friedl , 2005. # msgid "" msgstr "" -"Project-Id-Version: gimp-libgimp VERSION\n" +"Project-Id-Version: cs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" -"PO-Revision-Date: 2005-03-22 09:30+0100\n" -"Last-Translator: Miloslav Trmač \n" -"Language-Team: Czech \n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" +"PO-Revision-Date: 2005-04-27 11:42+0200\n" +"Last-Translator: Jakub Friedl \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -200,7 +201,7 @@ msgid "Gradient Selection" msgstr "Výběr přechodu" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Prázdné)" @@ -230,15 +231,15 @@ #: ../libgimpbase/gimpbaseenums.c:57 msgid "Light Checks" -msgstr "" +msgstr "Světlá šachovnice" #: ../libgimpbase/gimpbaseenums.c:58 msgid "Mid-Tone Checks" -msgstr "" +msgstr "Střední šachovnice" #: ../libgimpbase/gimpbaseenums.c:59 msgid "Dark Checks" -msgstr "" +msgstr "Tmavá šachovnice" #: ../libgimpbase/gimpbaseenums.c:60 msgid "White Only" @@ -534,11 +535,11 @@ #: ../libgimpwidgets/gimppreviewarea.c:126 msgid "Check Size" -msgstr "Zkotrolovat velikost" +msgstr "Velikost polí šachovnice" #: ../libgimpwidgets/gimppreviewarea.c:133 msgid "Check Style" -msgstr "Zkotrolovat styl" +msgstr "Styl polí šachovnice" #. toggle button to (des)activate the instant preview #: ../libgimpwidgets/gimppreview.c:240 @@ -551,7 +552,7 @@ #: ../libgimpwidgets/gimpstock.c:114 msgid "C_enter" -msgstr "" +msgstr "Vystř_edit" #: ../libgimpwidgets/gimpstock.c:115 msgid "_Duplicate" @@ -583,7 +584,7 @@ #: ../libgimpwidgets/gimpstock.c:154 ../libgimpwidgets/gimpstock.c:158 msgid "_Stroke" -msgstr "" +msgstr "_Vykreslit" #: ../libgimpwidgets/gimpstock.c:170 msgid "L_etter Spacing" @@ -703,27 +704,27 @@ #: ../modules/cdisplay_proof.c:45 ../modules/cdisplay_proof.c:440 msgid "Perceptual" -msgstr "" +msgstr "Perceptuální" #: ../modules/cdisplay_proof.c:47 ../modules/cdisplay_proof.c:442 msgid "Relative Colorimetric" -msgstr "" +msgstr "Relativní kolorimetrický" #: ../modules/cdisplay_proof.c:51 ../modules/cdisplay_proof.c:446 msgid "Absolute Colorimetric" -msgstr "" +msgstr "Absolutní kolorimetrický" #: ../modules/cdisplay_proof.c:138 msgid "Color proof filter using ICC color profile" -msgstr "" +msgstr "Filtr barevného náhledu používající ICC barevný profil" #: ../modules/cdisplay_proof.c:238 msgid "Color Proof" -msgstr "" +msgstr "Barevný náhled" #: ../modules/cdisplay_proof.c:457 msgid "_Intent:" -msgstr "_Cíl:" +msgstr "_Záměr:" #: ../modules/cdisplay_proof.c:460 msgid "Choose an ICC Color Profile" @@ -763,11 +764,11 @@ #: ../modules/colorsel_cmyk.c:154 msgid "Cyan" -msgstr "Modrozelená" +msgstr "Azurová" #: ../modules/colorsel_cmyk.c:155 msgid "Magenta" -msgstr "Fialová" +msgstr "Purpurová" #: ../modules/colorsel_cmyk.c:156 msgid "Yellow" @@ -804,20 +805,3 @@ #: ../modules/colorsel_water.c:220 msgid "Pressure" msgstr "Tlak" - -#~ msgid "None" -#~ msgstr "Nic" - -#~ msgid "" -#~ "No %s in gimprc:\n" -#~ "You need to add an entry like\n" -#~ "(%s \"%s\")\n" -#~ "to your %s file." -#~ msgstr "" -#~ "V gimprc chybí %1$s:\n" -#~ "Do svého souboru %4$s\n" -#~ "musíte přidat položku jako\n" -#~ "(%2$s \"%3$s\")." - -#~ msgid "Parameter Settings" -#~ msgstr "Nastavení parametrů" diff -uraN gimp-2.2.6/po-libgimp/da.gmo gimp-2.2.7/po-libgimp/da.gmo --- gimp-2.2.6/po-libgimp/da.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/da.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -25,7 +25,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP libgimp /gnome-cvs Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-12-12 17:15+0100 Last-Translator: Ole Laursen Language-Team: Danish diff -uraN gimp-2.2.6/po-libgimp/da.po gimp-2.2.7/po-libgimp/da.po --- gimp-2.2.6/po-libgimp/da.po 2005-04-10 02:11:35.000000000 +0200 +++ gimp-2.2.7/po-libgimp/da.po 2005-05-08 23:41:58.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: GIMP libgimp /gnome-cvs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-12-12 17:15+0100\n" "Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" @@ -201,7 +201,7 @@ msgid "Gradient Selection" msgstr "Farveovergangsvalg" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(tom)" diff -uraN gimp-2.2.6/po-libgimp/de.gmo gimp-2.2.7/po-libgimp/de.gmo --- gimp-2.2.6/po-libgimp/de.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/de.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-17 11:42+0100 Last-Translator: Sven Neumann Language-Team: German diff -uraN gimp-2.2.6/po-libgimp/de.po gimp-2.2.7/po-libgimp/de.po --- gimp-2.2.6/po-libgimp/de.po 2005-04-10 02:11:35.000000000 +0200 +++ gimp-2.2.7/po-libgimp/de.po 2005-05-08 23:41:58.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-17 11:42+0100\n" "Last-Translator: Sven Neumann \n" "Language-Team: German \n" @@ -200,7 +200,7 @@ msgid "Gradient Selection" msgstr "Gradientenauswahl" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Leer)" diff -uraN gimp-2.2.6/po-libgimp/el.gmo gimp-2.2.7/po-libgimp/el.gmo --- gimp-2.2.6/po-libgimp/el.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/el.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -9,7 +9,7 @@ 9 D Y h        ' )" !&(%,+*$ #%d Bytes%d GB%d KB%d MB(Empty)BlackBlueBrush SelectionCMYKConfirmConfirm SaveContrastConvert to GrayscaleConvert to RGBExport FileFactorFolderFont SelectionGrayscaleGreenMediumMore...Pattern SelectionPressureRGBRGB colorRedSaturationSelect FileSelect FolderSmallTriangleUnitValueVisibleWatercolorYellow_Browse..._Edit_Export_Ignore_PreviewpercentProject-Id-Version: el Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-10-22 01:09+0300 Last-Translator: Nikos Charonitakis Language-Team: diff -uraN gimp-2.2.6/po-libgimp/el.po gimp-2.2.7/po-libgimp/el.po --- gimp-2.2.6/po-libgimp/el.po 2005-04-10 02:11:35.000000000 +0200 +++ gimp-2.2.7/po-libgimp/el.po 2005-05-08 23:41:58.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-10-22 01:09+0300\n" "Last-Translator: Nikos Charonitakis \n" "Language-Team: \n" @@ -205,7 +205,7 @@ msgid "Gradient Selection" msgstr "Επιλογή Γραμματοσειράς" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Άδειο)" diff -uraN gimp-2.2.6/po-libgimp/en_CA.gmo gimp-2.2.7/po-libgimp/en_CA.gmo --- gimp-2.2.6/po-libgimp/en_CA.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/en_CA.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -33,7 +33,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-22 20:02-0400 Last-Translator: Adam Weinberger Language-Team: English/Canada diff -uraN gimp-2.2.6/po-libgimp/en_CA.po gimp-2.2.7/po-libgimp/en_CA.po --- gimp-2.2.6/po-libgimp/en_CA.po 2005-04-10 02:11:35.000000000 +0200 +++ gimp-2.2.7/po-libgimp/en_CA.po 2005-05-08 23:41:58.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-22 20:02-0400\n" "Last-Translator: Adam Weinberger \n" "Language-Team: English/Canada \n" @@ -199,7 +199,7 @@ msgid "Gradient Selection" msgstr "Gradient Selection" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Empty)" diff -uraN gimp-2.2.6/po-libgimp/en_GB.gmo gimp-2.2.7/po-libgimp/en_GB.gmo --- gimp-2.2.6/po-libgimp/en_GB.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/en_GB.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -31,7 +31,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp CVS Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-21 22:54+0100 Last-Translator: David Lodge Language-Team: diff -uraN gimp-2.2.6/po-libgimp/en_GB.po gimp-2.2.7/po-libgimp/en_GB.po --- gimp-2.2.6/po-libgimp/en_GB.po 2005-04-10 02:11:35.000000000 +0200 +++ gimp-2.2.7/po-libgimp/en_GB.po 2005-05-08 23:41:58.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-21 22:54+0100\n" "Last-Translator: David Lodge \n" "Language-Team: \n" @@ -198,7 +198,7 @@ msgid "Gradient Selection" msgstr "Gradient Selection" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Empty)" diff -uraN gimp-2.2.6/po-libgimp/es.gmo gimp-2.2.7/po-libgimp/es.gmo --- gimp-2.2.6/po-libgimp/es.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/es.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -30,7 +30,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-12 16:12-0300 Last-Translator: Pablo del Campo Language-Team: diff -uraN gimp-2.2.6/po-libgimp/es.po gimp-2.2.7/po-libgimp/es.po --- gimp-2.2.6/po-libgimp/es.po 2005-04-10 02:11:35.000000000 +0200 +++ gimp-2.2.7/po-libgimp/es.po 2005-05-08 23:41:58.000000000 +0200 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-12 16:12-0300\n" "Last-Translator: Pablo del Campo \n" "Language-Team: \n" @@ -208,7 +208,7 @@ msgid "Gradient Selection" msgstr "Selección de gradiente" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Vacío)" diff -uraN gimp-2.2.6/po-libgimp/eu.gmo gimp-2.2.7/po-libgimp/eu.gmo --- gimp-2.2.6/po-libgimp/eu.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/eu.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -26,7 +26,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: eu Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-04-06 17:16+0200 Last-Translator: Iñaki Larrañaga Murgoitio Language-Team: Basque diff -uraN gimp-2.2.6/po-libgimp/eu.po gimp-2.2.7/po-libgimp/eu.po --- gimp-2.2.6/po-libgimp/eu.po 2005-04-10 02:11:35.000000000 +0200 +++ gimp-2.2.7/po-libgimp/eu.po 2005-05-08 23:41:58.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-04-06 17:16+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" @@ -203,7 +203,7 @@ msgid "Gradient Selection" msgstr "Gradientearen hautapena" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/fi.gmo gimp-2.2.7/po-libgimp/fi.gmo --- gimp-2.2.6/po-libgimp/fi.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/fi.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -29,7 +29,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-12-17 04:32+0200 Last-Translator: Mikko Paananen Language-Team: Finnish diff -uraN gimp-2.2.6/po-libgimp/fi.po gimp-2.2.7/po-libgimp/fi.po --- gimp-2.2.6/po-libgimp/fi.po 2005-04-10 02:11:35.000000000 +0200 +++ gimp-2.2.7/po-libgimp/fi.po 2005-05-08 23:41:58.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-12-17 04:32+0200\n" "Last-Translator: Mikko Paananen \n" "Language-Team: Finnish \n" @@ -196,7 +196,7 @@ msgid "Gradient Selection" msgstr "Väriliu'un valinta" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(tyhjä)" diff -uraN gimp-2.2.6/po-libgimp/fr.gmo gimp-2.2.7/po-libgimp/fr.gmo --- gimp-2.2.6/po-libgimp/fr.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/fr.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-23 22:12+0100 Last-Translator: Raymond Ostertag Language-Team: diff -uraN gimp-2.2.6/po-libgimp/fr.po gimp-2.2.7/po-libgimp/fr.po --- gimp-2.2.6/po-libgimp/fr.po 2005-04-10 02:11:35.000000000 +0200 +++ gimp-2.2.7/po-libgimp/fr.po 2005-05-08 23:41:58.000000000 +0200 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-23 22:12+0100\n" "Last-Translator: Raymond Ostertag \n" "Language-Team: \n" @@ -208,7 +208,7 @@ msgid "Gradient Selection" msgstr "Sélecteur de dégradés" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Vide)" diff -uraN gimp-2.2.6/po-libgimp/ga.gmo gimp-2.2.7/po-libgimp/ga.gmo --- gimp-2.2.6/po-libgimp/ga.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ga.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -1,6 +1,6 @@ $,89Project-Id-Version: gimp-libgimp VERSION Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2000-12-18 23:30-0800 Last-Translator: Nobody Language-Team: Irish diff -uraN gimp-2.2.6/po-libgimp/ga.po gimp-2.2.7/po-libgimp/ga.po --- gimp-2.2.6/po-libgimp/ga.po 2005-04-10 02:11:35.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ga.po 2005-05-08 23:41:59.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2000-12-18 23:30-0800\n" "Last-Translator: Nobody\n" "Language-Team: Irish\n" @@ -187,7 +187,7 @@ msgid "Gradient Selection" msgstr "" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/gimp20-libgimp.pot gimp-2.2.7/po-libgimp/gimp20-libgimp.pot --- gimp-2.2.6/po-libgimp/gimp20-libgimp.pot 2005-04-09 21:56:03.000000000 +0200 +++ gimp-2.2.7/po-libgimp/gimp20-libgimp.pot 2005-05-08 12:28:47.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\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" @@ -189,7 +189,7 @@ msgid "Gradient Selection" msgstr "" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/gl.gmo gimp-2.2.7/po-libgimp/gl.gmo --- gimp-2.2.6/po-libgimp/gl.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/gl.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -3,7 +3,7 @@   Add Alpha ChannelConvert to GrayscaleConvert to Indexed using default settings (Do it manually to tune the result)Convert to RGBExport FileFactorFlatten ImageMerge Visible LayersMore...Save as AnimationSelect FileThe export conversion won't modify your original image.UnitUnit SelectionpercentProject-Id-Version: gimp cvs Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2000-07-07 16:33+0200 Last-Translator: Francisco Xosé Vázquez Grandal Language-Team: Galician diff -uraN gimp-2.2.6/po-libgimp/gl.po gimp-2.2.7/po-libgimp/gl.po --- gimp-2.2.6/po-libgimp/gl.po 2005-04-10 02:11:35.000000000 +0200 +++ gimp-2.2.7/po-libgimp/gl.po 2005-05-08 23:41:59.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp cvs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2000-07-07 16:33+0200\n" "Last-Translator: Francisco Xosé Vázquez Grandal \n" "Language-Team: Galician \n" @@ -198,7 +198,7 @@ msgid "Gradient Selection" msgstr "Selección de unidades" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/he.gmo gimp-2.2.7/po-libgimp/he.gmo --- gimp-2.2.6/po-libgimp/he.gmo 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/he.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -36,7 +36,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers._A_B_C_Duplicate_Edit_G_H_K_M_R_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: gimp-libgimp.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2003-08-13 22:08+0300 Last-Translator: Gil 'Dolfin' Osher Language-Team: Hebrew diff -uraN gimp-2.2.6/po-libgimp/he.po gimp-2.2.7/po-libgimp/he.po --- gimp-2.2.6/po-libgimp/he.po 2005-04-10 02:11:36.000000000 +0200 +++ gimp-2.2.7/po-libgimp/he.po 2005-05-08 23:41:59.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2003-08-13 22:08+0300\n" "Last-Translator: Gil 'Dolfin' Osher \n" "Language-Team: Hebrew \n" @@ -202,7 +202,7 @@ msgid "Gradient Selection" msgstr "בחירת מדרג צבעים" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/hr.gmo gimp-2.2.7/po-libgimp/hr.gmo --- gimp-2.2.6/po-libgimp/hr.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/hr.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -23,7 +23,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: gimp-libgimp 0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-03-20 14:49+CET Last-Translator: auto Language-Team: Croatian diff -uraN gimp-2.2.6/po-libgimp/hr.po gimp-2.2.7/po-libgimp/hr.po --- gimp-2.2.6/po-libgimp/hr.po 2005-04-10 02:11:36.000000000 +0200 +++ gimp-2.2.7/po-libgimp/hr.po 2005-05-08 23:41:59.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp 0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-03-20 14:49+CET\n" "Last-Translator: auto\n" "Language-Team: Croatian \n" @@ -196,7 +196,7 @@ msgid "Gradient Selection" msgstr "Odabir Gradijenta" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/hu.gmo gimp-2.2.7/po-libgimp/hu.gmo --- gimp-2.2.6/po-libgimp/hu.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/hu.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-12-02 10:49+0100 Last-Translator: Arpad Biro Language-Team: Hungarian diff -uraN gimp-2.2.6/po-libgimp/hu.po gimp-2.2.7/po-libgimp/hu.po --- gimp-2.2.6/po-libgimp/hu.po 2005-04-10 02:11:36.000000000 +0200 +++ gimp-2.2.7/po-libgimp/hu.po 2005-05-08 23:41:59.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-12-02 10:49+0100\n" "Last-Translator: Arpad Biro \n" "Language-Team: Hungarian \n" @@ -201,7 +201,7 @@ msgid "Gradient Selection" msgstr "Színátmenet kiválasztása" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Üres)" diff -uraN gimp-2.2.6/po-libgimp/id.gmo gimp-2.2.7/po-libgimp/id.gmo --- gimp-2.2.6/po-libgimp/id.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/id.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -3,7 +3,7 @@ EPVZ`iorux{~    %.1f MBAlphaBlueFont SelectionGreenHueRedSaturationValue_A_B_G_H_R_S_VProject-Id-Version: libgimp HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2003-06-28 22:03+0700 Last-Translator: Mohammad DAMT Language-Team: Indonesian diff -uraN gimp-2.2.6/po-libgimp/id.po gimp-2.2.7/po-libgimp/id.po --- gimp-2.2.6/po-libgimp/id.po 2005-04-10 02:11:36.000000000 +0200 +++ gimp-2.2.7/po-libgimp/id.po 2005-05-08 23:41:59.000000000 +0200 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: libgimp HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2003-06-28 22:03+0700\n" "Last-Translator: Mohammad DAMT \n" "Language-Team: Indonesian \n" @@ -184,7 +184,7 @@ msgid "Gradient Selection" msgstr "" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/it.gmo gimp-2.2.7/po-libgimp/it.gmo --- gimp-2.2.6/po-libgimp/it.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/it.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -27,7 +27,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp 1.1.16 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-30 23:47+0100 Last-Translator: Marco Ciampa Language-Team: gimp.linux.it diff -uraN gimp-2.2.6/po-libgimp/it.po gimp-2.2.7/po-libgimp/it.po --- gimp-2.2.6/po-libgimp/it.po 2005-04-10 02:11:36.000000000 +0200 +++ gimp-2.2.7/po-libgimp/it.po 2005-05-08 23:41:59.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 1.1.16\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-30 23:47+0100\n" "Last-Translator: Marco Ciampa \n" "Language-Team: gimp.linux.it\n" @@ -200,7 +200,7 @@ msgid "Gradient Selection" msgstr "Selezione gradiente" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Vuoto)" diff -uraN gimp-2.2.6/po-libgimp/ja.gmo gimp-2.2.7/po-libgimp/ja.gmo --- gimp-2.2.6/po-libgimp/ja.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ja.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -25,7 +25,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-17 12:25+0900 Last-Translator: Tadashi Jokagi Language-Team: Japanese diff -uraN gimp-2.2.6/po-libgimp/ja.po gimp-2.2.7/po-libgimp/ja.po --- gimp-2.2.6/po-libgimp/ja.po 2005-04-10 02:11:36.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ja.po 2005-05-08 23:41:59.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-17 12:25+0900\n" "Last-Translator: Tadashi Jokagi \n" "Language-Team: Japanese \n" @@ -199,7 +199,7 @@ msgid "Gradient Selection" msgstr "グラデーション選択" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(空)" diff -uraN gimp-2.2.6/po-libgimp/ko.gmo gimp-2.2.7/po-libgimp/ko.gmo --- gimp-2.2.6/po-libgimp/ko.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ko.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -1,41 +1,50 @@ -t            *2 (] 4 # . ! -0 ^ .z     $6<CU[`puV A7*y TM>% ' $39Tg"m   ' -/:%? -e p} -! -; ? KY7p"fOU -]h_PUI - -   -"-4<DGN -U`cf?n 6L4F[E$Xj?L<PL22 +@l h6  @<L Sah{wm 8 9 @N"Ux% - -  * 1 /O  -   '   !!!"!;!B!S!Z!w!D~! ! !!E! D"N"g" n"u|""" #! -# ,#:#zA#u#\2$$$$$$ -$ -$$$ $$ -$ %%%%.%@% C%Q%b% -t%%%% -%%% %FV7l:D4].a|)' +%Ygc?TmsHwZC(!}ik;SGR,= UqL -pA3{xJQzrh6j2Xu-f&Kd> $Nn<e9o@5_#tOy0`1* [BIvEbP"W\^~M/ 8%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(invalid UTF-8 string)Absolute ColorimetricAdd Alpha ChannelAlphaAnchorApply Layer MasksBlackBlueBrush SelectionCMYKCMYK color selectorChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor ProofColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)Color proof filter using ICC color profileConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings +  $*B(m4#.!-@n.&<NT[mt +zr +> IUVq A*Ep xTM +X%g % ' "17 R\ o y2"   '1 AO Ub iu|   + %6 +H S` +r}!   +; : FTk7q8"f" + +_P=U +! +$/5=ORZ]enq t~  + +?/7?GOW _lrx6~LF[IEX?DL<L 2[ 2 +   !)!A! H!R! m!{! !!!!!! !v! ^" l"z"h" # ##@1#<r## ####w#mv$$.$ $%.%6%=%N%g%{%8% %% %%"%&+& B&L&_&y&&&&%&& &&'' +!' +,'7' >' L'V'j'~''''''/' ( +((3(G('O( w((( ((((( +( +(())):)DA) ) )))E);* J*T*m* t*u*** +!+ 2+ <+J+zQ+u+\B,,, ,,,, +, +,, +-- -'- +*- 5-A-D-G-Z-k-}- --- +----- +-- +. . .+4I\^$-Fl/H= +3V?vb0Z(d] <y){6"[o5,iRC mYB`&PfSph@1# a8;W2e%KT.cX~!9JA'N u*rGLEs>twDQ Mqx7_|U:Onzjgk}%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(Empty)(invalid UTF-8 string)Absolute ColorimetricAdd Alpha ChannelAlphaAnchorApply Layer MasksBlac_kBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorC_enterCannot determine a valid home directory. +Thumbnails will be stored in the folder for temporary files (%s) instead.Check SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor ProofColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)Color proof filter using ICC color profileConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings (Do it manually to tune the result)Convert to Indexed using default settings -(Do it manually to tune the result)Convert to RGBCropCurrent:CyanDeuteranopia (insensitivity to green)Export FileFactorFailed to create thumbnail folder '%s'.Flatten ImageFolderFont SelectionGammaGamma color display filterGradient SelectionGreenHigh Contrast color display filterHueL_etter SpacingL_ine SpacingLinkedLoad failedLoadedLoading module: '%s' -MagentaMerge Visible LayersModule '%s' load error: %sModule errorMore...Not loadedOld:Painter-style triangle color selectorPaste IntoPaste as NewPattern SelectionPerceptualPressureProtanopia (insensitivity to red)RedRelative ColorimetricSaturationSave as AnimationScalesSeed random number generator with a generated random numberSelect FileSelect FolderSkipping module: '%s' -The export conversion won't modify your original image.TriangleTritanopia (insensitivity to blue)UnitUnit SelectionUse this value for random number generator seed - this allows you to repeat a given "random" operationValueVisibleWatercolorWatercolor style color selectorWritableYellowYou are about to save a channel (saved selection) as %s. +(Do it manually to tune the result)Convert to RGBCould not create thumbnail for %s: %sCropCurrent:CyanDark ChecksDeuteranopia (insensitivity to green)Export FileFactorFailed to create thumbnail folder '%s'.Flatten ImageFolderFont SelectionGammaGamma color display filterGigabytesGradient SelectionGray OnlyGrayscaleGrayscale-alphaGreenHTML _Notation:Hexadecimal color notation as used in HTML and CSSHigh Contrast color display filterHueIndexedIndexed colorIndexed-alphaKilobytesL_etter SpacingL_ine SpacingLargeLight ChecksLinkedLoad failedLoadedLoading module: '%s' +MagentaMediumMegabytesMerge Visible LayersMid-Tone ChecksModule '%s' load error: %sModule errorMore...Not loadedOld:Painter-style triangle color selectorPalette SelectionPaste IntoPaste as NewPattern SelectionPerceptualPressureProtanopia (insensitivity to red)RGBRGB colorRGB-alphaRedRelative ColorimetricSaturationSave as AnimationScalesSeed random number generator with a generated random numberSelect FileSelect FolderSkipping module: '%s' +SmallThe export conversion won't modify your original image.The percentage of black to pull out of the colored inks.TriangleTritanopia (insensitivity to blue)UnitUnit SelectionUse this value for random number generator seed - this allows you to repeat a given "random" operationValueVisibleWatercolorWatercolor style color selectorWhite OnlyWritableYellowYou are about to save a channel (saved selection) as %s. This will not save the visible layers.You are about to save a layer mask as %s. -This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: gimp-plug-ins 1.1.10 +This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-plug-ins 1.1.10 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 -PO-Revision-Date: 2003-06-05 07:55+0800 +POT-Creation-Date: 2005-05-08 12:28+0200 +PO-Revision-Date: 2005-04-18 01:03+0900 Last-Translator: Dongsu Jang Language-Team: Korean MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d 바이트%d GB%d KB%d MB%s은(는) RGB 이미지만 처리할 수 있습니다%s은(는) RGB나 그레이스케일 이미지만 처리할 수 있습니다%s은(는) RGB나 인덱스된 이미지만 처리할 수 있습니다%s은(는) 비트맵(두가지 색상) 인덱스된 이미지만 처리할 수 있습니다%s은(는) 그레이스케일 이미지만 처리할 수 있습니다%s은(는) 그레이스케일이나 인덱스된 이미지만 처리할 수 있습니다%s은(는) 인덱스된 이미지만 처리할 수 있습니다%s은(는) 에니메이션 프래임 레이어만 처리할 수 있습니다%s은(는) 레이어 마스크를 처리할 수 없습니다%s은(는) 레어어 위치, 크기, 투명도를 처리할 수 없습니다%s은(는) 레이어를 처리할 수 없습니다%s은(는) 투명도를 처리할 수 없습니다%s은(는) 알파 채널이 필요합니다(잘못된 UTF-8 문자열)절대 비색계알파 채널 더하기알파고정점레이어 마스크 적용검정파랑브러시 선택CMYKCMYK 색상 선택기ICC 색상 프로파일 선택스포이드를 클릭한 다음, 화면 상의 아무 곳이나 클릭하여 색상을 선택합니다.색맹 보기색상 교정색맹 유형(_D):색맹 모의 실험 필터 (Brettel-Vienot-Mollon 알고리즘)ICC 생삭 프로파일을 사용하는 색상 교정 필터확인저장 확인휘도휘도 순환(_Y):그레이스케일로 바꾸기비트맵 기본 설정을 사용하여 인덱스된 이미지로 바꾸기 +%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d 바이트%d GB%d KB%d MB%s은(는) RGB 이미지만 처리할 수 있습니다%s은(는) RGB나 그레이스케일 이미지만 처리할 수 있습니다%s은(는) RGB나 인덱스된 이미지만 처리할 수 있습니다%s은(는) 비트맵(두가지 색상) 인덱스된 이미지만 처리할 수 있습니다%s은(는) 그레이스케일 이미지만 처리할 수 있습니다%s은(는) 그레이스케일이나 인덱스된 이미지만 처리할 수 있습니다%s은(는) 인덱스된 이미지만 처리할 수 있습니다%s은(는) 에니메이션 프래임 레이어만 처리할 수 있습니다%s은(는) 레이어 마스크를 처리할 수 없습니다%s은(는) 레어어 위치, 크기, 투명도를 처리할 수 없습니다%s은(는) 레이어를 처리할 수 없습니다%s은(는) 투명도를 처리할 수 없습니다%s은(는) 알파 채널이 필요합니다(비어있음)(잘못된 UTF-8 문자열)절대 비색계알파 채널 더하기알파고정점레이어 마스크 적용검정색(_K)검정검정색만검정색 농도 (_P):파랑브러시 선택CMYKCMYK 색상 선택기가운데(_E)올바른 홈 디렉토리를 결정할 수 없습니다. +썸네일을 임시 파일용 폴더(%s)에 저장합니다.격자 크기격자 형태ICC 색상 프로파일 선택스포이드를 클릭한 다음, 화면 상의 아무 곳이나 클릭하여 색상을 선택합니다.색맹 보기색상 교정색맹 유형(_D):색맹 모의 실험 필터 (Brettel-Vienot-Mollon 알고리즘)ICC 생삭 프로파일을 사용하는 색상 교정 필터확인저장 확인휘도휘도 순환(_Y):그레이스케일로 바꾸기비트맵 기본 설정을 사용하여 인덱스된 이미지로 바꾸기 (결과를 수동으로 조절하십시오)기본 설정을 사용하여 인덱스된 이미지로 바꾸기 -(결과를 수동으로 조절하십시오)RGB로 바꾸기자르기현재:청록제 2 색맹 (녹색맹)파일 내보내기팩터썸네일 폴더 '%s'을(를) 만들지 못했습니다.이미지 배경으로 합치기폴더글꼴 선택감마감마 색상 화면 표시 필터그라디언트 선택초록고휘도 색상 화면 표시 필터색상자간(_E)행간(_I)연결됨불러오기 실패불러오기 완료모듈 불러오는 중: '%s' -자홍보이는 레이어 합치기모듈 '%s'을(를) 불러오는 중 오류: %s모듈 오류좀 더...불러오지 않음이전:페인터같은 삼각형 색 선택기안에 붙여 넣기새로 붙여 넣기무늬 선택인식압력제 1 색맹 (적색맹)빨강상대 비색계채도에니메이션으로 저장배율생성된 난수를 난수 생성기의 씨앗으로 사용합니다파일 선택폴더 선택모듈 건너뛰는 중: '%s' -내보내기 변환은 원래의 이미지를 바꾸지 않습니다.삼각형제 3 색맹 (청색맹)단위단위 선택이 값을 난수 생성기의 씨앗으로 사용합니다 - 주어진 "난수" 연산을 반복할 수 있습니다명도보임수채화수채화 형태의 색 선택기기록 가능노랑채널(저장된 선택)을 %s(으)로 저장하려고 합니다. +(결과를 수동으로 조절하십시오)RGB로 바꾸기%s의 썸네일을 만들 수 없습니다: %s자르기현재:청록어두운 격자제 2 색맹 (녹색맹)파일 내보내기팩터썸네일 폴더 '%s'을(를) 만들지 못했습니다.이미지 배경으로 합치기폴더글꼴 선택감마감마 색상 화면 표시 필터기가바이트그라디언트 선택회색만그레이스케일그레이스케일-알파초록HTML 표기(_N):HTML 및 CSS용 16진수 색상 표기고휘도 색상 화면 표시 필터색상색인됨색인된 컬러색인됨-알파킬로바이트자간(_E)행간(_I)크게밝은 격자연결됨불러오기 실패불러오기 완료모듈 불러오는 중: '%s' +자홍중간메가바이트보이는 레이어 합치기중간톤 격자모듈 '%s'을(를) 불러오는 중 오류: %s모듈 오류좀 더...불러오지 않음이전:페인터같은 삼각형 색 선택기무늬 선택안에 붙여 넣기새로 붙여 넣기무늬 선택인식압력제 1 색맹 (적색맹)RGBRGB 색상RGB-알파빨강상대 비색계채도에니메이션으로 저장배율생성된 난수를 난수 생성기의 씨앗으로 사용합니다파일 선택폴더 선택모듈 건너뛰는 중: '%s' +작게내보내기 변환은 원래의 이미지를 바꾸지 않습니다.컬러화된 잉크에서 추출할 검정색의 비율(%).삼각형제 3 색맹 (청색맹)단위단위 선택이 값을 난수 생성기의 씨앗으로 사용합니다 - 주어진 "난수" 연산을 반복할 수 있습니다명도보임수채화수채화 형태의 색 선택기흰새만기록 가능노랑채널(저장된 선택)을 %s(으)로 저장하려고 합니다. 보이는 레이어를 저장하는 것이 아닙니다.레이어 마스크를 %s(으)로 저장하려고 합니다. -보이는 레이어를 저장하는 것이 아닙니다.다음 이유 때문에, %s(으)로 저장하기 전에 이미지를 내보내야 합니다:_A_B검정색 점 보상(_B)찾아보기(_B)..._C복제(_D)편집(_E)내보내기(_E)_G감마(_G):_H무시(_I)의도(_I):_K_M새 씨앗 값(_N)프로파일(_P):_R난수화(_R)원래대로(_R)크기 조절(_R)회전(_R)_S배율 조절(_S)기울이기(_S)변형(_T)_V_Y백분율 \ No newline at end of file +보이는 레이어를 저장하는 것이 아닙니다.다음 이유 때문에, %s(으)로 저장하기 전에 이미지를 내보내야 합니다:_A_B배경색(_B)검정색 점 보상(_B)찾아보기(_B)..._C복제(_D)편집(_E)내보내기(_E)전경색(_F)_G감마(_G):_H무시(_I)의도(_I):_K_M새 씨앗 값(_N)미리보기(_P)프로파일(_P):_R난수화(_R)원래대로(_R)크기 조절(_R)회전(_R)_S배율 조절(_S)기울이기(_S)스트로크(_S)변형(_T)_V흰색(_W)_Y백분율 \ No newline at end of file diff -uraN gimp-2.2.6/po-libgimp/ko.po gimp-2.2.7/po-libgimp/ko.po --- gimp-2.2.6/po-libgimp/ko.po 2005-04-10 02:11:36.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ko.po 2005-05-08 23:41:59.000000000 +0200 @@ -1,12 +1,12 @@ -# gimp-plug-ins ko.po -# Copyright (C) 1999 Free Software Foundation, Inc. -# Sung-Hyun Nam , 1999 +# po-libgimp/ko.po +# Sung-Hyun Nam , 1998-1999 +# Dongsu Jang , 2004-2005 msgid "" msgstr "" "Project-Id-Version: gimp-plug-ins 1.1.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" -"PO-Revision-Date: 2003-06-05 07:55+0800\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" +"PO-Revision-Date: 2005-04-18 01:03+0900\n" "Last-Translator: Dongsu Jang \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" @@ -194,12 +194,11 @@ msgid "Gradient Selection" msgstr "그라디언트 선택" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" -msgstr "" +msgstr "(비어있음)" #: ../libgimp/gimppalettemenu.c:91 -#, fuzzy msgid "Palette Selection" msgstr "무늬 선택" @@ -213,73 +212,71 @@ #: ../libgimpbase/gimpbaseenums.c:23 msgid "Small" -msgstr "" +msgstr "작게" #: ../libgimpbase/gimpbaseenums.c:24 msgid "Medium" -msgstr "" +msgstr "중간" #: ../libgimpbase/gimpbaseenums.c:25 msgid "Large" -msgstr "" +msgstr "크게" #: ../libgimpbase/gimpbaseenums.c:57 msgid "Light Checks" -msgstr "" +msgstr "밝은 격자" #: ../libgimpbase/gimpbaseenums.c:58 msgid "Mid-Tone Checks" -msgstr "" +msgstr "중간톤 격자" #: ../libgimpbase/gimpbaseenums.c:59 msgid "Dark Checks" -msgstr "" +msgstr "어두운 격자" #: ../libgimpbase/gimpbaseenums.c:60 msgid "White Only" -msgstr "" +msgstr "흰새만" #: ../libgimpbase/gimpbaseenums.c:61 msgid "Gray Only" -msgstr "" +msgstr "회색만" #: ../libgimpbase/gimpbaseenums.c:62 -#, fuzzy msgid "Black Only" -msgstr "검정" +msgstr "검정색만" #: ../libgimpbase/gimpbaseenums.c:91 msgid "RGB color" -msgstr "" +msgstr "RGB 색상" #: ../libgimpbase/gimpbaseenums.c:92 ../libgimpbase/gimpbaseenums.c:127 -#, fuzzy msgid "Grayscale" -msgstr "그레이스케일로 바꾸기" +msgstr "그레이스케일" #: ../libgimpbase/gimpbaseenums.c:93 msgid "Indexed color" -msgstr "" +msgstr "색인된 컬러" #: ../libgimpbase/gimpbaseenums.c:125 msgid "RGB" -msgstr "" +msgstr "RGB" #: ../libgimpbase/gimpbaseenums.c:126 msgid "RGB-alpha" -msgstr "" +msgstr "RGB-알파" #: ../libgimpbase/gimpbaseenums.c:128 msgid "Grayscale-alpha" -msgstr "" +msgstr "그레이스케일-알파" #: ../libgimpbase/gimpbaseenums.c:129 msgid "Indexed" -msgstr "" +msgstr "색인됨" #: ../libgimpbase/gimpbaseenums.c:130 msgid "Indexed-alpha" -msgstr "" +msgstr "색인됨-알파" #: ../libgimpbase/gimpmemsize.c:177 #, c-format @@ -374,6 +371,8 @@ "Cannot determine a valid home directory.\n" "Thumbnails will be stored in the folder for temporary files (%s) instead." msgstr "" +"올바른 홈 디렉토리를 결정할 수 없습니다.\n" +"썸네일을 임시 파일용 폴더(%s)에 저장합니다." #: ../libgimpthumb/gimpthumb-utils.c:249 ../libgimpthumb/gimpthumb-utils.c:317 #, c-format @@ -381,29 +380,25 @@ msgstr "썸네일 폴더 '%s'을(를) 만들지 못했습니다." #: ../libgimpthumb/gimpthumbnail.c:919 -#, fuzzy, c-format +#, c-format msgid "Could not create thumbnail for %s: %s" -msgstr "썸네일 폴더 '%s'을(를) 만들지 못했습니다." +msgstr "%s의 썸네일을 만들 수 없습니다: %s" #: ../libgimpwidgets/gimpcolorbutton.c:99 -#, fuzzy msgid "_Foreground Color" -msgstr "/전경색(_F)" +msgstr "전경색(_F)" #: ../libgimpwidgets/gimpcolorbutton.c:103 -#, fuzzy msgid "_Background Color" -msgstr "/배경색(_B)" +msgstr "배경색(_B)" #: ../libgimpwidgets/gimpcolorbutton.c:107 -#, fuzzy msgid "Blac_k" -msgstr "/검정색(_K)" +msgstr "검정색(_K)" #: ../libgimpwidgets/gimpcolorbutton.c:111 -#, fuzzy msgid "_White" -msgstr "/흰색(_W)" +msgstr "흰색(_W)" #: ../libgimpwidgets/gimpcolorscales.c:133 msgid "Scales" @@ -480,13 +475,12 @@ msgstr "알파" #: ../libgimpwidgets/gimpcolorscales.c:243 -#, fuzzy msgid "Hexadecimal color notation as used in HTML and CSS" -msgstr "HTML용 16진수 색상 표기" +msgstr "HTML 및 CSS용 16진수 색상 표기" #: ../libgimpwidgets/gimpcolorscales.c:248 msgid "HTML _Notation:" -msgstr "" +msgstr "HTML 표기(_N):" #: ../libgimpwidgets/gimpcolorselection.c:203 msgid "Current:" @@ -505,17 +499,14 @@ msgstr "파일 선택" #: ../libgimpwidgets/gimpmemsizeentry.c:232 -#, fuzzy msgid "Kilobytes" msgstr "킬로바이트" #: ../libgimpwidgets/gimpmemsizeentry.c:233 -#, fuzzy msgid "Megabytes" msgstr "메가바이트" #: ../libgimpwidgets/gimpmemsizeentry.c:234 -#, fuzzy msgid "Gigabytes" msgstr "기가바이트" @@ -536,16 +527,16 @@ #: ../libgimpwidgets/gimppreviewarea.c:126 msgid "Check Size" -msgstr "" +msgstr "격자 크기" #: ../libgimpwidgets/gimppreviewarea.c:133 msgid "Check Style" -msgstr "" +msgstr "격자 형태" #. toggle button to (des)activate the instant preview #: ../libgimpwidgets/gimppreview.c:240 msgid "_Preview" -msgstr "" +msgstr "미리보기(_P)" #: ../libgimpwidgets/gimpstock.c:113 msgid "Anchor" @@ -553,7 +544,7 @@ #: ../libgimpwidgets/gimpstock.c:114 msgid "C_enter" -msgstr "" +msgstr "가운데(_E)" #: ../libgimpwidgets/gimpstock.c:115 msgid "_Duplicate" @@ -585,7 +576,7 @@ #: ../libgimpwidgets/gimpstock.c:154 ../libgimpwidgets/gimpstock.c:158 msgid "_Stroke" -msgstr "" +msgstr "스트로크(_S)" #: ../libgimpwidgets/gimpstock.c:170 msgid "L_etter Spacing" @@ -780,13 +771,12 @@ msgstr "검정" #: ../modules/colorsel_cmyk.c:191 -#, fuzzy msgid "Black _Pullout:" -msgstr "검정색 농도 (%):" +msgstr "검정색 농도 (_P):" #: ../modules/colorsel_cmyk.c:208 msgid "The percentage of black to pull out of the colored inks." -msgstr "" +msgstr "컬러화된 잉크에서 추출할 검정색의 비율(%)." #: ../modules/colorsel_triangle.c:104 msgid "Painter-style triangle color selector" @@ -807,9 +797,3 @@ #: ../modules/colorsel_water.c:220 msgid "Pressure" msgstr "압력" - -#~ msgid "He_x Triplet:" -#~ msgstr "세개의 16진수(_X):" - -#~ msgid "None" -#~ msgstr "없음" diff -uraN gimp-2.2.6/po-libgimp/lt.gmo gimp-2.2.7/po-libgimp/lt.gmo --- gimp-2.2.6/po-libgimp/lt.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/lt.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -29,7 +29,7 @@ MediumMegabytesMerge Visible LayersModule '%s' load error: %sModule errorMore...Not loadedOld:Palette SelectionPaste IntoPaste as NewPattern SelectionPressureRGBRGB colorRGB-alphaRedSaturationSave as AnimationSeed random number generator with a generated random numberSelect FileSelect FolderSkipping module: '%s' SmallThe export conversion won't modify your original image.TriangleUnitUnit SelectionValueVisibleWatercolorWatercolor style color selectorWhite OnlyWritableYellowYour image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_H_Ignore_K_M_Preview_Profile:_R_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_White_YpercentProject-Id-Version: GIMP (libgimp) HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-02 22:30+0200 Last-Translator: Giedrius Naudžiūnas Language-Team: Lithuanian diff -uraN gimp-2.2.6/po-libgimp/lt.po gimp-2.2.7/po-libgimp/lt.po --- gimp-2.2.6/po-libgimp/lt.po 2005-04-10 02:11:36.000000000 +0200 +++ gimp-2.2.7/po-libgimp/lt.po 2005-05-08 23:41:59.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: GIMP (libgimp) HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-02 22:30+0200\n" "Last-Translator: Giedrius Naudžiūnas \n" "Language-Team: Lithuanian \n" @@ -198,7 +198,7 @@ msgid "Gradient Selection" msgstr "Perėjimų pasirinkimas" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Tuščias)" diff -uraN gimp-2.2.6/po-libgimp/ms.gmo gimp-2.2.7/po-libgimp/ms.gmo --- gimp-2.2.6/po-libgimp/ms.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ms.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -21,7 +21,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers._A_B_Browse..._C_Duplicate_Edit_G_H_K_M_R_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2003-10-30 08:00+0800 Last-Translator: Mimos Open Source Development Group Language-Team: Projek Gabai diff -uraN gimp-2.2.6/po-libgimp/ms.po gimp-2.2.7/po-libgimp/ms.po --- gimp-2.2.6/po-libgimp/ms.po 2005-04-10 02:11:36.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ms.po 2005-05-08 23:41:59.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2003-10-30 08:00+0800\n" "Last-Translator: Mimos Open Source Development Group \n" "Language-Team: Projek Gabai \n" @@ -201,7 +201,7 @@ msgid "Gradient Selection" msgstr "Pemilihan Kecerunan" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/nb.gmo gimp-2.2.7/po-libgimp/nb.gmo --- gimp-2.2.6/po-libgimp/nb.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/nb.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-12-04 17:15+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian Bokmål diff -uraN gimp-2.2.6/po-libgimp/nb.po gimp-2.2.7/po-libgimp/nb.po --- gimp-2.2.6/po-libgimp/nb.po 2005-04-10 02:11:36.000000000 +0200 +++ gimp-2.2.7/po-libgimp/nb.po 2005-05-08 23:42:00.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-12-04 17:15+0100\n" "Last-Translator: Sigurd Gartmann \n" "Language-Team: Norwegian Bokmål\n" @@ -200,7 +200,7 @@ msgid "Gradient Selection" msgstr "Graderingsvalg" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Tomt)" diff -uraN gimp-2.2.6/po-libgimp/nl.gmo gimp-2.2.7/po-libgimp/nl.gmo --- gimp-2.2.6/po-libgimp/nl.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/nl.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-18 02:35+0100 Last-Translator: Tino Meinen Language-Team: Dutch diff -uraN gimp-2.2.6/po-libgimp/nl.po gimp-2.2.7/po-libgimp/nl.po --- gimp-2.2.6/po-libgimp/nl.po 2005-04-10 02:11:36.000000000 +0200 +++ gimp-2.2.7/po-libgimp/nl.po 2005-05-08 23:42:00.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-18 02:35+0100\n" "Last-Translator: Tino Meinen \n" "Language-Team: Dutch \n" @@ -204,7 +204,7 @@ msgid "Gradient Selection" msgstr "Verloopselectie" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Leeg)" diff -uraN gimp-2.2.6/po-libgimp/no.gmo gimp-2.2.7/po-libgimp/no.gmo --- gimp-2.2.6/po-libgimp/no.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/no.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-12-04 17:15+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian Bokmål diff -uraN gimp-2.2.6/po-libgimp/no.po gimp-2.2.7/po-libgimp/no.po --- gimp-2.2.6/po-libgimp/no.po 2005-04-10 02:11:37.000000000 +0200 +++ gimp-2.2.7/po-libgimp/no.po 2005-05-08 23:42:00.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-12-04 17:15+0100\n" "Last-Translator: Sigurd Gartmann \n" "Language-Team: Norwegian Bokmål\n" @@ -200,7 +200,7 @@ msgid "Gradient Selection" msgstr "Graderingsvalg" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Tomt)" diff -uraN gimp-2.2.6/po-libgimp/pa.gmo gimp-2.2.7/po-libgimp/pa.gmo --- gimp-2.2.6/po-libgimp/pa.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/pa.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -22,7 +22,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp.gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-03-09 09:35+0530 Last-Translator: Amanpreet Singh Alam Language-Team: Punjabi diff -uraN gimp-2.2.6/po-libgimp/pa.po gimp-2.2.7/po-libgimp/pa.po --- gimp-2.2.6/po-libgimp/pa.po 2005-04-10 02:11:37.000000000 +0200 +++ gimp-2.2.7/po-libgimp/pa.po 2005-05-08 23:42:00.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp.gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-03-09 09:35+0530\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -201,7 +201,7 @@ msgid "Gradient Selection" msgstr "ਢਾਲਵਾ ਚੋਣ" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(ਖਾਲੀ)" diff -uraN gimp-2.2.6/po-libgimp/pl.gmo gimp-2.2.7/po-libgimp/pl.gmo --- gimp-2.2.6/po-libgimp/pl.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/pl.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -26,7 +26,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-02 23:11+0100 Last-Translator: Bartosz Kosiorek Language-Team: Polish diff -uraN gimp-2.2.6/po-libgimp/pl.po gimp-2.2.7/po-libgimp/pl.po --- gimp-2.2.6/po-libgimp/pl.po 2005-04-10 02:11:37.000000000 +0200 +++ gimp-2.2.7/po-libgimp/pl.po 2005-05-08 23:42:00.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-02 23:11+0100\n" "Last-Translator: Bartosz Kosiorek \n" "Language-Team: Polish \n" @@ -204,7 +204,7 @@ msgid "Gradient Selection" msgstr "Wybór gradientu" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Pusty)" diff -uraN gimp-2.2.6/po-libgimp/pt_BR.gmo gimp-2.2.7/po-libgimp/pt_BR.gmo --- gimp-2.2.6/po-libgimp/pt_BR.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/pt_BR.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_YpercentProject-Id-Version: pt_BR Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-10-26 10:59-0200 Last-Translator: Joao S. O. Bueno Calligaris Language-Team: Brazilian Portuguese <> diff -uraN gimp-2.2.6/po-libgimp/pt_BR.po gimp-2.2.7/po-libgimp/pt_BR.po --- gimp-2.2.6/po-libgimp/pt_BR.po 2005-04-10 02:11:37.000000000 +0200 +++ gimp-2.2.7/po-libgimp/pt_BR.po 2005-05-08 23:42:00.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-10-26 10:59-0200\n" "Last-Translator: Joao S. O. Bueno Calligaris \n" "Language-Team: Brazilian Portuguese <>\n" @@ -203,7 +203,7 @@ msgid "Gradient Selection" msgstr "Seleção de Degradê" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Vazio)" diff -uraN gimp-2.2.6/po-libgimp/pt.gmo gimp-2.2.7/po-libgimp/pt.gmo --- gimp-2.2.6/po-libgimp/pt.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/pt.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -20,7 +20,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: 2.6 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-03-21 20:20+0000 Last-Translator: Duarte Loreto Language-Team: Portuguese diff -uraN gimp-2.2.6/po-libgimp/pt.po gimp-2.2.7/po-libgimp/pt.po --- gimp-2.2.6/po-libgimp/pt.po 2005-04-10 02:11:37.000000000 +0200 +++ gimp-2.2.7/po-libgimp/pt.po 2005-05-08 23:42:00.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-03-21 20:20+0000\n" "Last-Translator: Duarte Loreto \n" "Language-Team: Portuguese \n" @@ -198,7 +198,7 @@ msgid "Gradient Selection" msgstr "Selecção Gradiente" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/ro.gmo gimp-2.2.7/po-libgimp/ro.gmo --- gimp-2.2.6/po-libgimp/ro.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ro.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -4,7 +4,7 @@ H F T b p ~  $3EU^bhqu }    !%.1f KB%.1f MB%.2f KB%.2f MB%d KBAlphaBlueBrush SelectionCropCyanGradient SelectionGray OnlyGreenHueIndexedLargeLoad failedMagentaMediumModule errorPaste IntoPaste as NewPattern SelectionPressureRGBRedSaturationSmallValueWhite OnlyYellowpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2000-11-24 15:46+0100 Last-Translator: Robert Claudiu Gheorghe Language-Team: Română diff -uraN gimp-2.2.6/po-libgimp/ro.po gimp-2.2.7/po-libgimp/ro.po --- gimp-2.2.6/po-libgimp/ro.po 2005-04-10 02:11:37.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ro.po 2005-05-08 23:42:00.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2000-11-24 15:46+0100\n" "Last-Translator: Robert Claudiu Gheorghe \n" "Language-Team: Română \n" @@ -199,7 +199,7 @@ msgid "Gradient Selection" msgstr "Selectie Gradient" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/ru.gmo gimp-2.2.7/po-libgimp/ru.gmo --- gimp-2.2.6/po-libgimp/ru.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ru.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -1,43 +1,45 @@ -l -HIQYaiqy*(4#;._!-.)@]w - -, 7CV_ A*3^ fs|TMF%U{ % '  % @J ] gq2"    /= CP Wcj   -%$ -6 AN -`k!t   -; ( 4BY7_8"fw} - -_P+U| - - $'/8; >H Q[ -^ipx -Y    * 4 > HT\dJlrp*gee{;s 0 @ +! /!%gn(x4hBv9 AS qIO_fE[VPZc`3~-,%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(Empty)(invalid UTF-8 string)Absolute ColorimetricAdd Alpha ChannelAlphaAnchorApply Layer MasksBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorCheck SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor ProofColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)Color proof filter using ICC color profileConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings +  $*B(m4#.!-@n.&<NT[mt +zr +> IUVq A*Ep xTM +X%g % ' "17 R\ o y2"   '1 AO Ub iu|   + %6 +H S` +r}!   +; : FTk7q8"f" + +_P=U +! +$/5=ORZ]enq t~  + +L < F P Z d n xJrpZgOeE e ;!sM!0!@!+3" _"%l"."&" +""&# /# <#I#$c# +###%###$!$! %-%E%-&;.&j&X&K'+b''*'9'((!)z))*@*P*'_*S*%*+x+#+++ ++(+ ,,;,S,o,, ,c,<-B-I-'h---.-0-.%-.S. f..$....,./35/i////7//0"-0P0j00O00 001*1>1*W1 +11262"T2w2w2\3_3Kv333344415A5 Y5 f5s5 66e7h7k7.}777777&8,8 /8;8>8W8_8b8e8{8888888889-9<9W9 +Z9e9h9+4I\^$-Fl/H= +3V?vb0Z(d] <y){6"[o5,iRC mYB`&PfSph@1# a8;W2e%KT.cX~!9JA'N u*rGLEs>twDQ Mqx7_|U:Onzjgk}%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(Empty)(invalid UTF-8 string)Absolute ColorimetricAdd Alpha ChannelAlphaAnchorApply Layer MasksBlac_kBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorC_enterCannot determine a valid home directory. +Thumbnails will be stored in the folder for temporary files (%s) instead.Check SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor ProofColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)Color proof filter using ICC color profileConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings (Do it manually to tune the result)Convert to Indexed using default settings (Do it manually to tune the result)Convert to RGBCould not create thumbnail for %s: %sCropCurrent:CyanDark ChecksDeuteranopia (insensitivity to green)Export FileFactorFailed to create thumbnail folder '%s'.Flatten ImageFolderFont SelectionGammaGamma color display filterGigabytesGradient SelectionGray OnlyGrayscaleGrayscale-alphaGreenHTML _Notation:Hexadecimal color notation as used in HTML and CSSHigh Contrast color display filterHueIndexedIndexed colorIndexed-alphaKilobytesL_etter SpacingL_ine SpacingLargeLight ChecksLinkedLoad failedLoadedLoading module: '%s' MagentaMediumMegabytesMerge Visible LayersMid-Tone ChecksModule '%s' load error: %sModule errorMore...Not loadedOld:Painter-style triangle color selectorPalette SelectionPaste IntoPaste as NewPattern SelectionPerceptualPressureProtanopia (insensitivity to red)RGBRGB colorRGB-alphaRedRelative ColorimetricSaturationSave as AnimationScalesSeed random number generator with a generated random numberSelect FileSelect FolderSkipping module: '%s' SmallThe export conversion won't modify your original image.The percentage of black to pull out of the colored inks.TriangleTritanopia (insensitivity to blue)UnitUnit SelectionUse this value for random number generator seed - this allows you to repeat a given "random" operationValueVisibleWatercolorWatercolor style color selectorWhite OnlyWritableYellowYou are about to save a channel (saved selection) as %s. This will not save the visible layers.You are about to save a layer mask as %s. -This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_YpercentProject-Id-Version: gimp.LIBGIMP.ru +This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: ru Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 -PO-Revision-Date: 2004-11-13 00:02+0300 +POT-Creation-Date: 2005-05-08 12:28+0200 +PO-Revision-Date: 2005-04-10 00:17+0400 Last-Translator: AnatolyA. Yakushin Language-Team: russian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: KBabel 1.9.1 -%.1f ГБ%.1f КБ%.1f МБ%.2f ГБ%.2f КБ%.2f МБ%d байт%d ГБ%d КБ%d МБ%s может обработать только RGB-изображения%s может обработать только изображения в оттенках серого или RGB%s может обработать только RGB или индексированные изображения%s может обработать только двухцветное или индексированные изображения%s может обработать только изображения в оттенках серого%s может обработать только изображения в оттенках серого или индексированные%s может обработать только индексированные изображения%s может обработать слои только как анимированные кадры%s не может обработать маски слоя%s не может обработать смещение, размер или непрозрачность слоя%s не может обработать слои%s не может обработать прозрачность%s требуется альфа канал(Пусто)(неверная строка UTF-8)Абсол. колориметрическийДобавить альфа-каналАльфаПрикрепитьПрименить маски слояЧёрныйТолько чёрныйСодержание черного:СинийВыбор кистиCMYKТип выбора цвета - CMYKПроверить размерПроверить стильФайл параметров ICCВыберите пипетку, затем укажите цвет где-нибудь на экране, чтобы выбрать его.Зрение со сниженным цветовосприятиемНастройка цветопередачиТип сниженного цветовосприятия:Фильтр моделирующий недостаток цвета (алгоритм Бреттеля-Виенота-Моллона)Фильтр настройки цветопередачи, использующий ICCПодтвердитьПодтвердить сохранениеКонтрастностьСтепень контрастности:Преобразовать в оттенки серогоПреобразовать в индексированное используя настройки по умолчанию +%.1f ГБ%.1f КБ%.1f МБ%.2f ГБ%.2f КБ%.2f МБ%d байт%d ГБ%d КБ%d МБ%s может обработать только RGB-изображения%s может обработать только изображения в оттенках серого или RGB%s может обработать только RGB или индексированные изображения%s может обработать только двухцветное или индексированные изображения%s может обработать только изображения в оттенках серого%s может обработать только изображения в оттенках серого или индексированные%s может обработать только индексированные изображения%s может обработать слои только как анимированные кадры%s не может обработать маски слоя%s не может обработать смещение, размер или непрозрачность слоя%s не может обработать слои%s не может обработать прозрачность%s требуется альфа канал(Пусто)(неверная строка UTF-8)Абсол. колориметрическийДобавить альфа-каналАльфаПрикрепитьПрименить маски слояЧёрныйЧёрныйТолько черныйСодержание черного:СинийВыбор кистиCMYKТип выбора цвета - CMYKЦентрироватьНевозможно определить правильный домашний каталог. +Файлы предпросмотра будут помещены в каталог для временных файлов (%s) .Размер клетокСтиль отображенияФайл параметров ICCВыберите пипетку, затем укажите цвет где-нибудь на экране, чтобы выбрать его.Зрение со сниженным цветовосприятиемНастройка цветопередачиТип сниженного цветовосприятия:Фильтр моделирующий недостаток цвета (алгоритм Бреттеля-Виенота-Моллона)Фильтр настройки цветопередачи, использующий ICCПодтвердитьПодтвердить сохранениеКонтрастностьСтепень контрастности:Преобразовать в оттенки серогоПреобразовать в индексированное используя настройки по умолчанию (Результат можно подстроить вручную)Преобразовать в индексированное используя настройки по умолчанию -(Результат можно подстроить вручную)Преобразовать в RGBНе удалось создать файлы предварительного просмотра %s: %s.КадрироватьТекущий:ГолубойЧерные и серые клеткиДевтеранопия (нечувствительность к зелёному)Экспортировать файлМножительНе удалось создать каталог файлов предварительного просмотра '%s'.Свести изображениеКаталогВыбор шрифтаГаммаФильтр цветовой гаммыГигабайтыВыбор градиентаТолько серыйСерыйАльфа-серыйЗелёныйНотация HTMLШестнадцатеричная запись цвета используемая в HTML и CSSФильтр повышенной контрастностиТонИндексированныйИндексированный цветИндексированный-альфаКилобайтыРасстояние между буквамиРасстояние между строкамиБольшойБелые и серые клеткиСвязанныеСбой при загрузкеЗагруженЗагрузка модуля: "%s" -ПурпурныйСреднийМегабайтыОбъединить видимые слоиСерые клеткиОшибка загрузки модуля "%s": -%sОшибка модуляДополнительно...Не загруженПрежний:Тип выбора цвета - треугольникВыбор палитрыВставить вВставить как новоеВыбор шаблонаПерцепционыйДавлениеПротанопия (нечувствительность к красному)RGBцвет RGBRGB-альфаКрасныйОтн. колориметрическийНасыщенностьСохранить как анимациюШкалаИнициализировать генератор случайных чисел сгенерированным случайным числомВыбрать файлВыбрать каталогПропуск модуля: "%s" -МаленькийЭкспортное преобразование не изменит ваше исходное изображение.Процентное содержание черного в цветных чернилах.ТреугольникТританопия (нечувствительность к синему)ЕдиницаВыбор единицИспользуйте это значение для инициализации генератора случайных чисел - это даст возможность повторить заданную "случайную" операциюЯркостьВидимыйАкварельТип выбора цвета - акварельТолько белыйПерезаписываемыйЖелтыйВы собираетесь сохранить канал (сохранённое выделение) как %s. +(Результат можно подстроить вручную)Преобразовать в RGBНе удалось создать каталог файлов предварительного просмотра %s %s .КадрироватьТекущий:ГолубойЧерные и серые клеткиДевтеранопия (нечувствительность к зелёному)Экспортировать файлМножительНе удалось создать каталог файлов предварительного просмотра '%s'.Свести изображениеКаталогВыбор шрифтаГаммаФильтр цветовой гаммыГигабайтВыбор градиентаТолько серыйОттенок серогоАльфа-серыйЗелёныйДля HTML:Шестнадцатеричная запись цвета, используемая в HTML и CSSФильтр повышенной контрастностиТонИндексированныйИндексированный цветИндексир.-альфаКилобайтРасстояние между буквамиРасстояние между строкамиБольшойБелые и серые клеткиСвязанныеСбой при загрузкеЗагруженЗагрузка модуля: "%s" +ПурпурныйСреднийМегабайтОбъединить видимые слоиСерые клеткиОшибка загрузки модуля "%s": +%sОшибка модуляДополнительно...Не загруженПрежний:Тип выбора цвета - треугольникВыбор пабитрыВставить вВставить как новоеВыбор шаблонаПерцепционыйДавлениеПротанопия (нечувствительность к красному)RGBЦвет RGBRGB-альфаКрасныйОтн. колориметрическийНасыщенностьСохранить как анимациюШкалаИнициализировать генератор случайных чисел сгенерированным случайным числомВыбрать файлВыбрать каталогПропуск модуля: "%s" +МаленькийЭкспортное преобразование не изменит ваше исходное изображение.Процентное содержание черного в цветных чернилах.ТреугольникТританопия (нечувствительность к синему)ЕдиницаВыбор единицИспользуйте это значение для инициализации генератора случайных чисел - это даст возможность повторить заданную "случайную" операциюЯркостьВидимыйАкварельТип выбора цвета - акварельТолько белыйЗаписьЖелтыйВы собираетесь сохранить канал (сохранённое выделение) как %s. Видимые слои не будут сохранены.Вы собираетесь сохранить маску слоя как %s. -Видимые слои не будут сохранены.Ваше изображение должно быть экспортировано до того, как оно будет сохранено %s по следующим причинам:_A_BКомпенсация черных точекВыбрать..._CСделать копиюИсправитьЭкспорт_GГамма:_HИгнорироватьТип:_K_MНовое зерно_ПросмотрПараметры:_RПеремешатьСброситьИзменить размерПовернуть_SМасштабироватьНаклонитьОбвестиПреобразовать_V_Yпроцент \ No newline at end of file +Видимые слои не будут сохранены.Ваше изображение должно быть экспортировано до того, как оно будет сохранено %s по следующим причинам:_A_BЦвет фонаКомпенсация черных точекВыбрать..._CСделать копиюРедактироватьЭкспортЦвет переднего плана_GГамма:_HИгнорироватьТип:_K_MНовое зерноПросмотрПараметры:_RПеремешатьСброситьИзменить размерПовернуть_SМасштабироватьНаклонитьОбвестиПреобразовать_VБелый_Yпроцент \ No newline at end of file diff -uraN gimp-2.2.6/po-libgimp/ru.po gimp-2.2.7/po-libgimp/ru.po --- gimp-2.2.6/po-libgimp/ru.po 2005-04-10 02:11:37.000000000 +0200 +++ gimp-2.2.7/po-libgimp/ru.po 2005-05-08 23:42:00.000000000 +0200 @@ -1,17 +1,18 @@ +# translation of ru.po to russian # translation of gimp.LIBGIMP.ru.po to russian # translation of gimp.LIBGIMP.po to russian -# Copyright (C) 1999-2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 1999-2002, 2003, 2004, 2005 Free Software Foundation, Inc. # Valek Filippov , 1999-2002. -# Roxana Chernogolova , 2003, 2004. +# Roxana Chernogolova , 2003, 2004, 2005. # Anatoly A. Yakushin , 2003, 2004. -# AnatolyA. Yakushin , 2004. +# AnatolyA. Yakushin , 2004, 2005. # msgid "" msgstr "" -"Project-Id-Version: gimp.LIBGIMP.ru\n" +"Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" -"PO-Revision-Date: 2004-11-13 00:02+0300\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" +"PO-Revision-Date: 2005-04-10 00:17+0400\n" "Last-Translator: AnatolyA. Yakushin \n" "Language-Team: russian \n" "MIME-Version: 1.0\n" @@ -203,13 +204,13 @@ msgid "Gradient Selection" msgstr "Выбор градиента" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Пусто)" #: ../libgimp/gimppalettemenu.c:91 msgid "Palette Selection" -msgstr "Выбор палитры" +msgstr "Выбор пабитры" #: ../libgimp/gimppatternmenu.c:113 msgid "Pattern Selection" @@ -253,15 +254,15 @@ #: ../libgimpbase/gimpbaseenums.c:62 msgid "Black Only" -msgstr "Только чёрный" +msgstr "Только черный" #: ../libgimpbase/gimpbaseenums.c:91 msgid "RGB color" -msgstr "цвет RGB" +msgstr "Цвет RGB" #: ../libgimpbase/gimpbaseenums.c:92 ../libgimpbase/gimpbaseenums.c:127 msgid "Grayscale" -msgstr "Серый" +msgstr "Оттенок серого" #: ../libgimpbase/gimpbaseenums.c:93 msgid "Indexed color" @@ -285,7 +286,7 @@ #: ../libgimpbase/gimpbaseenums.c:130 msgid "Indexed-alpha" -msgstr "Индексированный-альфа" +msgstr "Индексир.-альфа" #: ../libgimpbase/gimpmemsize.c:177 #, c-format @@ -382,6 +383,8 @@ "Cannot determine a valid home directory.\n" "Thumbnails will be stored in the folder for temporary files (%s) instead." msgstr "" +"Невозможно определить правильный домашний каталог.\n" +"Файлы предпросмотра будут помещены в каталог для временных файлов (%s) ." #: ../libgimpthumb/gimpthumb-utils.c:249 ../libgimpthumb/gimpthumb-utils.c:317 #, c-format @@ -391,27 +394,23 @@ #: ../libgimpthumb/gimpthumbnail.c:919 #, c-format msgid "Could not create thumbnail for %s: %s" -msgstr "Не удалось создать файлы предварительного просмотра %s: %s." +msgstr "Не удалось создать каталог файлов предварительного просмотра %s %s ." #: ../libgimpwidgets/gimpcolorbutton.c:99 -#, fuzzy msgid "_Foreground Color" -msgstr "/Цвет переднего плана" +msgstr "Цвет переднего плана" #: ../libgimpwidgets/gimpcolorbutton.c:103 -#, fuzzy msgid "_Background Color" -msgstr "/Цвет фона" +msgstr "Цвет фона" #: ../libgimpwidgets/gimpcolorbutton.c:107 -#, fuzzy msgid "Blac_k" -msgstr "/Чёрный" +msgstr "Чёрный" #: ../libgimpwidgets/gimpcolorbutton.c:111 -#, fuzzy msgid "_White" -msgstr "/Белый" +msgstr "Белый" #: ../libgimpwidgets/gimpcolorscales.c:133 msgid "Scales" @@ -489,11 +488,11 @@ #: ../libgimpwidgets/gimpcolorscales.c:243 msgid "Hexadecimal color notation as used in HTML and CSS" -msgstr "Шестнадцатеричная запись цвета используемая в HTML и CSS" +msgstr "Шестнадцатеричная запись цвета, используемая в HTML и CSS" #: ../libgimpwidgets/gimpcolorscales.c:248 msgid "HTML _Notation:" -msgstr "Нотация HTML" +msgstr "Для HTML:" #: ../libgimpwidgets/gimpcolorselection.c:203 msgid "Current:" @@ -513,19 +512,19 @@ #: ../libgimpwidgets/gimpmemsizeentry.c:232 msgid "Kilobytes" -msgstr "Килобайты" +msgstr "Килобайт" #: ../libgimpwidgets/gimpmemsizeentry.c:233 msgid "Megabytes" -msgstr "Мегабайты" +msgstr "Мегабайт" #: ../libgimpwidgets/gimpmemsizeentry.c:234 msgid "Gigabytes" -msgstr "Гигабайты" +msgstr "Гигабайт" #: ../libgimpwidgets/gimppatheditor.c:243 msgid "Writable" -msgstr "Перезаписываемый" +msgstr "Запись" #: ../libgimpwidgets/gimppatheditor.c:252 msgid "Folder" @@ -540,16 +539,16 @@ #: ../libgimpwidgets/gimppreviewarea.c:126 msgid "Check Size" -msgstr "Проверить размер" +msgstr "Размер клеток" #: ../libgimpwidgets/gimppreviewarea.c:133 msgid "Check Style" -msgstr "Проверить стиль" +msgstr "Стиль отображения" #. toggle button to (des)activate the instant preview #: ../libgimpwidgets/gimppreview.c:240 msgid "_Preview" -msgstr "_Просмотр" +msgstr "Просмотр" #: ../libgimpwidgets/gimpstock.c:113 msgid "Anchor" @@ -557,7 +556,7 @@ #: ../libgimpwidgets/gimpstock.c:114 msgid "C_enter" -msgstr "" +msgstr "Центрировать" #: ../libgimpwidgets/gimpstock.c:115 msgid "_Duplicate" @@ -565,7 +564,7 @@ #: ../libgimpwidgets/gimpstock.c:116 msgid "_Edit" -msgstr "Исправить" +msgstr "Редактировать" #: ../libgimpwidgets/gimpstock.c:117 msgid "Linked" diff -uraN gimp-2.2.6/po-libgimp/sk.gmo gimp-2.2.7/po-libgimp/sk.gmo --- gimp-2.2.6/po-libgimp/sk.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/sk.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-03-20 20:04+0100 Last-Translator: Marcel Telka Language-Team: Slovak diff -uraN gimp-2.2.6/po-libgimp/sk.po gimp-2.2.7/po-libgimp/sk.po --- gimp-2.2.6/po-libgimp/sk.po 2005-04-10 02:11:37.000000000 +0200 +++ gimp-2.2.7/po-libgimp/sk.po 2005-05-08 23:42:01.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-03-20 20:04+0100\n" "Last-Translator: Marcel Telka \n" "Language-Team: Slovak \n" @@ -200,7 +200,7 @@ msgid "Gradient Selection" msgstr "Výber prechodu" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Prázdne)" diff -uraN gimp-2.2.6/po-libgimp/sr.gmo gimp-2.2.7/po-libgimp/sr.gmo --- gimp-2.2.6/po-libgimp/sr.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/sr.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-18 18:56+0100 Last-Translator: Данило Шеган Language-Team: Serbian (sr) diff -uraN gimp-2.2.6/po-libgimp/sr@Latn.gmo gimp-2.2.7/po-libgimp/sr@Latn.gmo --- gimp-2.2.6/po-libgimp/sr@Latn.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/sr@Latn.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -25,7 +25,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-18 18:56+0100 Last-Translator: Danilo Šegan Language-Team: Serbian (sr) diff -uraN gimp-2.2.6/po-libgimp/sr@Latn.po gimp-2.2.7/po-libgimp/sr@Latn.po --- gimp-2.2.6/po-libgimp/sr@Latn.po 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/sr@Latn.po 2005-05-08 23:42:01.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-18 18:56+0100\n" "Last-Translator: Danilo Šegan \n" "Language-Team: Serbian (sr) \n" @@ -200,7 +200,7 @@ msgid "Gradient Selection" msgstr "Selekcija nagiba" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Prazno)" diff -uraN gimp-2.2.6/po-libgimp/sr.po gimp-2.2.7/po-libgimp/sr.po --- gimp-2.2.6/po-libgimp/sr.po 2005-04-10 02:11:37.000000000 +0200 +++ gimp-2.2.7/po-libgimp/sr.po 2005-05-08 23:42:01.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-18 18:56+0100\n" "Last-Translator: Данило Шеган \n" "Language-Team: Serbian (sr) \n" @@ -200,7 +200,7 @@ msgid "Gradient Selection" msgstr "Селекција нагиба" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Празно)" diff -uraN gimp-2.2.6/po-libgimp/sv.gmo gimp-2.2.7/po-libgimp/sv.gmo --- gimp-2.2.6/po-libgimp/sv.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/sv.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -25,7 +25,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-15 10:32+0900 Last-Translator: Jan Morén Language-Team: Swedish diff -uraN gimp-2.2.6/po-libgimp/sv.po gimp-2.2.7/po-libgimp/sv.po --- gimp-2.2.6/po-libgimp/sv.po 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/sv.po 2005-05-08 23:42:01.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-15 10:32+0900\n" "Last-Translator: Jan Morén \n" "Language-Team: Swedish \n" @@ -200,7 +200,7 @@ msgid "Gradient Selection" msgstr "Gradientval" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Tom)" diff -uraN gimp-2.2.6/po-libgimp/tr.gmo gimp-2.2.7/po-libgimp/tr.gmo --- gimp-2.2.6/po-libgimp/tr.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/tr.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -3,7 +3,7 @@   Add Alpha ChannelConvert to GrayscaleConvert to Indexed using default settings (Do it manually to tune the result)Convert to RGBExport FileFactorFlatten ImageMerge Visible LayersMore...Save as AnimationSelect FileThe export conversion won't modify your original image.UnitUnit SelectionpercentProject-Id-Version: GIMP 1.2.1 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2001-07-16 06:51+0300 Last-Translator: Alper Ersoy Language-Team: Turkish diff -uraN gimp-2.2.6/po-libgimp/tr.po gimp-2.2.7/po-libgimp/tr.po --- gimp-2.2.6/po-libgimp/tr.po 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/tr.po 2005-05-08 23:42:01.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: GIMP 1.2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2001-07-16 06:51+0300\n" "Last-Translator: Alper Ersoy \n" "Language-Team: Turkish \n" @@ -197,7 +197,7 @@ msgid "Gradient Selection" msgstr "Birim Seçimi" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/uk.gmo gimp-2.2.7/po-libgimp/uk.gmo --- gimp-2.2.6/po-libgimp/uk.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/uk.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -28,7 +28,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: GIMP 1.1.9 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-23 16:53+0200 Last-Translator: Maxim Dziumanenko Language-Team: Ukrainian diff -uraN gimp-2.2.6/po-libgimp/uk.po gimp-2.2.7/po-libgimp/uk.po --- gimp-2.2.6/po-libgimp/uk.po 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/uk.po 2005-05-08 23:42:01.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: GIMP 1.1.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-23 16:53+0200\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" @@ -198,7 +198,7 @@ msgid "Gradient Selection" msgstr "Вибір градієнта" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(Немає)" diff -uraN gimp-2.2.6/po-libgimp/vi.gmo gimp-2.2.7/po-libgimp/vi.gmo --- gimp-2.2.6/po-libgimp/vi.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/vi.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -25,7 +25,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers._A_B_Duplicate_Edit_G_H_R_Reset_Resize_Rotate_S_Scale_Shear_Transform_VpercentProject-Id-Version: Gimp-libgimp 1.3.x Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2003-01-30 23:28+0700 Last-Translator: Trinh Minh Thanh Language-Team: Gnome-Vi diff -uraN gimp-2.2.6/po-libgimp/vi.po gimp-2.2.7/po-libgimp/vi.po --- gimp-2.2.6/po-libgimp/vi.po 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/vi.po 2005-05-08 23:42:01.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: Gimp-libgimp 1.3.x\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2003-01-30 23:28+0700\n" "Last-Translator: Trinh Minh Thanh \n" "Language-Team: Gnome-Vi \n" @@ -202,7 +202,7 @@ msgid "Gradient Selection" msgstr "Chọn Đơn Vị" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/yi.gmo gimp-2.2.7/po-libgimp/yi.gmo --- gimp-2.2.6/po-libgimp/yi.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/yi.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -1,6 +1,6 @@ T V&,04etSetAnchorClick the eyedropper, then click a color anywhere on your screen to select that color.GammaPressureValueVisibleProject-Id-Version: 1.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2003-03-19 Last-Translator: Raphael Finkel Language-Team: Yiddish diff -uraN gimp-2.2.6/po-libgimp/yi.po gimp-2.2.7/po-libgimp/yi.po --- gimp-2.2.6/po-libgimp/yi.po 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/yi.po 2005-05-08 23:42:01.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2003-03-19\n" "Last-Translator: Raphael Finkel \n" "Language-Team: Yiddish \n" @@ -187,7 +187,7 @@ msgid "Gradient Selection" msgstr "" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-libgimp/zh_CN.gmo gimp-2.2.7/po-libgimp/zh_CN.gmo --- gimp-2.2.6/po-libgimp/zh_CN.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/zh_CN.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -34,7 +34,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-24 19:30+0800 Last-Translator: Yuheng Xie Language-Team: zh_CN diff -uraN gimp-2.2.6/po-libgimp/zh_CN.po gimp-2.2.7/po-libgimp/zh_CN.po --- gimp-2.2.6/po-libgimp/zh_CN.po 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/zh_CN.po 2005-05-08 23:42:01.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-24 19:30+0800\n" "Last-Translator: Yuheng Xie \n" "Language-Team: zh_CN \n" @@ -196,7 +196,7 @@ msgid "Gradient Selection" msgstr "渐变选择" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "(空)" diff -uraN gimp-2.2.6/po-libgimp/zh_TW.gmo gimp-2.2.7/po-libgimp/zh_TW.gmo --- gimp-2.2.6/po-libgimp/zh_TW.gmo 2005-04-10 02:11:39.000000000 +0200 +++ gimp-2.2.7/po-libgimp/zh_TW.gmo 2005-05-08 23:42:02.000000000 +0200 @@ -42,7 +42,7 @@ This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers._A_B_Browse..._C_Duplicate_Edit_Export_G_Gamma:_H_Ignore_K_M_New Seed_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Transform_V_YpercentProject-Id-Version: gimp-libgimp 2.0.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-03-23 22:13+0800 Last-Translator: Abel Cheung Language-Team: Chinese (traditional) diff -uraN gimp-2.2.6/po-libgimp/zh_TW.po gimp-2.2.7/po-libgimp/zh_TW.po --- gimp-2.2.6/po-libgimp/zh_TW.po 2005-04-10 02:11:38.000000000 +0200 +++ gimp-2.2.7/po-libgimp/zh_TW.po 2005-05-08 23:42:01.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-libgimp 2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-03-23 22:13+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -198,7 +198,7 @@ msgid "Gradient Selection" msgstr "漸層選擇" -#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:181 +#: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" msgstr "" diff -uraN gimp-2.2.6/po-plug-ins/bg.gmo gimp-2.2.7/po-plug-ins/bg.gmo --- gimp-2.2.6/po-plug-ins/bg.gmo 2005-04-10 02:12:00.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/bg.gmo 2005-05-08 23:42:20.000000000 +0200 @@ -1,6 +1,6 @@ $,8f9Project-Id-Version: gimp 2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-18 19:45+0200 Last-Translator: Alexander Shopov Language-Team: Bulgarian diff -uraN gimp-2.2.6/po-plug-ins/bg.po gimp-2.2.7/po-plug-ins/bg.po --- gimp-2.2.6/po-plug-ins/bg.po 2005-04-10 02:11:43.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/bg.po 2005-05-08 23:42:03.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-18 19:45+0200\n" "Last-Translator: Alexander Shopov \n" "Language-Team: Bulgarian \n" @@ -274,8 +274,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "" @@ -372,7 +372,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1040,7 +1040,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "" @@ -1236,7 +1236,7 @@ #: ../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:833 +#: ../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 @@ -1267,7 +1267,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2187,7 +2187,7 @@ msgid "_Elevation:" msgstr "" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "" @@ -2197,7 +2197,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "" @@ -2608,11 +2608,11 @@ msgid "Re_d" msgstr "" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../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:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "" @@ -3169,7 +3169,7 @@ msgstr "" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3266,7 +3266,7 @@ msgstr "" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "" @@ -3380,8 +3380,8 @@ msgstr "" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4871,7 +4871,7 @@ msgid "Blur Parameters" msgstr "" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "" @@ -5081,122 +5081,122 @@ msgid "_Amount:" msgstr "" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "" @@ -5714,64 +5714,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5779,76 +5779,76 @@ msgid "Color" msgstr "" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "" @@ -7059,16 +7059,16 @@ msgid "TIFF image" msgstr "" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7076,46 +7076,46 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "" diff -uraN gimp-2.2.6/po-plug-ins/ca.gmo gimp-2.2.7/po-plug-ins/ca.gmo --- gimp-2.2.6/po-plug-ins/ca.gmo 2005-04-10 02:12:00.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ca.gmo 2005-05-08 23:42:21.000000000 +0200 @@ -441,7 +441,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: GIMP 2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-01-23 19:32+0100 Last-Translator: Xavier Beà Language-Team: Catalan diff -uraN gimp-2.2.6/po-plug-ins/ca.po gimp-2.2.7/po-plug-ins/ca.po --- gimp-2.2.6/po-plug-ins/ca.po 2005-04-10 02:11:43.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ca.po 2005-05-08 23:42:03.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: GIMP 2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-01-23 19:32+0100\n" "Last-Translator: Xavier Beà \n" "Language-Team: Catalan \n" @@ -296,8 +296,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Cap" @@ -406,7 +406,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1108,7 +1108,7 @@ # Rotation #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotació" @@ -1312,7 +1312,7 @@ #: ../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:833 +#: ../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 @@ -1346,7 +1346,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2318,7 +2318,7 @@ msgid "_Elevation:" msgstr "_Elevació:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "Desplaçament en _X:" @@ -2330,7 +2330,7 @@ "El desplaçament es pot ajustar arrossegant la previsualització utilitzant el " "botó central del ratolí." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "Desplaçament en _Y:" @@ -2757,11 +2757,11 @@ msgid "Re_d" msgstr "_Vermell" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "V_erd" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Blau" @@ -3354,7 +3354,7 @@ msgstr "Treu les bandes" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3454,7 +3454,7 @@ msgstr "_Taca" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Negre" @@ -3574,8 +3574,8 @@ msgstr "Grava" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5143,7 +5143,7 @@ msgid "Blur Parameters" msgstr "Paràmetres de difuminació" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Angle:" @@ -5357,127 +5357,127 @@ msgid "_Amount:" msgstr "Qu_antitat:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Rodó" # era: msgstr "Gira" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Línia" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamant" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS quadrat (punt euclidià)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS diamant" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Gris" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "V_ermell" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "C_ian" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "Gr_oc" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensitat" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "_Foto de diari..." # era: msgstr "_Full de mà..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Foto de diari..." # era:msgstr "Full de mà..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "Fun_ció de punt:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Foto de diari" # era: msgstr "Full de mà" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Resolució" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "Entrada SP_I:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "S_ortida LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "Mida de la c_el·la:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Pantalla" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "T_reure negre (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separa a:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntensitat" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "B_loca els canals" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "Con_figuració original" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Suavitzat" # era: msgstr "Contrarèplica" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "So_bremostra:" @@ -6009,66 +6009,66 @@ msgstr "" "La funció de desar del PostScript no pot gestionar imatges amb canals alfa" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "S'ha produït un error en iniciar el ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "S'ha produït un error en iniciar el ghostscript (%s)" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "S'ha produït un error d'escriptura" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Carrega el PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "S'està generant la imatge" # era: msgstr "S'està generant una visualització realista" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Resolució:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Pàgines:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Intenta delimitar el quadre" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Acoloriment" # era: msgstr "S'està acolorint" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "B/N" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Gris" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6076,40 +6076,40 @@ msgid "Color" msgstr "Color" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automàtic" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Suavitza les vores del text" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Feble" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Fort" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Suavitza les vores de la imatge" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Desa com a PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Mida de la imatge" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Conserva la relació d'aspecte" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -6118,36 +6118,36 @@ "sense canviar la relació d'aspecte." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Unitat" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Polzada" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Mil·límetre" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Sortida" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_Postscript nivell 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "Postscript _encapsulat" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "P_revisualitza" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "Mida de previ_sualització:" @@ -7386,16 +7386,16 @@ msgid "TIFF image" msgstr "Imatge TIFF" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Pàgina %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "Canal TIFF" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7407,7 +7407,7 @@ "gestionar-ne de 8 bits, per tant es convertirà automàticament. Es perdrà " "informació degut a aquesta conversió." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7415,40 +7415,40 @@ "El format TIFF només suporta comentaris en\n" "codificació ASCII de 7 bits. No es desarà cap comentari." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Desa com a TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Compressió" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Cap" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Paquet de bits" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Desinfla" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Desa el valor dels _colors dels píxels transparents" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Comentari:" @@ -10997,7 +10997,7 @@ msgid "Drawing Maze..." msgstr "S'està dibuixant el laberint..." -# $Id: ca.po,v 1.59.2.5 2005/04/09 21:38:42 neo Exp $ +# $Id: ca.po,v 1.59.2.6 2005/04/10 00:15:58 neo Exp $ #: ../plug-ins/maze/maze.h:2 msgid "Maze" msgstr "Laberint" diff -uraN gimp-2.2.6/po-plug-ins/ChangeLog gimp-2.2.7/po-plug-ins/ChangeLog --- gimp-2.2.6/po-plug-ins/ChangeLog 2005-03-22 10:42:02.000000000 +0100 +++ gimp-2.2.7/po-plug-ins/ChangeLog 2005-04-27 16:53:05.000000000 +0200 @@ -1,3 +1,12 @@ +2005-04-27 Jakub Friedl + + * cs.po: updated Czech translation, fixed some problems. + +2005-04-25 Dmitry G. Mastrukov + + * ru.po: Updated Russian translation + from Russian team . + 2005-03-22 Miloslav Trmac * cs.po: Updated Czech translation. diff -uraN gimp-2.2.6/po-plug-ins/cs.gmo gimp-2.2.7/po-plug-ins/cs.gmo --- gimp-2.2.6/po-plug-ins/cs.gmo 2005-04-10 02:12:00.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/cs.gmo 2005-05-08 23:42:21.000000000 +0200 @@ -1,369 +1,374 @@ -0 -Q P# :D% '4D Zhp1"! >*_" "6#V$z -'VQ){   -  &.7? -T_ t  )@PY)p L%@` |:< CF$W'6^}~&"#Fct% - )BJ+R ~% <9RA  2*1] $A+m    - -/F ^h{ - / ? K -X -c -n -y 3  #(9KQar    * 6DL P\chq "&*08A P\ -m x  "?*j$2#/2'b$&J&^' - - -*&Q(o hh;)'#44O()'l*l55,*0[4j  $(41f n{'A3Q$7U8? -Ydj|   -/:LU] cq -  5C -U@`  -(>G]lu    3$?du+4"4 =G+P|A  ()86b -& -(+8!d& # '#H1l#& /">R8,> ESe<w|'1Y?y -9   /  @ L ]  p  ~          - -0 - ; -I -Z -k - - - - - - - - - - - - - - -   "  . :  J T [ c t            1 I \ p y  $ 1  9 E 0T       !   -#:Ve|   -     -) AN Wez 4 - -  & 7C -U `lu  20=1C=u/  + Cd(wB COj  ( :GMR -do  : 0 7CW)l/#2+Igv "'4 '%Ml'&Na9N)).S-' #8KQ`q%z2 # $$E j1w16'Px  0E[`g~ - );"Adl6  -  ?  R  `  m {      - "  !!! -.! 9! -G!R!h!n!u!z!! !! ! !!!!!" " " " "g"<#K# ]#j#{# -##(#)#$ "$/$5$G$ N$\$ -m$ x$$$$$$$$$ -$ %%$%*% /%;%P%f%o%% %%% %%%& & &$& 3&=&C&U&h&o&t&y& & &&& && & -&' ' ( (!(%( -7( B( N(Z(_( e(o(-(((((2)/4)Bd)=) -) )) *$* 6*D*S* -b*m* ~* ** * ***$*3* 3+T+ X+f+u+++ ++ +++++ -,,/,5, -;, F,S,c,s,|, ,n,-Y-v-Z.\.C;// ////// -/ / // 0"&0 I0U0m0 }0000 0K0,1@1I1N1b1j11 1 1 111 1161 2&2 >2K2 ^2(2*2 22 2]3 `3l3p33 -3 3333 33344)4 :4H4]4a4f4 o4|444 44 -4 -4/4`4M5 R5\5 b5 n5Gx5B5N6IR666666666666% 7$/7%T7$z7%7$7777 8 818D8V8[8d8 k8 u888 8888 -889 *989J9_9t9 99999 99 -: ::-:M: -_: j: -v: :::: : :: : ;;#;+; 4;>; M;<Z;%; ; -;;;'; <8<H<`<o< < << <<<<< <== =)=A= -Y= d=q=== -= = == == = > >>$> )>3>B> -W>b>u>0> > >>> -? ??4? L?+Z? ???????@ -@ @%@ ;@E@`@|@@ @@@ @ @@ @@@ AA%A4ALAgAAAA A AAAA A -AABB B +B 5BIBB BBBBB -BB:B0%C -VCaC.gCCCCCCC CCDD 2DSDdD*vDDDDD E!E*E ;EEE NE[E cEpE EE EEEEE F!F *F6F%EFkFsF -FF FF FFFF FGGG'G ,G6G LG XGdGtG#GGGG7G(H@H HHUH lHxH HHH HH HHH H HII I ,I6I:IJI aI kI uI2IIIIJJ0J LJVJ ZJ -dJoJJJJJ J -JJJ$JK K*K ?K KKWKfK -nK yK K -KKKKKK -K LLL'L#7L[L tL -~LLL LL LLL LL -L'M -M7M -LMWM]M dM nM xMMMMMMM MMM NNN%N .N :N FNRNiP8}PP PP+P Q Q!Q0QDQLQ]QpQ:Q'Q QQ RR-RMR \R jRvRRR R RRR RSS S $S2S$7S\S`S -pS{S S SS -SSSSSSSS -TTTT5TRTfTmT}T TT T T TTTTU U -,U7U>UBUQUbUqU UU%UUUU UUVV"V'V6VFVUVeVjVyVVVV VVVV W-!WOWWWjW rWWWWWW W X X X3XHXaXrXXXXXXXX" Y/YFY -UY#`Y Y1Y,Y YYZ!Z 'Z -5Z@ZGZ NZ -ZZeZkZsZ|ZZ Z Z ZZZ ZZZ[[:[ J[ T[^[d[v[4[![[[\ \ $\ .\;\C\I\ -Y\d\ m\w\ -}\\\\\\\;\ #] /] -;]F]\]s] ]] ]#] -]] ]^^ +^ -5^@^X^ j^x^^^*^ ^^^ _ '_5_H_ Y_e_ ~_ _ _ _ ___ __ _ ` ` ` +` 7`C`*Y` ```` ` -```/a3aMa\aba qa {a a aa aaaaa a.a'!bIbPb Yb ebqbb bbbbb bc c)cBc^c rc c c+cccc -c cdd%d 7dCdWdsdd d d d -dddd e#eBe[epeee0ee]f]afff&g@g Hg Rg#\g?ggggh h)4h%^h<hEhi i 'i 4iAiTi/ki*iCi -j(j+Dj!pjj'jjj jkk k-k cz<z7z{||!|| }.+})Z}%}Q})}&&~M~j~/~3&Sz047pQ~€=A%,ҁ!‚Jق$ =I)Y -  ̓-߃ %.7 ISV -_ j t~   Ȅ   &0 AMRq ˅ o1{38G LXsy%/  ,&Elu -ň Ԉ  --EFe,Q:NĊ*֊ (C\ciyŋ׋  -# -2 = GQ W e rR~Pь"*3<!BdxjXAÎ$=*.h--ŏ - % +5U:n(.7,Gt{8ӑ6 ;INcr  &%Ԓ% &,[= “ȓΓӓؓߓSCD:FÔ -,CHPlu  ˕ Օ ߕ  4< EQY bp  –Ζ -   -!( -/:@G M[n w    ɗ ӗ -  . ;E\ -bm |(ܘ  09 AN -] ht z  -șә   -%5>P -Vajz  Ś̚Ӛ "+@ R\ b -l w؛   !(06 <HQ Wct| - Ĝ Ҝޜ *38HMTh(p   ʝ֝ ޝ - -  -$/GZ)vŞ˞۞!)06E Tbgnt -˟ԟ      $ 0= FP g q} - Ƞ -Ԡߠ  (:@ -HSc x -  ϡۡ  - -"- > -K Vct -}ʢӢ ܢ   . ; EOTej { -   -ʣ У -ܣ  - -&;N U -cnw  ɤڤ) ES%\   ǥ ӥݥ   " )5 KU eqy - -Ȧڦ 8 & -2= Q ] kw - 6  $5= DRd~ -ڨ  ';C Vb r| -  é Щ ک   $*<B Yc -t   -Ī Ϫ٪  #4:-@nty (ī -">GX ] jv  -  -  ƬӬ $ (6 ES -bm|:̭ޭ - - -=0Q̲ղγг߳   )58n%ô޴#, #M%q&ĵ -%4D@y (ȶV`Hɷ ٷ )/CSZc kw  -! ĸٸ -   - 3%LrϹ6%6\Mwźغ E9=<'-U) 5&پ%DZ#kԿ) -4Ts|*  /   %28P@O !>Pk ;*0#Tk!4 --5<O Uc -{ ! (<R W x   - - -%0AVF\ (=ETds!19@ O]lry -~  )!G!i   - ; IS -[f'vA (@i:'B4/'d-"_([' - -,+X*v ooM"11I!{"$b!H2j2% (I Xy+$  $&;%Pve r w #  % <Jbv -  5EUr; .L^eu    7= D P ] -g r ~  -& 64Hk  &8_>s --1Dv' # --,(%U{*3"%!=$_8"&&5=NsE  Op E~2&C7I`f$,Qdv& +?Sj ~  -      - + 2@ P\k -}    *<"T w"#,F7 ~ #9S n{ -  ! 0>Ohn7 )3< EOU fp  0.>//n@/$7@&Sz%! 2G?   !.Jc u ! 7P$k< -:3/n)?5%>dw%!. A $15V# ""*7b$/)(JEX,5(L3u0 ,(AGWj.z4)"9&\B .#2>V2&!=M`h/H ^j &( #+I -Yd)u  &C S`t/    * -7= DPYa r -('  }at -' *,,!Y {  *?DUdy 2He {  ,5 <FXh}   +/ CPY b lv* (! 7J Q ;  - -! -? -O -f -u - - - - - - - - - - -  #* -N |           $ 6 K _ t     -     -   ! y6  DEqpUm:  ?Rc u"! ,$: _ U '- ?Kb y  :8QY'm/0 `%   #)2Gcy -    - - 'W8   ),.1M      +,-+Z,+,  '9Ng} - -  - $""EZj 4Qn     - # -/ : FSd w   -   U%u  -$#$7\o  !7 >Kc -{ # ,  -B M  ^  l x      -   B =! N![!s! -! !!!!+!","D"\"s"" " "" "" " "! #.#@#H#]#v#|#######$ $$#9$#]$$ $$$ $$ $$$$%% *%8%K%Z%Yl%%%%&&.&"=&X`&;&&': 'D' -H' S'_'n' '''''!'( (2 ( S(t((( ((((( -( -))") 6) @)L)_) t) ) ))) -)*&*;*B*Y* -h* s* * *$*****+ -+ ++-+J+]+q+ +++ ++3,;,S, -Y,d, z,, -, ,, -,,,,, - -- --%- 8- E-R-V-f- }- - -4- --.6.#M. q. .. . -.!.... //*/>/W/3s/ //// //0 0"0 :0 F0P0#p000 0 00000 1(1 B1 -L1W1k1 s1}111 -1 11 1#1 2202?2F2 M2W2j2$z22 22 2233 -!3 ,3:3 -B3M3 T3 ^3 h3Vr35:56 -$6 /6(=6f6n666 -6666472<7o7777"777 88*8@8 W8 d8p88 888888&89 9 *9 -79B9V9t9 9 -99 9 9 -999 99 ::+:K: ^:h:::::::; +;5;'Q;y;; ; ;;;;;< -<#'<K<e<z< -< <<< -<<<==(= := [=g= {== -==*==>1>P>Y> -v>>>>">> -?#?3? C?O?e?~??????@!@3@K@)c@@@ @@ @:@50AfA zA -AA A AAA AAA -A BBB +B 5B ?B IBSB nBxBBBB BB -BBB C6!CXCwCCC C CC CC C CC D DD4DTD\DpDDD)DDDDDDDEE E+3E _E#mEE"EE E EEF$FMWMmM%MMM M M M M NN-NEN(bN NNNNO3 O!TORvOqO|;PPP PP*PMQkQ!Q$QQQ%Q(!R7JR:RRRR R S$S4?S/tSKSST/*T-ZTT,T -T,T -UU5U=UOUaUqUyU U U UUUUUU U"V#V;VCV"[V~VVVVVV WW3W%CWiWW*WWW -WW X X X&X8X>X SX_X hXvXX+X X -X{XdYlYY YYYYYYZZ -/Z:ZMZVZoZZ ZZ ZZZZZG[(a[,[[[[[[\\*\<\[\ p\ -z\ \\\\?\$]<?]|]]]]]]]]]^^!^2^9^H^]^ o^ |^^^^^^^__<_ U_a_[r____ _ _` ` `)`D`\`w`7|`,`)` a a a,a>aPacavaa a aa aaaaabb*b2bEbZbcb#kbbb/b"c%1cXWcccd0d'Hd'pdIdd,d:+e?fe1e4e f@$f!ef$ffgSh rhhh%h%h"iY>ii iii,j.j!jk)k.Ak.pkkkokFlAl m(Amjm(3n\n]rnnn -n%o(o/o CoMoaowoo?oopp&p9pNp]p`pipppppppp p ppp pp q q'q;qOq"`q qq#qq#qq r5r:r>rFr$`rvrr~ss sssss t)t9t Jt.Vtt tt$tt0t -'u"2u Uubu xuuu uuuuv$v.=vClvv5vw\w?zwww wx3.xbxtxxxxxxxx yyy&y8yHyYymyuyy yy y yy y yyFyJ2z}zzzzzzzz -{ {{P3|/|,|:|6}:S}}} }}} }}[}h<~~~~ ~~+~ ",27BL -:L^ w .*.!'b@ -сԁځ V<\2B̂(+>X g%t ă ׃   - / GT [h   ҄(1:IZ n|   ʅ Ӆ߅  !(09>DK]o†ӆ    ,9 JVk+ LJ -ч܇  -  * 8 -DO Ub t~ و -#BKaiz  -Չ1B Ycz - ̊݊  ?H gt |   -Ë΋    " ,8JS\ z   Ԍ  " -'2 -N0Y Ѝ ٍ   &#6Zq1 -Ɏ Ύڎ )2H amu |ɏҏڏ  1 =Ict -  Đѐ # 9CTm  őґ  "0CV_y  -˒֒  +@ +R P/C ZdE GTd z1"&A ^*"  '"3V#v$ +'VQI   + '1 :FNW_ +t  )8I`py) L4E` :<)Cf$w'V~}&"Cf% + 4Ibj+r %  <YRa ) =2J1} $ /AK   + - )6G -Va!t ֓    )5Db y   ǔ ה  - -9 B O [g } - Е   -/8A` Ζ%  8!Fh    ×Зߗ   - 4=M mw  -  Θ ۘ   F% lyșٙ -  4(]n u  Ú ˚ٚ/=m8ś՛ۛ - ':BQ Zdm -v ˜Ӝ  - - ! -N^ n -x  ͝ -ם +< Y er.w Þ Ҟ )%( -1<D LX,` ͟  -  - -  '&3Za q  Ǡ٠? M^f j v  `U@ -g=$r6 VI ?(A c  ->"R XG}:P/Q W x> Q#, \{@ ? $! b -|8 ewhsAL <nJD%g   M8po  -?7>/9u  ' n . (lOL&w5g s -}Uz$L 3<4 -a 7 & u <' kkH lBg'  ,&GtDUBF) 7%[C=/;hT8 & -, +HZ }qNX8(Y -0in  f $}U2^I:jCw-j5q1POel|L -4)njtDit> .' y 2*9c)?8 -S@  l_QX N. -1Tv}EpMqqg\G`&50Dv J Iw \_T _5J ~lo} # nY0 \9 `"6- * >)/ -wnb- .< I`r = -$ -tv [ '7 i:  bKKZ0 - ?_W  {Q%=B41h6L% -* - #  q e 9w@F P  W   f - A; 5_M Nkb9FW2jH`  ` = -~N  x+K ]\ E7MC } a YGy ( p  -~ -& -3x]9BH#2ucv\ y-%e+ e-e " Xy[ol u:  G4! -*FG]/ ZS{ r.>@5 -+HN Cg z)&,@2q - P' ws= [+]dx T4sdME/P9[F!vor ?oOf_$X v# /  z4< J 8EId"O fVEc  -  RF/  :sh ( -k |OMq )]  -%E >6 -: d4 N # - -^, -p  Jks5  A5 Z -Ua" {o- 6  p& -(^ -g;, -ie rV"Q] " g3.5,Ru=6F hfc G;02I K O\1J?I (TAbCL!3Qc m.T S& [z 9j `J7XxkY}aZvjD _ #HW WG ! -@  K@;  -o gm R5  o -V xmo*}*  xf   -Nmt IR 1wB>?=<U=Pb   ) a ASCvBIs t4K'oX Bal3s^_N %D) - -32 :6dh&V <E1 UFY 6 OL8 Xz{<qX` y7 -:%7tq $iW\ -Z; Hz| | C B  @ t ~$~>>^V0^ - - z (KE Gs]uYRa L |RE~3Hp r\ZCzl +? -*dcN 'v<;kRmjW c )S!_C Ke~&eyt - 0)!b J* c3a iJ" - uKW Q-f "!p({M "^ 3{] .~SSAu 8[? n1$ - X DzO7dDP% Baf  0Z!Y h'  82 *kYpZ/V % ~9TPiA - ~  R3 d K0A@j ^ VxSV jMPb nnw h L{+# eF+ - m;.[ r29|x- - -4/<4A glq B -( H:r 7mr^k Q S U(,.V!|CkwGcl$b2^uTd/y - {m D1n) -- +f[ Zmi hMf NH`p = i. #P68+I0y r _ j Q $;S - |yTRU 1b a0 L#+% -  T , ]UdD * :| {y;, J -!uF` ]m[pW OY"t'x  -#\vO } Y' -16QzMi,Eh* s +&.3Of ~  +!,>O _ k +x + + + 3 &-<CHYkq    "06; J Vdl p|  9=BFJPXa p| +   "1?J$2#./R'$&J3&~' + + +2*Fq( hh[)'#4:4o()'l*55,#*P{4  $ 0H4Q '9a3q$7UX_ +y  (< +OZlu}  +)@ Uc +u@   +5H^g}  % 2? S$_+4 .BT ]g+pA  +9H)X6 +& +((/+X!& ## G#h1#& )/B>r8/L^ es<|'Q y ?  +  9  2 +@ +O + ` +l +} + + + + + + + + +   4  +P  [ i z    +   +         " 2  B  N Z  j t {             $ 9 Q i |  y  $,Q Ye0t   !*CZv   +     *4I an w 4. +5 +@ K Wa r~ +   20=@1~=/ 0= F+R ~( *:BK   8 Vds  +   :!\k{ )/#25+h "'(P4 &8Q'p*FY'q9N%)t.-' >#_%2 $2D#K o$ 11D6d'   *7<Qf{  +) 4  G S )\  "       !6!L! +`!k!! ! ! !!!!! +" +""$" G"S"e"j" +y" " +""""""" "" " " ##-#H#O# # # $ $g$$$ $$$ +$$(%))%S% m%z%%% %% +% %%%%% && &4& +C& N&\&o&u& z&&&&&& &&' ' '>'S' X' b'o' ~'''''''' ' ''( (%( 6( +D(O(V( T) ^)l)p) +) ) ))) ))-))**6*2L*/*B*=* +0+ ;+G+ b+o+ +++ +++ + ++ + ++,$%,3J, ~,, ,,,,, ,, ,--0-B-U-f-z-- +- ----- -n-L.Y.v.//\)0C00 000011 +$1 /1 ;1H1W1"q1 111 1112 2K+2w2222222 2 2 22 3 33603 g3q3 33 3(3*3 4(4 C4]M4 4444 +4 445+5 25?5E5N5`5t5 55555 5555 55 +5 +5/6`766 66 6 6G6B 7NN7I777778 888#828D8%T8$z8%8$8%8$959=9F9W9k9|99999 9 999 99 :': +6:A:Y: u::::: :::;); :;F; +K; V;b;x;; +; ; +; ;;;< < *<8< H<T<e<n<v< << <<<%< = +==3=':= b===== = == =>>(>0>B> I>S>g> n>{>> +> >>>> +> ? ?? 6?D? I? U? c?o?v? {??? +???0? @ @&@>@ +V@ a@n@@ @+@ @@@ +A"A7ARAWA_A gA uAA AAAAA AAB B B*B @BNBVBjByBBBBBBBB C C&C+C:C BC +NCYCbCqC zC C CIC CCDDD +$D/D:GD0D +DD.DDDDEE'E 8EYElE|E EEE*EEF8FXF tF~FF FF FF FF FF FF G,GKGjG~G GG%GGG +GG GG HH-H>H TH^HrH{HH HH H HHH#HI0I9I7MIII II II IIJ JJ &J4J;J JJ WJdJlJ |J JJJJ J J J2JK(KCK^KqKK KK K +KKKKKL L +L'L?L$OLtL {LL L LLL +L L L +LLM2M8MMM +TM _MlMtMM#MMM M +MMM NN N+N?N HNVN +]N'hN NN +NNN N N NNO"O2O9OHO NOZO`O iOwOOO O O OOQ8QR "R.R+CRoR wRRRRRRR:R'&S NS\SpSSSS S SSST T T*TDT _TiTrTT TT$TTT +TT T TU +U!U&U6U?UHUOU`U +hUsUzUUUUUUU UU V V 'V5VMVVVhV V +VVVVVVV VV%VW-W>W VW`WdWtWWWWWWWWWWWX X$X?X_XnX-XXXX XXYY8YPY _Y lY yYYYYYYYZZ%Z-ZJZ[Z"oZZZ +Z#Z Z1Z,%[R[l[ +[[ [[[[ [ +[[[ \ +\\#\+\4\;\ J\ T\ ^\h\p\ \\\\\\ ] ]]].]4C]!x]]]] ] ] ]]]^ +^^ %^/^ +5^@^_^d^v^^^;^ ^ ^ +^^_+_ C_O_ T_#b_ +__ ___ _ +__` "`0`E`X`*o` ``` ` ``a aa 6a Ca Oa [a gasaa aa a a a a a aa*b oGoMo +aolo qo{oo'oooYo0p6p +IpTp\pkpzppp +pp p pppq+q?qQqZq `qlq{q qq/q-q/r Kr Ur_rwrr rr +rrrrr rss3sDNs's@s st tt 1t;tVt]tmt~tt ttt t ttttt u u ,u:uKu +Pu7[uu uZuvvv !v +/v :v Gv Qv[v rv|vv(vvvv v +vww(w1w CwOw gw +tww w www wwwww +x"x+x4xRPx&xxxZxSTyyy5y+zF@zz0zMzE&{Pl{K{ |>$|<c|7||}p~!~~~.~)%EQk)&+/3&;[0z4p~=%@,f!aJ  +) +DO^ cq -΅߅ + +  + 5?GP Tag pz  † ن  2M k чo{bވ 4:%Agv/~  ĉщ&-6U\ +lw  ˊފF&m,Q:J_q* ŒЌ$*:J_pw Íˍۍ +    & 3R?P!%9LckjA$Ɛ=.)-X- +ё ܑ UnQВ,5<AI8[Ɠޓ  +$3B Q_ b&n%%[ ZglqSC:IF˖ږݖ -6 T`hm|    ȗϗ  #1BRb y  +  Ę ˘٘ + / 8ENS \ hu |   +ƙ͙ܙ   +#. =KTd(t  Ϛؚ  + )5 ;EW`f u + ̛ +ۛ +"+;KZ p zΜ  # +- 8FYas|  ɝ ѝ ۝   &2CKTZ_gm +   ͞ݞ &-A(I r    +ßΟ  + 3)Oy̠Ӡ  -;@GM\k + á ѡ ݡ     ) @ JVf +ny  +Ȣ ΢ܢ  +!,< Q[ +r } ģͣ գ +  +$ /<M +Vaj~  äͤ Ԥޤ   (->C Ta +it }  +  +ƥ ϥۥ + '3 : +HS\ p |Ǧצ *8%Ag    § ʧ ק  0 :G Wckz + +̨Ԩ ݨ8  +,7 K W eqz + 6  /7 >L^x -Ԫ   !5= P\ lv +   ʫ ԫ ޫ  $6 <I `j +{   +ˬ ֬  *;A-Gu{ (˭  ""EN_ d q}  +  + î ͮڮ !+ /= LZ +it:ӯ + + +%0@qĴε  5']%vͶ#,#<%`& ӷ-߷% 43@h (V`7 ȹԹ 2BIR Zf n +x! Ⱥ +к ۺ  +"%;ayԻܻ6%%KMfǼE(n=<߽'D)$&% 3I#Z~)#Cbk*t  /  !'P/O -?Z o;}*0CZq!4 $+> DR +ju{ ! +A F g   + +  +0EFK ,4CSbr (/ >L[ah +m x6!Egkptx~     %/ +7B'RzA (E:e'B4 '@-h"_(7'` + +,4*R} oo)"11%!W"y$b!$2F2y% % 4Ui+y$  &;%,ReN S t~#  &>R +ep  !1Ndz;  +(:AQo     , 9 +C N Zdw  +& 6HG  &;>O +-1 R'j # +-,%1W*q3"%!$;8`"&5NOE +L fpE~2u&C%`B$-@Rk&~ /F Z { +     +  ,8G +Yd m w  "0 S"t#,F Zdu #/ JWpy +   +DJ^s#7 )3< EOU fp  0.>//n@/$7@&Sz-%! 3I `Gm % E O\x  !7Fe~$<   +(3J:a/)?56%l%!. ;A &@$_5# ""B*e$/) (JJsX,5D(z30 ,)Vou.4 #6)="g&B .1#`>2& 2Ok{1L]v  &( #1QYw +)  4BTq /  ! ) 5?X [ek r~  +(' +  } +' +*/,Z!   %3FXmr '0F`v   (0DZc jt  ,  5  A + M +Y +] + q +~ + + + + + +* + + + 2 (O 7x Q ; > F O m }     +   +    +  . > #X -|       #0 3$?dy +  7 ANycDrqp)U:+1 :DMl "!"D Y$g  U6KTZ lx   :Je~'/0#+ E`R   3?PV_t +    + +% 0'=We   ),.K1z       +.,Z+,+,  9 FTf{ + +  + $*"Or!6Ja~   6 +E P +\ g s    +  , >UL%  +$#" F $d        ! %!1!A! H!U!k! r!!! +! !!!!""-"#<"`" +v"" " """ """ +"##B.#q# ### +# ###$+$H$`$x$$$$$ $ $$ $% %% 1%!R%t%%%%%%%%%&%&:&L&R&c&#&#&& &&& '' '('0'?'N']' p'~'''Y' ((-(L(c(t("(X(;(;)J):O)) +) ))) )))**!'*I* X*2f* **** ++$+5+>+ +E+P+W+h+ |+ +++ + + +,8, +@,K,&Z,,,, +, , , ,$,----6-I-P- X-b-s---- --. &.4.3M... +.. .. +. .. +///*/2/ G/ +U/ +`/k/ ~/ //// / / /4/ 0@0^0|0#0 0 00 0 +0!1"1*1D1 M1W1p11131 11 2!2 02<2L2S2h2 2 22#222 2 33!3*3=3O3n33 3 +333 3333 +4 44 #4#04 T4`4y444 444$44 5#5 45A5I5Y5 +j5 u55 +55 5 5 5V58:)8d8 +m8 x8(88888 +899094P9299999":*:;: M:W:s:: : ::: :; ;;";6;&;;b; f; s; +;;;; ; +;; ; < +<<2< ;<H< Q<[<t<< <<<<<=3=E=Y= t=~='=== = ==>!>6>O> +e>#p>>>> +> >>? +?'?9?L?^?q? ? ?? ?? +??*@9@K@1g@@@ +@@@A"A8ASAlA|A AAAAAA B!B=BQB!ZB|BB)BBB CC 1C:>C5yCCC +CC D D +>DID QD _DlDuD ~DDD +D DDD D D D DD EE"E;ETE mE{E +EEEE6EEF-FL[LmLvLL LL LLL LL +MM (M.5M+dM MMMMM MMMNN2N)ON)yNNNNN OO&O<r?Zrrrrrrssss"s2s;sCsKsOs cs ms{ss sss ssst"t 5tAt#Etit#tt ttttt$uv7uu0vMv Uvvvvvv v)vv v.w7w GwUw$fww0w +w"w xx *x8xKx ^xkxzxxx$x.xCyby5yy\y?,zlzz zz3z{&{={V{o{t{x{{{ {{{{{{ ||'|;| B|P| W| d|n| t| ||F|J|/}5}<}C}I}h}}} +}}a~P~/6,f:6:@H fs{ [hVi + Ӂ݁B@[r +Â΂ (6 9.C*r.̃҃؃b +T_di V< 2JB}م܅  %%K Tu    +Ɔц  29 AM U_n Çه  -6 IU ^ hr{  Ĉ҈و 5HZjs  ĉ Љ ݉ +7c x +  +Š ͊ ۊ  +  %/8MU ^j +ɋԋ+4EU e +͌ ++ +GR Zf}  ύ *7 ?Ia j t~ +   Ȏ܎    = J Wc u ÏЏՏ + + 0+ \f{  Ð ڐ #,C1^ + ‘ʑߑ 3?G Noƒے  5F +W bl ړ  &?Y kw Ӕ  (1K] w + ŕ͕ +ܕ  +)4!Gi |  ͖ٖ  5 L Z dns    +×Η    " .: P +]h { ˘ Ԙ  + ?_ uʙ%ٙ !%G co    Ϛ ٚ +, LVh x +   ̛ ֛  + F! hu}Ĝ՜ +ݜ  4$Yj q }  ǝ՝/9i8ўמ #6>M V`i +r} ǟϟ  +  ) <]m } + ̠ ܠ +  *:K h t. ġҡ  ) +47 +@KS [g,o Тܢ  +  + + ) 6&Bip   ţ֣?\mu y   + %dD  $ N|5d," 9_n s c94G @ZI 5v1 )abeQ  QZ:5Nz<7( ^RJc> V9jozg,* +<; l$9* +@) |6 Zn8w ~Tcd ]W  T z]n"u B ! ?<'0 7=\c|F1o898V/ ++O&Q;cb x* }lyi 6Cm XvZ/Jg% xl=` n; ^j o\  fv8zSd +!M V) +  ]` B 9fQGwFLdis r 't exMcMf@ 9 y + ah nm> + q#)Cw[t +Z`Isc A*A%  YrC% ;7A/ E-` +C &R D3B\i9 + C  . L[SUONB] ]RUHtK(s8L4zU  +  F +  +{G + \1 + \ 4i' slT e& +Jt FX +Y [A"%CqupE1 U-}@ +B'{k {ma "u Gzn K 16Z '_|akv_4P# i !- wo% +Qgx)' + 6 u;e  [ Jf$ +cK} 4"*IO 0 p@Y&=JW/h ?] l( q $ &a g2 +/v!5 &4? hM?}j=r3y c_ %V+Dz>  +2Fg^-: JT~ G! U  )  += o; E*v &7fW yW sd*3X PA  #`l  At5# + g {&SQ.(Ut8 +B5 +mh . 7 ;, & wYq!0yb q +/  :O ^h[@$ NR _ bp +Im ;S4rT \H AK 7 :OV f`|j   O J +36$ Y kD_+9 +ES [e11 _jwl + + ++. +P/ k j +5=G! +) !2 " * 'V Ik!>M YX +,YVN OSTR*' e n'37$i3Px= }, +,H>[-L,(t  us ]r p- (q < ${HsSi/aSPBK4 +3 )J A#06Wi.VFt\KXKua4 |1?9 +R| E jF +}L6 *0 %QZ 15 +? g < +N >g o! h5N` +   +wMoL5R"p y.Z "TTzru I  3u j Py ?H}>d-: +<: :{ /`m +:[:kxv +#  $).  F:}/g )4 +^>#~x] +n(pqmmG+ +hLk<|b>GX60avp~? +vT +   a |' -   +p l N {< =F+a#i= +U 0 N$ gW +l0rJY*Y=" +H k) +~Tm 88Uq e +8 +p.En  8 rM^ O !~ D{73;uE7x +h | D ?Ebc6 @#D  +Oe@%Xv @( + H +4I^ .G o bD2bbL Bxt2:nM\qf I&1 +`  W 0 (}uZ\jdGA1z @/IR #,tLMQ~l2;  ; +Mo] 8P rJ6 + +$5_?p( os_3 +dj - + BPf{<> +-~~ qE<Pd L  +Py Oy#UHD S k  +  ?K2. ~%6K ^ZhWz[ R % Vk _UsC  + B>I^7WK"iEN C D0mHhr ^Q 'AR+we @f ( }eV7 + ,2wX X,&= 0 +wf] YHQ- +2C " \ +2 , XW[ySx 3`2 .Cb<F{9 Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, and the rest of the Gimp-Print Development Team. @@ -396,7 +401,7 @@ Fast and Very Fast are considerably faster, and work well for text and line art. Hybrid Floyd-Steinberg generally produces inferior output.Choose the printer model, PPD file, and command that is used to print to this printerCircleCircle _depth in percent:Cleanup...ClearClear transparentClose curve on completionClosedCo_lorCo_lor averagingCo_lor:Co_lorsCo_mment:Co_mpensate for darkeningCo_mplexity:Co_mpress TD tagsCo_mpression level:Co_ntiguous RegionCo_ntrast:Co_rrelated noiseCol_umn:CollectColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor Range _Mapping...Color Selection DialogColor TransformationColor _noise:Color _variation:Color fillColor is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor to _Alpha...Color:Color_map:Colorcube A_nalysis...Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColormap _Rotation...ColorsColors:CombineComm_ent:Command:CommentComment:ComposeCompose ChannelsComposing Images...Composing...Composition:Compressed size: %sCompressionCompression ratio (approx.): %d to 1Compression typeConstrain aspect ratioConstructing maze using Prim's Algorithm...Constructing tileable maze using Prim's Algorithm...ContextContinuous grad. w/o gapContinuous gradientContinuous updateContoursContrast:ControlsControls how intense the highlights will beConvert the image to RGB first!Convolution MatrixConvolution Matrix does not work on layers smaller than 3 pixels.ConvolveCopyCopy GFlareCopy SettingsCopy an objectCopy parametersCopy the active curve to the other borderCopy the texture of the selected paper as a backgroundCopy to ClipboardCopying IFS to image (%d/%d)...Copying...Copyright(c) 1999-2004 by Maurits RijkCopyright:CosineCould not create working folder '%s': %sCould not execute specified web browser: %sCould not get layers for image %dCould not interpret '%s'Could not load PNG defaultsCould not open '%s' as SUN-raster-fileCould not open '%s' for reading.Could not open '%s' for reading: %sCould not open '%s' for writing.Could not open '%s' for writing: %sCould not parse specified web browser command: -%sCould not read XWD header from '%s'Could not read color entries from '%s'Could not read header from '%s'Could not write '%s': %sCouldn't load one brush in the pipe, giving up.Couldn't losslessly save transparency, saving opacity instead.Couldn't read file:Couldn't save file:Couldn't save resource file:Couldn't simply reduce colors further. Saving as opaque.Coupled-Map-Lattice ExplorerCre_ate new imageCreateCreate GuidesCreate _New layerCreate _histogramCreate a color-map using a gradient from the gradient editorCreate a color-map with the options you specified above (color density/function). The result is visible in the preview imageCreate a new image when applying filterCreate a new unit from scratch.Create a new unit with the currently selected unit as template.Create arcCreate bezier curveCreate bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate guides...Create lineCreate new imageCreate reg polygonCreate spiralCreate starCreateDIBSection failedCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent gradient (reversed)Current:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...DefaultDefault Map TypeDefault _URL:Default chunks type:Default frame delay:Default frame disposal:Define Circle/Oval areaDefine New PrinterDefine Polygon areaDefine Rectangle areaDefine a new logical printer. This can be used to name a collection of settings that you wish to remember for future use.Deform ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifferentialDiffraction PatternsDiffuse:Diffusion dist.:Digital Imaging and Communications in Medicine imageDigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacement map:Displacing...Display as:Distance from the bottom of the paper to the imageDistance from the left of the paper to the imageDistance from the left of the paper to the right of the imageDistance from the right of the paper to the imageDistance from the top of the paper to the bottom of the imageDistance from the top of the paper to the imageDither Algorithm:Dither size:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?Document not foundDraw a Border of Spikes around the ImageDrawables have different sizeDrawing Flame...Drawing Grid...Drawing Maze...Drawing SettingsDraws lines between the control points. Only during curve creationDrop ShadowEOF encountered on readingEXIF data will be ignored.E_levation:E_nable bump mappingE_nable environment mappingE_rodeE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_grave...En_vironment image:Enable _antialiasingEnable/disable bump-mapping (image depth)Enable/disable environment-mapping (reflection)Enable/disable high quality previewEnable/disable jagged edges removal (antialiasing)Enable/disable real time preview of changesEncapsulated PostScript imageEncapsulation:EndPage failedEngraveEngraving...Enter a name for the copied GFlareEnter a name for the new GFlareEnter the PPD filename for your printerEnter the command to print to your printer. Note: Please do not remove the `-l' or `-oraw' from the command string, or printing will probably fail!Enter the name you wish to give this logical printerEntire LayerEnv. sensitivity:Environment image to useError during open of FITS fileError during writing indexed/gray imageError during writing rgb imageError grabbing the pointerError in GIMP brush file '%s'Error in GIMP brush pipe file.Error in getting layer IDsError obtaining Screen ShotError opening fileError opening file '%s'Error reading BMP file header from '%s'Error reading fileError starting ghostscript (%s)Error starting ghostscript: %sError trying to open temp file '%s'for parasite loading. +%sCould not read XWD header from '%s'Could not read color entries from '%s'Could not read header from '%s'Could not write '%s': %sCouldn't load one brush in the pipe, giving up.Couldn't losslessly save transparency, saving opacity instead.Couldn't read file:Couldn't save file:Couldn't save resource file:Couldn't simply reduce colors further. Saving as opaque.Coupled-Map-Lattice ExplorerCre_ate new imageCreateCreate GuidesCreate _New layerCreate _histogramCreate a color-map using a gradient from the gradient editorCreate a color-map with the options you specified above (color density/function). The result is visible in the preview imageCreate a new image when applying filterCreate a new unit from scratch.Create a new unit with the currently selected unit as template.Create arcCreate bezier curveCreate bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate guides...Create lineCreate new imageCreate reg polygonCreate spiralCreate starCreateDIBSection failedCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent gradient (reversed)Current:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...DefaultDefault Map TypeDefault _URL:Default chunks type:Default frame delay:Default frame disposal:Define Circle/Oval areaDefine New PrinterDefine Polygon areaDefine Rectangle areaDefine a new logical printer. This can be used to name a collection of settings that you wish to remember for future use.Deform ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifference of Gaussians...DifferentialDiffraction PatternsDiffuse:Diffusion dist.:Digital Imaging and Communications in Medicine imageDigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacement map:Displacing...Display as:Distance from the bottom of the paper to the imageDistance from the left of the paper to the imageDistance from the left of the paper to the right of the imageDistance from the right of the paper to the imageDistance from the top of the paper to the bottom of the imageDistance from the top of the paper to the imageDither Algorithm:Dither size:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?DoG Edge DetectDocument not foundDraw a Border of Spikes around the ImageDrawables have different sizeDrawing Flame...Drawing Grid...Drawing Maze...Drawing SettingsDraws lines between the control points. Only during curve creationDrop ShadowEOF encountered on readingEXIF data will be ignored.E_levation:E_nable bump mappingE_nable environment mappingE_rodeE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_grave...En_vironment image:Enable _antialiasingEnable/disable bump-mapping (image depth)Enable/disable environment-mapping (reflection)Enable/disable high quality previewEnable/disable jagged edges removal (antialiasing)Enable/disable real time preview of changesEncapsulated PostScript imageEncapsulation:EndPage failedEngraveEngraving...Enter a name for the copied GFlareEnter a name for the new GFlareEnter the PPD filename for your printerEnter the command to print to your printer. Note: Please do not remove the `-l' or `-oraw' from the command string, or printing will probably fail!Enter the name you wish to give this logical printerEntire LayerEnv. sensitivity:Environment image to useError during open of FITS fileError during writing indexed/gray imageError during writing rgb imageError grabbing the pointerError in GIMP brush file '%s'Error in GIMP brush pipe file.Error in getting layer IDsError obtaining Screen ShotError opening fileError opening file '%s'Error reading BMP file header from '%s'Error reading fileError starting ghostscript (%s)Error starting ghostscript: %sError trying to open temp file '%s'for parasite loading. Error trying to save figure as a parasite: can't attach parasite to drawable. Error while reading '%s'. File corrupted?Error while saving '%s'. Could not save image.Error writing output file.Error: Could not read XJT property file '%s'.Error: XJT property file '%s' is empty.Error: failed to load parametersError: it's not CML parameter file.Evenly distributedExp.:Export PreviewExtract ChannelsFG colorFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsF_ileF_irst Color:F_lare intensity:FactorFailed to open GFlare file '%s': %sFailed to save PPM file '%s': %sFailed to write GFlare file '%s': %sFast IntegerFastest and brightest color for text and line artFeatherFileFile "%s" saved.File '%s' doesn't seem to be an IFS Fractal file.File '%s' exists. Overwrite it?File '%s' is corrupt. @@ -404,21 +409,21 @@ (gflare-path "%s") and make a folder '%s', then you can save your own GFlares into that folder.GFlare EditorGIF OptionsGIF WarningGIF imageGIF: Undocumented GIF composite type %d is not handled. Animation might not play or re-save perfectly.GIMP ExtensionGIMP Help browserGIMP Plug-InGIMP Table MagicGIMP Windows Icon PluginGIMP brushGIMP brush (animated)GIMP brush file appears to be corrupted.GIMP brushes are either GRAYSCALE or RGBAGIMP compressed XJT imageGIMP patternG_lowG_reen threshold:Gamma:Gaussian BlurGaussian Blur...Gee-_SlimeGee-_ZoomGeneralGeneral OptionsGeneral PreferencesGeneral optionsGet sample colorsGfigGimp-Print Version GimpressionistGlass TileGlass Tile...Glow Paint OptionsGr_eyGrabGrab _AfterGrab a single windowGrab the whole screenGradientGradient Flare...Gradient Map...Gradient fillGradient map selection menuGradient scale:GradientsGraph of the current settingsGraphic antialiasingGrayGray ModeGray OptionsGray ThresholdGrayscaleGreenGreen fr_equency:Green ph_aseshift:Green:GreyGridGrid GranularityGrid OffsetGrid SettingsGrid Settings...Grid Visibility and TypeGrid color:Grid settings...Grid spacing:Grid type:GuidesGuides are pre-defined rectangles covering the image. You define them by their width, height, and spacing from each other. This allows you to rapidly create the most common image map type - image collection of "thumbnails", suitable for navigation bars.Guides...Guillotine...HSVHTML Page OptionsHTML tableH_ighlight:H_ighlightsH_ueH_ue:He_xagonsHeight (pixels):Height of the paper that you wish to print toHeight:Help ID '%s' unknownHey where has the object gone ?High _Quality previewHigher values increase the magnitude of the effectHigher values makes the highlights more focusedHigher values makes the object reflect more light (appear lighter)Higher values restrict the effect to fewer areas of the imageHighlight:Highlights:Ho_ld the minimal channelsHo_le width:Ho_rizontal base:Hol_e height:Hold intensityHole sp_acing:HorizontalHorizontal ColorHorizontallyHorseshoeHotHot spot _X:Hot spot _Y:Hot...How many units make up an inch.How much to "darken" the drop shadowHow much to "darken" the edges of each brush strokeHow much to blur the drop shadowHueHue Rotation:Hue VariationsHue _frequency:Hue _phaseshift:Hue:I don't careIDIFS FractalIFS Fractal Render OptionsIFS Fractal: BlackIFS Fractal: BlueIFS Fractal: GreenIFS Fractal: RedIFS Fractal: TargetITER:IWarpI_ntensityI_nteractiveI_nvert bumpmapI_nverted imageI_solateIcon #%iIcon detailsIf checked GTM will output a full HTML document with , , etc. tags instead of just the table html.If checked GTM will replace any rectangular sections of identically colored blocks with one large cell with ROWSPAN and COLSPAN values.If checked the mapping will begin at the right side, as opposed to beginning at the left.If unchecked the image will be circularly mapped onto a rectangle. If checked the image will be mapped onto a circle.If unchecked the mapping will put the bottom row in the middle and the top row on the outside. If checked it will be the opposite.If you enable this option higher color values will be swapped with lower ones and vice versaIf you enable this option the preview will be redrawn automaticallyIllusionIllusion...Im_ageImageImage / Output SettingsImage ComposingImage SelectionImage SizeImage TypesImage _Type:Image _height:Image dimensions: %d x %dImage is not a gray image (bpp=%d)Image name:Image size has changed.Image spac_ing:Image type:Imagemap plug-in 2.2Images for the Cap FacesImages have different sizeImport _pathsImport path elements of the SVG so they can be used with the GIMP path toolIn_tegration steps:In_verseInchInclude decorationsIndexedIndexed Palette TypeInitial value:Ink type:Input levels:Insert PointInsertion DateIntegerIntensityIntensity LevelsIntensity of original color when lit by a light sourceInterlaceInternal GIMP procedureIntersectionIntersection ColorInvalid UTF-8 string in PSD fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in pattern file '%s'.InversionInverts the Papers textureIsometricIt is highly recommended to add (gimpressionist-path "%s") -(or similar) to your gimprc file.Iterations:JNGJNG + delta PNGJPEG compression quality:JPEG imageJPEG previewJPEG quality parameterJPEG smoothing factor:JigsawJigsaw StyleJuliaKISS CELKeep _even fieldsKeep image's valuesKeep o_dd fieldsKeep originalKeep the first valueLABLZ77L_eadingL_eft BorderL_ength:L_inearLambdaLandscapeLaplaceLaplace...Larg_e 3x3Layer %s doesn't have an alpha channel, skippedLayer background type. Copy causes the previous layer to be copied before the draw is performed.LeftLeft edgeLeft:Lens EffectLess Sat:Let the direction from the center determine the direction of the strokeLet the direction from the center determine the size of the strokeLet the value (brightness) of the region determine the direction of the strokeLet the value (brightness) of the region determine the size of the strokeLevelLightLight 1Light 2Light 3Light 4Light 5Light 6Light SettingsLight _direction:Light intensityLight source X direction in XYZ spaceLight source X position in XYZ spaceLight source Y direction in XYZ spaceLight source Y position in XYZ spaceLight source Z direction in XYZ spaceLight source Z position in XYZ spaceLighterLighter:Lighting EffectsLighting Effects...Lighting preset:Lightsource color:Lightsource type:LineLine artLinearLink TypeList ViewLizardLo_ng-staggeredLo_wer BorderLoad Channel Mixer SettingsLoad Curve Points from fileLoad FITS FileLoad FlameLoad Fractal ParametersLoad Gfig object collectionLoad ImagemapLoad KISS PaletteLoad Lighting PresetLoad Parameters fromLoad PostScriptLoad QBE fileLoad a fractal from fileLoad the curves from a fileLoading Screen Shot...Lock _thresholdsLogarithmicLoopLower leftLower rightLower selected objectLower selected object to bottomLower t_hreshold:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Luminosity _Threshold:Luminosity freq_uency:Luminosity pha_seshift:MNG OptionsMNG animationM_aximum value:Ma_x depth:Ma_ximum height:Magen_taMagentaMagenta:Magenta_KMagnitude map:Main OptionsMake destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMandelbrot ParametersManualManually specify the stroke orientationManually specify the stroke sizeMap Color RangeMap Images to Box FacesMap _Object...Map file formatMap from _topMap to Box...Map to Cylinder...Map to ObjectMap to Plane...Map to Sphere...Map to:Mapping colors...Mask FileMaterial propertiesMatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max RGBMax RGB...Max undo:Max. Memory:Maximum height for bumpsMaximum size:MazeMedia size:Media source:Media type:MedianMenuMenu PathMenu Path/NameMerge imported pathsMerging...Microsoft WMF fileMicrosoft Windows iconMiddle-click inside preview to pick "From Color"Midtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Minimum size:Mirror the active curve to the other borderMisc arrange:Mo_dify green channelMo_dify saturation channelMod_ify blue channelMod_ify luminosity channelModeMode _1Mode _2Modify CurvesMor_e opaqueMore Advanced OptionsMore Sat:More _white (larger value)More blac_k (smaller value)More t_ransparentMosaicMotion BlurMotion Blurring...MoveMove DownMove SashMove Selected ObjectsMove To FrontMove UpMove a single pointMove an objectMovementMultiple (57):Multiply gradient (0,1)Multiply rand. value (0,1)Multiply rand. value (0,2)Mutation dist.:Mutation rate:My first fractalNL FilterNL Filter...NameNeon DetectionNeon...New FractalNew GFlareNew UnitNew printer...New seedNewsprin_t...NewsprintNewsprint...No %s in gimprc: +(or similar) to your gimprc file.Iterations:JNGJNG + delta PNGJPEG compression quality:JPEG imageJPEG previewJPEG quality parameterJPEG smoothing factor:JigsawJigsaw StyleJuliaKISS CELKeep _even fieldsKeep image's valuesKeep o_dd fieldsKeep originalKeep the first valueLABLZ77L_eadingL_eft BorderL_ength:L_inearLambdaLandscapeLaplaceLaplace...Larg_e 3x3Layer %s doesn't have an alpha channel, skippedLayer background type. Copy causes the previous layer to be copied before the draw is performed.LeftLeft edgeLeft:Lens EffectLess Sat:Let the direction from the center determine the direction of the strokeLet the direction from the center determine the size of the strokeLet the value (brightness) of the region determine the direction of the strokeLet the value (brightness) of the region determine the size of the strokeLevelLightLight 1Light 2Light 3Light 4Light 5Light 6Light SettingsLight _direction:Light intensityLight source X direction in XYZ spaceLight source X position in XYZ spaceLight source Y direction in XYZ spaceLight source Y position in XYZ spaceLight source Z direction in XYZ spaceLight source Z position in XYZ spaceLighterLighter:Lighting EffectsLighting Effects...Lighting preset:Lightsource color:Lightsource type:LineLine artLinearLink TypeList ViewLizardLo_ng-staggeredLo_wer BorderLoad Channel Mixer SettingsLoad Curve Points from fileLoad FITS FileLoad FlameLoad Fractal ParametersLoad Gfig object collectionLoad ImagemapLoad KISS PaletteLoad Lighting PresetLoad Parameters fromLoad PostScriptLoad QBE fileLoad a fractal from fileLoad the curves from a fileLoading Screen Shot...Lock _thresholdsLogarithmicLoopLower leftLower rightLower selected objectLower selected object to bottomLower t_hreshold:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Luminosity _Threshold:Luminosity freq_uency:Luminosity pha_seshift:MNG OptionsMNG animationM_aximum value:Ma_x depth:Ma_ximum height:Magen_taMagentaMagenta:Magenta_KMagnitude map:Main OptionsMake destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMandelbrot ParametersManualManually specify the stroke orientationManually specify the stroke sizeMap Color RangeMap Images to Box FacesMap _Object...Map file formatMap from _topMap to Box...Map to Cylinder...Map to ObjectMap to Plane...Map to Sphere...Map to:Mapping colors...MarbleMask FileMaterial propertiesMatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max RGBMax RGB...Max undo:Max. Memory:Maximum height for bumpsMaximum size:MazeMedia size:Media source:Media type:MedianMenuMenu PathMenu Path/NameMerge imported pathsMerging...Microsoft WMF fileMicrosoft Windows iconMiddle-click inside preview to pick "From Color"Midtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Minimum size:Mirror the active curve to the other borderMisc arrange:Mo_dify green channelMo_dify saturation channelMod. rate:Mod_ify blue channelMod_ify luminosity channelModeMode _1Mode _2Modify CurvesMor_e opaqueMore Advanced OptionsMore Sat:More _white (larger value)More blac_k (smaller value)More t_ransparentMosaicMotion BlurMotion Blurring...MoveMove DownMove SashMove Selected ObjectsMove To FrontMove UpMove a single pointMove an objectMovementMultiple (57):Multiply gradient (0,1)Multiply rand. value (0,1)Multiply rand. value (0,2)Mutation dist.:Mutation rate:My first fractalNL FilterNL Filter...NameNeon DetectionNeon...New FractalNew GFlareNew UnitNew printer...New seedNewsprin_t...NewsprintNewsprint...No %s in gimprc: You need to add an entry like (%s "%s") to your %s file.No colorsNo compressionNo data capturedNo fillNo lightNo matchesNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Nothing to crop.Number of ColorsNumber of M_RU entries (1 - 16):Number of SegmentsNumber of TilesNumber of _Frames:Number of _Undo levels (1 - 99):Number of cells:Number of colors:Number of cycles covering full value rangeNumber of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_nly foregroundO_pacity:O_ptionsO_rientationO_thersO_utput LPI:O_utput channel:O_verlap:O_verlayO_versample:Object DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOc_tagons & squaresOff_set:Offset (1):Offset _angle:Offset all vectors with a given angleOffset:Oil Painting...Oili_fy...OilifyOn Edges:On Film:On edges:One frame per layer (replace)Only b_ackgroundOnly one unique colorOp_acity:Op_timal estimationOp_tionsOpacity:OpenOpen FileOpen IFS Fraktal fileOpen failedOpen recentOpening '%s'...Opening thumbnail for '%s'...Opens up the Orientation Map EditorOpens up the Size Map EditorOptimizeOptimize (for _GIF)Optimize the output for the type of image being printedOptimizing Animation...OptionsOr_ientationOr_igin at bottom leftOrientationOrientation Map EditorOrientation:OriginalOriginal intensityOriginal:Ot_herOther optionsOutputOutput Levels:Output type:Outside TypeOverlayP(ower factor):PDF documentPGM imagePNGPNG + delta PNGPNG compression level:PNG imagePNM ImagePNM imagePNM save cannot handle images with alpha channels.PNM: Error reading file.PNM: Invalid X resolution.PNM: Invalid Y resolution.PNM: Invalid file.PNM: Invalid maximum value.PNM: Premature end of file.PPD File:PPIPPM imagePS DiamondPS Square (Euclidean Dot)P_aperP_olar Coords...P_reviewPage %dPage Curl...Page SetupPageSetupDlg failed: %dPagecurl EffectPages to load (e.g.: 1-4 or 1,3,5-7)Pages:Paint Mode:Paint Shop Pro imagePaint edgesPainting...Pal_ette File:PalettePaper TilePaper Tile...Parameter k:ParametersParameters were saved to '%s'Parse error in '%s': -%sPastePaste from ClipboardPastedPasting...Pattern fillPercentPercent _black:Percent _white:Percentage of pixels to be filteredPhase angle, range 0-360PhotocopyPhotographPhotoshop imagePieces:Ping pongPixel _Height:Pixel _Width:Pixel value scalingPixelizePixelizing...PixelsPl_acementPlace strokes randomly around the imagePlacementPlanar (RRR,GGG,BBB)Planar RGBPlanePlasmaPlasma...Play/StopPlayback:Please check your installation.Plot a graph of the settingsPlug-In BrowserPluralPo_larization:PointPoint lightPolarPolarizePolarizing...PolygonPortraitPositionPosition X:Position Y:Position Z:Position the image on the page. +%sPastePaste from ClipboardPastedPasting...Pattern fillPercentPercent _black:Percent _white:Percentage of pixels to be filteredPhase angle, range 0-360PhongPhotocopyPhotographPhotoshop imagePieces:Ping pongPixel _Height:Pixel _Width:Pixel value scalingPixelizePixelizing...PixelsPl_acementPlace strokes randomly around the imagePlacementPlanar (RRR,GGG,BBB)Planar RGBPlanePlasmaPlasma...Play/StopPlayback:Please check your installation.Plot a graph of the settingsPlug-In BrowserPluralPo_larization:PointPoint lightPolarPolarizePolarizing...PolygonPortraitPositionPosition X:Position Y:Position Z:Position the image on the page. Click and drag with the primary button to position the image. Click and drag with the second button to move the image with finer precision; each unit of motion moves the image one point (1/72") Click and drag with the third (middle) button to move the image in units of the image size. Holding down the shift key while clicking and dragging constrains the image to only horizontal or vertical motion. If you click another button while dragging the mouse, the image will return to its original position.PostScript documentPostScript save cannot handle images with alpha channelsPre_viewPreferencesPreserve _luminosityPreserve the original image as a backgroundPreviewPreview SizePreview _size:Preview as You DragPrewittPrim's algorithmPrint Color AdjustPrint and -Save SettingsPrint in black and white (no color, and no shades of gray)Print in shades of gray using black inkPrint to FilePrintDlg failed: %dPrinter Model:Printer SettingsPrinter doesn't support bitmapsPrinter model:Printer name:Printing...Probability Gradient:Procedure BrowserProcedure _BrowserProgressivePropagatePropagating Value ChannelPropagating _Alpha ChannelQbist ...Quality:R, G, B (normal)RGBRGB Save TypeRGBARGBA/GRAYA drawable is not selected.RLERLE compressionR_adius 2:R_adius:R_andom hue:R_andom seed:R_andomization (%):R_ecursiveR_edR_ed threshold:R_epeat:R_everseRadialRadial Gradient:RadiansRadians/PiRadiusRadius:Raise selected objectRaise selected object to topRando_m saturation:RandomRandom Hurl 1.7Random Pick 1.7Random Seed:Random Slur 1.7Random _seed:Random seedRandom sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)Range high:Range low:Ranks:RawRaw Image DataRaw Image LoaderRaw Image SaveRays Paint OptionsRe_centerRe_dReads the selected Preset into memoryRealtime PreviewRecompute CenterRecompute preview imageRectangleRedRed _frequency:Red _phaseshift:Red:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:RedoRedo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRefresh the Preview windowRegular Polygon Number of SidesRelati_ve linkRelative probability:Released under the GNU General Public LicenseRelief:Remap Colorized...Remo_veRemoving Animation Background...Removing color...Render Flare...Render Scalable Vector GraphicsRender Windows MetafileRender optionsRendered SVGRendered WMFRenderingRendering Blast...Rendering Fractal...Rendering IFS (%d/%d)...Rendering SVG...Rendering Sphere...Rendering SuperNova...Rendering Tiles...Rendering Wind...ReplaceReread the folder of PresetsRescan GradientsRescan for FractalsReset parameters to default valuesReset the active curveResize area's?ResolutionResolution and quality of the printResolution:Resulting Guide Bounds: %d,%d to %d,%d (%d areas)Resulting Guide Bounds: 0,0 to 0,0 (0 areas)Return ValuesRevert to the original imageRewindRightRight Border:Right edgeRight:RippleRippling...Ro_tation:Ro_w:RobertsRotat_e:RotateRotate / ScaleRotate X:Rotate Y:Rotate Z:RotatedRotating the colormap...Rotating...RotationRotation angle about X axisRotation angle about Y axisRotation angle about Z axisRotation angle:Rotation:RoughnessRoundRunLength EncodedSUN Rasterfile imageSUNRAS save cannot handle images with alpha channelsSVG file does not +Save SettingsPrint in black and white (no color, and no shades of gray)Print in shades of gray using black inkPrint to FilePrintDlg failed: %dPrinter Model:Printer SettingsPrinter doesn't support bitmapsPrinter model:Printer name:Printing...Probability Gradient:Procedure BrowserProcedure _BrowserProgressivePropagatePropagating Value ChannelPropagating _Alpha ChannelQbist ...Quality:R, G, B (normal)RGBRGB Save TypeRGBARGBA/GRAYA drawable is not selected.RLERLE compressionR_adius 2:R_adius:R_andom hue:R_andom seed:R_andomization (%):R_ecursiveR_edR_ed threshold:R_epeat:R_everseRadialRadial Gradient:RadiansRadians/PiRadiusRadius:Raise selected objectRaise selected object to topRando_m saturation:RandomRandom Hurl 1.7Random Pick 1.7Random Seed:Random Slur 1.7Random _seed:Random seedRandom sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)Range high:Range low:Ranks:RawRaw Image DataRaw Image LoaderRaw Image SaveRays Paint OptionsRe_centerRe_dReads the selected Preset into memoryRealtime PreviewRecompute CenterRecompute preview imageRectangleRedRed _frequency:Red _phaseshift:Red:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:RedoRedo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRefresh the Preview windowRegular Polygon Number of SidesRelati_ve linkRelative probability:Released under the GNU General Public LicenseRelief:Remap Colorized...Remo_veRemoving Animation Background...Removing color...Render Flare...Render Scalable Vector GraphicsRender Windows MetafileRender optionsRendered SVGRendered WMFRenderingRendering Blast...Rendering Fractal...Rendering IFS (%d/%d)...Rendering SVG...Rendering Sphere...Rendering SuperNova...Rendering Tiles...Rendering Wind...ReplaceReread the folder of PresetsRescan GradientsRescan for FractalsReset parameters to default valuesReset the active curveResize area's?ResolutionResolution and quality of the printResolution:Resulting Guide Bounds: %d,%d to %d,%d (%d areas)Resulting Guide Bounds: 0,0 to 0,0 (0 areas)Retinex (4/4): updated...Retinex Image EnhancementRetinex...Retinex: Filtering...Return ValuesRevert to the original imageRewindRightRight Border:Right edgeRight:RippleRippling...Ro_tation:Ro_w:RobertsRotat_e:RotateRotate / ScaleRotate X:Rotate Y:Rotate Z:RotatedRotating the colormap...Rotating...RotationRotation angle about X axisRotation angle about Y axisRotation angle about Z axisRotation angle:Rotation:RoughnessRoundRunLength EncodedSUN Rasterfile imageSUNRAS save cannot handle images with alpha channelsSVG file does not specify a size!S_catter HSV...S_econd Color:S_elect Window AfterS_elect here:S_electorS_how cursorS_hrinkS_ineS_trength exp.:S_trength:S_tripedS_ubject:S_wapS_wirl CCWSa_ve alpha channel (RGBA/RGB)SameSample Analyze...Sample ColorizeSample _density:Sample:Samples the color from the pixel in the center of the brushSat_urationSatu_rationSaturationSaturation VariationsSaturation fr_equency:Saturation ph_aseshift:Saturation:SaveSave SettingsSave (middle transform) as QBE fileSave BrushSave Channel Mixer SettingsSave CurrentSave Curve Points to fileSave EXIF dataSave FileSave FlameSave Fractal ParametersSave Gfig DrawingSave ImagemapSave Lighting PresetSave Parameters toSave _background colorSave _color values from transparent pixelsSave _gammaSave _resolutionSave active fractal to fileSave as BMPSave as BrushSave as Brush PipeSave as C-SourceSave as GIFSave as IFS Fraktal fileSave as JPEGSave as MNGSave as PNGSave as PNMSave as PSPSave as PatternSave as PostScriptSave as SGISave as SUNRASSave as TGASave as TIFFSave as TextSave as XBMSave as XJTSave as XPMSave background colorSave color _values from transparent pixelsSave comme_ntSave creation _timeSave creation timeSave current...Save failedSave gammaSave layer o_ffsetSave resolutionSave the current settings to the specified fileSave the curves to a fileSave thumbnailSavedSaving '%s'...Saw_toothSc_ale 1:Sc_attering:Sca_le 2:Scalable SVG imageScale Hue by:Scale Value by:Scale X:Scale Y:Scale Z:Scale by:Scale the print to the number of dots per inchScale the print to the size of the pageScale:Scaling:Scatter HSVScatter RGBScattering HSV...ScreenScreen ShotSe_lection OnlySearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeascapeSecond Destination ColorSecond Flares Paint OptionsSecond Source ColorSecond colorSeconds DelaySeconds delaySeed of Random (only for "From Seed" Modes)Seed:Selec_tion In ContextSelectSelect AllSelect ColorSelect Film ColorSelect HTML fileSelect Image FileSelect NextSelect Number ColorSelect Palette File to LoadSelect Pixels bySelect PreviousSelect RegionSelect _AllSelect _allSelect allSelect an objectSelect contiguous regionSelect contiguous regionsSelect existing areaSelect folder and rescan collectionSelect lightsource colorSelect next smvectorSelect next vectorSelect previous smvectorSelect previous vectorSelect the base unit of measurement for printingSelect the desired output typeSelect the name of the printer (not the type, or model, of printer) that you wish to print toSelect the orientation: portrait, landscape, upside down, or seascape (upside down landscape)Select whether scaling is measured as percent of available page size or number of output dots per inchSelect your printer modelSelect:Selected:SelectionSelection To Path Advanced SettingsSelection size is not even. Tileable maze won't work perfectly.Selection to Path...Selective Gaussian BlurSelective Gaussian Blur...Selective Load SettingsSelective Load fromSelects a random direction of each strokeSelects a random size for each strokeSelects if the resulting image should be seamlessly tileableSelects if to place strokes all the way out to the edges of the imageSemi-Flattening...Send To BackSend as MailSeparate to:September 31, 1999Set light source colorSet the base unit of measurement to centimetresSet the base unit of measurement to inchesSet the brightness of the print. -0 is solid black, 2 is solid whiteSet the contrast of the printSet the height of the printSet the print size to the size of the imageSet the scale (size) of the imageSet the width of the printSetStretchBltMode failed (warning only)SettingsSettings for this MapfileSetup PrinterSetup printer...Sha_dowsShadow blur:Shadow darken:Shadow depth:Shadows:Shape of Second FlaresSharp edgesSharpenSharpening...Shear:ShiftShift _amount:Shift _horizontallyShift _verticallyShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow Line FrameShow _Preview in image windowShow all objectsShow area URL _tipShow area _handlesShow colorShow control pointsShow gridShow imageShow next objectShow positionShow preview _wireframeShow previous objectShow selectionShow/hide preview wireframeSi_ngular:Sides:SierpinskiSilicon Graphics IRIS imageSimpleSin_usoidalSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size Factor Gradient:Size Map EditorSize of paper that you wish to print toSize:Sizes:Slowest, but most accurate and smoothest color for continuous tone images and photographsSmearSmoo_th Palette...Smoo_thingSmoot_hSmooth PaletteSmooth samplesSmoothing X gradient...Smoothing Y gradient...Smoothing parametersSmoothing:Smoothness of AliasingSmvectorsSnap to gridSobelSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySolidSolid NoiseSolid Noise...Solid colored backgroundSolid colorsSome data has been changed!Sorry, I can save only INDEXED and GRAY images.Sorry, channels and masks can not be rotated.Source (input slot) of media you're printing toSource 1:Source 2:Source channel in file:Source channel:Source color rangeSource...Sp_ike points:Sp_read...Spa_tial oversample:Spacing (percent):Spacing:SparkleSparkling...Spatial TransformationSpatial _filter radius:Specified window not foundSpecifies the amount of embossing to apply to the image (in percent)Specifies the aspect ratio of the brushSpecifies the scale of the texture (in percent of original file)Specular:SphereSphere DesignerSphere _Designer...SphericalSpi_ke angle (-1: random):SpiderSpik_e density:Spike Thickness:SpiralSpiral Number of TurnsSpot Radius:SpotsSpreadSpread AmountSpreading...St_rength exp.:StandardStandard (R,G,B)Star Number of PointsStart _index:Start angle:Start offset:StartPage failedStepStep size:Stop when pixel differences are smaller than this valueStretchStretch _HSVStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, error = %d, y = %dStroke _density:StrongStyleSu_perNova...Subdivide:Subsampling:Substeps:SuperNovaSuperNova Color PickerSw_irl CWSwap the two curvesSwirlSwitch to "From seed" with the last seedSwitch to c/clockwiseSwitch to clockwiseSymbolTIFF ChannelTIFF imageTWAIN (Dump)...TWAIN (Read)...T_ilableT_ile saturation:T_ile size:T_ransparent backgroundT_urbulence:T_urbulentTable Creation OptionsTable OptionsTarGA imageTargetTel_netTemporaryTemporary ProcedureText antialiasingTextureTexture PropertiesTexture TransformationsTexture:TexturesThank you for choosing GIMPThe GIF format only supports comments in 7bit ASCII encoding. No comment is saved.The GIMP help files are not installed.The GIMPressionistThe Gimpressionist DefaultsThe PNG file specifies an offset that caused the layer to be positioned outside the image.The TIFF format only supports comments in +0 is solid black, 2 is solid whiteSet the contrast of the printSet the height of the printSet the print size to the size of the imageSet the scale (size) of the imageSet the width of the printSetStretchBltMode failed (warning only)SettingsSettings for this MapfileSetup PrinterSetup printer...Sha_dowsShadow blur:Shadow darken:Shadow depth:Shadows:Shape of Second FlaresSharp edgesSharpenSharpening...Shear:ShiftShift _amount:Shift _horizontallyShift _verticallyShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow Line FrameShow _Preview in image windowShow all objectsShow area URL _tipShow area _handlesShow colorShow control pointsShow gridShow imageShow next objectShow positionShow preview _wireframeShow previous objectShow selectionShow/hide preview wireframeSi_ngular:Sides:SierpinskiSilicon Graphics IRIS imageSimpleSin_usoidalSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size Factor Gradient:Size Map EditorSize of paper that you wish to print toSize:Sizes:Slowest, but most accurate and smoothest color for continuous tone images and photographsSmearSmoo_th Palette...Smoo_thingSmoot_hSmooth PaletteSmooth samplesSmoothing X gradient...Smoothing Y gradient...Smoothing parametersSmoothing:Smoothness of AliasingSmvectorsSnap to gridSobelSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySoftglowSolidSolid NoiseSolid Noise...Solid colored backgroundSolid colorsSome data has been changed!Sorry, I can save only INDEXED and GRAY images.Sorry, channels and masks can not be rotated.Source (input slot) of media you're printing toSource 1:Source 2:Source channel in file:Source channel:Source color rangeSource...Sp_ike points:Sp_read...Spa_tial oversample:Spacing (percent):Spacing:SparkleSparkling...Spatial TransformationSpatial _filter radius:Specified window not foundSpecifies the amount of embossing to apply to the image (in percent)Specifies the aspect ratio of the brushSpecifies the scale of the texture (in percent of original file)Specular:SphereSphere DesignerSphere _Designer...SphericalSpi_ke angle (-1: random):SpiderSpik_e density:Spike Thickness:SpiralSpiral Number of TurnsSpot Radius:SpotsSpreadSpread AmountSpreading...St_rength exp.:StandardStandard (R,G,B)Star Number of PointsStart _index:Start angle:Start offset:StartPage failedStepStep size:Stop when pixel differences are smaller than this valueStretchStretch _HSVStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, error = %d, y = %dStroke _density:StrongStyleSu_perNova...Subdivide:Subsampling:Substeps:SuperNovaSuperNova Color PickerSw_irl CWSwap the two curvesSwirlSwitch to "From seed" with the last seedSwitch to c/clockwiseSwitch to clockwiseSymbolTIFF ChannelTIFF imageTWAIN (Dump)...TWAIN (Read)...T_ilableT_ile saturation:T_ile size:T_ransparent backgroundT_urbulence:T_urbulentTable Creation OptionsTable OptionsTarGA imageTargetTel_netTemporaryTemporary ProcedureText antialiasingTextureTexture PropertiesTexture TransformationsTexture:TexturesThank you for choosing GIMPThe GIF format only supports comments in 7bit ASCII encoding. No comment is saved.The GIMP help files are not installed.The GIMPressionistThe Gimpressionist DefaultsThe PNG file specifies an offset that caused the layer to be positioned outside the image.The TIFF format only supports comments in 7bit ASCII encoding. No comment is saved.The amount of cellpadding.The amount of cellspacing.The amount of highlighting on the edges of each pieceThe angle span of the first brush to createThe brush-size that matches the original image the closest is selectedThe colors are white and black.The default comment is limited to %d characters.The depth of the drop shadow, i.e. how far apart from the object it should beThe direction that matches the original image the closest is selectedThe distance from the center of the image determines the direction of the strokeThe distance from the center of the image determines the size of the strokeThe first row of the imageThe height for each table cell. Can be a number or a percent.The hue of the region determines the direction of the strokeThe hue of the region determines the size of the strokeThe image which you are trying to save as a GIF contains layers which extend beyond the actual borders of the image. This isn't allowed in GIFs, @@ -438,15 +443,15 @@ Currently this is not supported.XY position:X_1:X_2:Y scale (size)Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:Yellow_KYou are about to create a huge HTML file which will most likely crash your browser.You can not rotate the whole image if there's a floating selection.You can not rotate the whole image if there's a selection.You cannot save a cursor mask for an image -which has no alpha channel.Z scale (size)Z:ZSoft PCX imageZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:Zoom to_3x3_Abbreviation:_About ImageMap_Adaptive_Additive_Advanced_Advanced Options_Algorithm:_Alpha_Alpha threshold:_Alpha trimmed mean_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Apply Canvas..._Autocrop Image_Autocrop Layer_Automatically convert_Azimuth:_Background_Background color_Base URL:_Bevel width:_Bilinear_Black_Black level:_Blacken_Blast_Blend_Blinds..._Blue_Blue:_Blur_Blur radius:_Border Average..._Border:_Bottom-left_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bump Map..._Bump map:_Bumpmap_Checkerboard..._Clear_Color Enhance_Color Exchange..._Colorify..._Contents_Convolution Matrix..._Copy_Cubism..._Curve Bend..._Decompose..._Deflate_Deform radius:_Deinterlace..._Delay between frames where unspecified:_Depth Merge..._Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Dilate_Displace..._Displacement:_Distorted_Divisions:_Dots_Dynamic:_Edge enhancement_Edge..._Edit_Effect Image:_Elevation:_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Environment Map_Explicit tile_Exponent:_FG/BG lighting_Factor:_Factory defaults_File_Filename:_Film..._Filter Pack..._Filter length:_Find Backdrop_Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Foreground to peaks_Format:_Fractal Explorer..._Fractal Trace..._Fractals_Free_Ftp Site_GFlare..._GIF comment:_GIMPressionist..._Gamma:_Gaussian Blur..._General_Generate full HTML document_Gfig..._Glass Tile..._Glowing:_Gopher_Gradient_Gradient Map_Gray:_Green_Green:_Grey_Grid_Grid size:_Grid..._Grow_Guillotine_HSL color model_Height_Height:_Help_Hex_Hidden_High_Hold the maximal channels_Holdness:_Hole offset:_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hot..._Hue_Hue rotation:_Hurl..._ID:_IFS Fractal..._IIR_Ideal_Identifier prefix:_Ignore_Ignore the bottom layer even if visible_Illusion..._ImageMap..._Inch_Independent RGB_Input SPI:_Insert_Intensity:_Interlace_Interlacing (Adam7)_Invert_JPEG_JavaScript_Jigsaw..._Keep NCSA circles true_Keep aspect ratio_Keep original surroundings_Keep sign of result (one direction only)_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Lens refraction index:_Light_Lighting Effects..._Limit line width_Linear_Lines_Link_Load defaults_Lock channels_Loop forever_Low_Lower_MIME_Mail Image..._Make Seamless_Make surroundings transparent_Map backwards_Map type:_Mapping_Mask file extension:_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Max RGB..._Max. delta:_Maze..._Metallic_Middle value to peaks_Midtones_Millimeter_Minimum value:_Mirror_Misc Ops._Modify hue channel_Modify red channel_Monochrome_Mosaic..._Motion Blur..._Move_NL Filter..._Natural color_Neon..._No. Across:_Noise magnitude:_None_Normal_Normalize_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pack Bits_Pagecurl..._Palette Type:_Paper Tile..._Parameters_Percent black:_Period:_Phase:_Photocopy..._Pick..._Pinch amount:_Ping Pong_Pitted surfaces_Pixelize..._Plasma..._Playback..._Plug-In Browser_Plural:_Polished:_Polygon_PostScript level 2_Prefixed name:_Preserve luminosity_Presets_Preview_Preview once_Preview!_Print_Print..._Prompt for area info_Propagating rate:_Psychobilly_Qbist..._Quality:_RGB_RGB color model_RLE_RLE compression_RLE encoded_Radial_Radius 1:_Radius:_Random hue:_Random seed:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Remove Backdrop_Rendering_Require default URL_Retain tilability_Right_Right Border_Ripple..._Rotated_Sample Colorize..._Saturation_Saturation:_Save comment to file_Save defaults_Scale division:_Scale:_Scatter RGB..._Screen Shot..._Search depth:_Search:_Second Flares_Selective Gaussian Blur..._Semi-Flatten_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Shiny:_Show cursor_Sinus..._Size_Size:_Slur..._Small Tiles..._Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Solid Noise..._Sparkle..._Speed:_Spike length:_Spokes:_Spot function:_Square_Squares_Staggered_Strength:_Stretch Contrast_Symbol:_TWAIN..._Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold Alpha..._Threshold:_Tile bumpmap_Tile size:_Tile..._Title:_Tools_Top Start at:_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_UnOptimize_Undo_Undo %s_Uniform_Unit Editor_Unsharp Mask..._Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Use double-sized grab handles_Use intensity algorithm_Use the (invisible) bottom layer as the base_Uuencode_Value_Value Invert_Value Propagate..._Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Voronoi_Warp_Warp..._Waterlevel:_Wavelength:_Waves..._Web Site_Whirl angle:_White_White level:_Wide-striped_Width_Width:_Wind_With white noise_Wrap_Write hot spot values_X Scale:_X displacement:_X offset:_X ratio:_X size:_X10 format bitmap_X:_Y Scale:_Y displacement:_Y offset:_Y ratio:_Y size:_Y:_Yellow_Z:_Zealous Crop_Zoom_Zoom:`Default' is created.a _Single Windowafteralphaautostretch_hsv: cmap was NULL! Quitting... +which has no alpha channel.Z scale (size)Z:ZSoft PCX imageZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:Zoom to_3x3_Abbreviation:_About ImageMap_Adaptive_Additive_Advanced_Advanced Options_Algorithm:_Alpha_Alpha threshold:_Alpha trimmed mean_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Apply Canvas..._Autocrop Image_Autocrop Layer_Automatically convert_Azimuth:_Background_Background color_Base URL:_Bevel width:_Bilinear_Black_Black level:_Blacken_Blast_Blend_Blinds..._Blue_Blue:_Blur_Blur radius:_Border Average..._Border:_Bottom-left_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bump Map..._Bump map:_Bumpmap_Checkerboard..._Clear_Color Enhance_Color Exchange..._Colorify..._Contents_Convolution Matrix..._Copy_Cubism..._Curve Bend..._Decompose..._Deflate_Deform radius:_Deinterlace..._Delay between frames where unspecified:_Depth Merge..._Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Dilate_Displace..._Displacement:_Distorted_Divisions:_Dots_Dynamic:_Edge enhancement_Edge..._Edit_Effect Image:_Elevation:_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Environment Map_Explicit tile_Exponent:_FG/BG lighting_Factor:_Factory defaults_File_Filename:_Film..._Filter Pack..._Filter length:_Find Backdrop_Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Foreground to peaks_Format:_Fractal Explorer..._Fractal Trace..._Fractals_Free_Ftp Site_GFlare..._GIF comment:_GIMPressionist..._Gamma:_Gaussian Blur..._General_Generate full HTML document_Gfig..._Glass Tile..._Glow radius:_Glowing:_Gopher_Gradient_Gradient Map_Gray:_Green_Green:_Grey_Grid_Grid size:_Grid..._Grow_Guillotine_HSL color model_Height_Height:_Help_Hex_Hidden_High_Hold the maximal channels_Holdness:_Hole offset:_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hot..._Hue_Hue rotation:_Hurl..._ID:_IFS Fractal..._IIR_IWarp..._Ideal_Identifier prefix:_Ignore_Ignore the bottom layer even if visible_Illusion..._ImageMap..._Inch_Independent RGB_Input SPI:_Insert_Intensity:_Interlace_Interlacing (Adam7)_Invert_JPEG_JavaScript_Jigsaw..._Keep NCSA circles true_Keep aspect ratio_Keep original surroundings_Keep sign of result (one direction only)_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Lens refraction index:_Light_Lighting Effects..._Limit line width_Linear_Lines_Link_Load defaults_Lock channels_Loop forever_Low_Lower_MIME_Mail Image..._Make Seamless_Make surroundings transparent_Map backwards_Map type:_Mapping_Mask file extension:_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Max RGB..._Max. delta:_Maze..._Metallic_Middle value to peaks_Midtones_Millimeter_Minimum value:_Mirror_Misc Ops._Modify hue channel_Modify red channel_Monochrome_Mosaic..._Motion Blur..._Move_NL Filter..._Natural color_Neon..._No. Across:_Noise magnitude:_None_Normal_Normalize_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pack Bits_Pagecurl..._Palette Type:_Paper Tile..._Parameters_Percent black:_Period:_Phase:_Photocopy..._Pick..._Pinch amount:_Ping Pong_Pitted surfaces_Pixelize..._Plasma..._Playback..._Plug-In Browser_Plural:_Polished:_Polygon_PostScript level 2_Prefixed name:_Preserve luminosity_Presets_Preview_Preview once_Preview!_Print_Print..._Prompt for area info_Propagating rate:_Psychobilly_Qbist..._Quality:_RGB_RGB color model_RLE_RLE compression_RLE encoded_Radial_Radius 1:_Radius:_Random hue:_Random seed:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Remove Backdrop_Rendering_Require default URL_Retain tilability_Retinex..._Right_Right Border_Ripple..._Rotated_Sample Colorize..._Saturation_Saturation:_Save comment to file_Save defaults_Scale division:_Scale:_Scatter RGB..._Screen Shot..._Search depth:_Search:_Second Flares_Selective Gaussian Blur..._Semi-Flatten_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Shiny:_Show cursor_Sinus..._Size_Size:_Slur..._Small Tiles..._Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Softglow..._Solid Noise..._Sparkle..._Speed:_Spike length:_Spokes:_Spot function:_Square_Squares_Staggered_Strength:_Stretch Contrast_Stroke_Symbol:_TWAIN..._Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold Alpha..._Threshold:_Tile bumpmap_Tile size:_Tile..._Title:_Tools_Top Start at:_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_UnOptimize_Undo_Undo %s_Uniform_Unit Editor_Unsharp Mask..._Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Use double-sized grab handles_Use intensity algorithm_Use the (invisible) bottom layer as the base_Uuencode_Value_Value Invert_Value Propagate..._Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Voronoi_Warp_Warp..._Waterlevel:_Wavelength:_Waves..._Web Site_Whirl angle:_White_White level:_Wide-striped_Width_Width:_Wind_With white noise_Wrap_Wrap around_Write hot spot values_X Scale:_X displacement:_X offset:_X ratio:_X size:_X10 format bitmap_X:_Y Scale:_Y displacement:_Y offset:_Y ratio:_Y size:_Y:_Yellow_Z:_Zealous Crop_Zoom_Zoom:`Default' is created.a _Single Windowafteralphaautostretch_hsv: cmap was NULL! Quitting... blackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fbzip archivec_astretch: cmap was NULL! Quitting... cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s -k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins VERSION +k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: cs Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 -PO-Revision-Date: 2005-03-22 09:31+0100 -Last-Translator: Miloslav Trmac -Language-Team: Czech +POT-Creation-Date: 2005-05-08 12:28+0200 +PO-Revision-Date: 2005-04-27 14:05+0200 +Last-Translator: Jakub Friedl +Language-Team: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @@ -472,35 +477,35 @@ Nebyla zadána výška obrázku'%s': Nebyla zadána šířka obrázku(Nic)1 rozhraní zásuvných modulů1 procedura1 bpp, jednobitová alfa, dvouprvková paleta32 bpp, osmibitová alpha, bez palety4 bpp, jednobitová alfa, šestnáctiprvková paleta8 bpp, jednobitová alfa, dvěstěpadesátišestiprvková paletaPomocná hodnota pro adaptivní výběryMéně zastaralý výtvor Adama D. Mosse / adam@gimp.org / adam@foxbox.org / 1998-2000Definice jednotky bude zapsána před skončením GIMPu pouze po zaškrtnutí tohoto sloupečku.ALT TextTe_xt ALT (volitelné)Umění v ASCIIO _aplikaci_Adaptivní převzorkování_PřidatPři_dat obvod_Rozšířené_VšeVšechny _dlaždiceVážená a_lfaA_lfa:_Okolí:_Míra:_Amplituda:Ú_hel:A_nimovat_PřipojitA_utomaticky aktualizovat náhled_AutomatickéPrů_měr pod stopouZkratkaO aplikaciO Tisku GIMPAkce_PokročiléAdaptivníAdaptivní převzorko_váníPřidat další vodítkaPřidat cestu pro badatele fraktálůPřidat nový vektor mvPřidat nový vektorPřidávám pruhy...Přidávám šachovnici...Přidává se šum...SoučetDalší informacePřidává stínové efekty ke každé stopě štětcePřidává do obrázku náhodný šumUpravit _popředí-pozadíÚprava barevného vyvážení, jasu, kontrastu, sytosti a algoritmu rozptyluUpravit výstup...Nastavení intenzity zářeÚprava prahu jasuNastavení počtu hrotůNastavení krytí hrotůNastavení úhlu hrotu (-1 znamená, že bude zvolen náhodný úhel)Nastavení hustoty hrotůNastavení délky hrotůÚprava hodnoty, o kterou se může odstín náhodně měnitÚprava hodnoty, o kterou se může sytost náhodně měnitNastavení azurového vyvážení tiskuNastavení hustoty (množství inkoustu) na výtisku. Snižte hustotu, pokud inkoust prosakuje papírem nebo se rozmazává; zvyšte hustotu, pokud nejsou černé oblasti zcela vyplněné.Nastavení hodnoty gama výtisku. Vyšší hodnoty budou mít obecně za následek jasnější výtisk, nižší hodnoty budou produkovat tmavší výtisk. Černá a bílá barva zůstane stejná, na rozdíl od nastavení jasu.Nastavení purpurového vyvážení tiskuUpraví jas náhleduNastavení sytosti (barevného vyvážení) tisku. Použijte sytost 0, chcete-li produkovat na výstupu stupnice šedi použitím barevných a černých inkoustů.Nastavení žlutého vyvážení tiskuUpravuji popředí/pozadí...Rozšířené nastavení sady filtrůPokročilé možnostiDotčený rozsahAgresivní RLE -(nepodporovaná SGI)Al_ternativní_Alternativní dlaždiceObrázek Alias|Wavefront PIXMimozemské mapování _2...Mimozemské mapování 2Mimozemské mapování 2: Transformuji...Zarovnání viditelných vrstevZarovnat _viditelné vrstvy...Vše JNGVše PNGVšechny hodnoty jsou zlomky výšky filmuVše černéVše šedéVšechna textová pole musí obsahovat hodnotu.Vše bíléPovolit _dělení dlaždicAlfaAlfa kanályAlfa:Okolí:Míra, v jaké je zobrazena původní barva tam, kam nedopadá přímé světloMíra:Zastaralý výtvor Adama D. Mosse / adam@gimp.org / adam@foxbox.org / 1998-2000Posun úh_lu:Rozpětí úhlu:Úhel:Úhlový přechod:Přechod úhlové velikosti:Volby GIF animaceMožnosti animovaného MNGPřehrání animace:VyhlazováníKvalita vyhlazování. Vyšší je lepší, ale pomalejšíPoužije papír tak, jak je (bez reliéfu)PoužítUžití plátnaPoužít _čočku...Použít aktivní přechod na konečný obrázekPoužívám plátno...Provádí se konvolucePoužívám čočky...Probíhá užití sady filtrů...Opravdu chcete odstranit "%s" ze seznamu a z disku?Nastavení oblasti č. %dNastavení oblastiSeznam oblastíOblast:ŠipkaJak určeno výšeASCIIPoměr stran:Tvořím skládačku...Asymetrie:_Dole_Nahoře_Autor:Autor:AutomatickyAutomaticky roztahuji kontrast...Automaticky roztahuji HSV...Animace AutoDesk FLICAutomatické_Automatický náhledDostupné obrázky:B, G, R, X (styl bmp)Č/BNáhrada PRÁZDNÝCH/NaN pixelů_Stažení úrovně černé (%):Práh m_odré:Barva _pozadíVzadu:PozadíPozadí (%d%s)Barva pozadíTyp pozadíPozadí:Špatná barevná mapaBarnsley 1Barnsley 2Barnsley 3Základní _URL:Základní možnostiLoukaNejlepší pro obrázky s převládajícími oblastmi barevných plochZkosené hrany_BilineárníČerná a bí_láČernáČerná a bíláČerná:Nastavení míseníPruhyModráFre_kvence modré:Po_sun fáze modré:Modrá:Modrost_cb470:Modrost_cb470f:Modrost_cb709:Modrost_cb709f:Střed rozmáznutíMetoda rozostřeníParametry rozmáznutíPoloměr rozostřeníTyp rozmáznutíRozostřuji...ObvodPrůměr okraje...Velikost okrajePrůměr okraje_ObojíObojíSpodní okraj:Spodní hranaDolů dop_ravaDole:HranolJas:ProcházetVyvýšeníMapa vyvýšeníMapuji vyvýšení...O_brázek vyvýšení:Mapa vyvýšeníZ DATAMIN/DATAMAXZdrojový kód v CHlavička zdrojového kódu v CCML badatel: Přepsat soubor?CML badatel: provádím vývoj...CML badatel: provádím vývoj...CMYCMYKCX:CY:C_MYKK_amera_Titulek_Obsah buňky:V_elikost buňky:Stř_ed stopyVystř_eděníZvolte z_de:_Kruh_Komponovat...Vytvořit _nový obrázekP_růsečíkyV _křivkách_Azurová_Válec_Komiks...Volby kalkulaceUmí pracovat pouze s RGB obrazovkami.Obrazovky lze pouze zapisovat!Pracuje pouze s vrstvami (ale bylo voláno na kanál nebo masku).Nemohu vytvořit nový obrázekNelze získat data ze schránky.Neumí zpracovat neznámé typy obrázkuNemohu číst barevné položkyNemohu odstranit!! Musí zde být alespoň jedna P-záře.Nemohu pracovat s prázdnými výběry.Nemohu pracovat s šedými nebo indexovanými barevnými obrázky.Nemohu pracovat s indexovanými barevnými obrázky.Nemohu pracovat na vrstvách s maskami.Nemohu pracovat s neznámými typy obrázků.Nemohu číst rozšíření z '%s'Nemohu číst patičku z '%s'Nemohu ukládat barevné obrázky RGB. Nejdříve jej převeďte na indexovaný nebo do šedí.Nemohu uložit obrázky s alfa kanálem.Nemohu uložit obrázky s alfa kanály.KomiksVelikost buňky:_Výplň buněk:_Rozestup buněk:StředStřed _x:Střed _y:Střed efektu odleskuStřed SuperNovyVystředit obrázek na papír horizontálněVystředit obrázek na papírVystředit obrázek na papír vertikálněStřed:CentrovatCitlivost na změny:Změnit směr šipekZměna hodnoty CX (mění poměry fraktálu, aktivní se všemi fraktály kromě Mandelbrotova a Sierpinského)Změna hodnoty CY (mění poměry fraktálu, aktivní se všemi fraktály kromě Mandelbrotova a Sierpinského)Změna úhlu zvoleného vektoru mvZměna úhlu vybraného vektoruZměna exponentu sílyZměna omezení první (nejmenší) x souřadniceZměna omezení první (nejmenší) y souřadniceZměna intenzity modrého kanáluZměna intenzity zeleného kanáluZměna intenzity červeného kanáluZměna iterační hodnoty. Vyšší znamená výpočet větších detailů za cenu delšího časuZměna počtu barev v mapováníZměna omezení druhé (největší) x souřadniceZměna omezení druhé (největší) y souřadniceZměna pevnosti zvoleného vektoru mvZměna síly zvoleného vektoruZměnit do tohotoMění gama (jas) zvolené stopyKanál č. %d:Parametry nezávislé na kanálu_Mixér kanálů...Mixér kanálůVarování operace souboru mixéru kanálůReprezentace kanálůKanályVolí, zda má mít tabulka titulek.ŠachovniceŠachovniceZaškrtnutí tohoto přívlastku způsobí, že v GTM nebude ponechán bílý prostor mezi značkami TD a obsahem buňky. Je to nutné pouze pro řízení přesné pixelové pozice.Dvojitým poklepem lze zvolit fraktálZvolte soubor PPDZvolte vysokou úroveň komprese pro malou velikost souboruZvolte soubor PPD pro vaši tiskárnuVyberte algoritmus rozptylu, který chcete použít. +(nepodporovaná SGI)Al_ternativní_Alternativní dlaždiceObrázek Alias|Wavefront PIXMimozemské mapování _2...Mimozemské mapování 2Mimozemské mapování 2: Transformuji...Zarovnání viditelných vrstevZarovnat _viditelné vrstvy...Vše JNGVše PNGVšechny hodnoty jsou zlomky výšky filmuVše černéVše šedéVšechna textová pole musí obsahovat hodnotu.Vše bíléPovolit _dělení dlaždicAlfaAlfa kanályAlfa:Okolí:Míra, v jaké je zobrazena původní barva tam, kam nedopadá přímé světloMíra:Zastaralý výtvor Adama D. Mosse / adam@gimp.org / adam@foxbox.org / 1998-2000Posun úh_lu:Rozpětí úhlu:Úhel:Úhlový přechod:Přechod úhlové velikosti:Volby GIF animaceMožnosti animovaného MNGPřehrání animace:VyhlazováníKvalita vyhlazování. Vyšší je lepší, ale pomalejšíPoužije papír tak, jak je (bez reliéfu)PoužítUžití plátnaPoužít _čočku...Použít aktivní přechod na konečný obrázekPoužívám plátno...Provádí se konvolucePoužívám čočky...Probíhá užití sady filtrů...Opravdu chcete odstranit "%s" ze seznamu a z disku?Nastavení oblasti č. %dNastavení oblastiSeznam oblastíOblast:ŠipkaJak určeno výšeASCIIPoměr stran:Tvořím skládačku...Asymetrie:_Dole_Nahoře_Autor:Autor:AutomatickyAutomaticky roztahuji kontrast...Automaticky roztahuji HSV...Animace AutoDesk FLICAutomatické_Automatický náhledDostupné obrázky:B, G, R, X (styl bmp)Č/BNáhrada PRÁZDNÝCH/NaN pixelů_Stažení úrovně černé (%):Práh m_odré:Barva _pozadíVzadu:PozadíPozadí (%d%s)Barva pozadíTyp pozadíPozadí:Špatná barevná mapaBarnsley 1Barnsley 2Barnsley 3Základní _URL:Základní možnostiLoukaNejlepší pro obrázky s převládajícími oblastmi barevných plochZkosené hrany_BilineárníČerná a bí_láČernáČerná a bíláČerná:Nastavení míseníPruhyModráFre_kvence modré:Po_sun fáze modré:Modrá:Modrost_cb470:Modrost_cb470f:Modrost_cb709:Modrost_cb709f:Střed rozmáznutíMetoda rozostřeníParametry rozmáznutíPoloměr rozostřeníTyp rozmáznutíRozostřuji...ObvodPrůměr okraje...Velikost okrajePrůměr okraje_ObojíObojíSpodní okraj:Spodní hranaDolů dop_ravaDole:HranolJas:ProcházetVyvýšeníMapa vyvýšeníMapuji vyvýšení...O_brázek vyvýšení:Mapa vyvýšeníZ DATAMIN/DATAMAXZdrojový kód v CHlavička zdrojového kódu v CCML badatel: Přepsat soubor?CML badatel...CML badatel: provádím vývoj...CMYCMYKCX:CY:C_MYKK_amera_Titulek_Obsah buňky:V_elikost buňky:Stř_ed stopyVystř_eděníZvolte z_de:_Kruh_Komponovat...Vytvořit _nový obrázekP_růsečíkyV _křivkách_Azurová_Válec_Komiks...Volby kalkulaceUmí pracovat pouze s RGB obrazovkami.Obrazovky lze pouze zapisovat!Pracuje pouze s vrstvami (ale bylo voláno na kanál nebo masku).Nemohu vytvořit nový obrázekNelze získat data ze schránky.Neumí zpracovat neznámé typy obrázkuNemohu číst barevné položkyNemohu odstranit!! Musí zde být alespoň jedna P-záře.Nemohu pracovat s prázdnými výběry.Nemohu pracovat s šedými nebo indexovanými barevnými obrázky.Nemohu pracovat s indexovanými barevnými obrázky.Nemohu pracovat na vrstvách s maskami.Nemohu pracovat s neznámými typy obrázků.Nemohu číst rozšíření z '%s'Nemohu číst patičku z '%s'Nemohu ukládat barevné obrázky RGB. Nejdříve jej převeďte na indexovaný nebo do šedí.Nemohu uložit obrázky s alfa kanálem.Nemohu uložit obrázky s alfa kanály.KomiksVelikost buňky:_Výplň buněk:_Rozestup buněk:StředStřed _x:Střed _y:Střed efektu odleskuStřed SuperNovyVystředit obrázek na papír horizontálněVystředit obrázek na papírVystředit obrázek na papír vertikálněStřed:CentrovatCitlivost na změny:Změnit směr šipekZměna hodnoty CX (mění poměry fraktálu, aktivní se všemi fraktály kromě Mandelbrotova a Sierpinského)Změna hodnoty CY (mění poměry fraktálu, aktivní se všemi fraktály kromě Mandelbrotova a Sierpinského)Změna úhlu zvoleného vektoru mvZměna úhlu vybraného vektoruZměna exponentu sílyZměna omezení první (nejmenší) x souřadniceZměna omezení první (nejmenší) y souřadniceZměna intenzity modrého kanáluZměna intenzity zeleného kanáluZměna intenzity červeného kanáluZměna iterační hodnoty. Vyšší znamená výpočet větších detailů za cenu delšího časuZměna počtu barev v mapováníZměna omezení druhé (největší) x souřadniceZměna omezení druhé (největší) y souřadniceZměna pevnosti zvoleného vektoru mvZměna síly zvoleného vektoruZměnit do tohotoMění gama (jas) zvolené stopyKanál č. %d:Parametry nezávislé na kanálu_Mixér kanálů...Mixér kanálůVarování operace souboru mixéru kanálůReprezentace kanálůKanályVolí, zda má mít tabulka titulek.ŠachovniceŠachovniceZaškrtnutí tohoto přívlastku způsobí, že v GTM nebude ponechán bílý prostor mezi značkami TD a obsahem buňky. Je to nutné pouze pro řízení přesné pixelové pozice.Dvojitým poklepem lze zvolit fraktálZvolte soubor PPDZvolte vysokou úroveň komprese pro malou velikost souboruZvolte soubor PPD pro vaši tiskárnuVyberte algoritmus rozptylu, který chcete použít. Adaptivní hybridní algoritmus produkuje celkově nejlepší kvalitu. Tříděný algoritmus je rychlejší a na fotografiích produkuje téměř stejnou kvalitu. Rychlý a Velmi rychlý jsou algoritmy značně rychlejší, a dají se dobře použít na text a jednoduché kresby. Hybridní Floyd-Steinbergův algoritmus produkuje nejslabší výstup.Vyberte model tiskárny, soubor PPD, a příkaz, který je třeba použít pro tisk na tuto tiskárnuKruhHloubka _kružnice v procentech:Úklid...VymazatVymazat průhlednéUzavření křivky při dokončeníZavřeno_BarvaPrůměrování _barev_Barva:_Barvy_Komentář:_Kompenzovat tmavnutíKo_mplexnost:_Komprimovat značky TDÚroveň ko_mprese:Ply_nulý přechodKo_ntrast:_Korelovaný šumSlo_upec:ShrnoutBarvaHustota barvyVylepšení barev...Záměna barevZaměňuji barvy...Záměna barev: z barvyZáměna barev: na barvuBarevná funkceBarevný režim_Mapování rozsahu barev...Dialog výběru barvyBarevná transformace_Barevný šum:Barevná v_ariace:Vyplnění barvouBarva je počítaná z průměru všech pixelů pod stopouBarevný výstupBarva do alfyBarevná pipeta barvy do alfyBarva do _alfy...Barva:Barevná _mapa:_Analýza barevné krychle...Analýza barevné krychleAnalýza barevné krychle...KolorováníVlastní barva kolorováníKoloruji...BarevnostRotace barevná mapy_Rotace barevná mapy...BarvyBarvy:Zkombinovat_Komentář:Příkaz:KomentářKomentář:KompoziceKompozice kanálůSpojuji obrázky...Komponuji...Kompozice:Komprimovaná velikost: %sKompresePoměr komprese (přibližně): %d k 1Typ kompreseOmezit poměr stran:Vytváří se bludiště užitím Primova algoritmu...Vytváří se dlaždicovatelné bludiště užitím Primova algoritmu...KontextPlynulý přechod bez děrPlynulý přechodPlynulá aktualizaceObrysyKontrast:ŘízeníOvládání intenzity odleskůPřeveďte nejdříve obrázek do RGB!Konvoluční maticeKonvoluční matice nefunguje na vrstvy menší než 3 pixely.OstrostKopírovatKopírovat P-zářiKopírovat nastaveníKopírovat objektKopírovat parametryKopírovat aktivní křivku na druhou hraniciKopíruje texturu zvoleného papíru jako pozadíKopírovat do schránkyIFS se kopíruje do obrázku (%d/%d)...Kopíruji...Copyright © 1999-2004 Maurits RijkCopyright:KosinusNemohu vytvořit pracovní adresář '%s': %sNemohu spustit určený WWW prohlížeč: %sNemohu získat vrstvy pro obrázek %dNemohu interpretovat '%s'Nemohu načíst implicitní nastavení PNGNemohu otevřít soubor '%s' jako SUN-raster-souborNemohu otevřít '%s' pro čtení.Nemohu otevřít '%s' pro čtení: %sNemohu otevřít '%s' pro zápis.Nemohu otevřít '%s' pro zápis: %sNemohu zpracovat určený příkaz WWW prohlížeče: -%sNemohu číst hlavičku XWD z '%s'Nemohu číst barevné položky z '%s'Nemohu číst hlavičku z '%s'Nemohu zapsat '%s': %sNelze načíst jednu ze stop v koloně, nedokončeno.Nemohu uložit průhlednost beze ztrát, ukládám místo toho neprůhlednost.Nelze číst soubor:Nelze zapsat soubor:Nelze zapsat soubor zdrojů:Nemohu jednoduše dále snížit barvy. Ukládám jako neprůhledné.Badatel párované mapy mřížeVytv_ořit nový obrázekVytvořitVytvořit vodítkaVytvořit _novou vrstvuVytvořit _histogramVytvoří barevnou mapu s použitím přechodu z editoru přechodůVytváří barevnou mapu s volbami určenými výše (funkce barva/hustota). Výsledek je viditelný v náhledovém obrázkuVytvoření nového obrázku při použití filtruVytvořit novou jednotku od začátku,Vytvořit novou jednotku s právě zvolenou jednotkou jako vzorem.Vytvořit výsečVytvořit Beziérovu křivkuVytváří Beziérovu křivku. Přeřaďovač + tlačítko myši ukončuje vytváření objektu.Vytvořit kružniciVytvořit elipsuVytvořit vodítka...Vytvořit čáruVytvořit nový obrázekVytvořit pravidelný mnohoúhelníkVytvořit spiráluVytvořit hvězduCreateDIBSection selhaloVytvořeno v GIMPuVytvářejí se difrakční obrazce..._OřezOřezávám..._Křivka:KubismusKubistická transformace...Souhrnné vrstvy (kombinace)Rozčeření vrstvyMísto rozčeřeníOrientace rozčeřeníAktuální přechodAktuální přechod (obrácený)Aktuální:ZkřiveníZkřivení...Typ křivkyKřivka hranicVlastní barva:Vlastní přechodVyříznoutAzurováAzurová:Azurová_KVálecDélka válcePoloměr válceMetoda DCT:Obrázek DICOM_Míra deformace:Děl_itel:TmavšíTmavší:Komprese datFormátování datFormátování datDatum:DekompoziceDekomponovat do _vrstevDekomponuji...ImplicitníImplicitní druh mapyImplicitní _URL:Implicitní typ úseku:Implicitní zpoždění políčka:Implicitní dispozice políčka:Definovat kruhovou/oválnou oblastDefinovat novou tiskárnuDefinovat mnohoúhelníkovou oblastDefinovat obdélníkovou oblastDefinice nové logické tiskárny. To lze použít k pojmenování určité množiny nastavení, kterou si můžete přát zapamatovat pro pozdější použití.Režim deformaceStupeň naklonění na hraně každého kusuStupněOdstranění prokládáníOdstranit prokládání...Pro zabránění ošklivé animaci žeroucí CPU vloženo zpoždění.OdstranitOdstranit oblastOdstranit fraktálOdstranit P-zářiOdstranit bodOdstranit objektOdstranit právě zvolený fraktálOdstranit vybranou oblastOdstranit zvolený vektor mvOdstranit vybraný vektorSmaže zvolenou předvolbuDelta funkceDelta funkce po krocíchHustota:Sloučení hloubkyDo hloubkyMapa hloubky:Slučuji hloubku...Odvozuji plynulou paletu..._Vyčistit...Odstranit pruhy...Popis:Odvybrat _všeVyčištěníCílový kanál:Cílový barevný rozsahCíl:Odstranění pruhůOdstraňuji pruhy...Práh odchylky:DiamantDiferenciálníDifrakční obrazceDifúze:Vzdálenost difúze:Obrázek Digital Imaging and Communications in MedicineČísliceRozměr:RozměryRozměry:SměrSměrový vektorSměrovéSměrové světloSměrySměry:VytlačeníMapa vytlačování:Vytlačuji...Zobrazit jako:Vzdálenost obrázku od spodního okraje papíruVzdálenost obrázku od levého okraje papíruVzdálenost pravého okraje obrázku od levého okraje papíruVzdálenost obrázku od pravého okraje papíruVzdálenost spodního okraje obrázku od horního okraje papíruVzdálenost obrázku od horního okraje papíruAlgoritmus rozptylu:Velikost rozptylu:DěleníVytvořit _náhledOpravdu chcete přijít o tyto změny?Opravdu jej chcete přepsat?Dokument nenalezenKreslit okolo obrázku hranici hrotůObrazovky mají různé velikostiKreslím plamen...Kreslím mřížku...Kreslím bludiště...Volby kresbyKreslí čáry mezi řídicími body. Pouze během vytváření křivkyVrhat stínBěhem čtení soubor skončilData EXIF budou ignorována._Zdvih:Povolit mapování vyvýše_ní_Povolit mapování prostředí_ErodovatRozšíři_tKusy mají zaoblené stranyKusy mají rovné stranyS vlivem na hranyDetekce hranDetekují se hrany...Ztmavení hran:HranyÚpravyÚpravy informace o oblastech...Úprava plamenuÚpravy informace o mapování...Upravit objektUpravit informace o oblasti...Změnit jméno fraktáluÚpravit informace o mapěUpravit informaci o vybrané oblastiÚpravy objektu pouze pro čtení - nebude možné je zapsatEfektový kanálEfektový operátorReliéfVy_rýt..._Obrázek prostředí:Povolit vyhl_azováníPovolení/zákaz mapování vyvýšení (hloubka obrázku)Povolit/zakázat mapování prostředí (odraz)Povolení/zákaz náhledu vysoké kvalityPovolení/zákaz odstraňování zubatých hran (vyhlazování)Povolení/zákaz náhledu na změny v reálném časeObrázek v zapouzdřeném PostScriptuZapouzdření dat:EndPage selhaloRytinaRyji...Zadejte název zkopírované P-zářeZadejte název pro nové P-zářeZadejte název souboru PPD pro vaši tiskárnuZadejte příkaz pro tisk na vaši tiskárnu. Poznámka: Neodstraňujte prosím z příkazu parametry `-l' nebo `-oraw', jinak tisk pravděpodobně selže!Zadejte název, kterým chcete pojmenovat tuto logickou tiskárnuCelá vrstvaCitlivost na prostředí:Použitý obrázek prostředíChyba při otevírání souboru FITSChyba při zápisu obrázku indexovaného/v šedíchChyba při zápisu rgb obrázkuChyba při zachytávání ukazateleChyba v souboru stopy GIMPu '%s'Chyba v souboru GIMP kolony stop.Chyba při získávání ID vrstevChyba při získávání snímku obrazovkyChyba při otevírání souboruChyba při otevírání souboru '%s'Chyba při čtení hlavičky souboru BMP z '%s'Chyba při čtení souboruChyba při spouštění ghostscriptu (%s)Chyba při spouštění ghostscriptu: %sChyba při pokusu otevřít dočasný soubor '%s' pro načtení parazita. +%sNemohu číst hlavičku XWD z '%s'Nemohu číst barevné položky z '%s'Nemohu číst hlavičku z '%s'Nemohu zapsat '%s': %sNelze načíst jednu ze stop v koloně, nedokončeno.Nemohu uložit průhlednost beze ztrát, ukládám místo toho neprůhlednost.Nelze číst soubor:Nelze zapsat soubor:Nelze zapsat soubor zdrojů:Nemohu jednoduše dále snížit barvy. Ukládám jako neprůhledné.Badatel párované mapy mřížeVytv_ořit nový obrázekVytvořitVytvořit vodítkaVytvořit _novou vrstvuVytvořit _histogramVytvoří barevnou mapu s použitím přechodu z editoru přechodůVytváří barevnou mapu s volbami určenými výše (funkce barva/hustota). Výsledek je viditelný v náhledovém obrázkuVytvoření nového obrázku při použití filtruVytvořit novou jednotku od začátku,Vytvořit novou jednotku s právě zvolenou jednotkou jako vzorem.Vytvořit výsečVytvořit Beziérovu křivkuVytváří Beziérovu křivku. Přeřaďovač + tlačítko myši ukončuje vytváření objektu.Vytvořit kružniciVytvořit elipsuVytvořit vodítka...Vytvořit čáruVytvořit nový obrázekVytvořit pravidelný mnohoúhelníkVytvořit spiráluVytvořit hvězduCreateDIBSection selhaloVytvořeno v GIMPuVytvářejí se difrakční obrazce..._OřezOřezávám..._Křivka:KubismusKubistická transformace...Souhrnné vrstvy (kombinace)Rozčeření vrstvyMísto rozčeřeníOrientace rozčeřeníAktuální přechodAktuální přechod (obrácený)Aktuální:ZkřiveníZkřivení...Typ křivkyKřivka hranicVlastní barva:Vlastní přechodVyříznoutAzurováAzurová:Azurová_KVálecDélka válcePoloměr válceMetoda DCT:Obrázek DICOM_Míra deformace:Děl_itel:TmavšíTmavší:Komprese datFormátování datFormátování datDatum:DekompoziceDekomponovat do _vrstevDekomponuji...ImplicitníImplicitní druh mapyImplicitní _URL:Implicitní typ úseku:Implicitní zpoždění políčka:Implicitní dispozice políčka:Definovat kruhovou/oválnou oblastDefinovat novou tiskárnuDefinovat mnohoúhelníkovou oblastDefinovat obdélníkovou oblastDefinice nové logické tiskárny. To lze použít k pojmenování určité množiny nastavení, kterou si můžete přát zapamatovat pro pozdější použití.Režim deformaceStupeň naklonění na hraně každého kusuStupněOdstranění prokládáníOdstranit prokládání...Pro zabránění ošklivé animaci žeroucí CPU vloženo zpoždění.OdstranitOdstranit oblastOdstranit fraktálOdstranit P-zářiOdstranit bodOdstranit objektOdstranit právě zvolený fraktálOdstranit vybranou oblastOdstranit zvolený vektor mvOdstranit vybraný vektorSmaže zvolenou předvolbuDelta funkceDelta funkce po krocíchHustota:Sloučení hloubkyDo hloubkyMapa hloubky:Slučuji hloubku...Odvozuji plynulou paletu..._Vyčistit...Odstranit pruhy...Popis:Odvybrat _všeVyčištěníCílový kanál:Cílový barevný rozsahCíl:Odstranění pruhůOdstraňuji pruhy...Práh odchylky:DiamantRozdíl Gaussových rozostření...DiferenciálníDifrakční obrazceDifúze:Vzdálenost difúze:Obrázek Digital Imaging and Communications in MedicineČísliceRozměr:RozměryRozměry:SměrSměrový vektorSměrovéSměrové světloSměrySměry:VytlačeníMapa vytlačování:Vytlačuji...Zobrazit jako:Vzdálenost obrázku od spodního okraje papíruVzdálenost obrázku od levého okraje papíruVzdálenost pravého okraje obrázku od levého okraje papíruVzdálenost obrázku od pravého okraje papíruVzdálenost spodního okraje obrázku od horního okraje papíruVzdálenost obrázku od horního okraje papíruAlgoritmus rozptylu:Velikost rozptylu:DěleníVytvořit _náhledOpravdu chcete přijít o tyto změny?Opravdu jej chcete přepsat?Detekce hran pomocí Gaussových rozostřeníDokument nenalezenKreslit okolo obrázku hranici hrotůObrazovky mají různé velikostiKreslím plamen...Kreslím mřížku...Kreslím bludiště...Volby kresbyKreslí čáry mezi řídicími body. Pouze během vytváření křivkyVrhat stínBěhem čtení soubor skončilData EXIF budou ignorována._Zdvih:Povolit mapování vyvýše_ní_Povolit mapování prostředí_ErodovatRozšíři_tKusy mají zaoblené stranyKusy mají rovné stranyS vlivem na hranyDetekce hranDetekují se hrany...Ztmavení hran:HranyÚpravyÚpravy informace o oblastech...Úprava plamenuÚpravy informace o mapování...Upravit objektUpravit informace o oblasti...Změnit jméno fraktáluÚpravit informace o mapěUpravit informaci o vybrané oblastiÚpravy objektu pouze pro čtení - nebude možné je zapsatEfektový kanálEfektový operátorReliéfVy_rýt..._Obrázek prostředí:Povolit vyhl_azováníPovolení/zákaz mapování vyvýšení (hloubka obrázku)Povolit/zakázat mapování prostředí (odraz)Povolení/zákaz náhledu vysoké kvalityPovolení/zákaz odstraňování zubatých hran (vyhlazování)Povolení/zákaz náhledu na změny v reálném časeObrázek v zapouzdřeném PostScriptuZapouzdření dat:EndPage selhaloRytinaRyji...Zadejte název zkopírované P-zářeZadejte název pro nové P-zářeZadejte název souboru PPD pro vaši tiskárnuZadejte příkaz pro tisk na vaši tiskárnu. Poznámka: Neodstraňujte prosím z příkazu parametry `-l' nebo `-oraw', jinak tisk pravděpodobně selže!Zadejte název, kterým chcete pojmenovat tuto logickou tiskárnuCelá vrstvaCitlivost na prostředí:Použitý obrázek prostředíChyba při otevírání souboru FITSChyba při zápisu obrázku indexovaného/v šedíchChyba při zápisu rgb obrázkuChyba při zachytávání ukazateleChyba v souboru stopy GIMPu '%s'Chyba v souboru GIMP kolony stop.Chyba při získávání ID vrstevChyba při získávání snímku obrazovkyChyba při otevírání souboruChyba při otevírání souboru '%s'Chyba při čtení hlavičky souboru BMP z '%s'Chyba při čtení souboruChyba při spouštění ghostscriptu (%s)Chyba při spouštění ghostscriptu: %sChyba při pokusu otevřít dočasný soubor '%s' pro načtení parazita. Chyba při pokusu uložit obrázek jako parazita: nemohu připojit parazita k drawable. Chyba při čtení '%s'. Poškozený soubor?Chyba při ukládání '%s'. Nemohu uložit obrázek.Chyba při zápisu výstupního souboru.Chyba: Nemohu načíst soubor XJT vlastností '%s'.Chyba: Soubor XJT vlastností '%s' je prázdný.Chyba: nemohu načíst parametryChyba: nejedná se o CML soubor s parametry.Rovnoměrně rozloženéExp.:Náhled exportuExtrahovat kanályBarva popředíSoubor FITS nepřechovává zobrazitelná dataFITS zápis neumí zpracovat obrázky s alfa kanálySou_bor_První barva:_Intenzita záře:FaktorNemohu otevřít soubor P-záře '%s': %sNemohu uložit soubor PPM '%s': %sNemohu zapsat soubor P-záře '%s': %sRychlé celočíselnéNejrychlejší a nejjasnější barvy pro text a čárovou grafikuZaobleníSouborSoubor "%s" zapsán.Soubor '%s' zřejmě není soubor IFS Fractal.Soubor '%s' existuje. Přepsat jej?Soubor '%s' je poškozený. Řádek %d Nesprávná sekce volebSoubor '%s' není souborem pro badatele fraktálůSoubor již existujeSoubor není v podporovaném formátu.Velikost souboru: %02.01f kBVelikost souboru: neznámáJméno souboru:Název souboru: %sVyplnitVyplnit (zdola nahoru)Vyplnit (zleva doprava)Vyplnit (zprava doleva)Vyplnit (shora dolů)Vyplňování s parametrem kFilmFiltrSimulace sady filtrůHledám pozadí animace...Hledám hrany...Hledá se XY přechod...První cílová barvaPrvní GfigPrvní zdrojová barvaPrvní barvaUpravit hnízdoMenu mapy pevného směrového vektoruPlamenPlamen pracuje pouze s RGB obrazovkami.Efekt odleskuFlexible Image Transport SystemOtočitV plovoucí řádové čárceKrok toku %d...UvolněnýBa_rva popředíMíří tahy štětce do středu obrázkuVnutit základní JPEGPopředíBarvy Popředí / pozadíParametry fraktáluFraktální trasováníTyp fraktáluJméno fraktálu:Přechod badatele fraktálůDílčí pixelyPolíčko %dPolíčko %d (%d%s)Políčko %d z %dPolíčko (%i)Dispozice políčka, nejsou-li specifikovány: FrekvenceFrekvence (řádky):ZZe schránkyZ barvyZ přechoduZ papíruZ obráceného přechoduZ:Vepředu:PlnýFunkceTyp funkce:_VýběrG-QbistObrázek faxu G3HELE, SLIZOUNHELE, LUPAGFLI 1.3 - Čtení zásobníku políčekGFLI 1.3 - Zápis zásobníku políčekZáře z přechoduP-záře `%s' není uložena. Pokud přidáte novou položku do '%s', např.: (gflare-path "%s") -a vytvoříte adresář '%s', můžete uložit svou vlastní P-záři do tohoto adresáře.Editor P-záříVolby GIFGIF varováníObrázek GIFGIF: Nedokumentovaný typ skládání GIF %d není obsloužen. Animace se možná nebude přehrávat nebo ukládat správně.GIMP rozšířeníProhlížeč nápovědy GIMPuGIMP modulGIMP magie s tabulkamiZásuvný modul GIMPu pro ikony WindowsStopa GIMPuStopa GIMPu (animovaná)Soubor GIMP stopy je zřejmě poškozený.Stopy GIMPu jsou buď v ŠEDÍCH nebo v RGBAObrázek XJT komprimovaný GIMPemVzorek GIMPu_ŽárPráh ze_lené:Gama:Gaussovo rozostřeníGaussovo rozostření...Hele, _slizounHele, _lupaObecnéObecné volbyObecné předvolbyObecné možnostiZískat vzorky barevGfigTisk GIMP verze GimpresionistaSkleněná dlaždiceSkleněné dlaždicování...Volby kreslení žáruŠ_edáZachytitZachytit _poZachytit jedno oknoZachytit celou obrazovkuPřechodZáře z přechodu...Mapování z přechodu...Vyplnění přechodemMenu výběru mapy přechoduMěřítko přechodu:PřechodyGraf aktuálního nastaveníVyhlazování grafikyŠedáŠedý režimMožnosti šedéPráh šedéOdstíny šediZelenáFr_ekvence zelené:Pos_un fáze zelené:Zelená:ŠedáMřížkaHrubost mřížkyPosun mřížkyNastavení mřížkyNastavení mřížky...Viditelnost a druh mřížkyBarva mřížky:Nastavení mřížky...Rozestup mřížky:Typ mřížky:VodítkaVodítka jsou předdefinované obdélníky pokrývající obrázek. Definujete je jejich šířkou, výškou a rozestupem od ostatních. To vám umožňuje rychle vytvořit nejběžnější typy obrázkových map - soubor "miniatur", vhodný pro navigační proužky.Vodítka...Gilotina...HSVVolby HTML stránkyTabulka HTML_Odlesk:S_větlaO_dstín:O_dstín:Šestiú_helníkyVýška (pixelů):Výška papíru, na který chcete tisknoutVýška:ID nápovědy '%s' není známoA kde je ten objekt?Náhled ve vysoké _kvalitěVyšší hodnota znamená zesiluje efektVyšší hodnota znamená, že odlesky jsou ostřejšíVyšší hodnota znamená, že objekt odráží více světla (vypadá světleji)Vyšší hodnoty omezují efekt na menší oblasti obrázkuOdlesk:Světla:Po_držet nejnižší kanály_Šířka děr:Vodo_rovná základna:_Výška děr:Podržet intenzituR_ozestup děr:VodorovněVodorovná barvaVodorovněKoňská kopytaVideosnímekŘídicí bod _X:Řídicí bod _Y:Videosnímek...Počet jednotek na palec.Míra ztmavnutí vržených stínůMíra ztmavnutí hrany každé stopy štětceMíra rozostření stínůOdstínRotace odstínu:Změny odstínu_Frekvence odstínu:_Posun fáze odstínu:Odstín:Nestarám seIDIFS FractalMožnosti vykreslování IFS FractalIFS Fractal: ČernáIFS Fractal: ModráIFS Fractal: ZelenáIFS Fractal: ČervenáIFS Fractal: CílITER:Interaktivní ohýbáníI_ntenzitaI_nteraktivníI_nvertovat mapu vyvýšeníI_nvertovaný obrázek_IzolovatIkona č. %iPodrobnosti o ikoněPři zaškrtnutí bude GTM vytvářet plný HTML dokument se značkami , , atd. namísto pouhé html tabulky.Při zaškrtnutí budou v GTM libovolné identicky obarvené obdélníkové bloky zaměněny za jednu velkou buňku s hodnotami ROWSPAN a COLSPAN.Při zaškrtnutí začne mapování napravo straně namísto nalevo.Bez zaškrtnutí bude obrázek kruhově mapován na obdélník. Při zaškrtnutí bude obrázek mapován na kruh.Bez zaškrtnutí začne pokládat dolní řadu doprostřed a horní řadu ven. Při zaškrtnutí to bude naopak.Povolením této volby budou vyšší barevné hodnoty prohozeny za nižší a naopakPovolením této volby se náhled překresluje automatickyIluzeIluze..._ObrázekObrázekNastavení obrázku / výstupuKompozice obrázkuVýběr obrázkuVelikost obrázkuTypy obrázku_Typ obrázku:_Výška obrázku:Rozměry obrázku: %d × %dObrázek není v šedích (bpp=%d)Jméno obrázku:Velikost obrázku byla změněna._Rozestup obrázků:Typ obrázku:Zásuvný modul Obrázková mapa 2.2Obrázky pro uzavírací ploškyObrázky mají různé velikostiImportovat _cestyImportovat elementy cesty z SVG, aby mohly být použity s nástrojem GIMPu pro cestyIn_tegrační kroky:In_verzePalecVčetně dekoraceIndexovanýTyp indexované paletyPočáteční hodnota:Typ inkoustu:Vstupní úrovně:Vložit bodDatum vloženíCeločíselnéIntenzitaÚrovně intenzityIntenzita původní barvy, je-li ozářena zdrojem světlaProkládané řádkováníVnitřní GIMP proceduraPrůnikBarva průsečíkůNeplatný řetězec UTF-8 v souboru PSDNeplatný řetězec UTF-8 v souboru stopy '%s'.Neplatný řetězec UTF-8 v souboru vzorku '%s'.InverzeInvertuje texturu papíruIsometrickáJe velmi vhodné přidat +a vytvoříte adresář '%s', můžete uložit svou vlastní P-záři do tohoto adresáře.Editor P-záříVolby GIFGIF varováníObrázek GIFGIF: Nedokumentovaný typ skládání GIF %d není obsloužen. Animace se možná nebude přehrávat nebo ukládat správně.GIMP rozšířeníProhlížeč nápovědy GIMPuGIMP modulGIMP magie s tabulkamiZásuvný modul GIMPu pro ikony WindowsStopa GIMPuStopa GIMPu (animovaná)Soubor GIMP stopy je zřejmě poškozený.Stopy GIMPu jsou buď v ŠEDÍCH nebo v RGBAObrázek XJT komprimovaný GIMPemVzorek GIMPu_ŽárPráh ze_lené:Gama:Gaussovo rozostřeníGaussovo rozostření...Hele, _slizounHele, _lupaObecnéObecné volbyObecné předvolbyObecné možnostiZískat vzorky barevGfigTisk GIMP verze GimpresionistaSkleněná dlaždiceSkleněné dlaždicování...Volby kreslení žáruŠ_edáZachytitZachytit _poZachytit jedno oknoZachytit celou obrazovkuPřechodZáře z přechodu...Mapování z přechodu...Vyplnění přechodemMenu výběru mapy přechoduMěřítko přechodu:PřechodyGraf aktuálního nastaveníVyhlazování grafikyŠedáŠedý režimMožnosti šedéPráh šedéOdstíny šediZelenáFr_ekvence zelené:Pos_un fáze zelené:Zelená:ŠedáMřížkaHrubost mřížkyPosun mřížkyNastavení mřížkyNastavení mřížky...Viditelnost a druh mřížkyBarva mřížky:Nastavení mřížky...Rozestup mřížky:Typ mřížky:VodítkaVodítka jsou předdefinované obdélníky pokrývající obrázek. Definujete je jejich šířkou, výškou a rozestupem od ostatních. To vám umožňuje rychle vytvořit nejběžnější typy obrázkových map - soubor "miniatur", vhodný pro navigační proužky.Vodítka...Gilotina...HSVVolby HTML stránkyTabulka HTML_Odlesk:S_větlaO_dstín:O_dstín:Šestiú_helníkyVýška (pixelů):Výška papíru, na který chcete tisknoutVýška:ID nápovědy '%s' není známoA kde je ten objekt?Náhled ve vysoké _kvalitěVyšší hodnota znamená zesiluje efektVyšší hodnota znamená, že odlesky jsou ostřejšíVyšší hodnota znamená, že objekt odráží více světla (vypadá světleji)Vyšší hodnoty omezují efekt na menší oblasti obrázkuOdlesk:Světla:Po_držet nejnižší kanály_Šířka děr:Vodo_rovná základna:_Výška děr:Podržet intenzituR_ozestup děr:VodorovněVodorovná barvaVodorovněKoňská kopytaVideosnímekŘídicí bod _X:Řídicí bod _Y:Videosnímek...Počet jednotek na palec.Míra ztmavnutí vržených stínůMíra ztmavnutí hrany každé stopy štětceMíra rozostření stínůOdstínRotace odstínu:Změny odstínu_Frekvence odstínu:_Posun fáze odstínu:Odstín:Nestarám seIDIFS FractalMožnosti vykreslování IFS FractalIFS Fractal: ČernáIFS Fractal: ModráIFS Fractal: ZelenáIFS Fractal: ČervenáIFS Fractal: CílITER:Interaktivní deformaceI_ntenzitaI_nteraktivníI_nvertovat mapu vyvýšeníI_nvertovaný obrázek_IzolovatIkona č. %iPodrobnosti o ikoněPři zaškrtnutí bude GTM vytvářet plný HTML dokument se značkami , , atd. namísto pouhé html tabulky.Při zaškrtnutí budou v GTM libovolné identicky obarvené obdélníkové bloky zaměněny za jednu velkou buňku s hodnotami ROWSPAN a COLSPAN.Při zaškrtnutí začne mapování napravo straně namísto nalevo.Bez zaškrtnutí bude obrázek kruhově mapován na obdélník. Při zaškrtnutí bude obrázek mapován na kruh.Bez zaškrtnutí začne pokládat dolní řadu doprostřed a horní řadu ven. Při zaškrtnutí to bude naopak.Povolením této volby budou vyšší barevné hodnoty prohozeny za nižší a naopakPovolením této volby se náhled překresluje automatickyIluzeIluze..._ObrázekObrázekNastavení obrázku / výstupuKompozice obrázkuVýběr obrázkuVelikost obrázkuTypy obrázku_Typ obrázku:_Výška obrázku:Rozměry obrázku: %d × %dObrázek není v šedích (bpp=%d)Jméno obrázku:Velikost obrázku byla změněna._Rozestup obrázků:Typ obrázku:Zásuvný modul Obrázková mapa 2.2Obrázky pro uzavírací ploškyObrázky mají různé velikostiImportovat _cestyImportovat elementy cesty z SVG, aby mohly být použity s nástrojem GIMPu pro cestyIn_tegrační kroky:In_verzePalecVčetně dekoraceIndexovanýTyp indexované paletyPočáteční hodnota:Typ inkoustu:Vstupní úrovně:Vložit bodDatum vloženíCeločíselnéIntenzitaÚrovně intenzityIntenzita původní barvy, je-li ozářena zdrojem světlaProkládané řádkováníVnitřní GIMP proceduraPrůnikBarva průsečíkůNeplatný řetězec UTF-8 v souboru PSDNeplatný řetězec UTF-8 v souboru stopy '%s'.Neplatný řetězec UTF-8 v souboru vzorku '%s'.InverzeInvertuje texturu papíruIsometrickáJe velmi vhodné přidat (gimpressionist-path "%s") -(nebo podobné) do vašeho souboru gimprc.Iterace:JNGJNG + Delta PNGKvalita komprese JPEG:Obrázek JPEGJPEG náhledParametr kvality JPEGFaktor vyhlazování JPEG:SkládačkaStyl skládačkyJuliaKISS CELZachovat _sudá poleZachovat hodnoty z obrázkuZachovat _lichá poleZachovat původníZachovat první hodnotuLABLZ77Počát_ek_Levý okraj_Délka:_LineárníLambdaNa šířkuLaplaceůvLaplace...V_elké 3×3Vrstva %s nemá alfa kanál, vynechánaTyp pozadí vrstvy. Kopie způsobí zkopírování předchozí vrstvy před kreslením.DolevaLevá hranaNalevo:Efekt čočekMéně syté:Nechť směr od středu určí směr tahuNechť směr od středu určí velikost tahuNechť hodnota (jas) oblasti určí směr tahuNechť hodnota (jas) oblasti určí velikost tahuÚroveňSvětloSvětlo 1Světlo 2Světlo 3Světlo 4Světlo 5Světlo 6Nastavení světlaSměr svět_la:Intenzita světlaSměr X světelného zdroje v prostoru XYZPoloha X světelného zdroje v prostoru XYZSměr Y světelného zdroje v prostoru XYZPoloha Y světelného zdroje v prostoru XYZSměr Z světelného zdroje v prostoru XYZPoloha Z světelného zdroje v prostoru XYZSvětlejšíSvětlejší:Světelné efektySvětelné efekty...Přednastavení světla:Barva zdroje světla:Typ zdroje světla:ČáryČárová grafikaLineárníTyp odkazuVypsat seznamJeštěrkaZ_načné kolísání_Dolní okrajNačíst nastavení mixéru kanálůNačtení bodů křivky ze souboruČtení FITS souboruNačíst plamenNačíst parametry fraktáluNačíst souhrn objektů GfigNačíst obrázkovou mapuNačíst KISS paletuNačíst nastavení osvětleníNačíst parametry zČtení PostScriptuNačíst soubor QBE...Načíst fraktál ze souboruNačtení křivek ze souboruNačítám snímek obrazovky...Spřáhnout _prahyLogaritmickýSmyčkaZleva zdolaZprava zdolaSnížit zvolený objektSnížit zvolený objekt dospod_Dolní práh:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Prá_h jasu:Fre_kvence jasu:Po_sun fáze jasu:Volby MNGAnimace MNGMa_ximální hodnota:Ma_ximální hloubka:Ma_ximální výška:P_urpurováPurpurováPurpurová:Purpurová_KMapa zvětšení:Hlavní volbyVytvoření průhledného cílového obrázku v místech, kde je vyvýšení nulovéMimo objekt bude obrázek průhlednýMan'o'warMandelbrotMandelbrotovy parametryRučněOrientace tahů bude určena ručněVelikost stopy bude určena ručněMapování barevného rozsahuMapovat obrázek do plošek hranolůMapovat _objekt...Formát souboru mapyMapovat _shoraMapovat na kvádr...Mapovat na válec...Mapovat na objektMapovat na rovinu...Mapovat na kouli...Mapovat na:Mapuji barvy...Soubor maskyVlastnosti materiáluMaticeMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Nejvyšší RGBNejvyšší RGB...Nejvíce vracení:Limit paměti:Největší výška pro vyvýšeníNejvětší velikost:BludištěVelikost média:Zdroj média:Typ média:MediánMenuCesta k menuCesta k menu/jménoSloučit importované cestySpojuji...Soubor Microsoft WMFIkona Microsoft WindowsVyberte "Z barvy" kliknutím prostředním tlačítkem v náhleduStřední tóny:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Nejmenší velikost:Zrcadlit aktivní křivku na druhou hraniciRůzné uspořádání:U_pravit kanál zelenéU_pravit kanál sytostiUp_ravit kaníl modréUp_ravit kaníl jasuRežimRežim _1Režim _2Upravit křivkyVíce _krytíDalší pokročilé možnostiSytější:Více _bílé (vyšší hodnota)Více _černé (nižší hodnota)Prů_hlednějšíMozaikaRozmáznutí pohybemRozmázávám pohybem...PosunPřesunout dolůPřesunout ránPřesunout zvolené objektyPřesunout dopředuPřesunout nahoruPřesunout jeden bodPřesunout objektPohybNásobení (57):Násobení gradientem (0,1)Násobení náhodnou hodnotou (0,1)Násobení náhodnou hodnotou (0,2)Vzdálenost mutace:Míra mutace:Můj první fraktálNL FiltrNL Filtr...JménoDetekce neonuNeon...Nový fraktálNová P-zářeNová jednotkaNová tiskárna...Nové hnízdo_Novinový tisk...Novinový tiskNovinový tisk...V gimprc chybí %1$s: +(nebo podobné) do vašeho souboru gimprc.Iterace:JNGJNG + Delta PNGKvalita komprese JPEG:Obrázek JPEGJPEG náhledParametr kvality JPEGFaktor vyhlazování JPEG:SkládačkaStyl skládačkyJuliaKISS CELZachovat _sudá poleZachovat hodnoty z obrázkuZachovat _lichá poleZachovat původníZachovat první hodnotuLABLZ77Počát_ek_Levý okraj_Délka:_LineárníLambdaNa šířkuLaplaceůvLaplace...V_elké 3×3Vrstva %s nemá alfa kanál, vynechánaTyp pozadí vrstvy. Kopie způsobí zkopírování předchozí vrstvy před kreslením.DolevaLevá hranaNalevo:Efekt čočekMéně syté:Nechť směr od středu určí směr tahuNechť směr od středu určí velikost tahuNechť hodnota (jas) oblasti určí směr tahuNechť hodnota (jas) oblasti určí velikost tahuÚroveňSvětloSvětlo 1Světlo 2Světlo 3Světlo 4Světlo 5Světlo 6Nastavení světlaSměr svět_la:Intenzita světlaSměr X světelného zdroje v prostoru XYZPoloha X světelného zdroje v prostoru XYZSměr Y světelného zdroje v prostoru XYZPoloha Y světelného zdroje v prostoru XYZSměr Z světelného zdroje v prostoru XYZPoloha Z světelného zdroje v prostoru XYZSvětlejšíSvětlejší:Světelné efektySvětelné efekty...Přednastavení světla:Barva zdroje světla:Typ zdroje světla:ČáryČárová grafikaLineárníTyp odkazuVypsat seznamJeštěrkaZ_načné kolísání_Dolní okrajNačíst nastavení mixéru kanálůNačtení bodů křivky ze souboruČtení FITS souboruNačíst plamenNačíst parametry fraktáluNačíst souhrn objektů GfigNačíst obrázkovou mapuNačíst KISS paletuNačíst nastavení osvětleníNačíst parametry zČtení PostScriptuNačíst soubor QBE...Načíst fraktál ze souboruNačtení křivek ze souboruNačítám snímek obrazovky...Spřáhnout _prahyLogaritmickýSmyčkaZleva zdolaZprava zdolaSnížit zvolený objektSnížit zvolený objekt dospod_Dolní práh:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Prá_h jasu:Fre_kvence jasu:Po_sun fáze jasu:Volby MNGAnimace MNGMa_ximální hodnota:Ma_ximální hloubka:Ma_ximální výška:P_urpurováPurpurováPurpurová:Purpurová_KMapa zvětšení:Hlavní volbyVytvoření průhledného cílového obrázku v místech, kde je vyvýšení nulovéMimo objekt bude obrázek průhlednýMan'o'warMandelbrotMandelbrotovy parametryRučněOrientace tahů bude určena ručněVelikost stopy bude určena ručněMapování barevného rozsahuMapovat obrázek do plošek hranolůMapovat _objekt...Formát souboru mapyMapovat _shoraMapovat na kvádr...Mapovat na válec...Mapovat na objektMapovat na rovinu...Mapovat na kouli...Mapovat na:Mapuji barvy...MramorSoubor maskyVlastnosti materiáluMaticeMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Nejvyšší RGBNejvyšší RGB...Nejvíce vracení:Limit paměti:Největší výška pro vyvýšeníNejvětší velikost:BludištěVelikost média:Zdroj média:Typ média:MediánMenuCesta k menuCesta k menu/jménoSloučit importované cestySpojuji...Soubor Microsoft WMFIkona Microsoft WindowsVyberte "Z barvy" kliknutím prostředním tlačítkem v náhleduStřední tóny:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Nejmenší velikost:Zrcadlit aktivní křivku na druhou hraniciRůzné uspořádání:U_pravit kanál zelenéU_pravit kanál sytostiMíra modifikace:Up_ravit kaníl modréUp_ravit kaníl jasuRežimRežim _1Režim _2Upravit křivkyVíce _krytíDalší pokročilé možnostiSytější:Více _bílé (vyšší hodnota)Více _černé (nižší hodnota)Prů_hlednějšíMozaikaRozmáznutí pohybemRozmázávám pohybem...PosunPřesunout dolůPřesunout ránPřesunout zvolené objektyPřesunout dopředuPřesunout nahoruPřesunout jeden bodPřesunout objektPohybNásobení (57):Násobení gradientem (0,1)Násobení náhodnou hodnotou (0,1)Násobení náhodnou hodnotou (0,2)Vzdálenost mutace:Míra mutace:Můj první fraktálNL FiltrNL Filtr...JménoDetekce neonuNeon...Nový fraktálNová P-zářeNová jednotkaNová tiskárna...Nové hnízdo_Novinový tisk...Novinový tiskNovinový tisk...V gimprc chybí %1$s: Do svého souboru %4$s musíte přidat položku tvaru (%2$s "%3$s")Žádné barvyŽádná kompreseŽádná data nebyla získánaŽádné vyplňováníŽádné světloNic nenalezenoPro převod není žádný výběrŽádná rozumná přípona, pokouším se načíst pomocí souborů magických čísel.Žádná rozumná přípona, ukládám jako gzipovaný XCF.Počet _dolů:ŠumNečtvercové pixely. Obrázek může vypadat rozmáčkle.NicNormálníNormální:Normalizuji...Není co ořezávat.Počet barevPočet položek M_RU (1-16):Počet segmentůPočet dlaždicPočet _políček:P_očet úrovní vracení (1-99):Počet buněk:Počet barev:Počet cyklů pokrývajících celý rozsah hodnotPočet kusů jdoucích napříčPočet kusů jdoucích dolůPočet použití filtruPočet jedinečných barev: %dČíslování_Posun:Pouze pop_ředí_Krytí:_VolbyO_rientace_JinéVýstupní _LPI:_Výstupní kanál:_Přesah:Pře_krytíPře_vzorkování:Podrobnosti objektůPoloha X objektu v prostoru XYZPoloha Y objektu v prostoru XYZPoloha Z objektu v prostoru XYZOsmiúhelníky a č_tverce_Posun:Posun (1):Úhel p_osunu:Posun všech vektorů o zadaný úhelPosun:Kreslím olejomalbu..._Olejomalba...OlejomalbaNa hranách:Na filmu:Na hranách:Jedno políčko na vrstvu (nahradit)Pouze po_zadíJen jedna jedinečná barva_Krytí:_Optimální odhad_VolbyKrytí:OtevřítOtevřít souborOtevřít soubor IFS FraktalOtevření selhaloOtevřít nedávnýOtvírám '%s'...Otevírám miniaturu pro '%s'...Otevře editor mapy orientaceOtevře editor mapy velikostiOptimalizovatOptimalizovat (pro _GIF)Optimalizace výstupu pro typ tištěného obrázkuOptimalizuji animaci...VolbyOr_ientacePočátek dol_e vlevoOrientaceEditor map orientaceOrientace:PůvodníPůvodní intenzitaPůvodní:_JinéJiné možnostiVýstupVýstupní úrovně:Typ výstupu:Typ okolíPřekrytíP (Faktor mocniny)DokumenT PDFObrázek PGMPNGPNG + Delta PNGÚroveň komprese PNG:Obrázek PNGObrázek PNMObrázek PNMPNM zápis neumí zpracovat obrázky s alfa kanály.PNM: Chyba při čtení souboru.PNM: Neplatné X rozlišení.PNM: Neplatné Y rozlišení.PNM: Neplatný soubor.PNM: Neplatná nejvyšší hodnota.PNM: Předčasný konec souboru.PPD soubor:PPIObrázek PPMPS diamantPS čtverec (euklidovská tečka)P_apír_Polární souřadnice..._NáhledStrana %dRozčeření stránky...Nastavení stránkyPageSetupDlg selhalo: %dEfekt rozčeření stránkyStránky, které načíst (např. 1-4 nebo 1,3,5-7)Stránky:Režim kreslení:Obrázek Paint Shop ProKreslit okrajeKreslím..._Soubor palety:PaletaPapírová dlaždicePapírová dlaždice...Parametr k:ParametryParametry byly uloženy do '%s'Chyba při zpracovávání '%s': -%sVložitVložit ze schránkyVloženéVkládám...Vyplnění vzorkemProcentaProcenta _černé:Procenta _bílé:Procento filtrovaných pixelůÚhel fáze, rozsah 0-360FotokopieFotografieObrázek PhotoshopuKousky:Ping pongVýška _dlaždice:Šířka _pixelu:Rozsah hodnot pixelůPixelizacePixelizuji...pixelůU_místěníUmístí tahy náhodně po obrázkuUmístěníPlanární (RRR,GGG,BBB)Planární RGBRovinuPlazmaPlazma...Přehrát/ZastavitPřehrávání:Zkontrolujte prosím svou instalaci.Nakreslit graf nastaveníProhlížeč zásuvných modulůMnožné čísloPo_larizace:BodovéBodové světloPolární zářePolarizacePolarizuji...PolygonNa výškuPolohaPoloha X:Poloha Y:Poloha Z:Umístěte obrázek na stránku. +%sVložitVložit ze schránkyVloženéVkládám...Vyplnění vzorkemProcentaProcenta _černé:Procenta _bílé:Procento filtrovaných pixelůÚhel fáze, rozsah 0-360PhongFotokopieFotografieObrázek PhotoshopuKousky:Ping pongVýška _pixelu:Šířka _pixelu:Rozsah hodnot pixelůPixelizacePixelizuji...pixelůU_místěníUmístí tahy náhodně po obrázkuUmístěníPlanární (RRR,GGG,BBB)Planární RGBRovinuPlazmaPlazma...Přehrát/ZastavitPřehrávání:Zkontrolujte prosím svou instalaci.Nakreslit graf nastaveníProhlížeč zásuvných modulůMnožné čísloPo_larizace:BodovéBodové světloPolární zářePolarizacePolarizuji...PolygonNa výškuPolohaPoloha X:Poloha Y:Poloha Z:Umístěte obrázek na stránku. Kliknutím a táhnutím primárním tlačítkem umístíte obrázek. Kliknutím a táhnutím druhým tlačítkem umístíte obrázek s větší přesností; každá jednotka pohybu přesune obrázek o jeden bod (1/72") Kliknutím a táhnutím třetím (prostředním) tlačítkem budete přesunovat obrázek v jednotkách rozměru obrázku. Pokud podržíte klávesu přeřaďovače (Shift), omezíte pohyb obrázku pouze na horizontální nebo vertikální osu. Pokud při tažení myší kliknete na jiné tlačítko, vrátí se obrázek do své původní polohy.Dokument v_PostScriptuPostScript zápis neumí zpracovat obrázky s alfa kanályNá_hledPředvolbyZachovat _jasZachová původní obrázek jako pozadíNáhledVelikost náhledu_Velikost náhledu:Náhled při potáhnutíPrewittůvPrimův algoritmusNastavení tiskových barevVytisknout -a uložit nastaveníČernobílý tisk (bez barev, a bez odstínů šedi)Tisk v odstínech šedi pomocí černého inkoustuTisknout do souboruPrintDlg selhalo: %dModel tiskárny:Nastavení tiskárnyTiskárna nepodporuje bitové mapyModel tiskárny:Název tiskárny:Tisknu...Přechod pravděpodobnosti:Prohlížeč procedur_Prohlížeč procedurProgresivníRozšířitRozšíření v kanálu hodnotRozšíření v _alfa kanáluQbist ...Kvalita:R, G, B (normální)RGBTyp ukládání RGBRGBANebyla zvolena obrazovka RGBA/ŠEDI-A.RLEKomprese RLE_Poloměr 2:_Poloměr:_Náhodný odstín:Hnízdo _náhodných čísel:_Náhodnost (%):_RekurzivníČer_venáPráh č_ervené:O_pakování:Z_pětněRadiálníPaprskovitý přechod:RadiányRadiány/píPoloměrPoloměr:Zvýšit zvolený objektZvýšit zvolený objekt nahoruNáhodná _sytost:NáhodnýNáhodné výpadky 1.7Náhodné posuny 1.7Hnízdo náhodných čísel:Náhodné roztřepení 1.7Hní_zdo náhodných čísel:Náhodné hnízdoNáhodná sdílenáNáhodná, zm. nezávisláNáhodněNáhodná čísla z hnízdaNáhodná čísla z hnízda (sdílená)Horní rozsah:Dolní rozsah:Zařazení:BinárníData obrázku rawNačítač obrázků rawUložit obrázek rawVolby kreslení paprskůPřepočítat _středČer_venáČte zvolenou předvolbu do pamětiNáhled v reálném časePřepočítat středPřepočítat náhledObdélníkČervená_Frekvence červené:_Posun fáze červené:Červená:Červenost_cr470:Červenost_cr470f:Červenost_cr709:Červenost_cr709f:Zrušit vráceníVrátit poslední přiblíženíPřekreslitPřekreslit náhledSnížit _jasSnížit _sytostiOdrazivostZaktualizovat náhledové oknoPočet stran pravidelného mnohoúhelníkuRelati_vní odkazPoměrná pravděpodobnost:Uvolněno za podmínek GNU General Public LicenseReliéf:Přemapování vybarvení...Odstran_itOdstraňuji pozadí animace...Odstraňuje se barva...Vykreslit odlesk...Vykreslit Scalable Vector GraphicsVykreslit Windows MetafileMožnosti vykreslováníVykreslené SVGVykreslené WMFVyobrazeníPočítám výbuch...Počítá se fraktál...Počítá se IFS (%d/%d)...Vykresluji SVG...Vykresluji kouli...Vykresluji SuperNovu...Počítají se dlaždice...Počítám vítr...PřepsatZnovu načte adresář předvolebZaktualizovat přechodyZaktualizovat fraktályNastaví parametry na implicitní hodnotyObnovit aktivní křivkuZměnit rozměry plátna?RozlišeníRozlišení a kvalita tiskuRozlišení:Výsledné vodítko zahrnuje: %d,%d do %d,%d (%d oblastí)Výsledné vodítko zahrnuje: 0,0 do 0,0 (0 oblastí)Návratové hodnotyNavrácení původního obrázkuPřevinoutDopravaPravý okraj:Pravá hranaNapravo:VlněníRozvlňuji..._Rotace:Řa_da:RobertsůvR_otovat:RotovatRotovat / zvětšitRotace X:Rotace Y:Rotace Z:RotovanýRotuje se barevné mapa...Rotuji...RotaceÚhel rotace kolem osy XÚhel rotace kolem osy YÚhel rotace kolem osy ZÚhel rotace:Rotace:VýraznostKruhovýKódované RunLengthObrázek SUN RasterfileZápis SUNRAS neumí zpracovat obrázky s alfa kanálySoubor SVG neurčuje +a uložit nastaveníČernobílý tisk (bez barev, a bez odstínů šedi)Tisk v odstínech šedi pomocí černého inkoustuTisknout do souboruPrintDlg selhalo: %dModel tiskárny:Nastavení tiskárnyTiskárna nepodporuje bitové mapyModel tiskárny:Název tiskárny:Tisknu...Přechod pravděpodobnosti:Prohlížeč procedur_Prohlížeč procedurProgresivníRozšířitRozšíření v kanálu hodnotRozšíření v _alfa kanáluQbist ...Kvalita:R, G, B (normální)RGBTyp ukládání RGBRGBANebyla zvolena obrazovka RGBA/ŠEDI-A.RLEKomprese RLE_Poloměr 2:_Poloměr:_Náhodný odstín:Hnízdo _náhodných čísel:_Náhodnost (%):_RekurzivníČer_venáPráh č_ervené:O_pakování:Z_pětněRadiálníPaprskovitý přechod:RadiányRadiány/píPoloměrPoloměr:Zvýšit zvolený objektZvýšit zvolený objekt nahoruNáhodná _sytost:NáhodnýNáhodné výpadky 1.7Náhodné posuny 1.7Hnízdo náhodných čísel:Náhodné roztřepení 1.7Hní_zdo náhodných čísel:Náhodné hnízdoNáhodná sdílenáNáhodná, zm. nezávisláNáhodněNáhodná čísla z hnízdaNáhodná čísla z hnízda (sdílená)Horní rozsah:Dolní rozsah:Zařazení:BinárníData obrázku rawNačítač obrázků rawUložit obrázek rawVolby kreslení paprskůPřepočítat _středČer_venáČte zvolenou předvolbu do pamětiNáhled v reálném časePřepočítat středPřepočítat náhledObdélníkČervená_Frekvence červené:_Posun fáze červené:Červená:Červenost_cr470:Červenost_cr470f:Červenost_cr709:Červenost_cr709f:Zrušit vráceníVrátit poslední přiblíženíPřekreslitPřekreslit náhledSnížit _jasSnížit _sytostiOdrazivostZaktualizovat náhledové oknoPočet stran pravidelného mnohoúhelníkuRelati_vní odkazPoměrná pravděpodobnost:Uvolněno za podmínek GNU General Public LicenseReliéf:Přemapování vybarvení...Odstran_itOdstraňuji pozadí animace...Odstraňuje se barva...Vykreslit odlesk...Vykreslit Scalable Vector GraphicsVykreslit Windows MetafileMožnosti vykreslováníVykreslené SVGVykreslené WMFVyobrazeníPočítám výbuch...Počítá se fraktál...Počítá se IFS (%d/%d)...Vykresluji SVG...Vykresluji kouli...Vykresluji SuperNovu...Počítají se dlaždice...Počítám vítr...PřepsatZnovu načte adresář předvolebZaktualizovat přechodyZaktualizovat fraktályNastaví parametry na implicitní hodnotyObnovit aktivní křivkuZměnit rozměry plátna?RozlišeníRozlišení a kvalita tiskuRozlišení:Výsledné vodítko zahrnuje: %d,%d do %d,%d (%d oblastí)Výsledné vodítko zahrnuje: 0,0 do 0,0 (0 oblastí)Retinex (4/4): aktualizace...Vylepšení metodou retinexRetinex...Retinex: filtrace...Návratové hodnotyNavrácení původního obrázkuPřevinoutDopravaPravý okraj:Pravá hranaNapravo:VlněníRozvlňuji..._Rotace:Řa_da:RobertsůvR_otovat:RotovatRotovat / zvětšitRotace X:Rotace Y:Rotace Z:RotovanýRotuje se barevné mapa...Rotuji...RotaceÚhel rotace kolem osy XÚhel rotace kolem osy YÚhel rotace kolem osy ZÚhel rotace:Rotace:VýraznostKruhovýKódované RunLengthObrázek SUN RasterfileZápis SUNRAS neumí zpracovat obrázky s alfa kanálySoubor SVG neurčuje velikost!_Roztřepit HSV..._Druhá barva:_Vybrat okno poVyb_erte zde:S_elektor_Zobrazit kurzor_ZmenšeníS_inusExp. _síly:Pevnos_t:Pruh_y_Předmět:Pro_hoditVír proti s_m. hod. ruč._Uložit alfa kanál (RGBA/RGB)TotéžAnalýza vzorků...Vzor vybarveníH_ustota vzorku:Vzor:Vzorkuje barvu z pixelu ve středu stopyS_ytostS_ytostSytostZměny sytostiFr_ekvence sytosti:Pos_un fáze sytosti:Sytost:ZapsatUložit nastaveníUložit (střední převod) jako soubor QBEUložit stopuUložit nastavení mixéru kanálůUložit aktuálníUložení bodů křivky do souboruUložit data EXIFZapsat souborZapsat plamenZapsat parametry fraktáluUložit kresbu GfigZapsat obrázkovou mapuUložit nastavení osvětleníZapsat parametry doUložit barvu _pozadíUložit _hodnoty barvy průhledných pixelůUložit _gamuUložit _rozlišeníZapsat aktivní fraktál do souboruZapsat jako BMPZapsat jako stopuZapsat jako kolonu stopUložit jako zdroj v CZapsat jako GIFUložit jako soubor IFS FraktalZapsat jako JPEGZapsat jako MNGZapsat jako PNGZapsat jako PNMZapsat jako PSPZapsat jako vzorekZapsat jako PostScriptZapsat jako SGIZapsat jako SUNRASZapsat jako TGAZapsat jako TIFFZapsat jako textZapsat jako XBMZapsat jako XJTZapsat jako XPMUložit barvu pozadíUložit _hodnoty barvy průhledných pixelůUložit _komentářUložit _čas vytvořeníUložit čas vytvořeníUložit aktuální...Ukládání selhaloUložit gamuUložit posun _vrstvyUložit rozlišeníZapíše aktuální nastavení do určeného souboruUložení křivek do souboruUložit miniaturuZapsánoUkládám '%s' ...Pi_lová_Velikost 1:_Rozptylování:_Velikost 2:Škálovatelný obrázek SVGŠkála odstínů:Škála jasu:Zvětšení X:Zvětšení Y:Zvětšení Z:Zvětšit o:Škálovat výtisk podle počtu bodů na palecŠkálovat výtisk podle velikosti stránkyVelikost:Škálování:Roztřepení HSVRoztřepení RGBRoztřepuji HSV...ObrazovkaPracovní plochaPouze _výběrHledat podle _popisuHledat podle _názvuHledá se - prosím čekejteHledá se podle popisu - prosím čekejteHledá se podle názvu - prosím čekejteObráceně naležatoDruhá cílová barvaVolby kreslení druhé zářeDruhá zdrojová barvaDruhá barvaprodlevy v sekundáchProdleva v sekundáchHnízdo náhodných čísel (pouze pro režimy "z hnízda")Hnízdo:Výběr v _kontextuVýběrVybrat všeVýběr barvyVýběr barev filmuVýběr HTML souboruVýběr souboru obrázkuVybrat následujícíVýběr počtu barevZvolte soubor palety, který načístKritérium volby pixelůVybrat předchozíVybrat oblast_Vybrat všeVybrat _všeVybrat všeZvolte objektVybrat spojitou oblastVybrat spojité oblastiVýběr existující oblastiVýběr adresáře a aktualizace souhrnuZvolte barvu světelného zdrojeVybrat následující vektor mvVybrat následující vektorVybrat předchozí vektor mvVybrat předchozí vektorVýběr základních měrných jednotek pro výtiskVyberte požadovaný typ výstupuVyberte název tiskárny (ne typ, nebo model tiskárny), na kterou chcete tisknoutVyberte orientaci: na výšku, na šířku, vzhůru nohama nebo obráceně naležato (vzhůru nohama na šířku)Výběr, zdali je škálování měřeno v procentech dostupné velikosti stránky nebo v počtu výstupních bodů na palecVyberte model vaší tiskárnyVýběr:Vybrané:VýběrRozšířená nastavení výběru do cestyVelikost výběru není sudá. Dlaždicovatelné bludiště nebude dokonalé.Výběr do cesty...Selektivní Gaussovo rozostřeníSelektivní Gaussovo rozostření...Výběrové čtení nastaveníVýběrové čtení zZvolí náhodný směr každého tahuZvolí náhodnou velikost každého tahuUrčí, zda bude výsledek dlaždicovatelný beze švůVolí, zda lze štětcem přetahovat přes okraje obrázkuČástečně zplošťuji...Poslat nazpětPoslat jako poštuSeparovat do:31. září 1999Nastavení barvy světelného zdrojeNastavení základní měrné jednotky na centimetryNastavení základní měrné jednotky na palceNastavení jasu výtisku. -0 znamená zcela černou, 2 znamená zcela bílouNastavení kontrastu výtiskuNastavení výšky výtiskuNastaví velikost výtisku na velikost obrázkuNastavení škálování (velikosti) obrázkuNastavení šířky výtiskuSetStretchBltMode selhalo (pouze varování)NastaveníNastavení pro tento soubor obrázkové mapyNastavení tiskárnyNastavit tiskárnu...S_tínyNeostrost stínu:Ztmavení stínu:Hloubka stínu:Stíny:Tvar druhé zářeOstré hranyDoostřitDoostřuji...Střih:Posun_Míra posunu:Posunout _vodorovněPosunout _svislePosunuji...Má být proveden inverzní efekt?Má být zachován jas?UkázatUkázat čárový modelZobrazit _náhled v okně obrázkuZobrazit všechny objektyZobrazit _tip URL oblastiZobrazit obslu_hu oblastíZobrazit barvuZobrazit řídicí bodyZobrazovat mřížkuZobrazit obrázekZobrazit další objektZobrazit polohu_Zobrazit náhledový drátový modelZobrazit předchozí objektZobrazit výběrUkázat/skrýt náhledový drátový modelJed_notné číslo:Strany:SierpinskiObrázek Silicon Graphics IRISJednoduchý_SinusoidníSinusJednotné čísloSinusSinus: vykresluji...SinusoidníVelikostVelikost (%):Přechod faktoru velikosti:Editor map velikostiVelikost papíru, na který chcete tisknoutVelikost:Velikosti:Nejpomalejší, ale nejpřesnější a nejhladší barvy pro obrázky s plynulými přechody barevných tónů a fotografieŠmouha_Plynulá paleta..._Vyhlazování_PlynuláPlynulá paletaPlynulé vzorkyVyhlazuje se X přechod...Vyhlazuje se Y přechod...Parametry vyhlazováníVyhlazování:Plynulost a schodovitostVektory mvChytat k mřížceSobelůvSobelova detekce hran...Sobelova detekce hranSobel _vodorovněSobel _svisleBarevná plochaPevný šumPevný šum...Pozadí z barevné plochyBarevné plochyNěkterá data byla změněna!Bohužel, umím pracovat pouze s obrázky INDEXOVANÝMI a v ŠEDÍCH.Bohužel, kanály a masky nelze rotovat.Zdroj (podavač) médií, na které tiskneteZdroj 1:Zdroj 2:Zdrojový kanál v souboru:Zdrojový kanál:Zdrojový barevný rozsahZdroj..._Počet hrotů:_Rozprostřít...Pros_torové převzorkování:Rozestup (procenta):Rozestup:JiskřeníJiskřím...Prostorová transformacePoloměr prostorového _filtru:Určené okno nenalezenoUrčuje míru vyvýšení použitou na obrázek (v procentech)Určuje poměr stran stopyUrčuje velikost textury (v procentech původního souboru)Odraz:KouliNávrhář koulí_Návrhář koulí...KulovýÚhe_l hrotu (-1: náhodný):SpiderHustot_a hrotů:Tloušťka hrotů:VírPočet otočení spirályPoloměr tečky:TečkyRozprostřeníMíra rozprostřeníRozprostírám...Exp. _síly:StandardníStandardní (R,G,B)Počet bodů hvězdyPočáteční _index:Počáteční úhel:Počáteční posun:StartPage selhaloKrokVelikost kroku:Zastavit, jsou-li rozdíly pixelů menší než tato hodnotaRoztaženíRoztáhnout _HSVStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) selhalo, chyba = %d, y = %d_Hustota tahu:SilnéStyl_SuperNova...Poddělení:Podvzorkování:Podkroky:SuperNovaSuperNova: Barevná pipetaVír ve sm. hod. r_uč.Prohodit tyto dvě křivkyVírPřepnout do režimu "z hnízda" s posledním hnízdemPřepnout proti směru hodinových ručičekPřepnout po směru hodinových ručičekSymbolTIFF kanálObrázek TIFFTWAIN (výpis)...TWAIN (číst)...Dlažd_icovatelný_Sytost dlaždice:Vel_ikost dlaždice:P_růhledné pozadí_Turbulence:_TurbulentníVolby tvorby tabulkyVolby tabulkyObrázek TarGACílTe_lnetPomocnýPomocná proceduraVyhlazování textuTexturaVlastnosti texturyTransformace texturyTextura:TexturyDěkujeme, že jste si vybrali GIMPFormát GIF podporuje komentáře jen v sedmibitovém kódování ASCII. Komentář nebyl uložen.Soubory nápovědy GIMPu nejsou nainstalovány.GIMPresionistaImplicitní nastavení GimpresionistySoubor PNG určuje posunutí, které způsobilo, že vrstva je umístěna mimo obrázek.Formát TIFF podporuje komentáře jen v sedmibitovém +0 znamená zcela černou, 2 znamená zcela bílouNastavení kontrastu výtiskuNastavení výšky výtiskuNastaví velikost výtisku na velikost obrázkuNastavení škálování (velikosti) obrázkuNastavení šířky výtiskuSetStretchBltMode selhalo (pouze varování)NastaveníNastavení pro tento soubor obrázkové mapyNastavení tiskárnyNastavit tiskárnu...S_tínyNeostrost stínu:Ztmavení stínu:Hloubka stínu:Stíny:Tvar druhé zářeOstré hranyDoostřitDoostřuji...Střih:Posun_Míra posunu:Posunout _vodorovněPosunout _svislePosunuji...Má být proveden inverzní efekt?Má být zachován jas?UkázatUkázat čárový modelZobrazit _náhled v okně obrázkuZobrazit všechny objektyZobrazit _tip URL oblastiZobrazit obslu_hu oblastíZobrazit barvuZobrazit řídicí bodyZobrazovat mřížkuZobrazit obrázekZobrazit další objektZobrazit polohu_Zobrazit náhledový drátový modelZobrazit předchozí objektZobrazit výběrUkázat/skrýt náhledový drátový modelJed_notné číslo:Strany:SierpinskiObrázek Silicon Graphics IRISJednoduchý_SinusoidníSinusJednotné čísloSinusSinus: vykresluji...SinusoidníVelikostVelikost (%):Přechod faktoru velikosti:Editor map velikostiVelikost papíru, na který chcete tisknoutVelikost:Velikosti:Nejpomalejší, ale nejpřesnější a nejhladší barvy pro obrázky s plynulými přechody barevných tónů a fotografieŠmouha_Plynulá paleta..._Vyhlazování_PlynuláPlynulá paletaPlynulé vzorkyVyhlazuje se X přechod...Vyhlazuje se Y přechod...Parametry vyhlazováníVyhlazování:Plynulost a schodovitostVektory mvChytat k mřížceSobelůvSobelova detekce hran...Sobelova detekce hranSobel _vodorovněSobel _svisleJemná zářeBarevná plochaPevný šumPevný šum...Pozadí z barevné plochyBarevné plochyNěkterá data byla změněna!Bohužel, umím pracovat pouze s obrázky INDEXOVANÝMI a v ŠEDÍCH.Bohužel, kanály a masky nelze rotovat.Zdroj (podavač) médií, na které tiskneteZdroj 1:Zdroj 2:Zdrojový kanál v souboru:Zdrojový kanál:Zdrojový barevný rozsahZdroj..._Počet hrotů:_Rozprostřít...Pros_torové převzorkování:Rozestup (procenta):Rozestup:JiskřeníJiskřím...Prostorová transformacePoloměr prostorového _filtru:Určené okno nenalezenoUrčuje míru vyvýšení použitou na obrázek (v procentech)Určuje poměr stran stopyUrčuje velikost textury (v procentech původního souboru)Odraz:KouliNávrhář koulí_Návrhář koulí...KulovýÚhe_l hrotu (-1: náhodný):SpiderHustot_a hrotů:Tloušťka hrotů:VírPočet otočení spirályPoloměr tečky:SkvrnyRozprostřeníMíra rozprostřeníRozprostírám...Exp. _síly:StandardníStandardní (R,G,B)Počet bodů hvězdyPočáteční _index:Počáteční úhel:Počáteční posun:StartPage selhaloKrokVelikost kroku:Zastavit, jsou-li rozdíly pixelů menší než tato hodnotaRoztaženíRoztáhnout _HSVStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) selhalo, chyba = %d, y = %d_Hustota tahu:SilnéStyl_SuperNova...Poddělení:Podvzorkování:Podkroky:SuperNovaSuperNova: Barevná pipetaVír ve sm. hod. r_uč.Prohodit tyto dvě křivkyVírPřepnout do režimu "z hnízda" s posledním hnízdemPřepnout proti směru hodinových ručičekPřepnout po směru hodinových ručičekSymbolTIFF kanálObrázek TIFFTWAIN (výpis)...TWAIN (číst)...Dlažd_icovatelný_Sytost dlaždice:Vel_ikost dlaždice:P_růhledné pozadí_Turbulence:_TurbulentníVolby tvorby tabulkyVolby tabulkyObrázek TarGACílTe_lnetPomocnýPomocná proceduraVyhlazování textuTexturaVlastnosti texturyTransformace texturyTextura:TexturyDěkujeme, že jste si vybrali GIMPFormát GIF podporuje komentáře jen v sedmibitovém kódování ASCII. Komentář nebyl uložen.Soubory nápovědy GIMPu nejsou nainstalovány.GIMPresionistaImplicitní nastavení GimpresionistySoubor PNG určuje posunutí, které způsobilo, že vrstva je umístěna mimo obrázek.Formát TIFF podporuje komentáře jen v sedmibitovém kódování ASCII. Komentář nebyl uložen.Míra vyplňování buněk.Míra rozestupu buněk.Síla zvýraznění hran každého kusuRozsah úhlů první vytvářené stopyBude zvolena velikost stopy nejlépe odpovídající původnímu obrázkuBarvy jsou bílá a černáVýchozí komentář je omezen na %d znaků.Hloubka vrženého stínu, tj. jak daleko od objektu budouBude zvolen směr nejlépe odpovídající původnímu obrázkuVzdálenost od středu obrázku určí směr tahuVzdálenost od středu obrázku určí velikost tahuPrvní řada obrázkuVýška každé buňky tabulky. Smí být číslo nebo procento.Odstín oblasti určí směr tahuOdstín oblasti určí velikost tahuObrázek, který se pokoušíte zapsat jako GIF obsahuje vrstvy, které přesahují přes aktuální hranice obrázku. Lze se obávat, že to není ve formátu GIF povolené. @@ -513,13 +518,13 @@ velikost obrázkuPoužít _jednobajtové run-length kódováníPoužít průhledné pozadí; Pouze kreslené tahy budou viditelnéPoužít průměrné hodnotyPoužití funkce kosinus pro tuto barevnou komponentuPoužít cyklický rozsahPoužití lineárního mapování namísto trigonometrické funkce pro tento barevný kanálUžití spojitého vyhlazení zabrání "pruhování" výsledkuPoužít spojité vyhlazeníPoužít mapu zvětšeníPoužívat restartovací značkyPoužít obrácené hodnotyPoužití funkce sinus pro tuto barevnou komponentuPoužít podbarvyPoužít barvu pozadíPoužít barvu obrázkuPoužít barvu popředíJ_asJasInverze hodnoty...Rozšíření hodnotyRozšiřuji hodnotu...Změny jasuJas:Van Gogh (LIC)Van Gogh (LIC)...Úhel _vektoru:_Délka vektoru:Vektor zvětšení:VektorySvis_lá základna:SvisleSvislá barvaSvisleVelmi tmavá_Video...VideoVzorek videaVideo/RGB...Zobrazit zdrojRežim Voronoi bere v úvahu pouze vliv bodu nejbližšího vektor mvRežim Voronoi znamená, že vliv bude mít pouze vektor bodu nejbližšíVí_rVír_2Vír_3WAI_SSoubor WMF neurčuje velikost!_Vír a zaškrcení..._Zdrojovým obrázkemZapsat z_vlášť soubor maskyVarováníVarování: Obrázek, který načítáte, má 16 bitů na kanál. GIMP umí zpracovat jen 8 bitů, takže jej převede. Při tomto převodu se ztratí informace.Varování: -Průhledná barva v zapisovaném souboru možná nebude správně v prohlížečích, které nepodporují průhlednost.Varování: '%s' je soubor parametrů pro novější CML badatel, než jsem já.Varování: '%s' je soubor ve starém formátu.Varování: zdroj i cíl je tentýž kanál.Varování: nepodporovaný režim vrstvy %d uložen do XJTVarování: nepodporovaný typ cesty %d uložen do XJTVarování: nepodporovaný druh jednotek %d uložen do XJTOhnutíOhýbám se políčko č. %d...Ohýbám...Typ vlnVlnyVlním...SlabéNení určen WWW prohlížeč. +Průhledná barva v zapisovaném souboru možná nebude správně v prohlížečích, které nepodporují průhlednost.Varování: '%s' je soubor parametrů pro novější CML badatel, než jsem já.Varování: '%s' je soubor ve starém formátu.Varování: zdroj i cíl je tentýž kanál.Varování: nepodporovaný režim vrstvy %d uložen do XJTVarování: nepodporovaný typ cesty %d uložen do XJTVarování: nepodporovaný druh jednotek %d uložen do XJTOhnutíDeformuji políčko č. %d...Deformuji...Typ vlnVlnyVlním...SlabéNení určen WWW prohlížeč. Určete prosím WWW prohlížeč pomocí dialogu Předvolby.Při zapnutí bude velikost obrázku zvolena tak, aby vyplnila dané rozměry beze změny poměru stran.Vír a zaškrceníVířím a zaškrcuji...Bílá_Vítr...Šířka (pixelů):Šířka papíru, na který chcete tisknoutŠířka:VítrOknaObrázek Windows BMPIkony Windows nemohou být vyšší ani širší než 255 pixelů.S mocninou gradientu (0,1)S p a náhodným (0,1)S náhodnou mocninou (0,1)S náhodnou mocninou (0,10)Dřevo_Pracovat na kopiiOhýbáníDošlo k chybě při zápisuObrázek X BitMapObrázek X PixMapZvětšení X (velikost)X window dumpX:Volby XBMXJT soubor obsahuje neznámý režim vrstvy %dXJT soubor obsahuje neznámý typ cesty %dXJT soubor obsahuje neznámý druh jednotek %dXMAX:XMIN:Soubor XPM není platnýSoubor XWD %s má formát %d, hloubku %d a %d bitů na pixel. To momentálně není podporováno.Poloha XY:X_1:X_2:Zvětšení Y (velikost)Y:YMAX:YMIN:Y_1:Y_2:ŽlutáŽlutá:Žlutá_KHodláte vytvořit obrovský soubor HTML, který zřejmě zhroutí váš prohlížeč.Nelze rotovat celý obrázek, existuje-li plovoucí výběr.Nelze rotovat celý obrázek, existuje-li výběr.Nelze zapsat masku kurzoru pro obrázek, -který nemá alfa kanál.Zvětšení Z (velikost)Z:Obrázek ZSoft PCXHorlivěOřezávám™...PřiblíženíPřiblížitPřiblížit (obrázek bude větší)OddálitVzdálit (obrázek bude menší)Míra zvětšení:Zvětšit na_3×3Zkr_atka:_O obrázkové mapě_Adaptivní_AditivníR_ozšířené_Pokročilá nastavení_Algoritmus:_Alfa:Práh _alfy:_Alfou řízený význam_Alfa:_Míra:_Amplituda:Ú_hel:_Animovat_Vyhlazování_Použít plátno..._Automaticky oříznout obrázek_Automaticky oříznout vrstvu_Automatický převod_Azimut:Poza_díBarva po_zadí_Základní URL:Šířka _zkosení:_BilineárníČ_ernáÚro_veň černé:Č_ernáníVý_buch_Mísení_Pruhy..._Modrá:_Modrá:_RozostřitPoloměr ro_zostření:_Průměr okraje..._Obvod:Dolů _doleva_Dole:_Hranol_Jasný:_Jas_Jas:_StopaVelikost vě_dra:Ma_pa vyvýšeníMa_pa vyvýšení..._Mapa vyvýšení:Mapa _vyvýšení_Šachovnice...Vy_mazat_Vylepšit barvy_Zaměnit barvy..._Kolorovat..._Obsah_Konvoluční matice..._Kopírovat_Kubismus..._Zkřivit..._Dekomponovat..._DeflačníPoloměr _deformace:_Odstranit prokladání..._Prodleva mezi políčky, není-li určena:_Sloučit hloubku..._Hloubka:_Derivovat_Popis:_Detail:_Difrakční obrazce...Čísli_ce:_Dilatovat_Vytlačit...Vy_tlačení:_Zkreslený_Dělení:_Body_Dynamické:_Vylepšení hran_Hrana...Ú_pravy_Efektový obrázek:Zdv_ih:R_eliéfR_eliéf..._Zapouzdřený PostScript (eps)_Celý obrázekMapování prostř_edí_Explicitní dlaždice_Exponent:_Osvětlení popředí/pozadí_Faktor:_Tovární nastavení_Soubor_Název souboru:_Film..._Sada filtrů...Délka _filtru:_Hledat pozadí_Upravit výšku podle obrázků_Plamen..._Efekt odlesku..._Písmo:_Vnutit_Vnutit dlaždicování?P_opředí a pozadí_Barva popředí_Popředí do špiček_Formát:Badatel _fraktálů..._Fraktální trasování..._Fraktály_Volná_Ftp server_Záře z přechodu..._Komentář GIF:_GIMPresionista..._Gama:_Gaussovo rozostření...Všeobe_cné_Generovat úplný dokument HTML_Gfig..._Skleněné dlaždicování..._Zářící:_Gopher_Přechod_Mapování z přechoduŠe_dá:_Zelená:_Zelená:Š_edá_MřížkaVelikost _mřížky:_Mřížka...Ná_růst_GilotinaBarevný model _HSL_Výška_Výška:Nápo_vědaŠestiú_helníky_Skrytá_Vysoká_Podržet nejvyšší kanály_Zadržení:Posun _děr:_VodorovněV_odorovný styl:_VodorovněV_odorovný rozestup:_Videosnímek..._OdstínRotace _odstínu:_Výpadky..._ID:_IFS Fractal..._IIR_IdeálníPředpona _identifikátoru:_Ignorovat_Ignorovat spodní vrstvu, i když je viditelná_Iluze..._Obrázková mapa..._PalecNezáv_islé RGBVstupní _SPI:Vlož_it_Intenzita:_Prokládat_Prokládání (Adam7)_Invertovat_JPEG_JavaScript_Skládačka...Zachovat nastavené NCSA _kružnice_Zachovat poměr stranPonechat původní _okolíZachovat znamén_ko výsledku (pouze jeden směr)_Odstranit_LZW_LaplaceůvŠiroké ko_lísáníDo_levaZ_leva začíná na:_Refrakční index čoček:Svět_lo_Světelné efekty..._Omezit šířku řádku_LineárníČár_y_Odkaz_Načíst implicitní nastaveníSpřáhnout kaná_ly_Opakovat donekonečna_Nízká_Dolní_MIME_Poslat obrázek..._Odstranit přechody_Zprůhlednit okolí_Mapovat pozpátku_Druh mapy:_MapováníPřípona souboru _masky:Poloměr _masky:Velikost _masky:_Materiál_Max (%):_Maximální hloubka:_Nejvyšší RGB..._Max. delta:_Bludiště..._Kovový_Střední hodnota do špiček_Střední tóny_MilimetrMi_nimální hodnota:_Zrcadlit_Různé operace_Upravit kanál odstínu_Upravit kanál červené_Monochromatické_Mozaika..._Rozmáznutí pohybem...P_osun_NL Filtr...Přiroze_ná barva_Neon...Počet _napříč:St_upeň šumu:_Nic_Normální_NormalizovatVýška _číslic:Počet segme_ntů:_Krytí:_Optimalizovat (rozdíly)_Pakování bitů_Rozčeření stránky..._Typ palety:_Papírová dlaždice..._Parametry_Procenta černé:_Perioda:_Fáze:_FOotokopie..._Vybrat..._Míra zaškrcení:_Tam a zpětNerovný _povrchPixelizovat..._Plazma..._Přehrávání...Prohlížeč zásuvných _modulů_Množné číslo:_Leštěný:_Polygon_PostScript úroveň 2Jméno s _předponou:Zachovat _jas_Předvolby_Náhled_Náhled jednou_Náhled!Vy_tisknoutVy_tisknout..._Výzva k informaci o oblastiPoměr _rozšíření:_Psychoplocha_Qbist..._Kvalita:_RGBBarevný model _RGB_RLEKomprese _RLE_RLE kódované_Radiální_Poloměr 1:_Poloměr:Náh_odný odstín:_Hnízdo náhodných čísel:Ná_hodnost_PaprskyPří_jemce:O_bdélníkČe_rvená:Z_rušit vrácení %sZ_rcadlícíOdst_ranit_Odstranit pozadíVyob_razeníVyžaduje _implicitní URL_Uchovat dlaždicovatelnostDop_rava_Pravý okraj_Rozvlnit..._Rotovaný_Vzor vybarvení..._Sytost:_Sytost:_Uložit komentář do souboru_Uložit implicitní nastavení_Dělení měřítka:_Měřítko:_Roztřepení RGB..._Snímek obrazovky..._Hloubka hledání:_Hledat:_Druhá záře_Selektivní Gaussovo rozostření..._Částečně zploštit_Odesílatel:_Nastavit okolí na barvu pozadíNa_stavit index okolí na 0Na_staveníZ_tmavit pod rozčeřením_Doostřit...O_strost:_Posunout..._Lesknoucí se_Zobrazit kurzor_Sinus...Veliko_stVeliko_st:_Roztřepení..._Malé dlaždice...Š_mouha_Vyhlazování:_Chytání k mřížce povoleno_Sobel..._Pevný šum..._Jiskřit...Rychlo_st:Délka h_rotů:Papr_sky:_Rastrovací funkce:Čtver_covýČtver_ceKolí_sáníPevno_st:_Roztáhnout kontrast_Symbol:_TWAIN...Název/ID cílového rámce: (voli_telné - použito pouze pro RÁMCE)_Tloušťka:_Práh:_Práh alfy...Prá_h:_Opakovat mapu vyvýšení_Velikost dlaždice:_Dlaždicovat..._Titul:Nás_troje_Shora začíná na:Nahor_u dopravaNa_hoře:_Průhledné_URL se aktivuje poklepem na tuto oblast: (povinné)_Deoptimalizovat_Zpět_Vrátit %s_RovnoměrnáEditor _jednotek_Rozostřit masku...Akt_ualizovat_Horní_Horní okraj_Horní práh:_Použít typy GLib (guint8*)Použít barvu _pozadí_Používat spřažení buněkPo_užít dvojitou velikost obsluhy nabírání_Použít algoritmus intenzityPo_užívat (neviditelnou) spodní vrstvu jako základnu_UU-kódování_Jas:_Inverze hodnoty_Rozšířit hodnotu..._Jas:_Van Gogh (LIC)..._Variace:S_vislý rozestup:_SvisleS_vislý styl:_Svisle:_Zobrazit_Voronoi_Ohnutí_Ohnout...Výška hladin_y:_Vlnová délka:_Vlny..._Webový serverÚhel _víru:_BíláÚroveň _bílé:Ši_roké pruhyŠíř_kaŠíř_ka:_VítrBílý_m šumemO_hýbání_Zapsat hodnoty řídicího boduZvětšení _X:Vytlačení _X:Posun _X:Poměr _X:Velikost _X:Bitmapa ve formátu _X10_X:Zvětšení _Y:Vytlačení _Y:Posun _Y:Poměr _Y:Velikost _Y:_Y:Žlu_tá_Z:_Horlivé ořezávání..._PřiblíženíPři_blížení:Byl vytvořen ,Implicitní'._Jedno oknopo uplynutíalfaautostretch_hsv: cmap bylo NULL! Končím... +který nemá alfa kanál.Zvětšení Z (velikost)Z:Obrázek ZSoft PCXHorlivěOřezávám™...PřiblíženíPřiblížitPřiblížit (obrázek bude větší)OddálitVzdálit (obrázek bude menší)Míra zvětšení:Zvětšit na_3×3Zkr_atka:_O obrázkové mapě_Adaptivní_AditivníR_ozšířené_Pokročilá nastavení_Algoritmus:_Alfa:Práh _alfy:_Alfou řízený význam_Alfa:_Míra:_Amplituda:Ú_hel:_Animovat_Vyhlazování_Použít plátno..._Automaticky oříznout obrázek_Automaticky oříznout vrstvu_Automatický převod_Azimut:Poza_díBarva po_zadí_Základní URL:Šířka _zkosení:_BilineárníČ_ernáÚro_veň černé:Č_ernáníVý_buch_Mísení_Pruhy..._Modrá:_Modrá:_RozostřitPoloměr ro_zostření:_Průměr okraje..._Obvod:Dolů _doleva_Dole:_Hranol_Jasný:_Jas_Jas:_StopaVelikost vě_dra:Ma_pa vyvýšeníMa_pa vyvýšení..._Mapa vyvýšení:Mapa _vyvýšení_Šachovnice...Vy_mazat_Vylepšit barvy_Zaměnit barvy..._Kolorovat..._Obsah_Konvoluční matice..._Kopírovat_Kubismus..._Zkřivit..._Dekomponovat..._DeflačníPoloměr _deformace:_Odstranit prokladání..._Prodleva mezi políčky, není-li určena:_Sloučit hloubku..._Hloubka:_Derivovat_Popis:_Detail:_Difrakční obrazce...Čísli_ce:_Dilatovat_Vytlačit...Vy_tlačení:_Zkreslený_Dělení:_Body_Dynamické:_Vylepšení hran_Hrana...Ú_pravy_Efektový obrázek:Zdv_ih:R_eliéfR_eliéf..._Zapouzdřený PostScript (eps)_Celý obrázekMapování prostř_edí_Explicitní dlaždice_Exponent:_Osvětlení popředí/pozadí_Faktor:_Tovární nastavení_Soubor_Název souboru:_Film..._Sada filtrů...Délka _filtru:_Hledat pozadí_Upravit výšku podle obrázků_Plamen..._Efekt odlesku..._Písmo:_Vnutit_Vnutit dlaždicování?P_opředí a pozadí_Barva popředí_Popředí do špiček_Formát:Badatel _fraktálů..._Fraktální trasování..._Fraktály_Volná_Ftp server_Záře z přechodu..._Komentář GIF:_GIMPresionista..._Gama:_Gaussovo rozostření...Všeobe_cné_Generovat úplný dokument HTML_Gfig..._Skleněné dlaždicování..._Poloměr záře:_Zářící:_Gopher_Přechod_Mapování z přechoduŠe_dá:_Zelená:_Zelená:Š_edá_MřížkaVelikost _mřížky:_Mřížka...Ná_růst_GilotinaBarevný model _HSL_Výška_Výška:Nápo_vědaŠestiú_helníky_Skrytá_Vysoká_Podržet nejvyšší kanály_Zadržení:Posun _děr:_VodorovněV_odorovný styl:_VodorovněV_odorovný rozestup:_Videosnímek..._OdstínRotace _odstínu:_Výpadky..._ID:_IFS Fractal..._IIRi_Deformace..._IdeálníPředpona _identifikátoru:_Ignorovat_Ignorovat spodní vrstvu, i když je viditelná_Iluze..._Obrázková mapa..._PalecNezáv_islé RGBVstupní _SPI:Vlož_it_Intenzita:_Prokládat_Prokládání (Adam7)_Invertovat_JPEG_JavaScript_Skládačka...Zachovat nastavené NCSA _kružnice_Zachovat poměr stranPonechat původní _okolíZachovat znamén_ko výsledku (pouze jeden směr)_Odstranit_LZW_LaplaceůvŠiroké ko_lísáníDo_levaZ_leva začíná na:_Refrakční index čoček:Svět_lo_Světelné efekty..._Omezit šířku řádku_LineárníČár_y_Odkaz_Načíst implicitní nastaveníSpřáhnout kaná_ly_Opakovat donekonečna_Nízká_Dolní_MIME_Poslat obrázek..._Odstranit přechody_Zprůhlednit okolí_Mapovat pozpátku_Druh mapy:_MapováníPřípona souboru _masky:Poloměr _masky:Velikost _masky:_Materiál_Max (%):_Maximální hloubka:_Nejvyšší RGB..._Max. delta:_Bludiště..._Kovový_Střední hodnota do špiček_Střední tóny_MilimetrMi_nimální hodnota:_Zrcadlit_Různé operace_Upravit kanál odstínu_Upravit kanál červené_Monochromatické_Mozaika..._Rozmáznutí pohybem...P_osun_NL Filtr...Přiroze_ná barva_Neon...Počet _napříč:St_upeň šumu:_Nic_Normální_NormalizovatVýška _číslic:Počet segme_ntů:_Krytí:_Optimalizovat (rozdíly)_Pakování bitů_Rozčeření stránky..._Typ palety:_Papírová dlaždice..._Parametry_Procenta černé:_Perioda:_Fáze:_FOotokopie..._Vybrat..._Míra zaškrcení:_Tam a zpětNerovný _povrch_Pixelizovat..._Plazma..._Přehrávání...Prohlížeč zásuvných _modulů_Množné číslo:_Leštěný:_Polygon_PostScript úroveň 2Jméno s _předponou:Zachovat _jas_Předvolby_Náhled_Náhled jednou_Náhled!Vy_tisknoutVy_tisknout..._Výzva k informaci o oblastiPoměr _rozšíření:_Psychoplocha_Qbist..._Kvalita:_RGBBarevný model _RGB_RLEKomprese _RLE_RLE kódované_Radiální_Poloměr 1:_Poloměr:Náh_odný odstín:_Hnízdo náhodných čísel:Ná_hodnost_PaprskyPří_jemce:O_bdélníkČe_rvená:Z_rušit vrácení %sZ_rcadlícíOdst_ranit_Odstranit pozadíVyob_razeníVyžaduje _implicitní URL_Uchovat dlaždicovatelnost_Retinex...Dop_rava_Pravý okraj_Rozvlnit..._Rotovaný_Vzor vybarvení..._Sytost:_Sytost:_Uložit komentář do souboru_Uložit implicitní nastavení_Dělení měřítka:_Měřítko:_Roztřepení RGB..._Snímek obrazovky..._Hloubka hledání:_Hledat:_Druhá záře_Selektivní Gaussovo rozostření..._Částečně zploštit_Odesílatel:_Nastavit okolí na barvu pozadíNa_stavit index okolí na 0Na_staveníZ_tmavit pod rozčeřením_Doostřit...O_strost:_Posunout..._Lesknoucí se_Zobrazit kurzor_Sinus...Veliko_stVeliko_st:_Roztřepení..._Malé dlaždice...Š_mouha_Vyhlazování:_Chytání k mřížce povoleno_Sobel..._Jemná záře..._Pevný šum..._Jiskřit...Rychlo_st:Délka h_rotů:Papr_sky:_Rastrovací funkce:Čtver_covýČtver_ceKolí_sáníPevno_st:_Roztáhnout kontrast_Vykreslit_Symbol:_TWAIN...Název/ID cílového rámce: (voli_telné - použito pouze pro RÁMCE)_Tloušťka:_Práh:_Práh alfy...Prá_h:_Opakovat mapu vyvýšení_Velikost dlaždice:_Dlaždicovat..._Titul:Nás_troje_Shora začíná na:Nahor_u dopravaNa_hoře:_Průhledné_URL se aktivuje poklepem na tuto oblast: (povinné)_Deoptimalizovat_Zpět_Vrátit %s_RovnoměrnáEditor _jednotek_Rozostřit masku...Akt_ualizovat_Horní_Horní okraj_Horní práh:_Použít typy GLib (guint8*)Použít barvu _pozadí_Používat spřažení buněkPo_užít dvojitou velikost obsluhy nabírání_Použít algoritmus intenzityPo_užívat (neviditelnou) spodní vrstvu jako základnu_UU-kódování_Jas:_Inverze hodnoty_Rozšířit hodnotu..._Jas:_Van Gogh (LIC)..._Variace:S_vislý rozestup:_SvisleS_vislý styl:_Svisle:_Zobrazit_Voronoi_Ohnutí_Ohnout...Výška hladin_y:_Vlnová délka:_Vlny..._Webový serverÚhel _víru:_BíláÚroveň _bílé:Ši_roké pruhyŠíř_kaŠíř_ka:_VítrBílý_m šumemO_hýbání_Přetočit dokola_Zapsat hodnoty řídicího boduZvětšení _X:Vytlačení _X:Posun _X:Poměr _X:Velikost _X:Bitmapa ve formátu _X10_X:Zvětšení _Y:Vytlačení _Y:Posun _Y:Poměr _Y:Velikost _Y:_Y:Žlu_tá_Z:_Horlivé ořezávání..._PřiblíženíPři_blížení:Byl vytvořen ,Implicitní'._Jedno oknopo uplynutíalfaautostretch_hsv: cmap bylo NULL! Končím... černámodrámodrost_cb470modrost_cb470fmodrost_cb709modrost_cb709farchiv bzipc_astretch: cmap bylo NULL! Končím... cmazurováazurová_ke-_mailzelenáarchiv gzipodstínneplatně formátovaný soubor P-záře: %s k(1-x^p)k(1-x^p) po krocíchkx^pkx^p po krocíchk{x(1-x)}^pk{x(1-x)}^p po krocíchluma_y470luma_y470fluma_y709luma_y709fpurpurovápurpurová_kmilisekundy%s nebylo nalezeno v seznamu P-zářípixelypixely _odshorapixely zl_evapixely/%ačervenáčervenost_cr470červenost_cr470fčervenost_cr709červenost_cr709fsytostsin^p po krocíchFunkce založená na sin^pnějaký druh chyby přípony souboru nebo její nepřítomnost_Celou obrazovkudo alfyjasx (pixelů)y (pixelů)žlutážlutá_k \ No newline at end of file diff -uraN gimp-2.2.6/po-plug-ins/cs.po gimp-2.2.7/po-plug-ins/cs.po --- gimp-2.2.6/po-plug-ins/cs.po 2005-04-10 02:11:44.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/cs.po 2005-05-08 23:42:04.000000000 +0200 @@ -1,18 +1,19 @@ # Czech translation of GIMP plugins -# Copyright (C) 2001,2003 Free Software Foundation, Inc. +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # Copyright (C) 2003, 2004, 2005 Miloslav Trmac -# Stanislav Brabec , 1999-2001 -# Michal Bukovjan , 2002,2003. +# Stanislav Brabec , 1999-2001. +# Michal Bukovjan , 2002, 2003. # Miloslav Trmac , 2003, 2004, 2005. +# Jakub Friedl , 2005. # msgid "" msgstr "" -"Project-Id-Version: gimp-plug-ins VERSION\n" +"Project-Id-Version: cs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" -"PO-Revision-Date: 2005-03-22 09:31+0100\n" -"Last-Translator: Miloslav Trmac \n" -"Language-Team: Czech \n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" +"PO-Revision-Date: 2005-04-27 14:05+0200\n" +"Last-Translator: Jakub Friedl \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -286,8 +287,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Nic" @@ -389,7 +390,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1060,7 +1061,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotace" @@ -1256,7 +1257,7 @@ #: ../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:833 +#: ../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 @@ -1287,7 +1288,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -1643,7 +1644,7 @@ #: ../plug-ins/common/CML_explorer.c:470 msgid "CML _Explorer..." -msgstr "CML badatel: provádím vývoj..." +msgstr "CML badatel..." #: ../plug-ins/common/CML_explorer.c:760 msgid "CML_explorer: evoluting..." @@ -1772,9 +1773,8 @@ msgstr "Použít cyklický rozsah" #: ../plug-ins/common/CML_explorer.c:1602 -#, fuzzy msgid "Mod. rate:" -msgstr "Mod. přeběhu:" +msgstr "Míra modifikace:" #: ../plug-ins/common/CML_explorer.c:1611 msgid "Env. sensitivity:" @@ -2215,7 +2215,7 @@ msgid "_Elevation:" msgstr "Zdv_ih:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "Posun _X:" @@ -2226,7 +2226,7 @@ msgstr "" "Posun může být upraven přetažením náhledu pomocí prostředního tlačítka myši." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "Posun _Y:" @@ -2638,11 +2638,11 @@ msgid "Re_d" msgstr "Čer_vená" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Zelená:" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Modrá:" @@ -3199,7 +3199,7 @@ msgstr "Odstranění pruhů" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3296,20 +3296,18 @@ msgstr "Š_mouha" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "Č_erná" #: ../plug-ins/common/dog.c:139 -#, fuzzy msgid "Difference of Gaussians..." -msgstr "Selektivní Gaussovo rozostření..." +msgstr "Rozdíl Gaussových rozostření..." #: ../plug-ins/common/dog.c:227 ../plug-ins/common/dog.c:274 -#, fuzzy msgid "DoG Edge Detect" -msgstr "Detekce hran" +msgstr "Detekce hran pomocí Gaussových rozostření" #: ../plug-ins/common/dog.c:295 msgid "Smoothing parameters" @@ -3412,8 +3410,8 @@ msgstr "Rytina" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4427,18 +4425,17 @@ msgstr "Režim _2" #: ../plug-ins/common/iwarp.c:254 -#, fuzzy msgid "_IWarp..." -msgstr "Ohýbám..." +msgstr "i_Deformace..." #: ../plug-ins/common/iwarp.c:688 msgid "Warping..." -msgstr "Ohýbám..." +msgstr "Deformuji..." #: ../plug-ins/common/iwarp.c:793 ../plug-ins/common/iwarp.c:805 #, c-format msgid "Warping Frame No. %d..." -msgstr "Ohýbám se políčko č. %d..." +msgstr "Deformuji políčko č. %d..." #: ../plug-ins/common/iwarp.c:806 msgid "Ping pong" @@ -4523,7 +4520,7 @@ #: ../plug-ins/common/iwarp.c:1151 msgid "IWarp" -msgstr "Interaktivní ohýbání" +msgstr "Interaktivní deformace" #: ../plug-ins/common/jigsaw.c:364 msgid "_Jigsaw..." @@ -4932,7 +4929,7 @@ msgid "Blur Parameters" msgstr "Parametry rozmáznutí" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "Ú_hel:" @@ -5143,122 +5140,122 @@ msgid "_Amount:" msgstr "_Míra:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Kruhový" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Čáry" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamant" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS čtverec (euklidovská tečka)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS diamant" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "Š_edá" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "Čer_vená" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "_Azurová" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "P_urpurová" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "Žlu_tá" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intenzita" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "_Novinový tisk..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Novinový tisk..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "_Rastrovací funkce:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Novinový tisk" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Rozlišení" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "Vstupní _SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "Výstupní _LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "V_elikost buňky:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Obrazovka" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "_Stažení úrovně černé (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separovat do:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntenzita" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "Spřáhnout kaná_ly" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "_Tovární nastavení" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Vyhlazování" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "Pře_vzorkování:" @@ -5420,9 +5417,8 @@ msgstr "_Max (%):" #: ../plug-ins/common/papertile.c:343 -#, fuzzy msgid "_Wrap around" -msgstr "O_balit okolí" +msgstr "_Přetočit dokola" #: ../plug-ins/common/papertile.c:353 msgid "Background Type" @@ -5522,7 +5518,7 @@ #: ../plug-ins/common/pixelize.c:173 msgid "_Pixelize..." -msgstr "Pixelizovat..." +msgstr "_Pixelizovat..." #: ../plug-ins/common/pixelize.c:275 msgid "Pixelizing..." @@ -5538,7 +5534,7 @@ #: ../plug-ins/common/pixelize.c:342 msgid "Pixel _Height:" -msgstr "Výška _dlaždice:" +msgstr "Výška _pixelu:" #: ../plug-ins/common/plasma.c:185 msgid "_Plasma..." @@ -5581,7 +5577,7 @@ "The PNG file specifies an offset that caused the layer to be positioned " "outside the image." msgstr "" -"Soubor PNG určuje posunutí, které způsobilo, že vrstva je umístěna mimo " +"Soubor PNG určuje posunutí, které způsobilo, že vrstva je umístěna mimo " "obrázek." #: ../plug-ins/common/png.c:1163 @@ -5783,64 +5779,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "PostScript zápis neumí zpracovat obrázky s alfa kanály" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Chyba při spouštění ghostscriptu (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Chyba při spouštění ghostscriptu: %s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Došlo k chybě při zápisu" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Čtení PostScriptu" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Vyobrazení" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Rozlišení:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Stránky:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Stránky, které načíst (např. 1-4 nebo 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Zkusit ohraničení (Bounding Box)" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Barevnost" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "Č/B" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Šedá" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5848,40 +5844,40 @@ msgid "Color" msgstr "Barva" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatické" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Vyhlazování textu" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Slabé" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Silné" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Vyhlazování grafiky" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Zapsat jako PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Velikost obrázku" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Zachovat poměr stran" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5890,36 +5886,36 @@ "beze změny poměru stran." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Jednotka" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Palec" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Milimetr" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Výstup" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript úroveň 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Zapouzdřený PostScript (eps)" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "_Náhled" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "_Velikost náhledu:" @@ -6087,23 +6083,20 @@ msgstr "Typ indexované palety" #: ../plug-ins/common/retinex.c:168 -#, fuzzy msgid "_Retinex..." -msgstr "_Rozvlnit..." +msgstr "_Retinex..." #: ../plug-ins/common/retinex.c:251 -#, fuzzy msgid "Retinex..." -msgstr "Rotuji..." +msgstr "Retinex..." #: ../plug-ins/common/retinex.c:253 msgid "Retinex (4/4): updated..." -msgstr "" +msgstr "Retinex (4/4): aktualizace..." #: ../plug-ins/common/retinex.c:290 -#, fuzzy msgid "Retinex Image Enhancement" -msgstr "_Vylepšení hran" +msgstr "Vylepšení metodou retinex" #: ../plug-ins/common/retinex.c:311 msgid "Level" @@ -6134,9 +6127,8 @@ msgstr "_Dynamické:" #: ../plug-ins/common/retinex.c:648 -#, fuzzy msgid "Retinex: Filtering..." -msgstr "Rozmázávám pohybem..." +msgstr "Retinex: filtrace..." #: ../plug-ins/common/ripple.c:138 msgid "_Ripple..." @@ -6619,18 +6611,16 @@ msgstr "Sobelova detekce hran..." #: ../plug-ins/common/softglow.c:138 -#, fuzzy msgid "_Softglow..." -msgstr "Posunuji..." +msgstr "_Jemná záře..." #: ../plug-ins/common/softglow.c:629 msgid "Softglow" -msgstr "" +msgstr "Jemná záře" #: ../plug-ins/common/softglow.c:659 -#, fuzzy msgid "_Glow radius:" -msgstr "Poloměr ro_zostření:" +msgstr "_Poloměr záře:" #: ../plug-ins/common/sparkle.c:186 msgid "_Sparkle..." @@ -6770,18 +6760,16 @@ msgstr "Šachovnice" #: ../plug-ins/common/spheredesigner.c:282 -#, fuzzy msgid "Marble" -msgstr "Jiskření" +msgstr "Mramor" #: ../plug-ins/common/spheredesigner.c:283 msgid "Lizard" msgstr "Ještěrka" #: ../plug-ins/common/spheredesigner.c:284 -#, fuzzy msgid "Phong" -msgstr "Tam a zpět" +msgstr "Phong" #: ../plug-ins/common/spheredesigner.c:285 msgid "Noise" @@ -6797,7 +6785,7 @@ #: ../plug-ins/common/spheredesigner.c:288 msgid "Spots" -msgstr "Tečky" +msgstr "Skvrny" #: ../plug-ins/common/spheredesigner.c:1741 #: ../plug-ins/common/spheredesigner.c:2615 @@ -7146,16 +7134,16 @@ msgid "TIFF image" msgstr "Obrázek TIFF" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Strana %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF kanál" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7166,7 +7154,7 @@ "Obrázek, který načítáte, má 16 bitů na kanál. GIMP umí zpracovat jen 8 bitů, " "takže jej převede. Při tomto převodu se ztratí informace." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7174,40 +7162,40 @@ "Formát TIFF podporuje komentáře jen v sedmibitovém\n" "kódování ASCII. Komentář nebyl uložen." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Zapsat jako TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Komprese" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Nic" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Pakování bitů" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Deflační" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Uložit _hodnoty barvy průhledných pixelů" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Komentář:" @@ -8494,9 +8482,8 @@ msgstr "Možnosti nástroje" #: ../plug-ins/gfig/gfig-dialog.c:358 -#, fuzzy msgid "_Stroke" -msgstr "Silné" +msgstr "_Vykreslit" #. Fill frame on right side #: ../plug-ins/gfig/gfig-dialog.c:405 @@ -11700,86 +11687,3 @@ #, c-format msgid "Error: XJT property file '%s' is empty." msgstr "Chyba: Soubor XJT vlastností '%s' je prázdný." - -#~ msgid "Before and After" -#~ msgstr "Předtím a potom" - -#~ msgid "Gfig layer %d" -#~ msgstr "Vrstva Gfig %d" - -#~ msgid "Opening %s" -#~ msgstr "Otevírám %s" - -#~ msgid "See %s" -#~ msgstr "Viz %s" - -#~ msgid "Paint" -#~ msgstr "Kreslit" - -#~ msgid "All" -#~ msgstr "Vše" - -#~ msgid "Clockwise" -#~ msgstr "Ve směru hodinových ručiček" - -#~ msgid "Anti-Clockwise" -#~ msgstr "Proti směru hodinových ručiček" - -#~ msgid "Loading %s:" -#~ msgstr "Načítám %s:" - -#~ msgid "Saving %s:" -#~ msgstr "Ukládám %s:" - -#~ msgid "Color_Enhance: cmap was NULL! Quitting...\n" -#~ msgstr "Color_Enhance: cmap bylo NULL! Končím...\n" - -#~ msgid "TIFF images" -#~ msgstr "Obrázky TIFF" - -#~ msgid "Rotate/scale" -#~ msgstr "Rotovat/zvětšit" - -#~ msgid "/Move" -#~ msgstr "/Posunout" - -#~ msgid "/Stretch" -#~ msgstr "/Roztáhnout" - -#~ msgid "/New" -#~ msgstr "/Nový" - -#~ msgid "/Delete" -#~ msgstr "/Odstranit" - -#~ msgid "/Undo" -#~ msgstr "/Zpět" - -#~ msgid "/Redo" -#~ msgstr "/Znovu" - -#~ msgid "/Select All" -#~ msgstr "/Vybrat vše" - -#~ msgid "Despeckling..." -#~ msgstr "Čistím..." - -#~ msgid "Bezier Settings" -#~ msgstr "Beziérovo nastavení" - -#~ msgid "Number of Sides/Points/Turns:" -#~ msgstr "Počet stran/bodů/otáček:" - -#~ msgid "Could not locate help document" -#~ msgstr "Nemohu nalézt dokument nápovědy" - -#~ msgid "" -#~ "The requested document could not be found in your GIMP help path as shown " -#~ "above. This means that the topic has not yet been written or your " -#~ "installation is not complete. Ensure that your installation is complete " -#~ "before reporting this error as a bug." -#~ msgstr "" -#~ "Požadovaný dokument nelze nalézt na cestě s nápovědou pro GIMP uvedené " -#~ "výše. To znamená, že toto téma nebylo ještě sepsáno, nebo vaše instalace " -#~ "není kompletní. Před nahlášením této chyby se ujistěte, že je vaše " -#~ "instalace kompletní." diff -uraN gimp-2.2.6/po-plug-ins/da.gmo gimp-2.2.7/po-plug-ins/da.gmo --- gimp-2.2.6/po-plug-ins/da.gmo 2005-04-10 02:12:00.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/da.gmo 2005-05-08 23:42:21.000000000 +0200 @@ -307,7 +307,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: GIMP plug-ins /gnome-cvs Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-15 22:58+0100 Last-Translator: Ole Laursen Language-Team: Danish diff -uraN gimp-2.2.6/po-plug-ins/da.po gimp-2.2.7/po-plug-ins/da.po --- gimp-2.2.6/po-plug-ins/da.po 2005-04-10 02:11:44.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/da.po 2005-05-08 23:42:04.000000000 +0200 @@ -32,7 +32,7 @@ msgstr "" "Project-Id-Version: GIMP plug-ins /gnome-cvs\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-15 22:58+0100\n" "Last-Translator: Ole Laursen \n" "Language-Team: Danish \n" @@ -310,8 +310,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Ingen" @@ -416,7 +416,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1141,7 +1141,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotation" @@ -1343,7 +1343,7 @@ #: ../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:833 +#: ../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 @@ -1374,7 +1374,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2396,7 +2396,7 @@ msgid "_Elevation:" msgstr "_Forhøjelse:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 #, fuzzy msgid "_X offset:" msgstr "_x-afstand:" @@ -2407,7 +2407,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 #, fuzzy msgid "_Y offset:" msgstr "_y-afstand:" @@ -2838,11 +2838,11 @@ msgid "Re_d" msgstr "R_ød" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Grøn" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Blå" @@ -3437,7 +3437,7 @@ msgstr "Fjern striber" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3545,7 +3545,7 @@ msgstr "Smør _ud" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Sort" @@ -3676,8 +3676,8 @@ msgstr "Indgravering" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5305,7 +5305,7 @@ msgid "Blur Parameters" msgstr "Sløringsparametre" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Vinkel:" @@ -5547,130 +5547,130 @@ msgid "_Amount:" msgstr "_Mængde:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Rund" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Linje" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamant" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "Postscriptkvadrat (euklidisk punkt)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "Postscriptdiamant" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Grå" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "R_ød" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "C_yan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "G_ul" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensitet" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 #, fuzzy msgid "Newsprin_t..." msgstr "Avistrykker..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Avistrykker..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "_Punktfunktion:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Avistryk" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Opløsning" # SPI = samples per inch -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "_Inddataprøver/tm.:" # LPI = lines per inch -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "_Uddatalinjer/tm.:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "Cellestørrelse:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Skærm" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 #, fuzzy msgid "B_lack pullout (%):" msgstr "_Sort udtræk (%)" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separér til:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntensitet" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "_Lås kanaler" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "_Fabriksindstillinger" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Udglatning" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "O_verprøvning:" @@ -6243,65 +6243,65 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Postscript kan ikke håndtere billeder med alfakanaler" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Fejl ved start af Ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "Fejl ved start af Ghostscript (%s)" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 #, fuzzy msgid "Write error occurred" msgstr "Der opstod en skrivefejl" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Indlæs Postscript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Genererer" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Opløsning:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Sider:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Prøv afgrænsningsboks" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Farvelæg" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "S/H" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grå" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6309,43 +6309,43 @@ msgid "Color" msgstr "Farve" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatisk" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "Tekstudjævning" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Svag" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Stærk" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "Grafikudjævning" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Gem som Postscript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Billedstørrelse" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "_Bevar formatforhold" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -6354,37 +6354,37 @@ "ændre størrelsesforholdet." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Enhed" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Tomme" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Millimeter" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Uddata" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 #, fuzzy msgid "_PostScript level 2" msgstr "_Postscript niveau 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Encapsulated Postscript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "_Miniature" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "Miniature_størrelse:" @@ -7707,16 +7707,16 @@ msgid "TIFF image" msgstr "TIFF-kanal" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Side %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF-kanal" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7728,7 +7728,7 @@ "håndtere 8 bit så billedet vil blive konverteret for dig. Noget information " "går tabt på grund af dette." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7736,40 +7736,40 @@ "TIFF-formatet understøtter kun kommentarer\n" "i 7 bit ASCII-kodning. Ingen kommentar gemt." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Gem som TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Komprimering" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Ingen" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Pak bit" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Udpak" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Gem _farveværdier fra gennemsigtige punkter" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Kommentar:" diff -uraN gimp-2.2.6/po-plug-ins/de.gmo gimp-2.2.7/po-plug-ins/de.gmo --- gimp-2.2.6/po-plug-ins/de.gmo 2005-04-10 02:12:00.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/de.gmo 2005-05-08 23:42:21.000000000 +0200 @@ -463,7 +463,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: GIMP 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-01-28 18:36+0100 Last-Translator: Sven Neumann Language-Team: German diff -uraN gimp-2.2.6/po-plug-ins/de.po gimp-2.2.7/po-plug-ins/de.po --- gimp-2.2.6/po-plug-ins/de.po 2005-04-10 02:11:45.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/de.po 2005-05-08 23:42:05.000000000 +0200 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-01-28 18:36+0100\n" "Last-Translator: Sven Neumann \n" "Language-Team: German \n" @@ -293,8 +293,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Kein" @@ -399,7 +399,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1074,7 +1074,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotation" @@ -1270,7 +1270,7 @@ #: ../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:833 +#: ../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 @@ -1301,7 +1301,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2228,7 +2228,7 @@ msgid "_Elevation:" msgstr "_Breitengrad (Elevation):" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "_X-Versatz:" @@ -2240,7 +2240,7 @@ "Sie können den Versatz anpassen, indem Sie die Vorschau mit der mittleren " "Maustaste verschieben." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "_Y-Versatz:" @@ -2652,11 +2652,11 @@ msgid "Re_d" msgstr "Ro_t" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Grün" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Blau" @@ -3216,7 +3216,7 @@ msgstr "Streifen entfernen" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3315,7 +3315,7 @@ msgstr "_Verwischen" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Schwarz" @@ -3429,8 +3429,8 @@ msgstr "Gravur" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4965,7 +4965,7 @@ msgid "Blur Parameters" msgstr "Parameter" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Winkel:" @@ -5179,122 +5179,122 @@ msgid "_Amount:" msgstr "_Menge:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Rund" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Linie" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamant" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS Quadrat (Euklidischer Punkt)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS Diamant" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Grau" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "R_ot" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "C_yan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "Ge_lb" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensität" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "_Zeitungsdruck..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Zeitungsdruck..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "_Punktfunktion:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Zeitungsdruck" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Auflösung" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "_Eingabe-SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "_Ausgabe-LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "Z_ellgrösse:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Schirm" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "_Schwarz-Auszug (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separiere nach:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntensität" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "Kanäle _verbinden" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "_Fabrikeinstellungen" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Kantenglättung" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "O_versample:" @@ -5822,64 +5822,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Bildern mit Alpha-Kanal können nicht in Postscript gespeichert werden" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Fehler beim Starten von GhostScript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Fehler beim Starten von GhostScript: %s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Ein Schreibfehler ist aufgetreten" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Lade Postscript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Rendere" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Auflösung:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Seiten:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Seiten zu laden (z.B. 1-4 oder 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "versuche BoundingBox" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Farben" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "S&W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grau" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5887,40 +5887,40 @@ msgid "Color" msgstr "Farbe" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatisch" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Kantenglättung des Textes" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Schwach" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Stark" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Kantenglättung der Grafiken" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Speichere als Postscript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Bildgrösse" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Seitenverhältnis beibehalten" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5929,36 +5929,36 @@ "ändern." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Einheit" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Zoll" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "__Millimeter" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Ausgabe" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_Postscript Level 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Encapsulated PostScript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "_Vorschau" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "_Grösse der Vorschau:" @@ -7181,16 +7181,16 @@ msgid "TIFF image" msgstr "TIFF-Bild" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Seite %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF Kanäle" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7202,7 +7202,7 @@ "kann jedoch nur mit 8 Bit pro Kanal umgehen. Deshalb wird das Bild nun für " "Sie umgewandelt, dadurch wird es zu einem Informationsverlust kommen." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7210,40 +7210,40 @@ "Das TIFF-Dateiformat unterstützt Kommentare nur\n" "in 7-Bit-ASCII-Kodierung. Es wurde kein Kommentar gespeichert." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Als TIFF speichern" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Kompression" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "Kei_n" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Bits packen" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Entpacken" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "_Farbwerte aus transparenten Pixeln speichern" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Kommentar:" diff -uraN gimp-2.2.6/po-plug-ins/el.gmo gimp-2.2.7/po-plug-ins/el.gmo --- gimp-2.2.6/po-plug-ins/el.gmo 2005-04-10 02:12:00.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/el.gmo 2005-05-08 23:42:21.000000000 +0200 @@ -39,7 +39,7 @@ s`/=28<1#-e/}t@ d"0Sn VW>:$ CBh!E~P_+7^5*D7;3J"&HrN5 wx3j.iAQ'(BE?y#941  K4,!6 :m Hg+ O?cu,XD [)'LYMGI{CF|(86 *q)(None)A_ddA_ngle:AbbreviationAboutActionAdditionAlphaAlpha:Angle:AntialiasingApplyArea:ArrowAsciiAuthor:AutoAutomaticAvailable Images:Back:BackgroundBackground ColorBackground:BlackBlack:BlueBlue:BorderBothBottom:BoxBrowseCMYCMYKCX:CY:CenterChannelsCircleClearCo_lorsColorColor DensityColor Selection DialogColor:ColorsColors:Command:CommentComment:ComposeCompressionContrast:CopyCopyright:CreateCubismCustom Color:CutCyanCyan:CylinderCylinder lengthDICOM imageDate:DefaultDeleteDensity:Description:Destination:DiamondDigitsDimension:Dimensions:DirectionDivisionEditError opening fileError reading fileFileFilename:FilmFilterForegroundFromFrom:FunctionGIF WarningGIMP ExtensionGeneral OptionsGeneral optionsGr_eyGrabGradientGrayGrayscaleGreenGreen:GreyGridHSVHeight:High _Quality previewHorizontalHueHue:IDInchInitial value:Iterations:JPEG previewJuliaL_ength:LambdaLandscapeLeft:LightLineLinearLogarithmicLoopMagentaMagenta:ManualModeMoveMove DownMove UpNameNew UnitNoneNormalNormal:Number of ColorsNumber of colors:NumberingO_ptionsO_rientationOpacity:OpenOptionsOrientationOutputPPD File:PPIP_aperPages:ParametersPastePercentPhotographPixelsPlacementPointPolygonPortraitPositionPreferencesPreviewPrint to FilePrinter Model:Printer SettingsQuality:RGBRGBARandomRe_dRectangleRedRed:RedoReplaceResolutionResolution:RewindRight:RotationRotation:Sat_urationSaturationSaturation:SaveSave as BMPSave as GIFSave as JPEGSave as MNGSave as PNGSave as PNMSave as SGISave as SUNRASSave as TGASave as TIFFSave as TextSave as XBMSave as XJTSave as XPMScale X:ScreenSeascapeSelectSelect AllSelect ColorSelect allSelectionSettingsShear:ShiftShowSimpleSizeSize (%):Size:SolidSpacing:SphereSpiderStandardStepStyleSymbolTemporaryThreshold:TileToTo:ToolsTop:TransparentTransparent backgroundTypeType:URLURL: %sUndoUnitUnit EditorUnitsUnits:UnselectUnselect AllUntitledUpdateValueValue:VerticalVideoWarningWavesWhiteWidth:WindWindowsWindows BMP imageX:Y:YellowYellow:ZoomZoom inZoom out_3x3_Angle:_Black_Blue_Blue:_Bottom:_Box_Brush_Copy_Description:_Edit_File_Font:_Green_Green:_Height_Height:_Help_Hue_Inch_JavaScript_Left_Lines_Mirror_Parameters_Polygon_Preview_Preview!_Print..._Red:_Right_Saturation_Saturation:_Search:_Settings_Size_Size:_Speed:_Threshold:_Title:_Tools_Top:_Update_Value_Value:_View_White_Width_Width:_Wind_X:_Y:afterblackbluebzip archivecmcyane-_mailgreengzip archivehuemagentapixelsredsaturationvalueyellowProject-Id-Version: el Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-10-22 15:51+0300 Last-Translator: Nikos Charonitakis Language-Team: diff -uraN gimp-2.2.6/po-plug-ins/el.po gimp-2.2.7/po-plug-ins/el.po --- gimp-2.2.6/po-plug-ins/el.po 2005-04-10 02:11:45.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/el.po 2005-05-08 23:42:05.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-10-22 15:51+0300\n" "Last-Translator: Nikos Charonitakis \n" "Language-Team: \n" @@ -310,8 +310,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Κανένα" @@ -417,7 +417,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1179,7 +1179,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Περιστροφή" @@ -1394,7 +1394,7 @@ #: ../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:833 +#: ../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 @@ -1426,7 +1426,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2519,7 +2519,7 @@ msgid "_Elevation:" msgstr "Επιλογή:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 #, fuzzy msgid "_X offset:" msgstr "Μετατόπιση Χ:" @@ -2530,7 +2530,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 #, fuzzy msgid "_Y offset:" msgstr "Μετατόπιση" @@ -2989,12 +2989,12 @@ msgstr "Κό_κκινο" # -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../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:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Μπλε:" @@ -3654,7 +3654,7 @@ msgstr "Διαγραφή" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3771,7 +3771,7 @@ msgstr "Έξυπνη" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Μαύρο" @@ -3917,8 +3917,8 @@ msgstr "σημαντικό" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5731,7 +5731,7 @@ msgid "Blur Parameters" msgstr "Παράμετροι" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Γωνία:" @@ -5981,145 +5981,145 @@ msgid "_Amount:" msgstr "Μετρητής:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 #, fuzzy msgid "Round" msgstr "Ιδιότητες του Ήχου" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Γραμμή" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Ρόμβος" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 #, fuzzy msgid "PS Diamond" msgstr "Ρόμβος" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 #, fuzzy msgid "_Grey" msgstr "Γκρί" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 #, fuzzy msgid "R_ed" msgstr "Κόκκινο" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 #, fuzzy msgid "C_yan" msgstr "Κυανό" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 #, fuzzy msgid "Magen_ta" msgstr "Μωβ" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 #, fuzzy msgid "_Yellow" msgstr "Κίτρινο" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 #, fuzzy msgid "Intensity" msgstr "Πυκνότητα" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 #, fuzzy msgid "Newsprin_t..." msgstr "Επίπεδο πάχνης:" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 #, fuzzy msgid "Newsprint..." msgstr "Επίπεδο πάχνης:" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "Συναρτήσεις Υποστήριξης:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 #, fuzzy msgid "Newsprint" msgstr "Επίπεδο πάχνης:" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Ανάλυση" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 #, fuzzy msgid "_Input SPI:" msgstr "Είσοδος:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 #, fuzzy msgid "O_utput LPI:" msgstr "Έξοδος" # -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "Μέγεθος σε Εικ/χεία:" # #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Οθόνη" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 #, fuzzy msgid "Separate to:" msgstr "Ξεχωριστό Αρχείο:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 #, fuzzy msgid "_RGB" msgstr "GKB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 #, fuzzy msgid "C_MYK" msgstr "PCM" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 #, fuzzy msgid "I_ntensity" msgstr "Πυκνότητα" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "Κανάλια" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "Εξ' ορισμού ρυθμίσεις" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Εξομάλυνση" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 #, fuzzy msgid "O_versample:" msgstr "Επιγράμμηση" @@ -6743,70 +6743,70 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "σφάλμα κατά την εγγραφή προσωρινού αρχείου" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 #, fuzzy msgid "Write error occurred" msgstr "Συνέβει ένα σφάλμα CORBA.\n" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 #, fuzzy msgid "Load PostScript" msgstr "Άνοιγμα ενός Python Script.." #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 #, fuzzy msgid "Rendering" msgstr "3D Rendering" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Σελίδες:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" # #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 #, fuzzy msgid "Coloring" msgstr "Χρώμα" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Γκρι" # -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6814,90 +6814,90 @@ msgid "Color" msgstr "Χρώμα" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Αυτόματο" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "Εξομάλυνση" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 #, fuzzy msgid "Weak" msgstr "Εβδομάδα" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 #, fuzzy msgid "Strong" msgstr "Αλφαριθμητικό" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "Εξομάλυνση" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 #, fuzzy msgid "Save as PostScript" msgstr "PS (Postscript)" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 #, fuzzy msgid "Image Size" msgstr "Μέγεθος Εικόνας:" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "Διατήρηση αναλογιών" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Μονάδα" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Ίντσα" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 #, fuzzy msgid "_Millimeter" msgstr "χιλιοστά" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Έξοδος" # -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 #, fuzzy msgid "_PostScript level 2" msgstr "Εκτυπωτής PostScript" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 #, fuzzy msgid "_Encapsulated PostScript" msgstr "Encapsulated Postscript" # -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 #, fuzzy msgid "P_review" msgstr "Προεπισκόπηση" # -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "Προεπισκόπηση:" @@ -8352,17 +8352,17 @@ msgid "TIFF image" msgstr "Κανάλι" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, fuzzy, c-format msgid "Page %d" msgstr "Πλαίσιο" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 #, fuzzy msgid "TIFF Channel" msgstr "Κανάλι" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -8370,52 +8370,52 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Αποθήκευση ως TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Συμπίεση" # -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 #, fuzzy msgid "_None" msgstr "Κανένα" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 #, fuzzy msgid "_Pack Bits" msgstr "Πακέτα" # -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 #, fuzzy msgid "_Deflate" msgstr "Διαγραφή" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" # -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Σχόλιο:" diff -uraN gimp-2.2.6/po-plug-ins/en_CA.gmo gimp-2.2.7/po-plug-ins/en_CA.gmo --- gimp-2.2.6/po-plug-ins/en_CA.gmo 2005-04-10 02:12:00.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/en_CA.gmo 2005-05-08 23:42:21.000000000 +0200 @@ -472,7 +472,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp plug-ins Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-01-26 14:31-0400 Last-Translator: Adam Weinberger Language-Team: English/Canada diff -uraN gimp-2.2.6/po-plug-ins/en_CA.po gimp-2.2.7/po-plug-ins/en_CA.po --- gimp-2.2.6/po-plug-ins/en_CA.po 2005-04-10 02:11:46.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/en_CA.po 2005-05-08 23:42:05.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp plug-ins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-01-26 14:31-0400\n" "Last-Translator: Adam Weinberger \n" "Language-Team: English/Canada \n" @@ -285,8 +285,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "None" @@ -389,7 +389,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1059,7 +1059,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotation" @@ -1255,7 +1255,7 @@ #: ../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:833 +#: ../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 @@ -1286,7 +1286,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2212,7 +2212,7 @@ msgid "_Elevation:" msgstr "_Elevation:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "_X offset:" @@ -2224,7 +2224,7 @@ "The offset can be adjusted by dragging the preview using the middle mouse " "button." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "_Y offset:" @@ -2635,11 +2635,11 @@ msgid "Re_d" msgstr "Re_d" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Green" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Blue" @@ -3196,7 +3196,7 @@ msgstr "Destripe" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3293,7 +3293,7 @@ msgstr "_Smear" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Black" @@ -3407,8 +3407,8 @@ msgstr "Engrave" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4927,7 +4927,7 @@ msgid "Blur Parameters" msgstr "Blur Parameters" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Angle:" @@ -5137,122 +5137,122 @@ msgid "_Amount:" msgstr "_Amount:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Round" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Line" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamond" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS Square (Euclidean Dot)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS Diamond" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Grey" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "R_ed" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "C_yan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "_Yellow" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensity" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "Newsprin_t..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Newsprint..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "_Spot function:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Newsprint" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Resolution" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "_Input SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "O_utput LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "C_ell size:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Screen" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "B_lack pullout (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separate to:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntensity" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "_Lock channels" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "_Factory defaults" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Antialiasing" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "O_versample:" @@ -5778,64 +5778,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "PostScript save cannot handle images with alpha channels" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Error starting ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Error starting ghostscript: %s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Write error occurred" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Load PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Rendering" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Resolution:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Pages:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Pages to load (e.g.: 1-4 or 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Try Bounding Box" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Colouring" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "B/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Gray" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5843,40 +5843,40 @@ msgid "Color" msgstr "Colour" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatic" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Text antialiasing" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Weak" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Strong" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Graphic antialiasing" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Save as PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Image Size" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Keep aspect ratio" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5885,36 +5885,36 @@ "without changing the aspect ratio." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Unit" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Inch" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Millimetre" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Output" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript level 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Encapsulated PostScript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "P_review" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "Preview _size:" @@ -7132,16 +7132,16 @@ msgid "TIFF image" msgstr "TIFF image" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Page %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF Channel" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7153,7 +7153,7 @@ "bit, so it will be converted for you. Information will be lost because of " "this conversion." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7161,40 +7161,40 @@ "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Save as TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Compression" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_None" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Pack Bits" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Deflate" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Save _colour values from transparent pixels" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Comment:" diff -uraN gimp-2.2.6/po-plug-ins/en_GB.gmo gimp-2.2.7/po-plug-ins/en_GB.gmo --- gimp-2.2.6/po-plug-ins/en_GB.gmo 2005-04-10 02:12:01.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/en_GB.gmo 2005-05-08 23:42:21.000000000 +0200 @@ -470,7 +470,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp CVS Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-15 23:46+0100 Last-Translator: David Lodge Language-Team: diff -uraN gimp-2.2.6/po-plug-ins/en_GB.po gimp-2.2.7/po-plug-ins/en_GB.po --- gimp-2.2.6/po-plug-ins/en_GB.po 2005-04-10 02:11:46.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/en_GB.po 2005-05-08 23:42:06.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-15 23:46+0100\n" "Last-Translator: David Lodge \n" "Language-Team: \n" @@ -284,8 +284,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "None" @@ -388,7 +388,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1058,7 +1058,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotation" @@ -1254,7 +1254,7 @@ #: ../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:833 +#: ../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 @@ -1285,7 +1285,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2211,7 +2211,7 @@ msgid "_Elevation:" msgstr "_Elevation:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "_X offset:" @@ -2223,7 +2223,7 @@ "The offset can be adjusted by dragging the preview using the middle mouse " "button." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "_Y offset:" @@ -2634,11 +2634,11 @@ msgid "Re_d" msgstr "Re_d" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Green" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Blue" @@ -3195,7 +3195,7 @@ msgstr "Destripe" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3292,7 +3292,7 @@ msgstr "_Smear" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Black" @@ -3406,8 +3406,8 @@ msgstr "Engrave" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4926,7 +4926,7 @@ msgid "Blur Parameters" msgstr "Blur Parameters" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Angle:" @@ -5136,122 +5136,122 @@ msgid "_Amount:" msgstr "_Amount:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Round" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Line" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamond" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS Square (Euclidean Dot)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS Diamond" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Grey" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "R_ed" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "C_yan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "_Yellow" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensity" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "Newsprin_t..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Newsprint..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "_Spot function:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Newsprint" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Resolution" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "_Input SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "O_utput LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "C_ell size:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Screen" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "B_lack pullout (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separate to:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntensity" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "_Lock channels" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "_Factory defaults" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Antialiasing" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "O_versample:" @@ -5777,64 +5777,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "PostScript save cannot handle images with alpha channels" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Error starting ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Error starting ghostscript: %s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Write error occurred" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Load PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Rendering" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Resolution:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Pages:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Pages to load (e.g.: 1-4 or 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Try Bounding Box" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Colouring" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "B/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grey" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5842,40 +5842,40 @@ msgid "Color" msgstr "Colour" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatic" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Text antialiasing" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Weak" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Strong" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Graphic antialiasing" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Save as PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Image Size" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Keep aspect ratio" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5884,36 +5884,36 @@ "without changing the aspect ratio." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Unit" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Inch" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Millimetre" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Output" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript level 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Encapsulated PostScript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "P_review" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "Preview _size:" @@ -7131,16 +7131,16 @@ msgid "TIFF image" msgstr "TIFF image" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Page %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF Channel" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7152,7 +7152,7 @@ "bit, so it will be converted for you. Information will be lost because of " "this conversion." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7160,40 +7160,40 @@ "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Save as TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Compression" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_None" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Pack Bits" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Deflate" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Save _colour values from transparent pixels" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Comment:" diff -uraN gimp-2.2.6/po-plug-ins/es.gmo gimp-2.2.7/po-plug-ins/es.gmo --- gimp-2.2.6/po-plug-ins/es.gmo 2005-04-10 02:12:01.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/es.gmo 2005-05-08 23:42:22.000000000 +0200 @@ -455,7 +455,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: es Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-06 16:03+0100 Last-Translator: Francisco Javier F. Serrador Language-Team: Spanish diff -uraN gimp-2.2.6/po-plug-ins/es.po gimp-2.2.7/po-plug-ins/es.po --- gimp-2.2.6/po-plug-ins/es.po 2005-04-10 02:11:46.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/es.po 2005-05-08 23:42:06.000000000 +0200 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-06 16:03+0100\n" "Last-Translator: Francisco Javier F. Serrador \n" "Language-Team: Spanish \n" @@ -294,8 +294,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Ninguno" @@ -398,7 +398,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1076,7 +1076,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotación" @@ -1272,7 +1272,7 @@ #: ../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:833 +#: ../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 @@ -1303,7 +1303,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2238,7 +2238,7 @@ msgid "_Elevation:" msgstr "_Elevación:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "Desplazamiento _X:" @@ -2250,7 +2250,7 @@ "El desplazamiento puede ajustarse arrastrando la vista preliminar usando el " "botón central del ratón." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "Desplazamiento _Y:" @@ -2662,11 +2662,11 @@ msgid "Re_d" msgstr "R_ojo" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "V_erde:" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "A_zul:" @@ -3225,7 +3225,7 @@ msgstr "Anti-Bandas" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3322,7 +3322,7 @@ msgstr "Mancha_r" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Negro" @@ -3437,8 +3437,8 @@ msgstr "Grabado" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4965,7 +4965,7 @@ msgid "Blur Parameters" msgstr "Parámetros de desenfoque" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Ángulo:" @@ -5178,122 +5178,122 @@ msgid "_Amount:" msgstr "C_antidad:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Redondo" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Línea" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamante" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "Cuadrado PS (punto euclídeo)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "Diamante PS" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Gris" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "R_ojo" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "_Cían" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "A_marillo" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensidad" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "Papel de periódico..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Papel de periódico..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "Función de punto_s:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Papel de periódico" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Resolución" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "M_uestras/pulgada de entrada:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "Líneas/p_ulgada de salida:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "Tamaño de celda:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Pantalla" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "Extracción de n_egro (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separara a:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntensidad" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "Fi_jar los canales" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "V_alores de fábrica" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Alisado" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "So_bremuestreo:" @@ -5820,65 +5820,65 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Guardar como PostScript no funciona con imágenes con canales alfa" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Ocurrió un error la iniciar ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Ocurrió un error la iniciar ghostscript: %s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Ocurrió un error de escritura" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Cargar PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Renderizado" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Resolución:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Páginas:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Páginas a cargar (ej: 1-4 o 1,3,5-7)" # //R ¿Está bien traducido? -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Intentar con cajas de contorno" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Coloreado" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "B/N" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Gris" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5886,40 +5886,40 @@ msgid "Color" msgstr "Color" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automático" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Suavizado de texto" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Débil" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Fuerte" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Suavizado de gráficos" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Guardar como PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Tamaño de imagen" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Mantener proporción" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5928,36 +5928,36 @@ "el tamaño dado sin cambiar la razón de aspecto." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Unidad" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "P_ulgada" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Milímetro" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Salida" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript nivel 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "PostScript _encapsulado" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Vista p_revia" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "Tamaño de la vi_sta previa:" @@ -7181,16 +7181,16 @@ msgid "TIFF image" msgstr "Imagen TIFF" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Página %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "Canal TIFF" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7202,7 +7202,7 @@ "manejar 8 bits, por lo cual será convertida para usted. Debido a esta " "conversión se perderá información." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7210,40 +7210,40 @@ "El formato TIFF sólo soporta comentarios en \n" "codificación ASCII de 7 bits. No se guardará ningún comentario." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Guardar como TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Compresión" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Ninguno" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Paquetes de bits" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Desinflar" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Guardar los valores de los _colores de los píxeles transparentes" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Comentario:" diff -uraN gimp-2.2.6/po-plug-ins/eu.gmo gimp-2.2.7/po-plug-ins/eu.gmo --- gimp-2.2.6/po-plug-ins/eu.gmo 2005-04-10 02:12:01.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/eu.gmo 2005-05-08 23:42:22.000000000 +0200 @@ -301,7 +301,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: eu Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-04-06 19:23+0200 Last-Translator: Iñaki Larrañaga Murgoitio Language-Team: Basque diff -uraN gimp-2.2.6/po-plug-ins/eu.po gimp-2.2.7/po-plug-ins/eu.po --- gimp-2.2.6/po-plug-ins/eu.po 2005-04-10 02:11:47.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/eu.po 2005-05-08 23:42:07.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-04-06 19:23+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" @@ -288,8 +288,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Bat ere ez" @@ -392,7 +392,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1109,7 +1109,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Biraketa" @@ -1306,7 +1306,7 @@ #: ../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:833 +#: ../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 @@ -1337,7 +1337,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2350,7 +2350,7 @@ msgid "_Elevation:" msgstr "_Goratzea:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 #, fuzzy msgid "_X offset:" msgstr "_X desplazamendua:" @@ -2361,7 +2361,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 #, fuzzy msgid "_Y offset:" msgstr "_Y desplazamendua:" @@ -2789,11 +2789,11 @@ msgid "Re_d" msgstr "G_orria" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "Be_rdea" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Urdina" @@ -3387,7 +3387,7 @@ msgstr "Kendu marrak" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3495,7 +3495,7 @@ msgstr "_Lohitu" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Beltza" @@ -3625,8 +3625,8 @@ msgstr "Grabatu" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5250,7 +5250,7 @@ msgid "Blur Parameters" msgstr "Lausotu parametroak" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Angelua:" @@ -5491,128 +5491,128 @@ msgid "_Amount:" msgstr "_Kopurua:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Biribila" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Lerroa" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamantea" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS karratua (puntu Euklidearra)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS diamantea" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Grisa" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "_Gorria" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "C_yana" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "_Horia" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intentsitatea" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 #, fuzzy msgid "Newsprin_t..." msgstr "Prentsa-papera..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Prentsa-papera..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "Puntu-_funtzioa:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Prentsa-papera" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Bereizmena" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "_Sarrerako lagin/hazbete:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "Irteerako _lerro/hazbete:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "Gelaxka-tamaina:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Pantaila" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 #, fuzzy msgid "B_lack pullout (%):" msgstr "Beltza ateratzea (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Bereizi hona:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntentsitatea" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "_Blokeatu kanalak" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "_Fabrikako lehenetsiak" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Antialiasing-a" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "_Gainlaginketa:" @@ -6185,65 +6185,65 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Alfa kanalak dituzten irudiak ezin dira PostScript gisa gorde" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Errorea ghostscript (%s) abiatzean." -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "Errorea ghostscript (%s) abiatzean." -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 #, fuzzy msgid "Write error occurred" msgstr "Errorea gertatu da idaztean" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Kargatu PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Errendatzen" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Bereizmena:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Orrialdeak:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Probatu muga-koadroa " #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Koloreztatzea" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "Z/B" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grisa" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6251,43 +6251,43 @@ msgid "Color" msgstr "Kolorea" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatikoa" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "Testuaren antialiasing-a" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Ahula" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Indartsua" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "Irudiaren antialiasing-a" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Gorde PostScript gisa" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Irudiaren tamaina" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "_Mantendu aspektu-erlazioa" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -6296,37 +6296,37 @@ "aspektu-erlazioa aldatu gabe." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Unitatea" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Hazbete" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Milimetro" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Irteera" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 #, fuzzy msgid "_PostScript level 2" msgstr "_PostScript 2. maila" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_PostScript kapsulatua" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "A_urrebista" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "Aurrebistaren tamaina:" @@ -7644,16 +7644,16 @@ msgid "TIFF image" msgstr "TIFF kanala" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "%d. orrialdea" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF kanala" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7665,7 +7665,7 @@ "kudea ditzakeenez, bihurtu egingo du. Bihurketa horren ondorioz, informazioa " "galduko da." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7673,40 +7673,40 @@ "TIFF formatuak 7 biteko ASCII kodetzea duten\n" "iruzkinak bakarrik onartzen ditu. Ez da iradokizunik gorde." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Gorde TIFF gisa" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Konpresioa" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Bat ere ez" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Paketatu bitak" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Hustu" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Gorde _kolore-balioak pixel gardenetik" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Iruzkina:" diff -uraN gimp-2.2.6/po-plug-ins/fi.gmo gimp-2.2.7/po-plug-ins/fi.gmo --- gimp-2.2.6/po-plug-ins/fi.gmo 2005-04-10 02:12:01.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/fi.gmo 2005-05-08 23:42:22.000000000 +0200 @@ -316,7 +316,7 @@ HTML file which will most likely crash your browser.You can not rotate the whole image if there's a floating selection.You can not rotate the whole image if there's a selection.Z scale (size)Z:ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:Zoom to_Abbreviation:_About ImageMap_Adaptive_Advanced_Advanced Options_Algorithm:_Alpha_Alpha threshold:_Alpha trimmed mean_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Apply Canvas..._Autocrop Image_Autocrop Layer_Automatically convert_Azimuth:_Background_Background color_Base URL:_Bevel width:_Bilinear_Black_Black level:_Blacken_Blast_Blend_Blue_Blue:_Blur_Blur radius:_Border:_Bottom-left_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bump Map_Bump Map..._Bump map:_Checkerboard..._Clear_Color Enhance_Color Exchange..._Colorify..._Contents_Convolution Matrix..._Copy_Cubism..._Curve Bend..._Decompose..._Deflate_Deform radius:_Deinterlace..._Delay between frames where unspecified:_Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Displacement:_Distorted_Divisions:_Dynamic:_Edge enhancement_Edge..._Edit_Effect Image:_Elevation:_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_Factory defaults_File_Filename:_Film..._Filter Pack..._Filter length:_Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Format:_Fractal Explorer..._Fractal Trace..._Fractals_Free_Ftp Site_GFlare..._GIF comment:_GIMPressionist..._Gamma:_Gaussian Blur..._General_Generate full HTML document_Gfig..._Glass Tile..._Glow radius:_Glowing:_Gopher_Gradient_Gradient Map_Gray:_Green_Green:_Grey_Grid_Grid size:_Grid..._Grow_Guillotine_HSL color model_Height_Height:_Help_Hidden_High_Holdness:_Hole offset:_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hot..._Hue_Hue rotation:_Hurl..._ID:_IFS Fractal..._IIR_IWarp..._Ideal_Identifier prefix:_Ignore_Ignore the bottom layer even if visible_Illusion..._ImageMap..._Inch_Independent RGB_Insert_Intensity:_Interlace_Interlacing (Adam7)_Invert_JPEG_JavaScript_Jigsaw..._Keep NCSA circles true_Keep aspect ratio_Keep original surroundings_Keep sign of result (one direction only)_LZW_Laplace_Left_Left Start at:_Lens refraction index:_Light_Lighting Effects..._Limit line width_Linear_Lines_Link_Load defaults_Lock channels_Loop forever_Low_Lower_MIME_Mail Image..._Make surroundings transparent_Map backwards_Map type:_Mapping_Mask file extension:_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Max. delta:_Maze..._Midtones_Millimeter_Minimum value:_Mirror_Misc Ops._Modify hue channel_Modify red channel_Monochrome_Mosaic..._Motion Blur..._Move_NL Filter..._Natural color_Neon..._No. Across:_Noise magnitude:_None_Normalize_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pack Bits_Pagecurl..._Palette Type:_Parameters_Percent black:_Period:_Phase:_Photocopy..._Pinch amount:_Ping Pong_Pixelize..._Plasma..._Playback..._Plug-In Browser_Plural:_Polygon_PostScript level 2_Prefixed name:_Preserve luminosity_Presets_Preview_Preview once_Preview!_Print_Print..._Prompt for area info_Propagating rate:_Psychobilly_Qbist..._Quality:_RGB_RGB color model_RLE_RLE compression_RLE encoded_Radial_Radius 1:_Radius:_Random hue:_Random seed:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Retain tilability_Right_Right Border_Ripple..._Sample Colorize..._Saturation_Saturation:_Save comment to file_Save defaults_Scale division:_Scale:_Scatter RGB..._Screen Shot..._Search depth:_Search:_Selective Gaussian Blur..._Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Shiny:_Show cursor_Sinus..._Size_Size:_Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Solid Noise..._Sparkle..._Speed:_Spike length:_Spokes:_Spot function:_Square_Squares_Strength:_Stretch Contrast_Stroke_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold Alpha..._Threshold:_Tile bumpmap_Tile size:_Title:_Tools_Top Start at:_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo_Undo %s_Uniform_Unit Editor_Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Use double-sized grab handles_Use the (invisible) bottom layer as the base_Uuencode_Value_Value Invert_Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Warp_Waterlevel:_Wavelength:_Waves..._Web Site_Whirl angle:_White_White level:_Width_Width:_Wind_With white noise_Wrap_Wrap around_Write hot spot values_X Scale:_X displacement:_X offset:_X ratio:_X size:_X10 format bitmap_X:_Y Scale:_Y displacement:_Y offset:_Y ratio:_Y size:_Y:_Yellow_Z:_Zoom_Zoom:a _Single Windowafteralphabluebzip archivecmcyane-_mailgreengzip archivehuek(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedmagentamillisecondspixelspixels from _toppixels from l_eftpixels/%aredsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowProject-Id-Version: gimp-plug-ins 1.1.26 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-12-18 05:22+0200 Last-Translator: Mikko Paananen Language-Team: Finnish diff -uraN gimp-2.2.6/po-plug-ins/fi.po gimp-2.2.7/po-plug-ins/fi.po --- gimp-2.2.6/po-plug-ins/fi.po 2005-04-10 02:11:47.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/fi.po 2005-05-08 23:42:07.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 1.1.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-12-18 05:22+0200\n" "Last-Translator: Mikko Paananen \n" "Language-Team: Finnish \n" @@ -285,8 +285,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Ei mitään" @@ -384,7 +384,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1053,7 +1053,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Pyöritys" @@ -1249,7 +1249,7 @@ #: ../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:833 +#: ../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 @@ -1280,7 +1280,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2204,7 +2204,7 @@ msgid "_Elevation:" msgstr "_Korotus:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "_X-siirtymä:" @@ -2214,7 +2214,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "_Y-siirtymä:" @@ -2625,11 +2625,11 @@ msgid "Re_d" msgstr "_Punainen" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Vihreä" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Sininen" @@ -3186,7 +3186,7 @@ msgstr "" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3283,7 +3283,7 @@ msgstr "_Sotke" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Musta" @@ -3397,8 +3397,8 @@ msgstr "Kaiverrus" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4901,7 +4901,7 @@ msgid "Blur Parameters" msgstr "Sumennusparametrit" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "Kulma:" @@ -5111,122 +5111,122 @@ msgid "_Amount:" msgstr "_Määrä:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Pyöreä" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Liiva" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Timantti" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS Neliö (Euklidinen piste)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS timantti" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "Harmaa" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "Punainen" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "Syaani" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "Keltainen" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Voimakkuus" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "Sanomaleh_tipaino..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Sanomalehtipaino..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "Pistefunktio:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Sanomalehtipaino" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Resoluutio" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "Solun koko:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Näyttö" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "Mustan poisto (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Erottele:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "Intensiteetti" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "_Lukitse kanavat" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "_Oletusasetukset" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Antialiasointi" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "Ylinäytteistys:" @@ -5745,64 +5745,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "PostScript ei voi tallentaa kuvia joissa on läpinäkyvyys" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Ei voinut käynnistää ghostscriptiä (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Ei voinut käynnistää ghostscriptiä (%s)" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "virhe kirjoitettaessa" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Lataa PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Luodaan" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Resoluutio:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Sivut:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Käytä: Bounding Box" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Väritys" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "Mustavalko" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Harmaasävy" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5810,40 +5810,40 @@ msgid "Color" msgstr "Väri" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automaattinen" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Tekstin antialiasointi" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Vähän" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Vahva" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Grafiikan antialiasointi" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Tallenna PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Kuvan koko" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "Säilytä kuvasuhde" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5852,36 +5852,36 @@ "kuvasuhdetta." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Yksikkö" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "Tuuma" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "Millimetri" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Tulostus" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript taso 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Enkapsuloitu PostScript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Esikatselu" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "Esikatselun koko:" @@ -7094,16 +7094,16 @@ msgid "TIFF image" msgstr "TIFF kuva" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Sivu %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF kanava" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7114,46 +7114,46 @@ "Kuvassa on 16 bittiä värikanavaa kohti. GIMP voi käsitellä vain 8 bittiä per " "kanava. Tiedosto muunnetaan ja tarkkuutta katoaa tämän muutoksen vuoksi." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." msgstr "TIFF tukee vain ASCII kommennetteja. Kommenttia ei tallenneta." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Tallenna TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Pakkaus" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "Ei mitään" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Pack Bits" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Deflate" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Tallenna väriarvot läpinäkyvistä pikseleistä" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Kommentti:" diff -uraN gimp-2.2.6/po-plug-ins/fr.gmo gimp-2.2.7/po-plug-ins/fr.gmo --- gimp-2.2.6/po-plug-ins/fr.gmo 2005-04-10 02:12:01.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/fr.gmo 2005-05-08 23:42:22.000000000 +0200 @@ -451,7 +451,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: fr Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-01-25 20:11+0100 Last-Translator: Language-Team: diff -uraN gimp-2.2.6/po-plug-ins/fr.po gimp-2.2.7/po-plug-ins/fr.po --- gimp-2.2.6/po-plug-ins/fr.po 2005-04-10 02:11:48.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/fr.po 2005-05-08 23:42:07.000000000 +0200 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-01-25 20:11+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -296,8 +296,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Aucun" @@ -402,7 +402,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1080,7 +1080,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotation" @@ -1276,7 +1276,7 @@ #: ../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:833 +#: ../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 @@ -1307,7 +1307,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2239,7 +2239,7 @@ msgid "_Elevation:" msgstr "_Élévation :" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "Décalage _X :" @@ -2251,7 +2251,7 @@ "Le décalage peut être ajusté en glissant l'aperçu avec le bouton du milieu " "de la souris." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "Décalage _Y :" @@ -2663,11 +2663,11 @@ msgid "Re_d" msgstr "_Rouge" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Vert" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Bleu" @@ -3228,7 +3228,7 @@ msgstr "Anti-traînées" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3326,7 +3326,7 @@ msgstr "É_taler" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Noir" @@ -3441,8 +3441,8 @@ msgstr "Gravure" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4978,7 +4978,7 @@ msgid "Blur Parameters" msgstr "Paramètres de flou" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Angle :" @@ -5192,122 +5192,122 @@ msgid "_Amount:" msgstr "_Quantité :" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Rond" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Ligne" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamant" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "Carré PS (Point Euclidien)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "Diamant PS" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Gris" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "_Rouge" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "_Cyan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "_Magenta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "_Jaune" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensité" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "_Trame d'imprimerie..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Trame d'imprimerie..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "Fonction _ponctuelle :" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Trame d'imprimerie" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Résolution" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "Entr_ée SPI :" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "S_ortie LPI :" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "Taille des _cases :" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Écran" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "Supplémen_t de noir (%) :" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Séparer en :" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RVB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MJN" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "_Intensité" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "B_loquer les canaux" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "Ré_glages par défaut" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Lissage" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "_Sur-échantillonage :" @@ -5835,64 +5835,64 @@ "L'enregistrement PostScript ne peux pas gérer les images avec des canaux " "alpha" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Erreur au lancement de Ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Erreur au lancement de Ghostscript : (%s)" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Une erreur d'écriture est survenue" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Charger PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Interprétation" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Résolution :" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Pages :" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Pages à charger (ex. : 1-4 ou 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Essayer la BoundingBox" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Coloration" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "N/B" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Gris" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5900,40 +5900,40 @@ msgid "Color" msgstr "Couleur" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatique" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Lissage du texte" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Faible" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Fort" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Lissage Graphique" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Enregistrer en PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Taille de l'image" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "Ratio d'aspect _fixe" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5942,36 +5942,36 @@ "taille donnée sans changer les proportions." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Unité" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Pouce" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Millimètre" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Sortie" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript niveau 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "PostScript _encapsulé" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "_Aperçu" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "_Taille de l'aperçu :" @@ -7203,16 +7203,16 @@ msgid "TIFF image" msgstr "Image TIFF" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Page %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "Canaux TIFF" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7224,7 +7224,7 @@ "que 8 bits, donc elle sera convertie pour vous. Des informations seront " "perdues à cause de cette conversion." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7232,40 +7232,40 @@ "Le format TIFF ne supporte seulement que les commentaires\n" "codés en ASCII 7 bits. Aucune commentaire n'est enregistré." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Enregistrer en TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Compression" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Aucun" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Pack Bits" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Déflation" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Enregistrer les valeurs de couleur pour les pixels _transparents" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Commentaire :" diff -uraN gimp-2.2.6/po-plug-ins/ga.gmo gimp-2.2.7/po-plug-ins/ga.gmo --- gimp-2.2.6/po-plug-ins/ga.gmo 2005-04-10 02:12:01.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ga.gmo 2005-05-08 23:42:22.000000000 +0200 @@ -28,7 +28,7 @@ - 8 B H N Ub67v:cJgi,-aP";se~_wk x(F2jm*5rY![0Ap'n&Q O|Ih^uMSy] W. {`ET/}q\3)%V4t<Cfold+>$XzL ZD91?@G#HRN=K8B%d x %dA_ddA_lpha:AboutAlienMap2All JNGAll PNGAlphaBackgroundBackground (%d%s)Barnsley 1Barnsley 2Barnsley 3Black:BlueBlue:Bottom:BoxCMYCMYKC_MYKCenterChannel #%d:Channel MixerCo_lor:Co_lorsCo_mment:ColorColor ModeColor to AlphaComm_ent:Comment:Custom Color:Delete FractalDescription:Do _PreviewFractal TypeFrom:G-QbistGIF OptionsGIF WarningGr_eyGreenGreen:Guillotine...Height:HorizontalHorizontal ColorHotHot...IDIWarpIf you enable this option the preview will be redrawn automaticallyJNGJPEG previewJuliaLambdaLaplace...Left:Luma_y470f:MNG OptionsMan'o'warMandelbrotMax RGBMax RGB...ModeMode _1Mode _2New FractalNoneNumber of ColorsNumber of colors:O_ptionsO_rientationOp_tionsOpening '%s'...OptionsOrientationOrientation:PNGP_aperP_reviewPositionPreviewR_edRe_dRealtime PreviewRedRed:Remo_veRight:S_ubject:Save as GIFSave as JPEGSave as MNGSave as TGASave as TIFFSavedSaving '%s'...ScreenSierpinskiSizeSpiderStandardTable OptionsTemporaryTo:Top:TypeType:UnnamedUntitledValueValue:Van Gogh (LIC)Van Gogh (LIC)...VerticalVideoVideo/RGB...WarningWidth:X:XMAX:XMIN:X_1:X_2:Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:Z:Zoom in (make image bigger)Zoom out (make image smaller)_Advanced_Alpha_Alpha:_Black_Blue_Blue:_Bottom:_Box_Copy_Filename:_Font:_Free_Gradient_Gray:_Green_Green:_Grey_Height:_Help_Horizontal_Horizontal:_JPEG_Kill_LZW_Laplace_MIME_Move_None_Normal_Preview_Preview!_RGB_Red:_Settings_Size_Size:_Top:_Uuencode_Value_Vertical_Vertical:_Voronoi_White_Width:_X:_Y:_Yellow_Z:_Zoomalphablackbluegreenk(1-x^p)luma_y470luma_y709fpixels/%aredvalueyellowProject-Id-Version: gimp po-plug-ins CVS Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-03-21 00:23+0000 Last-Translator: Alastair McKinstry Language-Team: Gaeilge diff -uraN gimp-2.2.6/po-plug-ins/ga.po gimp-2.2.7/po-plug-ins/ga.po --- gimp-2.2.6/po-plug-ins/ga.po 2005-04-10 02:11:48.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ga.po 2005-05-08 23:42:08.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp po-plug-ins CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-03-21 00:23+0000\n" "Last-Translator: Alastair McKinstry \n" "Language-Team: Gaeilge \n" @@ -276,8 +276,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Ar Bith" @@ -374,7 +374,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1063,7 +1063,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "" @@ -1259,7 +1259,7 @@ #: ../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:833 +#: ../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 @@ -1290,7 +1290,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2233,7 +2233,7 @@ msgid "_Elevation:" msgstr "" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "" @@ -2243,7 +2243,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "" @@ -2659,11 +2659,11 @@ msgid "Re_d" msgstr "_Dearg" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Glas" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "Go_rm" @@ -3228,7 +3228,7 @@ msgstr "" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3331,7 +3331,7 @@ msgstr "" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Dubh" @@ -3453,8 +3453,8 @@ msgstr "" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4974,7 +4974,7 @@ msgid "Blur Parameters" msgstr "" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "" @@ -5197,123 +5197,123 @@ msgid "_Amount:" msgstr "" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Liath" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "_Dearg" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "_Buí" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "_Gradán" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Scáthán" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "" @@ -5844,64 +5844,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5909,76 +5909,76 @@ msgid "Color" msgstr "Dath" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "_Réamhthaispeántas" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "_Méid Réamhthaispeántas:" @@ -7222,16 +7222,16 @@ msgid "TIFF image" msgstr "" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7239,46 +7239,46 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Sábháil mar TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Ar Bith" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Nota:" diff -uraN gimp-2.2.6/po-plug-ins/gimp20-std-plug-ins.pot gimp-2.2.7/po-plug-ins/gimp20-std-plug-ins.pot --- gimp-2.2.6/po-plug-ins/gimp20-std-plug-ins.pot 2005-04-10 02:11:43.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/gimp20-std-plug-ins.pot 2005-05-08 12:28:57.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\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" @@ -275,8 +275,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "" @@ -373,7 +373,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1041,7 +1041,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "" @@ -1237,7 +1237,7 @@ #: ../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:833 +#: ../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 @@ -1268,7 +1268,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2188,7 +2188,7 @@ msgid "_Elevation:" msgstr "" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "" @@ -2198,7 +2198,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "" @@ -2609,11 +2609,11 @@ msgid "Re_d" msgstr "" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../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:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "" @@ -3170,7 +3170,7 @@ msgstr "" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3267,7 +3267,7 @@ msgstr "" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "" @@ -3381,8 +3381,8 @@ msgstr "" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4872,7 +4872,7 @@ msgid "Blur Parameters" msgstr "" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "" @@ -5082,122 +5082,122 @@ msgid "_Amount:" msgstr "" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "" @@ -5715,64 +5715,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5780,76 +5780,76 @@ msgid "Color" msgstr "" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "" @@ -7060,16 +7060,16 @@ msgid "TIFF image" msgstr "" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7077,46 +7077,46 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "" diff -uraN gimp-2.2.6/po-plug-ins/gl.gmo gimp-2.2.7/po-plug-ins/gl.gmo --- gimp-2.2.6/po-plug-ins/gl.gmo 2005-04-10 02:12:01.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/gl.gmo 2005-05-08 23:42:22.000000000 +0200 @@ -1,6 +1,6 @@ $,89Project-Id-Version: gimp-plugins VERSION Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2000-12-23 11:40-0800 Last-Translator: Nobody Language-Team: Galician diff -uraN gimp-2.2.6/po-plug-ins/gl.po gimp-2.2.7/po-plug-ins/gl.po --- gimp-2.2.6/po-plug-ins/gl.po 2005-04-10 02:11:48.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/gl.po 2005-05-08 23:42:08.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-plugins VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2000-12-23 11:40-0800\n" "Last-Translator: Nobody\n" "Language-Team: Galician\n" @@ -273,8 +273,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "" @@ -371,7 +371,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1040,7 +1040,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "" @@ -1236,7 +1236,7 @@ #: ../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:833 +#: ../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 @@ -1267,7 +1267,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2189,7 +2189,7 @@ msgid "_Elevation:" msgstr "" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "" @@ -2199,7 +2199,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "" @@ -2612,11 +2612,11 @@ msgid "Re_d" msgstr "" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../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:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "" @@ -3174,7 +3174,7 @@ msgstr "" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3272,7 +3272,7 @@ msgstr "" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "" @@ -3388,8 +3388,8 @@ msgstr "" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4886,7 +4886,7 @@ msgid "Blur Parameters" msgstr "" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "" @@ -5098,122 +5098,122 @@ msgid "_Amount:" msgstr "" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "" @@ -5731,64 +5731,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5796,76 +5796,76 @@ msgid "Color" msgstr "" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "" @@ -7081,16 +7081,16 @@ msgid "TIFF image" msgstr "" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7098,46 +7098,46 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "" diff -uraN gimp-2.2.6/po-plug-ins/he.gmo gimp-2.2.7/po-plug-ins/he.gmo --- gimp-2.2.6/po-plug-ins/he.gmo 2005-04-10 02:12:01.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/he.gmo 2005-05-08 23:42:22.000000000 +0200 @@ -11,7 +11,7 @@ 'B R^vA & 6@S[=d~!60 gs x]7{GBRd m{ $<3M ePK*# NX-xR+%12A;3)+8- ?%6!:"*.= C'9/, & <4>B570@( $#Adds random noise to the colorAll grayAmount of original color to show where no direct light fallsBackground ColorCenterCenter of SuperNovaCenterizeChange the number of colors in the mappingColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor Selection DialogColor TransformationColor is computed from the average of all pixels under the brushColor to AlphaColor to Alpha Color PickerColor:ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColorsColors:Create a color-map using a gradient from the gradient editorCreate a color-map with the options you specified above (color density/function). The result is visible in the preview imageCustom Color:Focus the brush strokes around the center of the imageFrom ColorGrayGrayscaleHorizontal ColorIf checked GTM will replace any rectangular sections of identically colored blocks with one large cell with ROWSPAN and COLSPAN values.If you enable this option higher color values will be swapped with lower ones and vice versaIntensity of original color when lit by a light sourceIntersection ColorLet the direction from the center determine the direction of the strokeLet the direction from the center determine the size of the strokeNumber of ColorsPixelizePixelizing...PolarizePolarizing...RGBA/GRAYA drawable is not selected.Remap Colorized...Rotating the colormap...Sample ColorizeSamples the color from the pixel in the center of the brushSolid colored backgroundSuperNova Color PickerThe colors are white and black.The distance from the center of the image determines the direction of the strokeThe distance from the center of the image determines the size of the strokeThreshold Alpha: Coloring Transparency...To ColorType of colormap not supportedUse cosine-function for this color componentUse linear mapping instead of any trigonometrical function for this color channelUse sine-function for this color componentVertical ColorProject-Id-Version: gimp CVS Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2000-02-02 14:07+0000 Last-Translator: Gil 'Dolfin' Osher Language-Team: Hebrew diff -uraN gimp-2.2.6/po-plug-ins/he.po gimp-2.2.7/po-plug-ins/he.po --- gimp-2.2.6/po-plug-ins/he.po 2005-04-10 02:11:49.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/he.po 2005-05-08 23:42:09.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: gimp CVS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2000-02-02 14:07+0000\n" "Last-Translator: Gil 'Dolfin' Osher \n" "Language-Team: Hebrew \n" @@ -272,8 +272,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "" @@ -377,7 +377,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1079,7 +1079,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "" @@ -1278,7 +1278,7 @@ #: ../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:833 +#: ../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 @@ -1310,7 +1310,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2268,7 +2268,7 @@ msgid "_Elevation:" msgstr "" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "" @@ -2278,7 +2278,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "" @@ -2705,11 +2705,11 @@ msgid "Re_d" msgstr "" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../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:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "" @@ -3283,7 +3283,7 @@ msgstr "" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3385,7 +3385,7 @@ msgstr "" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "" @@ -3507,8 +3507,8 @@ msgstr "" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5065,7 +5065,7 @@ msgid "Blur Parameters" msgstr "" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "" @@ -5289,126 +5289,126 @@ msgid "_Amount:" msgstr "" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 #, fuzzy msgid "_Grey" msgstr "Grey:" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "Colour Function" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 #, fuzzy msgid "I_ntensity" msgstr "Colour Density" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "Colour Selection Dialog" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 #, fuzzy msgid "O_versample:" msgstr "Intersection Colour" @@ -5950,64 +5950,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Colouring" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grey" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6015,78 +6015,78 @@ msgid "Color" msgstr "Colour" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 #, fuzzy msgid "_Millimeter" msgstr "Millimetre" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 #, fuzzy msgid "P_review" msgstr "Centre" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "Centre" @@ -7358,16 +7358,16 @@ msgid "TIFF image" msgstr "" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7375,46 +7375,46 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "" diff -uraN gimp-2.2.6/po-plug-ins/hr.gmo gimp-2.2.7/po-plug-ins/hr.gmo --- gimp-2.2.6/po-plug-ins/hr.gmo 2005-04-10 02:12:02.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/hr.gmo 2005-05-08 23:42:22.000000000 +0200 @@ -303,7 +303,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins 0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-03-20 14:49+CET Last-Translator: auto Language-Team: Croatian diff -uraN gimp-2.2.6/po-plug-ins/hr.po gimp-2.2.7/po-plug-ins/hr.po --- gimp-2.2.6/po-plug-ins/hr.po 2005-04-10 02:11:49.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/hr.po 2005-05-08 23:42:09.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-03-20 14:49+CET\n" "Last-Translator: auto\n" "Language-Team: Croatian \n" @@ -283,8 +283,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Nijedan" @@ -386,7 +386,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1098,7 +1098,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotacija" @@ -1295,7 +1295,7 @@ #: ../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:833 +#: ../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 @@ -1326,7 +1326,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2338,7 +2338,7 @@ msgid "_Elevation:" msgstr "_Nagib:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 #, fuzzy msgid "_X offset:" msgstr "_X Ofset:" @@ -2349,7 +2349,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 #, fuzzy msgid "_Y offset:" msgstr "_Y pomak:" @@ -2776,11 +2776,11 @@ msgid "Re_d" msgstr "_Crvena" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Zelena" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Plava" @@ -3371,7 +3371,7 @@ msgstr "Destripe" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3479,7 +3479,7 @@ msgstr "_Razmazivanje" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Crna" @@ -3609,8 +3609,8 @@ msgstr "Ugravirano" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5225,7 +5225,7 @@ msgid "Blur Parameters" msgstr "Osobitosti Zamućenja" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Kut:" @@ -5464,128 +5464,128 @@ msgid "_Amount:" msgstr "_Vrijednost:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Okruglo" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Crta" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Dijamant" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS Kvadrat (Euklidova točka)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS Dijamant" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Siva" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "_Crvena" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "_Cijan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "_Magenta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "_žuta" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Jačina" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 #, fuzzy msgid "Newsprin_t..." msgstr "Novinski tekst..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Novinski tekst..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "_Spot funkcija:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Newsprint" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Rezlučivost" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "SPI _ulaz:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "Izlaz LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "Veličina Ćelije:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Zaslon" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 #, fuzzy msgid "B_lack pullout (%):" msgstr "_Izvlačenje crne (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Odvoji u:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "_CMYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "_Jačina" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "Zaključaj _Kanale" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "Uobičajeno" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Antialiasing" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "_Preklapanje:" @@ -6156,65 +6156,65 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Postscript spremanje ne radi na slikama sa alfa kanalima " -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Greška prilikom pokretanja programa ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "Greška prilikom pokretanja programa ghostscript (%s)" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 #, fuzzy msgid "Write error occurred" msgstr "Greška pri zapisivanju" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Učitaj Postscript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Iscrtavanje" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Razlučivost:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Stranice:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Pokušaj BoundingBox" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Bojanje" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "B/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Siva" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6222,43 +6222,43 @@ msgid "Color" msgstr "Boja" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatski" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "Antialiasing Teksta" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Slabo" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Jako" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "Antialiasing Grafike" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Spremi kao Postscirpt" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Veličina Slike" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "_Zadrži srazmjer" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -6267,37 +6267,37 @@ "mijenjanja Srazmjera." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Jedinica" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Palac" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Milimetar" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Izlaz" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 #, fuzzy msgid "_PostScript level 2" msgstr "_Postskript razina 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Encapsulated PostScript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "_Pregled" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "Veličina _pregleda:" @@ -7613,16 +7613,16 @@ msgid "TIFF image" msgstr "TIFF Kanal" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Stranica %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF Kanal" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7634,7 +7634,7 @@ "tako da će ovo biti konvertirano. Informacije će biti izgubljene zbog " "ovakvog prevođenja." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7642,40 +7642,40 @@ "TIFF format podržava samo komentare u\n" "7bit ASCII kodiranju. Komentar nije spremljen." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Spremi kao TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Kompresija" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Nijedan" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "P_aketno" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Umanji" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Spremi _vijednosti boja iz prozirnih točaka" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Komentar:" diff -uraN gimp-2.2.6/po-plug-ins/hu.gmo gimp-2.2.7/po-plug-ins/hu.gmo --- gimp-2.2.6/po-plug-ins/hu.gmo 2005-04-10 02:12:01.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/hu.gmo 2005-05-08 23:42:22.000000000 +0200 @@ -467,7 +467,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-12-19 09:46+0100 Last-Translator: Arpad Biro Language-Team: Hungarian diff -uraN gimp-2.2.6/po-plug-ins/hu.po gimp-2.2.7/po-plug-ins/hu.po --- gimp-2.2.6/po-plug-ins/hu.po 2005-04-10 02:11:49.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/hu.po 2005-05-08 23:42:09.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-12-19 09:46+0100\n" "Last-Translator: Arpad Biro \n" "Language-Team: Hungarian \n" @@ -288,8 +288,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Nincs" @@ -391,7 +391,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1065,7 +1065,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Forgatás" @@ -1261,7 +1261,7 @@ #: ../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:833 +#: ../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 @@ -1292,7 +1292,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2221,7 +2221,7 @@ msgid "_Elevation:" msgstr "M_egemelés:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "_X-eltolás:" @@ -2232,7 +2232,7 @@ msgstr "" "Az eltolás beállítható az előkép középső egérgombbal való húzásával is." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "_Y-eltolás:" @@ -2643,11 +2643,11 @@ msgid "Re_d" msgstr "Vö_rös" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Zöld" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Kék" @@ -3204,7 +3204,7 @@ msgstr "Csíktalanítás" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3304,7 +3304,7 @@ msgstr "_Elkenés" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Fekete" @@ -3419,8 +3419,8 @@ msgstr "Gravírozás" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4940,7 +4940,7 @@ msgid "Blur Parameters" msgstr "Elmosás paraméterei" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "Szö_g:" @@ -5152,122 +5152,122 @@ msgid "_Amount:" msgstr "Mér_ték:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Kör" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Vonal" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Rombusz" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS-négyzet (euklideszi pont)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS-rombusz" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Szürke" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "_Vörös" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "Cián_kék" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Bíbor_vörös" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "Sárg_a" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intenzitás" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "Ú_jság..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Újság..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "Pontok alak_ja:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Újság" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Felbontás" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "_Bemeneti SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "K_imeneti LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "_Cellaméret:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Képernyő" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "F_ekete kivonása (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Színrebontás:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "CM_YK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntenzitás" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "Csatornák záro_lása" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "Gyári _alapértékek" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Élsimítás" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "_Túlmintavételezés:" @@ -5792,64 +5792,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "A PostScript-mentés nem tud alfa-csatornát tartalmazó képeket kezelni" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Hiba a Ghostscript futtatása közben (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Hiba a Ghostscript indítása közben: %s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Hiba történt az íráskor" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "PostScript betöltése" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Megjelenítés" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Felbontás:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Oldalak:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Betöltendő lapok (például: 1-4 vagy 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Határoló téglalap használata" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Színezés" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "Fekete-fehér" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Szürke" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5857,40 +5857,40 @@ msgid "Color" msgstr "Szín" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatikus" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Szöveg élsimítása" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Gyenge" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Erős" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Rajzok élsimítása" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Mentés PostScript formátumba" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Képméret" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "Méret_arány megtartása" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5899,36 +5899,36 @@ "méretarány változtatása nélkül illeszkedjen a megadott mérethez." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Mértékegység" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Hüvelyk" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "M_illiméter" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Kimenet" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript Level 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Encapsulated PostScript (EPS)" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Elő_nézet" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "Az előné_zet mérete:" @@ -7151,16 +7151,16 @@ msgid "TIFF image" msgstr "TIFF-kép" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "%d. oldal" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF-csatorna" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7172,7 +7172,7 @@ "kezelni, ezért a kép át lesz alakítva erre a formátumra. Ez bizonyos mértékű " "információvesztést okoz." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7180,40 +7180,40 @@ "A TIFF formátum csak 7 bites ASCII kódolást engedélyez\n" "a megjegyzésekben. A megjegyzés nem lett elmentve." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Mentés TIFF formátumba" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Tömörítés" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Nincs" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Bitek összecsomagolása" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "\"_Deflate\" formátum" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Az á_tlátszó képpontok színértékeinek elmentése" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Megjegyzés:" diff -uraN gimp-2.2.6/po-plug-ins/id.gmo gimp-2.2.7/po-plug-ins/id.gmo --- gimp-2.2.6/po-plug-ins/id.gmo 2005-04-10 02:12:02.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/id.gmo 2005-05-08 23:42:23.000000000 +0200 @@ -2,7 +2,7 @@ O Zdip     AboutAmbient:BlueGreenLinearLogarithmicNonePointPositionPreviewRedSizeSpider_UpdateProject-Id-Version: gimp-plugins HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2003-06-28 22:04+0700 Last-Translator: Mohammad DAMT Language-Team: Indonesian diff -uraN gimp-2.2.6/po-plug-ins/id.po gimp-2.2.7/po-plug-ins/id.po --- gimp-2.2.6/po-plug-ins/id.po 2005-04-10 02:11:50.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/id.po 2005-05-08 23:42:10.000000000 +0200 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: gimp-plugins HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2003-06-28 22:04+0700\n" "Last-Translator: Mohammad DAMT \n" "Language-Team: Indonesian \n" @@ -270,8 +270,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Tidak ada" @@ -368,7 +368,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1038,7 +1038,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "" @@ -1234,7 +1234,7 @@ #: ../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:833 +#: ../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 @@ -1265,7 +1265,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2186,7 +2186,7 @@ msgid "_Elevation:" msgstr "" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "" @@ -2196,7 +2196,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "" @@ -2607,11 +2607,11 @@ msgid "Re_d" msgstr "" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../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:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "" @@ -3171,7 +3171,7 @@ msgstr "" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3269,7 +3269,7 @@ msgstr "" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "" @@ -3386,8 +3386,8 @@ msgstr "" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4882,7 +4882,7 @@ msgid "Blur Parameters" msgstr "" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "" @@ -5094,122 +5094,122 @@ msgid "_Amount:" msgstr "" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "" @@ -5728,64 +5728,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5793,76 +5793,76 @@ msgid "Color" msgstr "" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "Lihat Contoh Jadi" @@ -7082,16 +7082,16 @@ msgid "TIFF image" msgstr "" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7099,46 +7099,46 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "" diff -uraN gimp-2.2.6/po-plug-ins/it.gmo gimp-2.2.7/po-plug-ins/it.gmo --- gimp-2.2.6/po-plug-ins/it.gmo 2005-04-10 02:12:02.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/it.gmo 2005-05-08 23:42:23.000000000 +0200 @@ -463,7 +463,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-12-16 16:12+0100 Last-Translator: Marco Ciampa Language-Team: tp@lists.linux.it diff -uraN gimp-2.2.6/po-plug-ins/it.po gimp-2.2.7/po-plug-ins/it.po --- gimp-2.2.6/po-plug-ins/it.po 2005-04-10 02:11:50.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/it.po 2005-05-08 23:42:10.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-12-16 16:12+0100\n" "Last-Translator: Marco Ciampa \n" "Language-Team: tp@lists.linux.it\n" @@ -284,8 +284,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Nessuna" @@ -388,7 +388,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1063,7 +1063,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotazione" @@ -1259,7 +1259,7 @@ #: ../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:833 +#: ../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 @@ -1290,7 +1290,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2219,7 +2219,7 @@ msgid "_Elevation:" msgstr "_Elevazione:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "Spostamento _X:" @@ -2231,7 +2231,7 @@ "Lo spostamento può essere impostato trascinando l'anteprima con il tasto " "centrale del mouse." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "Spostamento _Y:" @@ -2642,11 +2642,11 @@ msgid "Re_d" msgstr "_Rosso" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Verde" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Blu" @@ -3206,7 +3206,7 @@ msgstr "Destriscia" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3303,7 +3303,7 @@ msgstr "_Macchia" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Nero" @@ -3417,8 +3417,8 @@ msgstr "Incisione" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4938,7 +4938,7 @@ msgid "Blur Parameters" msgstr "Parametri sfocatura" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Angolo:" @@ -5149,122 +5149,122 @@ msgid "_Amount:" msgstr "_Ammontare:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Tonda" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Linea" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamante" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "Quadrato PS (punto euclideo)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "Diamante PS" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Grigio" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "_Rosso" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "_Ciano" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "_Magenta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "_Giallo" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensità" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "Effe_tto giornale..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Effetto giornale..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "Funzione _spot:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Effetto giornale" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Risoluzione" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "_Ingresso SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "_Uscita LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "Dimensione c_ella:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Schermo" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "_Nero pullout (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separa in:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntensità" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "_Blocca canali" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "_Valori predefiniti" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Antialiasing" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "S_ovracampionamento:" @@ -5790,64 +5790,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Il salvataggio PostScript non può gestire immagini con canali alfa" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Errore nell'esecuzione di ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Errore nell'esecuzione di ghostscript: %s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Errore di scrittura" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Salva come PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Rendering" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Risoluzione:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Pagine:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Pagine da caricare (per es.: 1-4 o 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Prova a incorniciare" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Colorazione" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "Bianco/Nero" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grigio" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5855,40 +5855,40 @@ msgid "Color" msgstr "Colore" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatico" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Antialiasing del testo" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Debole" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Forte" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Antialiasing grafico" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Salva come PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Dimensione immagine" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Mantieni le proporzioni" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5897,36 +5897,36 @@ "dimensione data senza cambiare le proporzioni." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Unità" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "Poll_ici" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Millimetri" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Uscita" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript Livello 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "Postscript inca_psulato" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "_Anteprima" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "_Dimensioni anteprima:" @@ -7146,16 +7146,16 @@ msgid "TIFF image" msgstr "Immagine TIFF" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Pagina %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "Canale TIFF" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7167,7 +7167,7 @@ "bit, perciò convertirà l'immagine per voi. A causa della conversione alcune " "informazioni andranno perse." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7175,40 +7175,40 @@ "Il formato TIFF supporta solo commenti nella\n" "codifica ASCII a 7bit. Nessun commento salvato." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Salva come TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Compressione" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Nessuna" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Pack bits" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Deflate" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Salva valori _colore dai punti trasparenti" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Commento:" diff -uraN gimp-2.2.6/po-plug-ins/ja.gmo gimp-2.2.7/po-plug-ins/ja.gmo --- gimp-2.2.6/po-plug-ins/ja.gmo 2005-04-10 02:12:02.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ja.gmo 2005-05-08 23:42:23.000000000 +0200 @@ -277,7 +277,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:_3x3_Abbreviation:_About ImageMap_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blinds..._Blue_Blue:_Blur_Blur radius:_Border:_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bump Map_Bump map:_Bumpmap_Checkerboard..._Clear_Contents_Copy_Cubism..._Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Divisions:_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Environment Map_Exponent:_Factor:_File_Film..._Font:_Force_Foreground & background_Fractal Explorer..._Fractals_Free_Ftp Site_GFlare..._GIF comment:_GIMPressionist..._Gamma:_General_Gfig..._Gopher_Gradient_Gray:_Green_Green:_Grey_Grid_Grid size:_Grid..._Grow_HSL color model_Height_Height:_Help_Hex_Hidden_High_Holdness:_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_ImageMap..._Inch_Input SPI:_Insert_Intensity:_Interlace_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Large staggered_Left_Left Start at:_Light_Lighting Effects..._Linear_Lines_Link_Loop forever_Low_Lower_Map type:_Mapping_Mask file extension:_Material_Max (%):_Max Depth:_Max. delta:_Metallic_Millimeter_Mirror_Misc Ops._Modify hue channel_Modify red channel_Monochrome_Mosaic..._Move_Neon..._None_Normal_Optimize (Difference)_Pack Bits_Palette Type:_Paper Tile..._Parameters_Period:_Phase:_Ping Pong_Playback..._Plug-In Browser_Plural:_Polygon_Prefixed name:_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RGB color model_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Ripple..._Rotated_Saturation_Saturation:_Save comment to file_Scale:_Screen Shot..._Search:_Second Flares_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Sobel..._Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Tile size:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo_Undo %s_Update_Upper_Upper Border_Use GLib types (guint8*)_Use background color_Use double-sized grab handles_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_Wrap around_Write hot spot values_X Scale:_X offset:_X:_Y Scale:_Y offset:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fbzip archivecmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-17 12:34+0900 Last-Translator: Tadashi Jokagi Language-Team: Japanese diff -uraN gimp-2.2.6/po-plug-ins/ja.po gimp-2.2.7/po-plug-ins/ja.po --- gimp-2.2.6/po-plug-ins/ja.po 2005-04-10 02:11:51.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ja.po 2005-05-08 23:42:11.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-17 12:34+0900\n" "Last-Translator: Tadashi Jokagi \n" "Language-Team: Japanese \n" @@ -284,8 +284,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "なし" @@ -385,7 +385,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1073,7 +1073,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "回転" @@ -1270,7 +1270,7 @@ #: ../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:833 +#: ../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 @@ -1303,7 +1303,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2270,7 +2270,7 @@ msgid "_Elevation:" msgstr "持ち上げ(_E):" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "X オフセット(_X):" @@ -2280,7 +2280,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "Y オフセット(_Y):" @@ -2710,11 +2710,11 @@ msgid "Re_d" msgstr "赤(_D)" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "緑(_G)" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "青(_B):" @@ -3300,7 +3300,7 @@ msgstr "非ストライプ化" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3410,7 +3410,7 @@ msgstr "ぼかす(_S)" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "黒(_B)" @@ -3540,8 +3540,8 @@ msgstr "彫金風" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5165,7 +5165,7 @@ msgid "Blur Parameters" msgstr "ぼかしパラメータ" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "角度(_A):" @@ -5387,127 +5387,127 @@ msgid "_Amount:" msgstr "量(_A):" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "丸" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "線形" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "ダイアモンド" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS 四角 (ユークリッド点)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS ダイアモンド" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "グレー(_G)" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "赤(_E)" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "シアン(_Y)" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "マゼンダ(_T)" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "黄(_Y)" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "強度" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "新聞印刷(_T)..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "新聞印刷..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "スポット形状:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "新聞印刷" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "解像度" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "入力 SPI(_I):" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "出力 LPI(_U):" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "セルサイズ:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "スクリーン" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 #, fuzzy msgid "B_lack pullout (%):" msgstr "黒弱め (%)(_L):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "分離方法:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "強度(_N)" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "チャンネル固定(_L)" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "初期値に戻す(_F)" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "アンチエイリアシング" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "オーバーサンプル(_V):" @@ -6070,65 +6070,65 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "PostScript による保存はアルファチャンネルを取り扱えません" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "出力ファイル書き込みエラー." -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 #, fuzzy msgid "Write error occurred" msgstr "書き出しエラー発生" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "PostScript 読み込み" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "レンダリング" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "ページ:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "境界枠を調べる" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "カラーリング" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "白黒" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "グレー" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6136,43 +6136,43 @@ msgid "Color" msgstr "カラー" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "自動" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "文字アンチエイリアシング" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "少し" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "強く" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "グラフィックアンチエイリアシング" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "PostScript 形式で保存" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "画像サイズ" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "アスペクト比を保つ(_K)" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -6181,37 +6181,37 @@ "うに調整されて出力されます." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "単位" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "インチ(_I)" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "ミリメートル(_M)" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "出力" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 #, fuzzy msgid "_PostScript level 2" msgstr "_PostScript レベル 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_EPS 形式" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "プレビュー(_R)" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "プレビューサイズ(_S):" @@ -7501,16 +7501,16 @@ msgid "TIFF image" msgstr "TIFF チャンネル" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, fuzzy, c-format msgid "Page %d" msgstr "フレーム %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF チャンネル" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7518,7 +7518,7 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 #, fuzzy msgid "" "The TIFF format only supports comments in\n" @@ -7527,40 +7527,40 @@ "GIF フォーマットではコメントにはASCII文字しか\n" "利用できません. コメントは保存されませんでした." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "TIFF 形式で保存" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "圧縮" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "なし(_N)" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "パックビット(_P)" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "圧縮(_D)" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "コメント:" diff -uraN gimp-2.2.6/po-plug-ins/ko.gmo gimp-2.2.7/po-plug-ins/ko.gmo --- gimp-2.2.6/po-plug-ins/ko.gmo 2005-04-10 02:12:02.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ko.gmo 2005-05-08 23:42:23.000000000 +0200 @@ -33,7 +33,7 @@ UnitUse a transparent background; Only the strokes painted will be visibleUse average valueUse reverse valueValueValue:Van Gogh (LIC)VectorsVoronoi-mode makes only the smvector closest to the given point have any influenceVoronoi-mode makes only the vector closest to the given point have any influenceWarning: the source and the destination are the same channel.WarpWavesWidth:With gradient power (0,1)With p and random (0,1)With random power (0,1)With random power (0,10)WrapX:XBM OptionsY:YellowYellow:Yellow_KYou can not rotate the whole image if there's a floating selection.You can not rotate the whole image if there's a selection.Z:ZealousCropping(tm)...Zoom in (make image bigger)Zoom out (make image smaller)alphablackbluec_astretch: cmap was NULL! Quitting... cyancyan_kgreenhuekx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedmagentamagenta_kredsaturationsin^p, steppedsin^p-based functionvalueyellowyellow_kProject-Id-Version: gimp-plug-ins 1.1.10 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2003-06-05 07:54+0800 Last-Translator: Young-Boo Park Language-Team: Korean diff -uraN gimp-2.2.6/po-plug-ins/ko.po gimp-2.2.7/po-plug-ins/ko.po --- gimp-2.2.6/po-plug-ins/ko.po 2005-04-10 02:11:51.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ko.po 2005-05-08 23:42:11.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 1.1.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2003-06-05 07:54+0800\n" "Last-Translator: Young-Boo Park \n" "Language-Team: Korean \n" @@ -296,8 +296,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "없음" @@ -398,7 +398,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1151,7 +1151,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "회전하기" @@ -1369,7 +1369,7 @@ #: ../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:833 +#: ../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 @@ -1402,7 +1402,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2451,7 +2451,7 @@ msgid "_Elevation:" msgstr "앙각" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 #, fuzzy msgid "_X offset:" msgstr "X 옵셋:" @@ -2462,7 +2462,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 #, fuzzy msgid "_Y offset:" msgstr "Y 옵셋:" @@ -2914,12 +2914,12 @@ msgid "Re_d" msgstr "빨간색" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 #, fuzzy msgid "_Green" msgstr "녹색" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 #, fuzzy msgid "_Blue" msgstr "파란색:" @@ -3543,7 +3543,7 @@ msgstr "줄무늬 없애기" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3659,7 +3659,7 @@ msgstr "번지기(Smear)" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 #, fuzzy msgid "_Black" @@ -3796,8 +3796,8 @@ msgstr "환경" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5529,7 +5529,7 @@ msgid "Blur Parameters" msgstr "파라미터" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 #, fuzzy msgid "_Angle:" msgstr "각도:" @@ -5774,140 +5774,140 @@ msgid "_Amount:" msgstr "환경:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 #, fuzzy msgid "Line" msgstr "선형" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 #, fuzzy msgid "_Grey" msgstr "그레이" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 #, fuzzy msgid "R_ed" msgstr "빨간색" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 #, fuzzy msgid "C_yan" msgstr "청록색" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 #, fuzzy msgid "Magen_ta" msgstr "진홍색" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 #, fuzzy msgid "_Yellow" msgstr "황색" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 #, fuzzy msgid "Intensity" msgstr "강도 등급" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 #, fuzzy msgid "Newsprin_t..." msgstr "프린팅..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 #, fuzzy msgid "Newsprint..." msgstr "프린팅..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "함수 :" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 #, fuzzy msgid "Resolution" msgstr "해상도:" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 #, fuzzy msgid "_Input SPI:" msgstr "출력" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 #, fuzzy msgid "O_utput LPI:" msgstr "출력" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "검사 크기" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "스크린" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 #, fuzzy msgid "Separate to:" msgstr "파라미터 저장" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 #, fuzzy msgid "I_ntensity" msgstr "강도 등급" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "채널" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "초기값" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "앤티앨리어싱" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 #, fuzzy msgid "O_versample:" msgstr "겹치기" @@ -6508,69 +6508,69 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "PostScript 저장은 알파 채널들을 가지고 이미지를 조정할 수 없습니다." -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "GIF: 데이터블럭 크기 읽기 애러\n" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 #, fuzzy msgid "Write error occurred" msgstr "쓰기 애러 발생" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "PostScript 읽기" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "랜더링" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "페이지:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 #, fuzzy msgid "Try Bounding Box" msgstr "바운딩박스 시도" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 #, fuzzy msgid "Coloring" msgstr "컬러링" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 #, fuzzy msgid "B/W" msgstr "B&W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 #, fuzzy msgid "Gray" msgstr "그레이" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6578,87 +6578,87 @@ msgid "Color" msgstr "색상" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "자동" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "텍스트 안티엘리어싱" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 #, fuzzy msgid "Weak" msgstr "약하게" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 #, fuzzy msgid "Strong" msgstr "힘있게" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "그래픽 안티엘리어싱" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 #, fuzzy msgid "Save as PostScript" msgstr "포스트스크립트 저장" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "이미지 크기" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "영상비 유지" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "단위" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 #, fuzzy msgid "_Inch" msgstr "인치" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 #, fuzzy msgid "_Millimeter" msgstr "밀리미터" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "출력" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 #, fuzzy msgid "_PostScript level 2" msgstr "포스트스크립트 레벨 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 #, fuzzy msgid "_Encapsulated PostScript" msgstr "싸여진 포스트스크립트" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 #, fuzzy msgid "P_review" msgstr "미리보기" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "미리보기 크기" @@ -8061,17 +8061,17 @@ msgid "TIFF image" msgstr "이미지에서" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, fuzzy, c-format msgid "Page %d" msgstr "프레임 %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 #, fuzzy msgid "TIFF Channel" msgstr "채널" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -8079,50 +8079,50 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 #, fuzzy msgid "Save as TIFF" msgstr "GIF 로 저장" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 #, fuzzy msgid "Compression" msgstr "압축 레벨" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 #, fuzzy msgid "_None" msgstr "없음" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 #, fuzzy msgid "_Deflate" msgstr " 삭제 " -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 #, fuzzy msgid "Comment:" msgstr "GIF 설명: " diff -uraN gimp-2.2.6/po-plug-ins/lt.gmo gimp-2.2.7/po-plug-ins/lt.gmo --- gimp-2.2.6/po-plug-ins/lt.gmo 2005-04-10 02:12:02.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/lt.gmo 2005-05-08 23:42:23.000000000 +0200 @@ -80,7 +80,7 @@ Save SettingsPrinter Model:Printer SettingsPrinting...Procedure BrowserProcedure _BrowserQbist ...RGBRGBAR_edRadius:RedRed:Redo last zoomRedrawRedraw previewRefresh the Preview windowRelief:Removing color...ResolutionResolution:RewindRightRight:RippleRotation:RoundSa_ve alpha channel (RGBA/RGB)Satu_rationSaturationSaveSave SettingsSave BrushSave FlameSave as BrushSave as GIFSave as JPEGSave as MNGSave as PNGSave as TextScatter HSVScatter RGBScattering HSV...ScreenScreen ShotSeconds DelaySelective Gaussian BlurSelective Gaussian Blur...Set the contrast of the printSettingsSetup PrinterShadow blur:ShiftSineSizeSize (%):Size:Sizes:Smoo_th Palette...SobelSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySoftglowSolid NoiseSolid Noise...Spacing:SparkleSphereSphere DesignerSphere _Designer...SpiderSpiralSpreadSpread AmountSpreading...StandardStepStyleSuperNovaSwirlTemporary ProcedureThank you for choosing GIMPThere are not enough layers to align.This is not a GIF fileThreshold:To ColorTo:ToolsTop:Type:UndoUndo last zoomUnitUnit EditorUnit factor must not be 0.Units:Unsharp MaskUnsupported format or Clipboard empty!UpdateUse GIMP guides...Use Gimp GuidesV_alueValueVan Gogh (LIC)Van Gogh (LIC)...Very darkVi_deo...VideoVideo PatternVideo/RGB...W_hirl and Pinch...WarpWavesWaving...Whirl and PinchWhirling and Pinching...WhiteWi_nd...Width:WindWoodYellowYellow:You can not rotate the whole image if there's a selection.ZealousCropping(tm)..._About ImageMap_Alpha_Apply Canvas..._Autocrop Image_Autocrop Layer_Background_Black_Blend_Blinds..._Blue_Blue:_Blur_Blur radius:_Border Average..._Border:_Brightness:_Brush_Bump Map..._Bump map:_Checkerboard..._Clear_Color Enhance_Color Exchange..._Colorify..._Convolution Matrix..._Cubism..._Curve Bend..._Decompose..._Deinterlace..._Depth Merge..._Depth:_Diffraction Patterns..._Dilate_Displace..._Dots_Edge..._Edit_Emboss_Emboss..._File_Film..._Filter Pack..._Flame..._FlareFX..._Font:_Fractal Explorer..._Fractal Trace..._Fractals_GFlare..._GIF comment:_GIMPressionist..._Gaussian Blur..._Gfig..._Glass Tile..._Gradient Map_Green_Green:_Grid_Grid size:_Grid..._Guillotine_Height_Height:_Help_High_Horizontal_Hot..._Hurl..._IFS Fractal..._IIR_IWarp..._Illusion..._ImageMap..._Insert_Invert_Jigsaw..._Kill_Laplace_Left_Lighting Effects..._Lines_Loop forever_Make Seamless_Max RGB..._Maze..._Metallic_Monochrome_Mosaic..._Motion Blur..._NL Filter..._Neon..._Optimize (Difference)_Pagecurl..._Paper Tile..._Parameters_Photocopy..._Pick..._Pinch amount:_Pixelize..._Plasma..._Playback..._Plug-In Browser_Preview_Print_Qbist..._RGB_RLE_Red:_Right_Ripple..._Sample Colorize..._Scatter RGB..._Screen Shot..._Selective Gaussian Blur..._Semi-Flatten_Settings_Sharpen..._Shift..._Sinus..._Size_Size:_Slur..._Small Tiles..._Sobel..._Softglow..._Solid Noise..._Sparkle..._Speed:_Stretch Contrast_Symbol:_Threshold_Threshold:_Tile bumpmap_Tile..._Tools_Transparent_UnOptimize_Undo_Undo %s_Unit Editor_Unsharp Mask..._Update_Value_Value Invert_Value Propagate..._Value:_Van Gogh (LIC)..._Vertical_Warp_Warp..._Waves..._Whirl angle:_White_Width_Wind_Wrap_Zealous Crop_Zoomafterblackbluecmgreenpixelsredto alphayellowProject-Id-Version: GIMP plugins HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-10 21:27+0200 Last-Translator: Giedrius Naudžiūnas Language-Team: Lithuanian diff -uraN gimp-2.2.6/po-plug-ins/lt.po gimp-2.2.7/po-plug-ins/lt.po --- gimp-2.2.6/po-plug-ins/lt.po 2005-04-10 02:11:51.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/lt.po 2005-05-08 23:42:12.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: GIMP plugins HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-10 21:27+0200\n" "Last-Translator: Giedrius Naudžiūnas \n" "Language-Team: Lithuanian \n" @@ -281,8 +281,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Nieko" @@ -380,7 +380,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1074,7 +1074,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "" @@ -1277,7 +1277,7 @@ #: ../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:833 +#: ../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 @@ -1308,7 +1308,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2255,7 +2255,7 @@ msgid "_Elevation:" msgstr "Sutrumpinimas:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "" @@ -2265,7 +2265,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "" @@ -2686,11 +2686,11 @@ msgid "Re_d" msgstr "Raudona:" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Žalia" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Mėlyna" @@ -3265,7 +3265,7 @@ msgstr "Naikinti dryžius" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3371,7 +3371,7 @@ msgstr "Ieškoti:" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "Juoda" @@ -3492,8 +3492,8 @@ msgstr "Graviravimas" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5038,7 +5038,7 @@ msgid "Blur Parameters" msgstr "Suliejimo nustatymai" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "" @@ -5264,125 +5264,125 @@ msgid "_Amount:" msgstr "Apie" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Apskritas" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Linija" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "Raudona" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "Laikraštinis popierius..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Laikraštinis popierius..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "Sodrumas" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Laikraštinis popierius" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Raiška" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "Dydis:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Ekranas" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 #, fuzzy msgid "I_ntensity" msgstr "Tankumas:" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "" @@ -5924,64 +5924,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Raiška:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Puslapiai:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5989,78 +5989,78 @@ msgid "Color" msgstr "Spalva" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Vienetas" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 #, fuzzy msgid "_Inch" msgstr "Colis" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 #, fuzzy msgid "_Millimeter" msgstr "Milimetras" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Peržiūra" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "Peržiūros dydis:" @@ -7338,16 +7338,16 @@ msgid "TIFF image" msgstr "" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, fuzzy, c-format msgid "Page %d" msgstr "Kadras %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7355,47 +7355,47 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 #, fuzzy msgid "_Deflate" msgstr "Ištrinti" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "" diff -uraN gimp-2.2.6/po-plug-ins/ms.gmo gimp-2.2.7/po-plug-ins/ms.gmo --- gimp-2.2.6/po-plug-ins/ms.gmo 2005-04-10 02:12:02.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ms.gmo 2005-05-08 23:42:23.000000000 +0200 @@ -278,7 +278,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: Gimp 1.3 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2003-11-07 16:26+0800 Last-Translator: MIMOS Open Source Development Group Language-Team: Projek Gabai diff -uraN gimp-2.2.6/po-plug-ins/ms.po gimp-2.2.7/po-plug-ins/ms.po --- gimp-2.2.6/po-plug-ins/ms.po 2005-04-10 02:11:52.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ms.po 2005-05-08 23:42:12.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Gimp 1.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2003-11-07 16:26+0800\n" "Last-Translator: MIMOS Open Source Development Group \n" "Language-Team: Projek Gabai \n" @@ -281,8 +281,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Tiada" @@ -387,7 +387,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1114,7 +1114,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Putaran" @@ -1313,7 +1313,7 @@ #: ../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:833 +#: ../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 @@ -1346,7 +1346,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2365,7 +2365,7 @@ msgid "_Elevation:" msgstr "_Peningkatan:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 #, fuzzy msgid "_X offset:" msgstr "Ofset _X:" @@ -2376,7 +2376,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 #, fuzzy msgid "_Y offset:" msgstr "Ofset _Y:" @@ -2809,11 +2809,11 @@ msgid "Re_d" msgstr "Mer_ah" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Hijau" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Biru" @@ -3411,7 +3411,7 @@ msgstr "Destripe" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3521,7 +3521,7 @@ msgstr "_Comot" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Hitam" @@ -3651,8 +3651,8 @@ msgstr "Lorek" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5287,7 +5287,7 @@ msgid "Blur Parameters" msgstr "Paremeter Kabur" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Sudut:" @@ -5529,128 +5529,128 @@ msgid "_Amount:" msgstr "_Jumlah:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Bulat" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Garis" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Berlian" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "Segi empat PS (Euclidean Dot)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "Berlian PS" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Kelabu" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "M_erah" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "C_yan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "_Kuning" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Keamatan" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 #, fuzzy msgid "Newsprin_t..." msgstr "Newsprint..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Newsprint..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "Fungsi _Bahagian:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Newsprint" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Resolusi" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "_Input SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "O_utput LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "Saiz Sel:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Skrin" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 #, fuzzy msgid "B_lack pullout (%):" msgstr "Tarik keluar H_itam (%)" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Pisahkan ke:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "K_eamatan" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "_Saluran Terkunci" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "_Piawai Kilang" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Pelicinan" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "Terlebih sampel:" @@ -6226,65 +6226,65 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "PostScript tidak boleh mengendalikan imej dengan saluran alfa" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "Ralat menulis fail output" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 #, fuzzy msgid "Write error occurred" msgstr "Ralat tulis berlaku" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "MuatKan PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Rendering" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Resolusi:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Halaman:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Cuba" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Pewarnaan" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "B/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Kelabu" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6292,43 +6292,43 @@ msgid "Color" msgstr "Warna" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatik" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "Pelicinan Teks " -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Lemah" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Kuat" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "Pelicinan Grafik" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Simpan sebagai PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Saiz Imej" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "_Biarkan Nisbah Aspek" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -6337,37 +6337,37 @@ "diberi tanpa merubah nisbah aspek." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Unit" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Inci" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Milimeter" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Output" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 #, fuzzy msgid "_PostScript level 2" msgstr "Aras 2 _PostScript" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "PostScript _Terkurung" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Pralihat" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "_Saiz Pralihat:" @@ -7690,16 +7690,16 @@ msgid "TIFF image" msgstr "Saluran TIFF" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, fuzzy, c-format msgid "Page %d" msgstr "Bingkai %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "Saluran TIFF" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7711,7 +7711,7 @@ "memegang 8 bit, jadi ia akan ditukarkan untuk anda. Maklumat akan hilang " "disebabkan pertukaran ini." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7719,40 +7719,40 @@ "Format TIFF hanya menyokong komen dalam\n" "pengekodan ASCII 7bit. Tidak komen disimpan." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Simpan sebagai TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Mampatan" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Tiada" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Padatan Bit" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Deflate" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Komen:" diff -uraN gimp-2.2.6/po-plug-ins/nb.gmo gimp-2.2.7/po-plug-ins/nb.gmo --- gimp-2.2.6/po-plug-ins/nb.gmo 2005-04-10 02:12:02.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/nb.gmo 2005-05-08 23:42:23.000000000 +0200 @@ -202,7 +202,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Azimuth:_Background_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grid size:_Grow_Height_Height:_Help_Hex_Hidden_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Ignore the bottom layer even if visible_Inch_Input SPI:_Insert_Intensity:_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep original surroundings_Kill_LZW_Large staggered_Left_Lens refraction index:_Light_Lighting Effects..._Linear_Lines_Link_Lower_Make surroundings transparent_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_None_Normal_Pack Bits_Period:_Phase:_Ping Pong_Plural:_Polygon_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Screen Shot..._Search:_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Square_Squares_Staggered_Strength:_Symbol:_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use the (invisible) bottom layer as the base_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackbluecmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedmagentamagenta_kmillisecondspixelspixels from _toppixels from l_eftredsaturationsin^p, steppedsin^p-based functionthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: GIMP po-plug-ins HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-07 17:28+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian diff -uraN gimp-2.2.6/po-plug-ins/nb.po gimp-2.2.7/po-plug-ins/nb.po --- gimp-2.2.6/po-plug-ins/nb.po 2005-04-10 02:11:52.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/nb.po 2005-05-08 23:42:12.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP po-plug-ins HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-07 17:28+0100\n" "Last-Translator: Sigurd Gartmann \n" "Language-Team: Norwegian \n" @@ -282,8 +282,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Ingen" @@ -384,7 +384,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1091,7 +1091,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotasjon" @@ -1288,7 +1288,7 @@ #: ../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:833 +#: ../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 @@ -1320,7 +1320,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2317,7 +2317,7 @@ msgid "_Elevation:" msgstr "Forhøy_else:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 #, fuzzy msgid "_X offset:" msgstr "_X-avstand:" @@ -2328,7 +2328,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 #, fuzzy msgid "_Y offset:" msgstr "_Y-avstand:" @@ -2759,11 +2759,11 @@ msgid "Re_d" msgstr "Rø_d" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Grønn" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Blå" @@ -3360,7 +3360,7 @@ msgstr "Fjern striper" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3468,7 +3468,7 @@ msgstr "_Smør" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Sort" @@ -3598,8 +3598,8 @@ msgstr "Graver" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5218,7 +5218,7 @@ msgid "Blur Parameters" msgstr "Blur parametere" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Vinkel:" @@ -5453,129 +5453,129 @@ msgid "_Amount:" msgstr "_Mengde:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Rund" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Linje" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamant" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS Rute (Euklidisk punkt)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS diamant" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Grå" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "R_ød" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "C_yan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "_Gul" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensitet" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 #, fuzzy msgid "Newsprin_t..." msgstr "Newsprint" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 #, fuzzy msgid "Newsprint..." msgstr "Newsprint" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "_Punktfunksjon:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Newsprint" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Oppløsning" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "_Inndata SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "_Utskrift" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "Cellestørrelse:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Skjerm" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 #, fuzzy msgid "B_lack pullout (%):" msgstr "S_ort pullout (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separer til:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntensitet" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "_Lås kanaler" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "_Fabrikkinnstillinger" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Antialiasing" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "O_versample:" @@ -6140,65 +6140,65 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "GIF: feil under skriving av ut-fil\n" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 #, fuzzy msgid "Write error occurred" msgstr "Skrivefeil oppsto" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Last PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Oppløsning:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Sider:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Farger" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "S/HV" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grå" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6206,79 +6206,79 @@ msgid "Color" msgstr "Farge" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatisk" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "Antialiasing av tekst" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Svak" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Sterk" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "Antialiasing av grafikk" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Lagre som PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Bildestørrelse" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "_Behold aspektrate" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Enhet" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Tomme" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Millimeter" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Utskrift" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Encapsulated PostScript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Fo_rhåndsvisning" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "_Størrelse på forhåndsvisning:" @@ -7605,16 +7605,16 @@ msgid "TIFF image" msgstr "TIFF-kanal" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, fuzzy, c-format msgid "Page %d" msgstr "Ramme %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF-kanal" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7622,46 +7622,46 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Lagre som TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Kompresjon" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "I_ngen" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Pakk-biter" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Pakk ut" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Kommentar:" diff -uraN gimp-2.2.6/po-plug-ins/nl.gmo gimp-2.2.7/po-plug-ins/nl.gmo --- gimp-2.2.6/po-plug-ins/nl.gmo 2005-04-10 02:12:03.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/nl.gmo 2005-05-08 23:42:24.000000000 +0200 @@ -368,7 +368,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:_3x3_Abbreviation:_Adaptive_Additive_Advanced_Algorithm:_Alpha_Alpha trimmed mean_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blinds..._Blue_Blue:_Blur_Border Average..._Border:_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Displace..._Displacement:_Distorted_Dots_Dynamic:_Edge..._Edit_Effect Image:_Elevation:_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Film..._FlareFX..._Font:_Force_Fractal Explorer..._Fractals_Free_Ftp Site_GIF comment:_Gamma:_Gaussian Blur..._General_Gfig..._Glowing:_Gopher_Gradient_Gray:_Green_Green:_Grey_Grid size:_Grid..._Grow_Guillotine_HSL color model_Height_Height:_Help_Hex_Hidden_High_Holdness:_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hot..._Hue_ID:_IIR_Ideal_Ignore_Illusion..._Inch_Input SPI:_Insert_Intensity:_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Keep aspect ratio_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Lighting Effects..._Limit line width_Linear_Lines_Link_Load defaults_Loop forever_Low_Lower_MIME_Map type:_Mapping_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Metallic_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Mosaic..._Move_NL Filter..._Neon..._No. Across:_None_Normal_Normalize_Number of segments:_Optimize (Difference)_Pack Bits_Parameters_Percent black:_Period:_Phase:_Photocopy..._Ping Pong_Plasma..._Playback..._Plural:_Polished:_Polygon_PostScript level 2_Presets_Preview_Preview!_Prompt for area info_Psychobilly_Qbist..._Quality:_RGB_RLE_RLE compression_RLE encoded_Radial_Radius 1:_Radius:_Random seed:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Save defaults_Scale:_Search:_Second Flares_Sender:_Settings_Sharpness:_Shiny:_Show cursor_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_TWAIN..._Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Use the (invisible) bottom layer as the base_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X displacement:_X offset:_X:_Y Scale:_Y displacement:_Y offset:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fbzip archivecmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp 2.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-21 20:30+0100 Last-Translator: Tino Meinen Language-Team: Dutch diff -uraN gimp-2.2.6/po-plug-ins/nl.po gimp-2.2.7/po-plug-ins/nl.po --- gimp-2.2.6/po-plug-ins/nl.po 2005-04-10 02:11:53.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/nl.po 2005-05-08 23:42:13.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp 2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-21 20:30+0100\n" "Last-Translator: Tino Meinen \n" "Language-Team: Dutch \n" @@ -287,8 +287,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Geen" @@ -394,7 +394,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1095,7 +1095,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Draaiing" @@ -1294,7 +1294,7 @@ #: ../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:833 +#: ../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 @@ -1326,7 +1326,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2334,7 +2334,7 @@ msgid "_Elevation:" msgstr "_Verhoging:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "Verschuiving _X:" @@ -2344,7 +2344,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "Verschuiving _Y:" @@ -2782,11 +2782,11 @@ msgid "Re_d" msgstr "_Rood" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "Groe_n" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Blauw" @@ -3391,7 +3391,7 @@ msgstr "Ontstrepen" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3490,7 +3490,7 @@ msgstr "_Smeren" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Zwart" @@ -3609,8 +3609,8 @@ msgstr "Graveren" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5210,7 +5210,7 @@ msgid "Blur Parameters" msgstr "Vervagingsparameters" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "Hoek:" @@ -5452,128 +5452,128 @@ msgid "_Amount:" msgstr "Hoeveelheid:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Rond" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Lijn" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamant" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS-vierkant (Euclidische stip)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS-diamant" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "Grijs" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "Rood" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "Cyaan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magenta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "Geel (Y)" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensiteit" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "_Krantendruk..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Krantendruk..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "Stipfunctie:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Krantendruk" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Resolutie" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "Invoer-SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "Uitvoer-LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "C_elgrootte:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Scherm" # What does this mean? -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 #, fuzzy msgid "B_lack pullout (%):" msgstr "Zwart uittrekken (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Scheiden naar:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "CMYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "Intensiteit" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "Zet kanalen vast" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "Fabriekswaarden" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Anti-alias" # What is the Dutch translation of this phrase? -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "Oversample:" @@ -6124,65 +6124,65 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "PostScript-opslaan kan niet met afbeeldingen met alphakanalen werken" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Fout bij het starten van ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "Fout bij het starten van ghostscript (%s)" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Er was een schrijffout" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "PostScript laden" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Renderen" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Resolutie:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Pagina's:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "" # Kept the PS terminology intact -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Probeer 'Bounding Box'" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Inkleuren" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "Z/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grijs" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6190,45 +6190,45 @@ msgid "Color" msgstr "Kleur" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatisch" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "Anti-aliasen tekst" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Zwak" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Sterk" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "Anti-aliasen afbeelding" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Opslaan als PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Afbeeldingsgrootte" # What is the Dutch translation of 'aspect ratio'? # vormverhouding/verhouding -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Vaste verhouding" # What is the Dutch translation of 'aspect ratio'? -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -6237,36 +6237,36 @@ "opgegeven grootte te passen zonder de aspectratio te veranderen." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Eenheid" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Inch" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Millimeter" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Uitvoer" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript niveau 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Encapsulated PostScript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Vooruitblik" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "Vooruitblik_grootte:" @@ -7598,16 +7598,16 @@ msgid "TIFF image" msgstr "TIFF-kanaal" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Pagina %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF-kanaal" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7619,7 +7619,7 @@ "8 bits; de afbeelding zal voor u worden omgezet, waarbij informatie verloren " "gaat." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7627,40 +7627,40 @@ "Het TIFF-formaat ondersteunt slechts commentaren in 7-bits ASCII. Geen " "commentaar opgeslagen." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Opslaan als TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Compressie" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Geen" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "Pack Bits" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "Deflate" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Kleurwaarden van transparante pixels opslaan" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Opmerking:" diff -uraN gimp-2.2.6/po-plug-ins/no.gmo gimp-2.2.7/po-plug-ins/no.gmo --- gimp-2.2.6/po-plug-ins/no.gmo 2005-04-10 02:12:03.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/no.gmo 2005-05-08 23:42:24.000000000 +0200 @@ -202,7 +202,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Azimuth:_Background_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grid size:_Grow_Height_Height:_Help_Hex_Hidden_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Ignore the bottom layer even if visible_Inch_Input SPI:_Insert_Intensity:_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep original surroundings_Kill_LZW_Large staggered_Left_Lens refraction index:_Light_Lighting Effects..._Linear_Lines_Link_Lower_Make surroundings transparent_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_None_Normal_Pack Bits_Period:_Phase:_Ping Pong_Plural:_Polygon_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Screen Shot..._Search:_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Square_Squares_Staggered_Strength:_Symbol:_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use the (invisible) bottom layer as the base_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackbluecmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedmagentamagenta_kmillisecondspixelspixels from _toppixels from l_eftredsaturationsin^p, steppedsin^p-based functionthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: GIMP po-plug-ins HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-07 17:28+0100 Last-Translator: Sigurd Gartmann Language-Team: Norwegian diff -uraN gimp-2.2.6/po-plug-ins/no.po gimp-2.2.7/po-plug-ins/no.po --- gimp-2.2.6/po-plug-ins/no.po 2005-04-10 02:11:53.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/no.po 2005-05-08 23:42:13.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: GIMP po-plug-ins HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-07 17:28+0100\n" "Last-Translator: Sigurd Gartmann \n" "Language-Team: Norwegian \n" @@ -282,8 +282,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Ingen" @@ -384,7 +384,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1091,7 +1091,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotasjon" @@ -1288,7 +1288,7 @@ #: ../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:833 +#: ../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 @@ -1320,7 +1320,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2317,7 +2317,7 @@ msgid "_Elevation:" msgstr "Forhøy_else:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 #, fuzzy msgid "_X offset:" msgstr "_X-avstand:" @@ -2328,7 +2328,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 #, fuzzy msgid "_Y offset:" msgstr "_Y-avstand:" @@ -2759,11 +2759,11 @@ msgid "Re_d" msgstr "Rø_d" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Grønn" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Blå" @@ -3360,7 +3360,7 @@ msgstr "Fjern striper" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3468,7 +3468,7 @@ msgstr "_Smør" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Sort" @@ -3598,8 +3598,8 @@ msgstr "Graver" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5218,7 +5218,7 @@ msgid "Blur Parameters" msgstr "Blur parametere" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Vinkel:" @@ -5453,129 +5453,129 @@ msgid "_Amount:" msgstr "_Mengde:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Rund" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Linje" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamant" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS Rute (Euklidisk punkt)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS diamant" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Grå" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "R_ød" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "C_yan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "_Gul" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensitet" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 #, fuzzy msgid "Newsprin_t..." msgstr "Newsprint" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 #, fuzzy msgid "Newsprint..." msgstr "Newsprint" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "_Punktfunksjon:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Newsprint" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Oppløsning" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "_Inndata SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "_Utskrift" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "Cellestørrelse:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Skjerm" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 #, fuzzy msgid "B_lack pullout (%):" msgstr "S_ort pullout (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separer til:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntensitet" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "_Lås kanaler" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "_Fabrikkinnstillinger" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Antialiasing" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "O_versample:" @@ -6140,65 +6140,65 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "GIF: feil under skriving av ut-fil\n" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 #, fuzzy msgid "Write error occurred" msgstr "Skrivefeil oppsto" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Last PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Oppløsning:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Sider:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Farger" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "S/HV" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grå" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6206,79 +6206,79 @@ msgid "Color" msgstr "Farge" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatisk" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "Antialiasing av tekst" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Svak" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Sterk" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "Antialiasing av grafikk" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Lagre som PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Bildestørrelse" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "_Behold aspektrate" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Enhet" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Tomme" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Millimeter" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Utskrift" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Encapsulated PostScript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Fo_rhåndsvisning" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "_Størrelse på forhåndsvisning:" @@ -7605,16 +7605,16 @@ msgid "TIFF image" msgstr "TIFF-kanal" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, fuzzy, c-format msgid "Page %d" msgstr "Ramme %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF-kanal" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7622,46 +7622,46 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Lagre som TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Kompresjon" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "I_ngen" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Pakk-biter" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Pakk ut" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Kommentar:" diff -uraN gimp-2.2.6/po-plug-ins/pa.gmo gimp-2.2.7/po-plug-ins/pa.gmo --- gimp-2.2.6/po-plug-ins/pa.gmo 2005-04-10 02:12:03.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/pa.gmo 2005-05-08 23:42:24.000000000 +0200 @@ -71,7 +71,7 @@ (%s "%s") to your %s file.No colorsNo compressionNo lightNoneNormalNumber of ColorsNumber of SegmentsNumber of cells:Number of colors:NumberingO_nly foregroundO_ptionsObject DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOffset:On Film:One frame per layer (replace)Only b_ackgroundOnly one unique colorOp_tionsOpacity:OpenOpen FileOptionsOriginalOriginal:Ot_herOther optionsOverlayPNGPPD File:PPIP_reviewPage %dPage SetupPages:ParametersPattern fillPhotographPixelsPlanePlug-In BrowserPluralPo_larization:PointPoint lightPolygonPositionPre_viewPreferencesPreviewPreview SizePrinting...Qbist ...RGBRGBAR_adius 2:R_adius:R_edR_ed threshold:RadiansRadius:RandomRanks:RawRe_dRealtime PreviewRecompute preview imageRectangleRedRed:Redo last zoomRedrawRedraw previewReflectivityRendering Fractal...Rescan for FractalsReset parameters to default valuesRightRight edgeRight:Ro_w:RobertsRotat_e:Rotation angle:S_elect Window AfterS_electorS_wapSameSat_urationSatu_rationSaturationSaturation VariationsSaturation fr_equency:Saturation:SaveSave FileSave Fractal ParametersSave Lighting PresetSave active fractal to fileSave as BrushSave as Brush PipeSave as GIFSavedScreen ShotSe_lection OnlySeconds DelaySeconds delaySelectSelect Film ColorSelect Pixels bySelect allSelect an objectSelect folder and rescan collectionSelect lightsource colorSelect:SelectionSet light source colorSettingsSha_dowsShadows:ShowShow Line FrameShow all objectsShow control pointsShow gridShow next objectShow positionSierpinskiSineSingularSinusoidalSizeSize (%):Size:Sizes:Solid colorsSource 1:Source 2:Source channel:Source...Spacing:Specular:SphereSphericalSpiderSpiral Number of TurnsStandardStart offset:Stop when pixel differences are smaller than this valueStretchStretch _HSVStrongStyleSymbolTIFF ChannelT_ransparent backgroundTemporaryTemporary ProcedureThank you for choosing GIMPThe unit's plural form.The unit's singular form.This is not a GIF fileThis tool has no optionsTile _height:Tile _width:Tile source imageTile source image: useful for infinite planesToTo ColorTo _bottomTo _rightTo _topTo l_eftTo:Tool optionsToolsTop:TransparentTransparent backgroundTree ViewTypeType of light source to applyType of object to map toType:URLURL: %sUndo last zoomUnitUnit EditorUnitsUnnamedUnsupported brush formatUntitledUse cosine-function for this color componentUse linear mapping instead of any trigonometrical function for this color channelUse log log smoothing to eliminate "banding" in the resultUse loglog smoothingUse sine-function for this color componentV_alueValueValue Invert...Value VariationsValue:Ver_tical base:VerticalVi_deo...VideoVideo PatternVideo/RGB...WarningWarpWeakWhiteWidth:WindowsWork on cop_yX:XBM OptionsXMAX:XMIN:XY position:X_1:X_2:Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:Z:Zoom inZoom out_3x3_Advanced_Algorithm:_Alpha_Angle:_Black level:_Blue_Blue:_Bottom:_Box_Bright:_Brush_Bump Map_Clear_Colorify..._Copy_Depth:_Description:_Dots_Edge..._Edit_Entire Image_Environment Map_File_Film..._Filter Pack..._FlareFX..._Font:_Force_Format:_Fractals_Free_GIF comment:_General_Green_Green:_Grid..._HSL color model_Height:_Help_Hex_Horizontal_Horizontal style:_Horizontal:_Hue_ID:_IIR_Ignore_Inch_Insert_Intensity:_Invert_JPEG_LZW_Light_Lighting Effects..._Link_Loop forever_Lower_MIME_Map type:_Material_Millimeter_Mirror_None_Number of segments:_Parameters_Plug-In Browser_Polygon_Preview_Preview once_Preview!_Print_Print..._Qbist..._RGB color model_RLE_Radius 1:_Rays_Red:_Remove_Remove Backdrop_Rotated_Saturation_Saturation:_Save comment to file_Search:_Show cursor_Size_Size:_Speed:_Strength:_Stroke_Threshold_Threshold:_Tile size:_Tools_Top:_Transparent_Undo_Unit Editor_Update_Upper_Use background color_Value_Value Invert_Value:_Vertical_Vertical style:_Vertical:_View_Warp_Warp..._White_White level:_X offset:_X:_Y offset:_Y:_Yellow_Z:_Zoom_Zoom:a _Single Windowafteralphabluecme-_mailgreenhuek(1-x^p)kx^pk{x(1-x)}^pmillisecondspixels/%aredsaturationthe _Whole Screento alphavalueyellowProject-Id-Version: gimp-plug-ins.gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-03-09 10:22+0530 Last-Translator: Amanpreet Singh Alam Language-Team: Punjabi diff -uraN gimp-2.2.6/po-plug-ins/pa.po gimp-2.2.7/po-plug-ins/pa.po --- gimp-2.2.6/po-plug-ins/pa.po 2005-04-10 02:11:53.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/pa.po 2005-05-08 23:42:14.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins.gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-03-09 10:22+0530\n" "Last-Translator: Amanpreet Singh Alam \n" "Language-Team: Punjabi \n" @@ -289,8 +289,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "ਕੋਈ ਨਹੀ" @@ -389,7 +389,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1060,7 +1060,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "" @@ -1256,7 +1256,7 @@ #: ../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:833 +#: ../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 @@ -1288,7 +1288,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2217,7 +2217,7 @@ msgid "_Elevation:" msgstr "" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "_X ਅੰਤਰਲੰਬ :" @@ -2227,7 +2227,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "_Y ਅੰਤਰਲੰਬ :" @@ -2643,11 +2643,11 @@ msgid "Re_d" msgstr "ਲਾਲ" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../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:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "ਨੀਲਾ" @@ -3213,7 +3213,7 @@ msgstr "" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3312,7 +3312,7 @@ msgstr "" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 #, fuzzy msgid "_Black" @@ -3431,8 +3431,8 @@ msgstr "" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4947,7 +4947,7 @@ msgid "Blur Parameters" msgstr "" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "ਕੋਣ:" @@ -5166,131 +5166,131 @@ msgid "_Amount:" msgstr "" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 #, fuzzy msgid "Round" msgstr "ਗੋਲ" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 #, fuzzy msgid "Line" msgstr "ਸਤਰ" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "ਲਾਲ" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "ਪੀਲਾ" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "ਤੀਬਰਤਾ" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "ਸਤ੍ਰਿਪਤ:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 #, fuzzy msgid "Resolution" msgstr "ਰੈਜ਼ੋਲੇਸ਼ਨ" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "ਸੈਲ ਆਕਾਰ:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 #, fuzzy msgid "Screen" msgstr "ਪਰਦਾ" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 #, fuzzy msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "ਆਂਸ਼ਿਕ" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 #, fuzzy msgid "Antialiasing" msgstr "ਐਟੀਲਾਇਸਿੰਗ" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "" @@ -5821,66 +5821,66 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 #, fuzzy msgid "Resolution:" msgstr "ਰੈਜ਼ੋਲੇਸ਼ਨ:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "ਸਫ਼ੇ:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "ਰੰਗਦਾਰ" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "B/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 #, fuzzy msgid "Gray" msgstr "ਸਲੇਟੀ" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5888,80 +5888,80 @@ msgid "Color" msgstr "ਰੰਗ" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "ਸਵੈ-ਚਾਲਤ" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "ਉਪਨਾਮ-ਵਿਰੋਧੀ ਯੋਗ ਕਰੋ" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "ਕਮਜੋਰ" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "ਸ਼ਕਤੀਸ਼ਾਲੀ" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "ਉਪਨਾਮ-ਵਿਰੋਧੀ ਯੋਗ ਕਰੋ" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "ਚਿੱਤਰ ਆਕਾਰ" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "ਅਕਾਰ ਅਨੁਪਾਤ ਰੱਖੋ" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "ਇਕਾਈ" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "ਇੰਚ" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "ਮਿਲੀਮੀਟਰ" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 #, fuzzy msgid "Output" msgstr "ਆਉਟਪੁੱਟ" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "ਨਮੂਨਾ" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "ਨਮੂਨਾ ਆਕਾਰ:" @@ -7240,16 +7240,16 @@ msgid "TIFF image" msgstr "TIFF ਚੈਨਲ" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "ਸਫ਼ਾ %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF ਚੈਨਲ" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7257,47 +7257,47 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 #, fuzzy msgid "Compression" msgstr "ਨਪੀੜਨ" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "ਕੋਈ ਨਹੀਂ" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 #, fuzzy msgid "Comment:" msgstr "ਟਿੱਪਣੀ:" diff -uraN gimp-2.2.6/po-plug-ins/pl.gmo gimp-2.2.7/po-plug-ins/pl.gmo --- gimp-2.2.6/po-plug-ins/pl.gmo 2005-04-10 02:12:03.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/pl.gmo 2005-05-08 23:42:24.000000000 +0200 @@ -460,7 +460,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins.gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-14 23:51+0100 Last-Translator: Bartosz Kosiorek Language-Team: Polish diff -uraN gimp-2.2.6/po-plug-ins/pl.po gimp-2.2.7/po-plug-ins/pl.po --- gimp-2.2.6/po-plug-ins/pl.po 2005-04-10 02:11:54.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/pl.po 2005-05-08 23:42:14.000000000 +0200 @@ -20,7 +20,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins.gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-14 23:51+0100\n" "Last-Translator: Bartosz Kosiorek \n" "Language-Team: Polish \n" @@ -300,8 +300,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Brak" @@ -404,7 +404,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1083,7 +1083,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Obrót" @@ -1279,7 +1279,7 @@ #: ../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:833 +#: ../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 @@ -1310,7 +1310,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2240,7 +2240,7 @@ msgid "_Elevation:" msgstr "Wz_niesienie:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "Przesunięcie _X:" @@ -2252,7 +2252,7 @@ "Przesunięcie może być regulowane, przez kliknięcie i przeciąganie podglądu, " "środkowym klawiszem myszy." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "Przesunięcie _Y:" @@ -2663,11 +2663,11 @@ msgid "Re_d" msgstr "_Czerwony" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Zielony" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Niebieski" @@ -3226,7 +3226,7 @@ msgstr "Zdepaskuj" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3323,7 +3323,7 @@ msgstr "Roz_maż" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Czarny" @@ -3437,8 +3437,8 @@ msgstr "Grawerowanie" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4967,7 +4967,7 @@ msgid "Blur Parameters" msgstr "Parametry rozmycia" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Kąt:" @@ -5178,122 +5178,122 @@ msgid "_Amount:" msgstr "Roz_miar:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Kółka" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Linie" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamenty" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "Punkt Euklidesa" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS Diamenty" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Szary" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "_Czerwony" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "_Niebieskozielony" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "_Purpurowy" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "Żół_ty" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensywność" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "_Wydruk gazetowy..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Wydruk gazetowy..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "_Rodzaj p_unktu:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Wydruk gazetowy" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Rozdzielczość" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "W_ejściowe SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "Wyjś_ciowe LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "Rozmiar ocz_ka:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Ekran" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "Wyciąg _czarnego (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Rozdzielane kanały:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "_Intensywność" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "Za_blokuj kanały" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "Wartości _domyślne" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Wygładzanie" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "_Nadpróbkowanie:" @@ -5814,64 +5814,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Zapis PostScript nie obsługuje obrazów z kanałami alfa" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Błąd przy uruchamianiu programu ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Błąd przy uruchamianiu programu ghostscript: %s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Wystąpił błąd zapisu" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Odczyt PostScriptu" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Renderowanie" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Rozdzielczość:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Strony:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Strony do odczytania (np.: 1-4 lub 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Prostokąt ograniczający" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Kolory obrazu" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "Czarno Biały" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Szary" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5879,40 +5879,40 @@ msgid "Color" msgstr "Kolor" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Auto" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Wygładzanie tekstu" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Słabe" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Silne" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Wygładzanie grafiki" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Zapis jako PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Wymiary obrazu" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Zachowaj współczynnik proporcji" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5921,36 +5921,36 @@ "współczynnika proporcji." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Jednostka" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Cal" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Milimetr" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Wyjście" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript poziom 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "Zag_nieżdżalny PostScript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "_Podgląd" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "_Rozmiar podglądu:" @@ -7172,16 +7172,16 @@ msgid "TIFF image" msgstr "Obraz TIFF" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Strona %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "Kanały TIFF" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7193,7 +7193,7 @@ "tylko 8 bitów, więc obraz zostanie skonwertowany. Z tego powodu część danych " "może zostać utracona." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7202,40 +7202,40 @@ "zapisane w kodowaniu 7bit ASCII.\n" "Komentarz nie został zapisany." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Zapis jako TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Kompresja danych" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Brak" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Kompresowanie bitów" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Deflacja" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Zapis wartości ko_lorów dla przezroczystych punktów" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Komentarz:" diff -uraN gimp-2.2.6/po-plug-ins/pt_BR.gmo gimp-2.2.7/po-plug-ins/pt_BR.gmo --- gimp-2.2.6/po-plug-ins/pt_BR.gmo 2005-04-10 02:12:03.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/pt_BR.gmo 2005-05-08 23:42:24.000000000 +0200 @@ -442,7 +442,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins.HEAD Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-12-14 03:49-0200 Last-Translator: Joao S. O. Bueno Calligaris Language-Team: Brazilian Portuguese <> diff -uraN gimp-2.2.6/po-plug-ins/pt_BR.po gimp-2.2.7/po-plug-ins/pt_BR.po --- gimp-2.2.6/po-plug-ins/pt_BR.po 2005-04-10 02:11:55.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/pt_BR.po 2005-05-08 23:42:15.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins.HEAD\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-12-14 03:49-0200\n" "Last-Translator: Joao S. O. Bueno Calligaris \n" "Language-Team: Brazilian Portuguese <>\n" @@ -292,8 +292,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Nenhum" @@ -396,7 +396,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1068,7 +1068,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotação" @@ -1264,7 +1264,7 @@ #: ../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:833 +#: ../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 @@ -1296,7 +1296,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2225,7 +2225,7 @@ msgid "_Elevation:" msgstr "_Elevação:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "Deslocamento _X:" @@ -2237,7 +2237,7 @@ "O deslocamento pode ser ajustado deslocando-se a pré-visualização com o " "botão do meio do mouse. " -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "Deslocamento _Y:" @@ -2648,11 +2648,11 @@ msgid "Re_d" msgstr "_Vermelho" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "V_erde:" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "Az_ul:" @@ -3213,7 +3213,7 @@ msgstr "Suprimir Listras" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3312,7 +3312,7 @@ msgstr "_Manchar" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Preto" @@ -3426,8 +3426,8 @@ msgstr "Entalhar" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4956,7 +4956,7 @@ msgid "Blur Parameters" msgstr "Parâmetros para borrar" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "Â_ngulo:" @@ -5170,122 +5170,122 @@ msgid "_Amount:" msgstr "_Quantidade:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Circular" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Linha" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamante" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "Quadrado PS (Ponto Euclidiano)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "Diamante PS" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "C_inza" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "V_ermelho" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "_Ciano" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Ma_genta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "Amare_lo" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensidade" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "Retícu_la..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Retícula..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "_Função de ponto:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Reticular" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Resolução" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "SPI de _entrada:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "_LPI de saída:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "Tamanho da _célula:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Tela" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "Extração de _preto (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separar em:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "CM_YK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntensidade" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "_Sincronizar canais" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "P_adrões de fábrica" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Suavizar" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "S_obre-amostragem:" @@ -5811,64 +5811,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Salvar como PostScript não pode manipular imagens com canais alfa" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Erro ao iniciar o ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Erro ao iniciar o ghostscript: (%s)" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Ocorreu um erro de gravação" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Carregar PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Renderizando" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Resolução:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Páginas:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Páginas para abrir (ex. 1-4 ou 1, 3, 5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Tentar utilizar \"Bounding Box\"" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Colorindo" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "Preto & Branco" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Cinza" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5876,40 +5876,40 @@ msgid "Color" msgstr "Cor" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automático" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Suavização de texto" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Fraco" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Forte" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Suavização de gráficos" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Salvar como PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Tamanho da Imagem" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "Manter _proporção" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5918,36 +5918,36 @@ "tamanho especificado sem ter suas proporções alteradas." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Unidade" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "P_olegada" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Milímetro" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Saída" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript nível 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "Po_stScript Encapsulado" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "P_ré-visualização" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "Tamanho da pré-_visualização" @@ -7169,16 +7169,16 @@ msgid "TIFF image" msgstr "Imagem TIFF" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Página %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "Canal TIFF" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7190,7 +7190,7 @@ "correntemente só pode tratar 8 bits por canal, então a mesma será convertida " "para você. Informação será perdida nesta conversão." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7198,40 +7198,40 @@ "O formato TIFF só suporta comentários em \n" "ASCII de 7 bits. O comentário não foi salvo." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Salvar como TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Compressão" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Nenhum" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "Em_pacotar Bits" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Deflate" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Salvar informações de _cor dos pixels transparentes" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Comentário:" diff -uraN gimp-2.2.6/po-plug-ins/pt.gmo gimp-2.2.7/po-plug-ins/pt.gmo --- gimp-2.2.6/po-plug-ins/pt.gmo 2005-04-10 02:12:03.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/pt.gmo 2005-05-08 23:42:24.000000000 +0200 @@ -294,7 +294,7 @@ which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: 2.6 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-03-21 20:30+0000 Last-Translator: Duarte Loreto Language-Team: Portuguese diff -uraN gimp-2.2.6/po-plug-ins/pt.po gimp-2.2.7/po-plug-ins/pt.po --- gimp-2.2.6/po-plug-ins/pt.po 2005-04-10 02:11:54.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/pt.po 2005-05-08 23:42:15.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-03-21 20:30+0000\n" "Last-Translator: Duarte Loreto \n" "Language-Team: Portuguese \n" @@ -290,8 +290,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Nenhum" @@ -394,7 +394,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1107,7 +1107,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotação" @@ -1304,7 +1304,7 @@ #: ../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:833 +#: ../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 @@ -1335,7 +1335,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2350,7 +2350,7 @@ msgid "_Elevation:" msgstr "_Elevação:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 #, fuzzy msgid "_X offset:" msgstr "Deslocamento _X:" @@ -2361,7 +2361,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 #, fuzzy msgid "_Y offset:" msgstr "Deslocamento _Y:" @@ -2788,11 +2788,11 @@ msgid "Re_d" msgstr "V_ermelho" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Verde" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "Az_ul" @@ -3383,7 +3383,7 @@ msgstr "Supressão Listas" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3491,7 +3491,7 @@ msgstr "Manc_har" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Preto" @@ -3621,8 +3621,8 @@ msgstr "Entalhe" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5240,7 +5240,7 @@ msgid "Blur Parameters" msgstr "Parâmetros Desfocamento" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "Âng_ulo:" @@ -5480,128 +5480,128 @@ msgid "_Amount:" msgstr "Qu_antidade:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Redondo" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Linha" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamante" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "Quadrado PS (Ponto Euclidiano)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "Diamante PS" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "C_inza" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "V_ermelho" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "Ci_ano" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "A_marelo" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensidade" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 #, fuzzy msgid "Newsprin_t..." msgstr "Impressão Jornal..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Impressão Jornal..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "Função Ponto_s:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Impressão Jornal" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Resolução" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "Entrada SP_I:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "Saída _LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "Tamanho Célula:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Ecrã" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 #, fuzzy msgid "B_lack pullout (%):" msgstr "E_xtracção de Preto (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separar para:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntensidade" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "B_loquear Canais" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "Valores por _Omissão" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Antialiasing" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "S_uper-amostragem:" @@ -6175,65 +6175,65 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Gravar em PostScript não suporta imagens com canais alfa" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Erro ao iniciar o ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "Erro ao iniciar o ghostscript (%s)" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 #, fuzzy msgid "Write error occurred" msgstr "Ocorreu erro de gravação" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Ler PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Renderização" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Resolução:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Páginas:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Tentar Limitar Caixa" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "A Colorir" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "P/B" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Cinza" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6241,43 +6241,43 @@ msgid "Color" msgstr "Cor" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automático" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "Antialiasing Texto" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Fraca" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Forte" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "Antialiasing Gráfico" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Gravar como PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Tamanho Imagem" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "Manter Propor_ções" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -6286,37 +6286,37 @@ "ao tamanho da janela sem alterar as proporções." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Unidade" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "P_olegada" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Milímetro" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Saída" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 #, fuzzy msgid "_PostScript level 2" msgstr "_PostScript Nível 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "PostScript _Encapsulado" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Anteve_r" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "Tamanho Antevi_são:" @@ -7637,16 +7637,16 @@ msgid "TIFF image" msgstr "Canal TIFF" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Página %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "Canal TIFF" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7657,7 +7657,7 @@ "A imagem que está a ler tem 16 bits por canal. O GIMP apenas suporta 8 bit, " "pelo que será convertido. Será perdida informação devido a esta conversão." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7665,40 +7665,40 @@ "O formato TIFF apenas suporta comentários na\n" "codificação ASCII 7bit. Nenhum comentário gravado." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Gravar como TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Compressão" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Nenhum" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "Em_pacotar Bits" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "Esva_ziar" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Gravar valores de _cor de pixels transparentes" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Comentário:" diff -uraN gimp-2.2.6/po-plug-ins/ro.gmo gimp-2.2.7/po-plug-ins/ro.gmo --- gimp-2.2.6/po-plug-ins/ro.gmo 2005-04-10 02:12:03.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ro.gmo 2005-05-08 23:42:24.000000000 +0200 @@ -47,7 +47,7 @@ ! ,9=X8F.PLU*D"'H,%7T$0E^[52 ANS)(]:B M 4Z+RI! QWJK_#GV;6-/91\C >&<@3O?YAdditionAlphaAlpha:Angle:AntialiasingAuthor:AutoBackgroundBlueBlue:Brightness:ChannelsClearColorContrast:Copyright:CyanDate:DefaultDeleteDelete PointDensity:EditFeatherForegroundGIMP ExtensionGIMP Plug-InGeneralGradientGradientsGrayGrayscaleGreenGreen:Height:HorizontalHueHue:Internal GIMP procedureLinearMagentaModeNoneNormalOffset:Opacity:OpenOverlayPastePixelsPreferencesPreviewRGBRadialRadius:RedRed:RedoReplaceResolution:Rotating...RotationSaturationSaturation:SaveScreenSelectSelectionSinusoidalSizeSize:Spacing:StandardTemporary ProcedureThe default comment is limited to %d characters.Threshold:TransparentTypeType:UndoUnitsUnnamedUntitledValueVerticalWhiteWidth:X:Y:YellowZoom inZoom outpixelspixels/%aProject-Id-Version: gimp-plugins Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2000-11-24 15:46+0100 Last-Translator: Robert Claudiu Gheorghe Language-Team: Română diff -uraN gimp-2.2.6/po-plug-ins/ro.po gimp-2.2.7/po-plug-ins/ro.po --- gimp-2.2.6/po-plug-ins/ro.po 2005-04-10 02:11:55.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ro.po 2005-05-08 23:42:15.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2000-11-24 15:46+0100\n" "Last-Translator: Robert Claudiu Gheorghe \n" "Language-Team: Română \n" @@ -297,8 +297,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Nimic" @@ -399,7 +399,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1146,7 +1146,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotire" @@ -1357,7 +1357,7 @@ #: ../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:833 +#: ../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 @@ -1392,7 +1392,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2423,7 +2423,7 @@ msgid "_Elevation:" msgstr "Selecţie: " -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 #, fuzzy msgid "_X offset:" msgstr "Decalaj:" @@ -2434,7 +2434,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 #, fuzzy msgid "_Y offset:" msgstr "Decalaj:" @@ -2890,12 +2890,12 @@ msgid "Re_d" msgstr "Roşu" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 #, fuzzy msgid "_Green" msgstr "Verde:" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 #, fuzzy msgid "_Blue" msgstr "Albastru:" @@ -3539,7 +3539,7 @@ msgstr "Directoare" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3656,7 +3656,7 @@ msgstr "Decupare" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 #, fuzzy msgid "_Black" @@ -3793,8 +3793,8 @@ msgstr "" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5501,7 +5501,7 @@ msgid "Blur Parameters" msgstr "" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 #, fuzzy msgid "_Angle:" msgstr "Unghi:" @@ -5746,143 +5746,143 @@ msgid "_Amount:" msgstr "Numar:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 #, fuzzy msgid "Line" msgstr "Linear" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 #, fuzzy msgid "Diamond" msgstr "mod imagine" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 #, fuzzy msgid "_Grey" msgstr "Gri" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 #, fuzzy msgid "R_ed" msgstr "Roşu" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 #, fuzzy msgid "C_yan" msgstr "Bleu" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 #, fuzzy msgid "Magen_ta" msgstr "Violet" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 #, fuzzy msgid "_Yellow" msgstr "Galben" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 #, fuzzy msgid "Intensity" msgstr "Intensitate:" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 #, fuzzy msgid "Newsprin_t..." msgstr "Punct nou" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 #, fuzzy msgid "Newsprint..." msgstr "Punct nou" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "Saturare:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 #, fuzzy msgid "Newsprint" msgstr "Punct nou" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 #, fuzzy msgid "Resolution" msgstr "Rezoluţie:" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 #, fuzzy msgid "_Input SPI:" msgstr "Nivele intrare:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 #, fuzzy msgid "O_utput LPI:" msgstr "Nivele ieşire:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "Dimensiune:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Ecran" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 #, fuzzy msgid "Separate to:" msgstr "Salvează în" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 #, fuzzy msgid "_RGB" msgstr "RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 #, fuzzy msgid "I_ntensity" msgstr "Intensitate:" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "Coboară canalul" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "Implicit" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Antialiasing" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 #, fuzzy msgid "O_versample:" msgstr "Suprapunere" @@ -6484,68 +6484,68 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "Eroare la deschiderea fişierului: %s\n" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 #, fuzzy msgid "Write error occurred" msgstr "Scrie toate erorile în fişier..." -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 #, fuzzy msgid "Rendering" msgstr "Amestec..." #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Rezoluţie:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 #, fuzzy msgid "Pages:" msgstr "Imagine:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 #, fuzzy msgid "Coloring" msgstr "Culoare" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Gri" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6553,87 +6553,87 @@ msgid "Color" msgstr "Culoare" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 #, fuzzy msgid "Automatic" msgstr "/Automatic" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "Antialiasing" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 #, fuzzy msgid "Strong" msgstr "Saturare" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "Antialiasing" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 #, fuzzy msgid "Image Size" msgstr "Dimensiunea imaginii: %s" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "Raportul de aspect:" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 #, fuzzy msgid "Unit" msgstr "Unitate de masură:" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 #, fuzzy msgid "_Inch" msgstr "inch" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 #, fuzzy msgid "_Millimeter" msgstr "milimetru" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 #, fuzzy msgid "Output" msgstr "Nivele ieşire:" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 #, fuzzy msgid "P_review" msgstr "Previzualizare" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "Dimensiune previzualizare:" @@ -8053,17 +8053,17 @@ msgid "TIFF image" msgstr "Canal" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, fuzzy, c-format msgid "Page %d" msgstr "Traseu %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 #, fuzzy msgid "TIFF Channel" msgstr "Canal" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -8071,49 +8071,49 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 #, fuzzy msgid "Compression" msgstr "Sesiune" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 #, fuzzy msgid "_None" msgstr "Nimic" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 #, fuzzy msgid "_Deflate" msgstr "Sterge" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 #, fuzzy msgid "Comment:" msgstr "Numar:" diff -uraN gimp-2.2.6/po-plug-ins/ru.gmo gimp-2.2.7/po-plug-ins/ru.gmo --- gimp-2.2.6/po-plug-ins/ru.gmo 2005-04-10 02:12:03.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ru.gmo 2005-05-08 23:42:24.000000000 +0200 @@ -1,193 +1,341 @@ -19 ,sP   1#U"oĞ *"-Pp -'VɟQ r  ƠҠڠ - 0 7AJ`yѡ)ڡL#p Ǣ:#<<TC$գ'}ɥ&G"n - ȦҦ -+ >H%Q w<R> MY`r 21ި $#H[pAߩ   $2 -GR[ch ת -ݪ  ' -4 -? -J -U`3e ˫ҫ׫ݫ / ; EQX j v ¬ˬ۬"(09 -J Uck} "֭?/H$b2#/ޮ'$6&[J& -'1Y -` -kv*(Ӱ h%h)'!#I4m4(ײ)'*lR*55 ,V*4 $ 2J4S ';3c7UϷ% -,7=W^em u  -Ÿ͸ Ӹ.G -Vax @ ܹ -2HQgv ú̺Ժ  '$3X+o4лػ !+*VvA˼Լ ټ )6,c - -(+ɽ!0&L s# #پ1#/&Sz/>"6J8g <|'?9 N\ kw   - ,= -F Q -_j {  !) :H`sy $#H P\0k  ! !:Qm|    '<DYb -i -t   -  20=P1=/.@ I+U(B - MY t   -& 7CU:m)/#(2L+ "4! Vc|-I\'t).(-C'q #%2&Y _m#t $ 1%*;6[' 0E[`g~ -)&",OW\k{6 - ,5E -T_ -d -oz   g .;(L)u -  % *6Kaj|    !2 KY ` jx|  -2&/YB= +@ +R P/C ZdE GTd z1"&A ^*"  '"3V#v$ +'VQI   + '1 :FNW_ +t  )8I`py) L4E` :<)Cf$w'V~}&"Cf% + 4Ibj+r %  <YRa ) =2J1} $ /AK   + -  -!, = JTX_$3   "( -. 9nFY=v\C3 <HOgw -"  K's|  6  + >(_*  ] @L P] dqw   - -/5 ; GGQBNI+u{%$%$% $Fks|   --8P lz  -  -% 0< S_hp y <% -'% Mn~   ! (5M -e p} -   -  3 -K Vc{ +    % /9 O]ey   -'2 ; EIR  -:0 -FQ.W  0B`|     %Dc %    '3#Cg7   ,9 BLSZ iv~23 OY -]h  -   - +CI -P[#c -   -'  % /9Y`ou{ 8 += ERfy:'( HT jv $ - &/6G -OZaip   '%,Rc { (Ccrz   /D]n"+B -Q#\ 1, $ + -7BH Q [ eow   4%!Z|  -  - -,;4 p | -  -  % -/:R dr*   -  # / ; GSc v      /5; J T ao .' ) 0<L]m  +&RXn -u     -(B#W{0]#]fF` h r#|? (@)T%~<E'  :  G T g /~ * C  -; -+W -! - -' - - -   " /  > L U l  t    ! #       - 7 H ]  -y  -        -     ' - 2 8 Y?   -      -    *BWk} /-/1 a ku  D''@O     &6? Ubs7xZ$+ -1 < I S] t~   - # +5IQdmRv&ZS^5+FJ0ME0PvK>.<m7z!.)%%O)u/A3q&0 4<qp~=%,$!J+ v) --   $  6 @ C L P V  [ e         ! &!G!`!f!j!r! !!!!! !!" "%"6"E"M" V" c"p""&""""" -# #%#5#FM##,#Q#:%$`$u$*$$$$$$$% %%-%<%L%T%]% -l%w% }% %R%P%:&B&K&T&Z&b&j'A{'$'='. (-O(-}((( -( (( ((U(nH)))),)***'*A*Y*q****** *&*%*%+:+@+F+W+\+a+p+s+y++++++S+C+:9,Ft,,,,,,, --4-9- H- R- \-f-m-u- ~--- -- - - -- ----. ....(. -. 9.F. M.W.`.f.o. w. .... -.... ... // -$///8/ ->/I/P/ W/a/ g/q/y// /////////// -/ / //0000'0 -090A0V0^0 d0p00000000000000 0 0 1 1 1+1 -31 >1J1 P1]1c1 -k1 v111 -11111 11 111 222 -#2.2 42 -@2K2Q2 Z2f2 -n2y22 22 2 2222 2 223 33&3.373?3 -H3 -S3^38g3 3 -3 33333 363+444<4 C4Q4 p4z44 44 4 -4444 4 4 44 45555 #5-5 15;5?5G5K5Q5X5n555555555555555"56!626 76 D6P6 d6 -n6 y6 -66 6 66666 66 77 7-7 -<7G7V7:k777 -7 -777Y7>9$<$< ="=> ->>l>-h?U?+?6@)O@@y@M@BA=KA0AAA\Ag7BB,D"YD|DD"DDDDFEGXE+E(E$E5F PFqFRF8F|G6G(G"G4H]GH(H HpH`I@I#JKDL4M8=M>vN<NMN-@OnO#ODO*O -!P -,P<7PtPPTPP -Q Q $Q0QDQQ^Q;RVR sR }R:R3R Sf$ScSSTg T$T#T$T5Td,U%U!UUUUVV1VLV bV nVzV2V)VV*V&W',WTWmW tWWWW4WWWXX -*X5X!XX X X% Y /Y -~h~F~M/B}-jY01AN2'Ai_6@cwnۄ#Jn3؅!2?I  Ćц!)9QlLJև"@ R _m) Έ)C:.~>>+Ɋ*+#.O~%D&b001!.S4.Ӎ#&:5a2Ŏ"*"Mp)y - Џߏ#*CZrZXphZّt4\"):ZKS9$4 Y(z!ŔK<eN˕B#]Ӗ ܖ8"2>q.L ˜{aoxљiJj:9tWWHOB4;"<^/+˝H>@/2M/03`Cn؟:GV7٠G;Y1:ǡfriܢL<\Ndgpy7lѤU>;Х*/$/T*,ܦ 8'7_#x&ç*էX -YKd"ҨZ$#ݩ">W u  ɪ۪  ? Zg5|9 (%N eKe":Eݮ# 4@^|5ѯ6 ->I*\$&Ӱ(0 7>v. -ñ߱ - - !)6+`.5 -#?U(Y  -dz ?'CCk\   (4(Kt=ٶP[hNķ5OW -r-}Ƹ=Wٽ6#H!l#.@("3KAA# -%'@rh,'>7^AE8/h{059O!X -z:#0/ IU f sF_7fT[S[T2[T[8T( ->IZn!C:2X632$G*l1//N -W b -n y#*P  +$ PI]36K"^$ &. Ubv 4BS;k 9HYu^ -  +Ic'r*:#Ko*#'9,9f"!$ -05f  ] $!F=bug)~d#8N$j#,0B3[/. -/M` uEE.EtE"(Kiz "%H=g;2&1Xk".  --!8Zn_5:!:\%H: AO S1_ &?.*Yk8Sdy61LhR -C?*9PHo H-v4$=p?^(8#WF{(:6Q ,  # 2@Q&f  #!(GX<t"+"60SD3@ MhwI)7!a+,K'; c-q-$' H_v1*&&30Z.$4''%OHu.-50fU|Q@$ex 2Kd/y///.^pi1K"b -  *9Y"xH &+?k%C! 8B${6&48(mN>$$BKg7 (Fd&$ -+I$h$U -b11#Ugy:f?Oo -"  41 Lf J  & -A2 -*t -$ -R -  (#  -L W o $  .    +0 \ u   0 8 J/ 1z . 3 0J@$I~y(4 ]iPg%K:q:6*[IQrmj!/0Iuzkx\<.MAC.FI:\# &#F&j  -$82;$L&q=80+2\=  -(3 L'V~ :,-" P^n --'>/\/+")3&]<83&,Z5sY1 `  !2!G![! -n!y!=!/!}!7y"q"## -7#B#^#u###*## -##%$:$T$s$"$$<$%%%c% & && -4&?&Y&o&&& &*& -&&' &'3'E'\'z'2'!'' ''%(7(!H(j(|((9")\)y)*-*+*E+7M+}+,f,, -t-{.0.y.T./[//J1625 -36@36w3P333A34Gu464=4726Xj6K6-7==7K{7`75(83^88^9y]:D:2;_O;R<&=)= ="=V> Z>f>}w>2>(?9?L?d?"?? ??? ??&?@9@&N@!u@@@D@'AG)AQqA,AAAA,BN1B>B -BGBC!C??CCCLC%CD&D-DDrD>D8DVE]E5|EE%E%EF6%FM\FxF8#G\GGH5:I:pI~I*J9J$HJ/mJ2J#JJKK/KHKcKrK$KK -KK#KLL -3M >M JMVM[MlMOOEyPVPaQcxQiQFR&[RRR -RR RzRZS1T0JT -{T-T T -TT.T@U.FU/uU UU*UUVVK0VM|VQV -W'W0WNWRWVWvW -yWWWW W WWWJXX^YYZ0ZGZVZTgZZTZ"['[A[V[m[ -[ [[[ [[%[9\ H\V\]\s\ \\\\ -\ \\\\])] -9]D] ^]k]]]]] ] ]]] -^ ^&)^P^f^w^^^^^^^ __0_A_ T_ a_m___ ___ -__ _ __` `(`:`W`s````````& a2aMa -Ra,]aaa a!a -a"aab -b b,b;b@bWb hbvbbbbbbb) c5cDcYcyc c cccccddQ#duddddd dddde,ecx}oyukzJY<[~-n^rlN*\QTi}=`  -BP+wxWLH_$.kk&yQgo >m(^  #T|.8X-lvD4 ??b;Na"@zT - P|U!js oW#"7ck)\h_e{W)gG}hdcsa%k~|^ ./d40g#(v,bB|~pEhE'Z] AWL&1!<`9,WCIuSMAR J6 TzE !$H\O=`5b9 XR5Axte%g/0/-qW5ZMqB/ Q"7%oiJp3;/lDi,js0 -i,(V{d$En@@/KyS(6(L+9u]4KPzhP?=s5etXa)&k$h&rq9iQffu)U:V'MVwMFYeG w(fU6DQH`>n%PF(~F 2 ]<b;1Lun =9o.-Vv* l/PSOw3r3+x<^U\j>Hcf=X"#vLl@u 0szWA$}BF}[g)K[at!qO -C+>IUY yY]RO:c]8j= -.m 32U -Z*qzZ6I`% -&TJ<><o:TN_!*#eBhmryw -"Q;*G'7122|%H#${\Kdyn0p'vwXb 0c,# 7|E@M,:|M9nS7A^e[-Gjf0C`%Ij[j\65x Dpo_.U 1+Hd< {"x'! Ei#m[(:17  BmC?r$A}r7ZO1'."&1R)V !_8w3*Pf JFOR0;5\t{A8tnD1Na2q8St>IKG&YK?Y/M%{)Z]b+Ss^*+u4@+4Ga'T 8kC: -VXh?.3`Hl +&.3Of ~  +!,>O _ k +x + + + 3 &-<CHYkq    "06; J Vdl p|  9=BFJPXa p| +   "1?J$2#./R'$&J3&~' + + +2*Fq( hh[)'#4:4o()'l*55,#*P{4  $ 0H4Q '9a3q$7UX_ +y  (< +OZlu}  +)@ Uc +u@   +5H^g}  % 2? S$_+4 .BT ]g+pA  +9H)X6 +& +((/+X!& ## G#h1#& )/B>r8/L^ es<|'Q y ?  +  9  2 +@ +O + ` +l +} + + + + + + + + +   4  +P  [ i z    +   +         " 2  B  N Z  j t {             $ 9 Q i |  y  $,Q Ye0t   !*CZv   +     *4I an w 4. +5 +@ K Wa r~ +   20=@1~=/ 0= F+R ~( *:BK   8 Vds  +   :!\k{ )/#25+h "'(P4 &8Q'p*FY'q9N%)t.-' >#_%2 $2D#K o$ 11D6d'   *7<Qf{  +) 4  G S )\  "       !6!L! +`!k!! ! ! !!!!! +" +""$" G"S"e"j" +y" " +""""""" "" " " ##-#H#O# # # $ $g$$$ $$$ +$$(%))%S% m%z%%% %% +% %%%%% && &4& +C& N&\&o&u& z&&&&&& &&' ' '>'S' X' b'o' ~'''''''' ' ''( (%( 6( +D(O(V( T) ^)l)p) +) ) ))) ))-))**6*2L*/*B*=* +0+ ;+G+ b+o+ +++ +++ + ++ + ++,$%,3J, ~,, ,,,,, ,, ,--0-B-U-f-z-- +- ----- -n-L.Y.v.//\)0C00 000011 +$1 /1 ;1H1W1"q1 111 1112 2K+2w2222222 2 2 22 3 33603 g3q3 33 3(3*3 4(4 C4]M4 4444 +4 445+5 25?5E5N5`5t5 55555 5555 55 +5 +5/6`766 66 6 6G6B 7NN7I777778 888#828D8%T8$z8%8$8%8$959=9F9W9k9|99999 9 999 99 :': +6:A:Y: u::::: :::;); :;F; +K; V;b;x;; +; ; +; ;;;< < *<8< H<T<e<n<v< << <<<%< = +==3=':= b===== = == =>>(>0>B> I>S>g> n>{>> +> >>>> +> ? ?? 6?D? I? U? c?o?v? {??? +???0? @ @&@>@ +V@ a@n@@ @+@ @@@ +A"A7ARAWA_A gA uAA AAAAA AAB B B*B @BNBVBjByBBBBBBBB C C&C+C:C BC +NCYCbCqC zC C CIC CCDDD +$D/D:GD0D +DD.DDDDEE'E 8EYElE|E EEE*EEF8FXF tF~FF FF FF FF FF FF G,GKGjG~G GG%GGG +GG GG HH-H>H TH^HrH{HH HH H HHH#HI0I9I7MIII II II IIJ JJ &J4J;J JJ WJdJlJ |J JJJJ J J J2JK(KCK^KqKK KK K +KKKKKL L +L'L?L$OLtL {LL L LLL +L L L +LLM2M8MMM +TM _MlMtMM#MMM M +MMM NN N+N?N HNVN +]N'hN NN +NNN N N NNO"O2O9OHO NOZO`O iOwOOO O O OOQ8QR "R.R+CRoR wRRRRRRR:R'&S NS\SpSSSS S SSST T T*TDT _TiTrTT TT$TTT +TT T TU +U!U&U6U?UHUOU`U +hUsUzUUUUUUU UU V V 'V5VMVVVhV V +VVVVVVV VV%VW-W>W VW`WdWtWWWWWWWWWWWX X$X?X_XnX-XXXX XXYY8YPY _Y lY yYYYYYYYZZ%Z-ZJZ[Z"oZZZ +Z#Z Z1Z,%[R[l[ +[[ [[[[ [ +[[[ \ +\\#\+\4\;\ J\ T\ ^\h\p\ \\\\\\ ] ]]].]4C]!x]]]] ] ] ]]]^ +^^ %^/^ +5^@^_^d^v^^^;^ ^ ^ +^^_+_ C_O_ T_#b_ +__ ___ _ +__` "`0`E`X`*o` ``` ` ``a aa 6a Ca Oa [a gasaa aa a a a a a aa*b oGoMo +aolo qo{oo'oooYo0p6p +IpTp\pkpzppp +pp p pppq+q?qQqZq `qlq{q qq/q-q/r Kr Ur_rwrr rr +rrrrr rss3sDNs's@s st tt 1t;tVt]tmt~tt ttt t ttttt u u ,u:uKu +Pu7[uu uZuvvv !v +/v :v Gv Qv[v rv|vv(vvvv v +vww(w1w CwOw gw +tww w www wwwww +x"x+x4xRPx&xxxZxSTyyy5y+zF@zz0zMzE&{Pl{K{ |>$|<c|7||}p~!~~~.~)%EQk)&+/3&;[0z4p~=%@,f!aJ  +) +DO^ cq -΅߅ + +  + 5?GP Tag pz  † ن  2M k чo{bވ 4:%Agv/~  ĉщ&-6U\ +lw  ˊފF&m,Q:J_q* ŒЌ$*:J_pw Íˍۍ +    & 3R?P!%9LckjA$Ɛ=.)-X- +ё ܑ UnQВ,5<AI8[Ɠޓ  +$3B Q_ b&n%%[ ZglqSC:IF˖ږݖ -6 T`hm|    ȗϗ  #1BRb y  +  Ę ˘٘ + / 8ENS \ hu |   +ƙ͙ܙ   +#. =KTd(t  Ϛؚ  + )5 ;EW`f u + ̛ +ۛ +"+;KZ p zΜ  # +- 8FYas|  ɝ ѝ ۝   &2CKTZ_gm +   ͞ݞ &-A(I r    +ßΟ  + 3)Oy̠Ӡ  -;@GM\k + á ѡ ݡ     ) @ JVf +ny  +Ȣ ΢ܢ  +!,< Q[ +r } ģͣ գ +  +$ /<M +Vaj~  äͤ Ԥޤ   (->C Ta +it }  +  +ƥ ϥۥ + '3 : +HS\ p |Ǧצ *8%Ag    § ʧ ק  0 :G Wckz + +̨Ԩ ݨ8  +,7 K W eqz + 6  /7 >L^x -Ԫ   !5= P\ lv +   ʫ ԫ ޫ  $6 <I `j +{   +ˬ ֬  *;A-Gu{ (˭  ""EN_ d q}  +  + î ͮڮ !+ /= LZ +it:ӯ + + +Lg$$,>kWzҶԶ&* +>Il`-ͷU+Q-},@ظMBg==&/F"[~#$º\o[˻h,w-6=W s ýڽ/#">az"ľ߾-1"GT+(ȿ$  7X1mR8)+|U$6(."W4z](  6pW@JD+4p8></ZB6&J#qD*- +3 +><IT# +7B Zfo  2# 3D xfc{ g$"#G k5yd%!:\z +   ,25)h'Ge~  4#4E#[ + &; Vc ~'  +' ->N +_j'! +: D*\   , 9"F i 0>!67X "5EN0` #]DmE=QvCLj]]YbKvfB< ]\+^ + +(3FYu`E\< 4@=/ dPdEI`IBf fpB? ZJ{;10M'~ V +(FG^A_%93FO o +y1!<Nl&|.&,&Sz$) 9V]_!4$. S]&z##&'A,X/ +   8G&c ) :-^@!=6't[FOt)8.M)|#)OUD$?9SrJUG"CjVC<I@<@hEFMBC-j01AV.0 +;'J"r%?_6~c&1nX#*20L3}! ?" b s   : 5  +3 +!S +#u +9 + + + + + I #`          1 O  a  n | ) )     ( > )O y  4  C .#>R>n0+.)& 3M0i01.4,a.}#0&.5U" 27j""# )0Zr4 + #7!PrZX]pZ't\"TwZBZ"vS9$' L(m!><X5B#$ +HSAf59P Y8f2+ +.6"eL +t    * ' { !a!x!ic"j"#8#\#:t###C#W$<r$$H%&%&BE&4&e&;#'<_'/'+'H'>A(/(2(M(/1)3a)2)K)N*Cc*n*:+VQ+7+G+;(,-d,,:,,!,j-[{----.L(.<u.N./d////</7/l'0U00;1D1"_1111*1/1/2*E2,p22 282'2 3#93&]33*333X3 +E4MP4444"45525ZL5$55#5# +6.6N6"f6>66 667 7B'7j7y777 777.788 .8;8J8?a8 88885899%R9 x9(:: :: ;;$;<()<&R<y<*<:<F<,6=c=u== =%=(==>">4>R>p>>>>>>5?#:? +^?i?*|?$?&??(@-@A@"R@u@@.@%@ +@A +A&A?A[A jA+AA +A +A!AA+B GB5hBB BBBCCDDD(DE 3E +?EJESE[ExE-E E?E'F56FClF\F GG H )H65H lH%H H!H"HI(0IYItIIII I:IP J[qJNJK#K>KXK#qKKKK K+KLL2LNLjL +~L-LLL'L$M8MWMhMM ZNhOOP{QRRRRR6R# S!DS fSsSSS.S@S(=T3fT+TTTATA?=~;23f"˂.):Z ly +!ƃۃ0AE Uv_5 :?:z%Hۅ:$ _mq  ݆̆&#?<.|<5Oe~Ĉڈ68$]"n ljډ67M/:7rRԋ'<Qd wCƌ, +!7YbzՍ + ( 6 DPRo/@!SHuϓ 4E\$u=pؔ^I(ŕ# F1x"(ʖ/J:]6 ϗݗ ,,1^bs ˘  *8I&^  0ÙODd#u!ښ +(<D"+  #/L[rDϜ!-:O +՝ 0?OI^!!۞+!),KKx'ğ22 R-`-ˠ$''7$_ˡ*&8&X0.$ߢ4'J%rH.->5SUQ"G-j +)@' :Gd z Φ + * 7 DQ/f///Kfxiƨ10b"Ω +" :D War3Ī"")D9~+ɫ(,Ke%x#¬C!$8F6ѭ&4/4d($®N6'T>|$ٯ837k&ϰ )&G$n ұ$4Rp$N).,.[$&ֳ,'!UI-+ʹ-FXl#~11Ե  %2:Ef2M +kv" ӷ4L)Jv &θ.*$O$e$R ( +7BZ$p. &Bazʻ0018bJ.1.G3v0J۽$&IK~(Ͽ P-g~%: =G6*[QCsm w!0u8kx<.MCM.F:#U$y &##9&]  +'# 82O$3&=8Q"'0 <.\2#= :J_u + ' .#,R-  +K V-w./ /9)i+" + )&A<h8 ,;h5sY.`(:2W$ + +=?}/}7Hq +-Lc* +'%>d~"$<A~#6cM   +3CX v, +R+ ?L\n~2*!]%#!3Pb3s9<vI~-+?EkJ}zft {~0y+T[wVJ65P66P3EAyGYG6= 7^XK-;=iI`5R3yD2F_yR',T@ @"LVo 4:M}2#9]p"  + )I`x&&-T!rD'GQe,NgA.  +<GG? L%hY$@@\8V-5Bx%%E.9t1M-.x\8@5-4c):~)|*8? +JY$h/2!"6Mf$ 0 +> IV#h  +    1  +,% +AR + + +H  E t aciF& + <|I0 + - H +Vaj.@2.s/  3I_ KMQAh{  m6 90CtTTO_ns +#,? lx % '.9H   *@Q +a lx%- +=Hb|  0 Ef{.U &p     ,  !,!!N!d!x!! +!!! ! !!"","#@"d""""/""#'#0#C#[#z##?# ## $$&$#=$&a$0$ $0$"$%,% ?%L%g%% %(%%1%&"$& G&U&g&n&& &&& +& && &&'!' :' G'U'd' ''8''$' ((((Q(m( ((((((((),!)N)Pg))$)))*(*9*U*&t*** +* *,*%*>%+Rd+++ +!+ ++",.',V,_,,u,, +, ,,#,- .-;-J-"O-r-6----+-$.=.V. g.u....... / /:/K/$a/*///*/0$0!A0 c0!o0000001 1">1a1&11111 2 2&2 <2J2g2*y222!2!2303B3]3p3!33333 34Q40e44 444!4445!565 F5T5o555555566+6A6.Z66 6 66 66%67575O7777777 8!(8(J8s88B898$979&V9}9 9 99 9 9 99#9#:2:6J: ::: ::: :;;0;A; T;#^;; ; ;;3< +C<%N< t<'<<<<<&=-= G=Q=hf== ==>>;>Z>k>|>>0>*>!?O3?8?]?@#@!2@2T@@@@@@$@A4AEANAcA{AA A AA +AA$B %B 2B +@BKBdB}B=BBBBCC-0C^CbCtCCCCC CC)CDD"#DFD +XDcD:yD D +DDDDD +E5EPEUEdEuEEEE]E FF.F3F KFWF vF +F F +FFFFKF+GCG[GqGG GG GGGG.HB6HyHHHHH HH + %dD  $ N|5d," 9_n s c94G @ZI 5v1 )abeQ  QZ:5Nz<7( ^RJc> V9jozg,* +<; l$9* +@) |6 Zn8w ~Tcd ]W  T z]n"u B ! ?<'0 7=\c|F1o898V/ ++O&Q;cb x* }lyi 6Cm XvZ/Jg% xl=` n; ^j o\  fv8zSd +!M V) +  ]` B 9fQGwFLdis r 't exMcMf@ 9 y + ah nm> + q#)Cw[t +Z`Isc A*A%  YrC% ;7A/ E-` +C &R D3B\i9 + C  . L[SUONB] ]RUHtK(s8L4zU  +  F +  +{G + \1 + \ 4i' slT e& +Jt FX +Y [A"%CqupE1 U-}@ +B'{k {ma "u Gzn K 16Z '_|akv_4P# i !- wo% +Qgx)' + 6 u;e  [ Jf$ +cK} 4"*IO 0 p@Y&=JW/h ?] l( q $ &a g2 +/v!5 &4? hM?}j=r3y c_ %V+Dz>  +2Fg^-: JT~ G! U  )  += o; E*v &7fW yW sd*3X PA  #`l  At5# + g {&SQ.(Ut8 +B5 +mh . 7 ;, & wYq!0yb q +/  :O ^h[@$ NR _ bp +Im ;S4rT \H AK 7 :OV f`|j   O J +36$ Y kD_+9 +ES [e11 _jwl + + ++. +P/ k j +5=G! +) !2 " * 'V Ik!>M YX +,YVN OSTR*' e n'37$i3Px= }, +,H>[-L,(t  us ]r p- (q < ${HsSi/aSPBK4 +3 )J A#06Wi.VFt\KXKua4 |1?9 +R| E jF +}L6 *0 %QZ 15 +? g < +N >g o! h5N` +   +wMoL5R"p y.Z "TTzru I  3u j Py ?H}>d-: +<: :{ /`m +:[:kxv +#  $).  F:}/g )4 +^>#~x] +n(pqmmG+ +hLk<|b>GX60avp~? +vT +   a |' -   +p l N {< =F+a#i= +U 0 N$ gW +l0rJY*Y=" +H k) +~Tm 88Uq e +8 +p.En  8 rM^ O !~ D{73;uE7x +h | D ?Ebc6 @#D  +Oe@%Xv @( + H +4I^ .G o bD2bbL Bxt2:nM\qf I&1 +`  W 0 (}uZ\jdGA1z @/IR #,tLMQ~l2;  ; +Mo] 8P rJ6 + +$5_?p( os_3 +dj - + BPf{<> +-~~ qE<Pd L  +Py Oy#UHD S k  +  ?K2. ~%6K ^ZhWz[ R % Vk _UsC  + B>I^7WK"iEN C D0mHhr ^Q 'AR+we @f ( }eV7 + ,2wX X,&= 0 +wf] YHQ- +2C " \ +2 , XW[ySx 3`2 .Cb<F{9 Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, and the rest of the Gimp-Print Development Team. @@ -207,39 +355,42 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - (Height Mismatch!) (Width Mismatch!) Rows of "Fix seed" button is an alias of me. -The same seed produces the same image, if (1) the widths of images are same (this is the reason why image on drawable is different from preview), and (2) all mutation rates equal to zero.# of Spikes:%d x %d%s -- Print v%s'%s' is corrupt. Line %d Option section incorrect'%s' is not a DICOM file.'%s' is not a FractalExplorer file'%s' is not a PCX file'%s' is not a regular file'%s' is not a valid BMP file'%s' is not a valid GFlare file.'%s': + (Height Mismatch!) (Width Mismatch!) Columns on each layer Rows of "Fix seed" button is an alias of me. +The same seed produces the same image, if (1) the widths of images are same (this is the reason why image on drawable is different from preview), and (2) all mutation rates equal to zero.## of Spikes:# of subranges:%d Plug-In Interfaces%d Procedures%d x %d%s -- Print v%s'%s' is corrupt. Line %d Option section incorrect'%s' is not a DICOM file.'%s' is not a FractalExplorer file'%s' is not a PCX file'%s' is not a regular file'%s' is not a valid BMP file'%s' is not a valid GFlare file.'%s': Could not read header (ftell == %ld)'%s': No image data type specified'%s': No image height specified'%s': -No image width specified(None)A bailout-value for adaptive selectionsA less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000A unit definition will only be saved before GIMP exits if this column is checked.ALT te_xt: (optional)A_boutA_ddA_dvancedA_llA_lpha-weightingA_lpha:A_mbient:A_mplitude:A_ngle:A_nimateA_ppendA_utomaticA_verage under brushAbbreviationAboutAbout Gimp-Print ActionAd_vancedAdaptiveAdd Additional GuidesAdd FractalExplorer PathAdd new smvectorAdd new vectorAdding Blinds...Adding Checkerboard...Adding Noise...AdditionAdds a shadow effect to each brush strokeAdds random noise to the colorAdjust color balance, brightness, contrast, saturation, and dither algorithmAdjust the Flare IntensityAdjust the Luminosity ThresholdAdjust the Number of SpikesAdjust the Opacity of the SpikesAdjust the Spike Angle (-1 means a Random Angle is chosen)Adjust the Spike DensityAdjust the Spike LengthAdjust the Value how much the Hue should be changed randomlyAdjust the Value how much the Saturation should be changed randomlyAdjust the cyan balance of the printAdjust the density (amount of ink) of the print. Reduce the density if the ink bleeds through the paper or smears; increase the density if black regions are not solid.Adjust the gamma of the print. Larger values will produce a generally brighter print, while smaller values will produce a generally darker print. Black and white will remain the same, unlike with the brightness adjustment.Adjust the magenta balance of the printAdjust the preview's brightnessAdjust the saturation (color balance) of the print -Use zero saturation to produce grayscale output using color and black inksAdjust the yellow balance of the printAdjusting Foreground/Background...Advanced Filter Pack OptionsAffected RangeAl_ternateAlienMap2AlienMap2: Transforming...Align Visible LayersAll JNGAll PNGAll Values are Fractions of the Film HeightAll blackAll grayAll text fields must contain a value.All whiteAlphaAlpha ChannelsAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Ang_le offset:Angle span:Angle:Angular Gradient:Angular Size Gradient:Animated GIF OptionsAntialiasingAntialiasing quality. Higher is better, but slowerApplies the paper as it is (without embossing it)ApplyApply CanvasApply active gradient to final imageApplying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea SettingsArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:Aut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutomaticAvailable Images:B/WBLANK/NaN Pixel ReplacementBack:BackgroundBackground (%d%s)Background ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:BentBest for images dominated by regions of solid colorBevel EdgesBili_nearBlackBlack:Blend SettingsBlindsBlueBlue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Blur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom:BoxBrightness:BrowseBumpBump MapBump-mapping...BumpmapBy DATAMIN/DATAMAXCML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_enter of brushC_enteringC_hoose here:C_ircleC_reate New ImageC_rossesC_urvedC_yanC_ylinderCalculation SettingsCan only operate on RGB drawables.Can only save drawables!Can operate on layers only (but was called on channel or mask).Can't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCannot delete!! There must be at least one GFlare.Cannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on layers with masks.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CenterCenter _x:Center _y:Center of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeChange order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel MixerChannel Mixer File Operation WarningChannel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose a high compression level for small file sizeChoose the dither algorithm to be used. +No image width specified(None)1 Plug-In Interface1 Procedure1 bpp, 1-bit alpha, 2-slot palette32 bpp, 8-bit alpha, no palette4 bpp, 1-bit alpha, 16-slot palette8 bpp, 1-bit alpha, 256-slot paletteA bailout-value for adaptive selectionsA less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000A unit definition will only be saved before GIMP exits if this column is checked.ALT TextALT te_xt: (optional)ASCII artA_boutA_daptive supersamplingA_ddA_dd borderA_dvancedA_llA_ll tilesA_lpha-weightingA_lpha:A_mbient:A_mount:A_mplitude:A_ngle:A_nimateA_ppendA_uto update previewA_utomaticA_verage under brushAbbreviationAboutAbout Gimp-Print ActionAd_vancedAdaptiveAdaptive s_upersampleAdd Additional GuidesAdd FractalExplorer PathAdd new smvectorAdd new vectorAdding Blinds...Adding Checkerboard...Adding Noise...AdditionAdditional InformationAdds a shadow effect to each brush strokeAdds random noise to the colorAdjust _FG-BGAdjust color balance, brightness, contrast, saturation, and dither algorithmAdjust output...Adjust the Flare IntensityAdjust the Luminosity ThresholdAdjust the Number of SpikesAdjust the Opacity of the SpikesAdjust the Spike Angle (-1 means a Random Angle is chosen)Adjust the Spike DensityAdjust the Spike LengthAdjust the Value how much the Hue should be changed randomlyAdjust the Value how much the Saturation should be changed randomlyAdjust the cyan balance of the printAdjust the density (amount of ink) of the print. Reduce the density if the ink bleeds through the paper or smears; increase the density if black regions are not solid.Adjust the gamma of the print. Larger values will produce a generally brighter print, while smaller values will produce a generally darker print. Black and white will remain the same, unlike with the brightness adjustment.Adjust the magenta balance of the printAdjust the preview's brightnessAdjust the saturation (color balance) of the print +Use zero saturation to produce grayscale output using color and black inksAdjust the yellow balance of the printAdjusting Foreground/Background...Advanced Filter Pack OptionsAdvanced OptionsAffected RangeAggressive RLE +(not supported by SGI)Al_ternateAl_ternate tilesAlias|Wavefront PIX imageAlien Map _2...AlienMap2AlienMap2: Transforming...Align Visible LayersAlign _Visible Layers...All JNGAll PNGAll Values are Fractions of the Film HeightAll blackAll grayAll text fields must contain a value.All whiteAllo_w tile splittingAlphaAlpha ChannelsAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Ang_le offset:Angle span:Angle:Angular Gradient:Angular Size Gradient:Animated GIF OptionsAnimated MNG optionsAnimation Playback:AntialiasingAntialiasing quality. Higher is better, but slowerApplies the paper as it is (without embossing it)ApplyApply CanvasApply _Lens...Apply active gradient to final imageApplying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea SettingsArea listArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:At _bottomAt _topAut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutoDesk FLIC animationAutomaticAutomatic pre_viewAvailable Images:B, G, R, X (bmp style)B/WBLANK/NaN Pixel ReplacementB_lack pullout (%):B_lue threshold:Bac_kground colorBack:BackgroundBackground (%d%s)Background ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:Basic OptionsBentBest for images dominated by regions of solid colorBevel EdgesBili_nearBl_ack & whiteBlackBlack and whiteBlack:Blend SettingsBlindsBlueBlue freq_uency:Blue pha_seshift:Blue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Blur CenterBlur MethodBlur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom edgeBottom-_rightBottom:BoxBrightness:BrowseBumpBump MapBump-mapping...Bumpm_ap image:BumpmapBy DATAMIN/DATAMAXC source codeC source code headerCML Explorer: Overwrite File?CML _Explorer...CML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_ell content:C_ell size:C_enter of brushC_enteringC_hoose here:C_ircleC_ompose...C_reate New ImageC_rossesC_urvedC_yanC_ylinderCa_rtoon...Calculation SettingsCan only operate on RGB drawables.Can only save drawables!Can operate on layers only (but was called on channel or mask).Can't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCan't read color entriesCannot delete!! There must be at least one GFlare.Cannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on layers with masks.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CartoonCell size:Cell-_padding:Cell-_spacing:CenterCenter _x:Center _y:Center of Flare EffectCenter of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeCh. sensitivity:Change order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel Independent ParametersChannel Mi_xer...Channel MixerChannel Mixer File Operation WarningChannel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose PPD FileChoose a high compression level for small file sizeChoose the PPD file for your printerChoose the dither algorithm to be used. Adaptive Hybrid usually produces the best all-around quality. Ordered is faster and produces almost as good quality on photographs. Fast and Very Fast are considerably faster, and work well for text and line art. -Hybrid Floyd-Steinberg generally produces inferior output.Choose the printer model, PPD file, and command that is used to print to this printerCircleCleanup...ClearClose curve on completionClosedCo_lorCo_lor:Co_lorsCo_mment:Co_mplexity:Co_mpress TD tagsCo_ntiguous RegionCo_ntrast:Col_umn:CollectColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor Selection DialogColor TransformationColor _noise:Color is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor_map:Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColorsColors:CombineComm_ent:Command:CommentComment:ComposeCompose ChannelsComposing Images...Composing...Composition:Compressed size: %sCompressionCompression ratio (approx.): %d to 1Constrain aspect ratioConstructing maze using Prim's Algorithm...Constructing tileable maze using Prim's Algorithm...ContextContinuous grad. w/o gapContinuous gradientContinuous updateContrast:ControlsControls how intense the highlights will beConvert the image to RGB first!Convolution MatrixConvolution Matrix does not work on layers smaller than 3 pixels.ConvolveCopyCopy GFlareCopy SettingsCopy an objectCopy the active curve to the other borderCopy the texture of the selected paper as a backgroundCopying IFS to image (%d/%d)...Copying...Copyright:CosineCould not create working folder '%s': %sCould not execute specified web browser: +Hybrid Floyd-Steinberg generally produces inferior output.Choose the printer model, PPD file, and command that is used to print to this printerCircleCircle _depth in percent:Cleanup...ClearClear transparentClose curve on completionClosedCo_lorCo_lor averagingCo_lor:Co_lorsCo_mment:Co_mpensate for darkeningCo_mplexity:Co_mpress TD tagsCo_mpression level:Co_ntiguous RegionCo_ntrast:Co_rrelated noiseCol_umn:CollectColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor Range _Mapping...Color Selection DialogColor TransformationColor _noise:Color _variation:Color fillColor is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor to _Alpha...Color:Color_map:Colorcube A_nalysis...Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColormap _Rotation...ColorsColors:CombineComm_ent:Command:CommentComment:ComposeCompose ChannelsComposing Images...Composing...Composition:Compressed size: %sCompressionCompression ratio (approx.): %d to 1Compression typeConstrain aspect ratioConstructing maze using Prim's Algorithm...Constructing tileable maze using Prim's Algorithm...ContextContinuous grad. w/o gapContinuous gradientContinuous updateContoursContrast:ControlsControls how intense the highlights will beConvert the image to RGB first!Convolution MatrixConvolution Matrix does not work on layers smaller than 3 pixels.ConvolveCopyCopy GFlareCopy SettingsCopy an objectCopy parametersCopy the active curve to the other borderCopy the texture of the selected paper as a backgroundCopy to ClipboardCopying IFS to image (%d/%d)...Copying...Copyright(c) 1999-2004 by Maurits RijkCopyright:CosineCould not create working folder '%s': %sCould not execute specified web browser: %sCould not get layers for image %dCould not interpret '%s'Could not load PNG defaultsCould not open '%s' as SUN-raster-fileCould not open '%s' for reading.Could not open '%s' for reading: %sCould not open '%s' for writing.Could not open '%s' for writing: %sCould not parse specified web browser command: -%sCould not read XWD header from '%s'Could not read color entries from '%s'Could not read header from '%s'Could not write '%s': %sCouldn't load one brush in the pipe, giving up.Couldn't losslessly save transparency, saving opacity instead.Couldn't read file:Couldn't save file:Couldn't save resource file:Couldn't simply reduce colors further. Saving as opaque.Coupled-Map-Lattice ExplorerCreateCreate GuidesCreate a color-map using a gradient from the gradient editorCreate a color-map with the options you specified above (color density/function). The result is visible in the preview imageCreate a new image when applying filterCreate a new unit from scratch.Create a new unit with the currently selected unit as template.Create bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate lineCreate reg polygonCreate spiralCreate starCreateDIBSection failedCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCurl LayerCurl LocationCurl OrientationCurrent:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:CutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusD_ivisor:DarkerDarker:Data CompressionData FormattingDate:DecomposeDecomposing...DefaultDefault Map TypeDefault _URL:Define Circle/Oval areaDefine New PrinterDefine Polygon areaDefine Rectangle areaDefine a new logical printer. This can be used to name a collection of settings that you wish to remember for future use.Deform ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth-merging...Deriving Smooth Palette...Description:DespeckleDestination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDiffraction PatternsDiffuse:DigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectionsDirections:DisplaceDisplacing...Display as:Distance from the bottom of the paper to the imageDistance from the left of the paper to the imageDistance from the left of the paper to the right of the imageDistance from the right of the paper to the imageDistance from the top of the paper to the bottom of the imageDistance from the top of the paper to the imageDither Algorithm:DivisionDo _PreviewDo you really want to discard your changes?Draw a Border of Spikes around the ImageDrawables have different sizeDrawing Flame...Drawing Grid...Drawing Maze...Drawing SettingsDraws lines between the control points. Only during curve creationDrop ShadowEOF encountered on readingE_levation:E_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit fractal nameEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEnable/disable bump-mapping (image depth)Enable/disable environment-mapping (reflection)Enable/disable high quality previewEnable/disable jagged edges removal (antialiasing)Enable/disable real time preview of changesEncapsulation:EndPage failedEngraveEngraving...Enter a name for the copied GFlareEnter a name for the new GFlareEnter the name you wish to give this logical printerEntire LayerEnvironment image to useError during open of FITS fileError during writing rgb imageError grabbing the pointerError in GIMP brush file '%s'Error in GIMP brush pipe file.Error in getting layer IDsError obtaining Screen ShotError opening fileError opening file '%s'Error reading BMP file header from '%s'Error reading fileError starting ghostscript (%s)Error while reading '%s'. File corrupted?Error while saving '%s'. Could not save image.Error writing output file.Error: Could not read XJT property file '%s'.Error: XJT property file '%s' is empty.Error: failed to load parametersError: it's not CML parameter file.Evenly distributedExport PreviewFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsF_ileF_irst Color:FactorFailed to open GFlare file '%s': %sFailed to save PPM file '%s': %sFailed to write GFlare file '%s': %sFast IntegerFastest and brightest color for text and line artFeatherFileFile "%s" saved.File '%s' exists. +%sCould not read XWD header from '%s'Could not read color entries from '%s'Could not read header from '%s'Could not write '%s': %sCouldn't load one brush in the pipe, giving up.Couldn't losslessly save transparency, saving opacity instead.Couldn't read file:Couldn't save file:Couldn't save resource file:Couldn't simply reduce colors further. Saving as opaque.Coupled-Map-Lattice ExplorerCre_ate new imageCreateCreate GuidesCreate _New layerCreate _histogramCreate a color-map using a gradient from the gradient editorCreate a color-map with the options you specified above (color density/function). The result is visible in the preview imageCreate a new image when applying filterCreate a new unit from scratch.Create a new unit with the currently selected unit as template.Create arcCreate bezier curveCreate bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate guides...Create lineCreate new imageCreate reg polygonCreate spiralCreate starCreateDIBSection failedCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent gradient (reversed)Current:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...DefaultDefault Map TypeDefault _URL:Default chunks type:Default frame delay:Default frame disposal:Define Circle/Oval areaDefine New PrinterDefine Polygon areaDefine Rectangle areaDefine a new logical printer. This can be used to name a collection of settings that you wish to remember for future use.Deform ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifference of Gaussians...DifferentialDiffraction PatternsDiffuse:Diffusion dist.:Digital Imaging and Communications in Medicine imageDigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacement map:Displacing...Display as:Distance from the bottom of the paper to the imageDistance from the left of the paper to the imageDistance from the left of the paper to the right of the imageDistance from the right of the paper to the imageDistance from the top of the paper to the bottom of the imageDistance from the top of the paper to the imageDither Algorithm:Dither size:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?DoG Edge DetectDocument not foundDraw a Border of Spikes around the ImageDrawables have different sizeDrawing Flame...Drawing Grid...Drawing Maze...Drawing SettingsDraws lines between the control points. Only during curve creationDrop ShadowEOF encountered on readingEXIF data will be ignored.E_levation:E_nable bump mappingE_nable environment mappingE_rodeE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_grave...En_vironment image:Enable _antialiasingEnable/disable bump-mapping (image depth)Enable/disable environment-mapping (reflection)Enable/disable high quality previewEnable/disable jagged edges removal (antialiasing)Enable/disable real time preview of changesEncapsulated PostScript imageEncapsulation:EndPage failedEngraveEngraving...Enter a name for the copied GFlareEnter a name for the new GFlareEnter the PPD filename for your printerEnter the command to print to your printer. Note: Please do not remove the `-l' or `-oraw' from the command string, or printing will probably fail!Enter the name you wish to give this logical printerEntire LayerEnv. sensitivity:Environment image to useError during open of FITS fileError during writing indexed/gray imageError during writing rgb imageError grabbing the pointerError in GIMP brush file '%s'Error in GIMP brush pipe file.Error in getting layer IDsError obtaining Screen ShotError opening fileError opening file '%s'Error reading BMP file header from '%s'Error reading fileError starting ghostscript (%s)Error starting ghostscript: %sError trying to open temp file '%s'for parasite loading. +Error trying to save figure as a parasite: can't attach parasite to drawable. +Error while reading '%s'. File corrupted?Error while saving '%s'. Could not save image.Error writing output file.Error: Could not read XJT property file '%s'.Error: XJT property file '%s' is empty.Error: failed to load parametersError: it's not CML parameter file.Evenly distributedExp.:Export PreviewExtract ChannelsFG colorFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsF_ileF_irst Color:F_lare intensity:FactorFailed to open GFlare file '%s': %sFailed to save PPM file '%s': %sFailed to write GFlare file '%s': %sFast IntegerFastest and brightest color for text and line artFeatherFileFile "%s" saved.File '%s' doesn't seem to be an IFS Fractal file.File '%s' exists. Overwrite it?File '%s' is corrupt. -Line %d Option section incorrectFile '%s' is not a FractalExplorer fileFile not in a supported format.Filename:Filename: %sFill (bottom to top)Fill (left to right)Fill (right to left)Fill (top to bottom)Fill with parameter kFilmFilterFilter Pack SimulationFinding Animation Background...Finding Edges...Finding XY gradient...First Destination ColorFirst GfigFirst Source ColorFixed-direction-vector map selection menuFlameFlame works only on RGB drawables.FlareFXFlipFloating-PointFlow Step %d...FlowingFocus the brush strokes around the center of the imageForegroundFractal ParametersFractal TraceFractal TypeFractal name:FractalExplorer GradientFractional PixelsFrame %dFrame %d (%d%s)Frame %d of %dFrame (%i)FromFrom ColorFrom paperFrom:Front:FullFunctionFuzzy SelectG-QbistGEE-SLIMEGFLI 1.3 - Load framestackGFLI 1.3 - Save framestackGFlareGFlare '%s' is not saved. If you add a new entry in '%s', like: +Line %d Option section incorrectFile '%s' is not a FractalExplorer fileFile already existsFile not in a supported format.File size: %02.01f kBFile size: unknownFilename:Filename: %sFillFill (bottom to top)Fill (left to right)Fill (right to left)Fill (top to bottom)Fill with parameter kFilmFilterFilter Pack SimulationFinding Animation Background...Finding Edges...Finding XY gradient...First Destination ColorFirst GfigFirst Source ColorFirst colorFix seedFixed-direction-vector map selection menuFlameFlame works only on RGB drawables.FlareFXFlexible Image Transport SystemFlipFloating-PointFlow Step %d...FlowingFo_reground colorFocus the brush strokes around the center of the imageForce baseline JPEGForegroundForeground / background colorsFractal ParametersFractal TraceFractal TypeFractal name:FractalExplorer GradientFractional PixelsFrame %dFrame %d (%d%s)Frame %d of %dFrame (%i)Frame disposal where unspecified: FrequenciesFrequency (rows):FromFrom ClipboardFrom ColorFrom gradientFrom paperFrom reverse gradientFrom:Front:FullFunctionFunction type:Fuzzy SelectG-QbistG3 fax imageGEE-SLIMEGEE-ZOOMGFLI 1.3 - Load framestackGFLI 1.3 - Save framestackGFlareGFlare '%s' is not saved. If you add a new entry in '%s', like: (gflare-path "%s") -and make a folder '%s', then you can save your own GFlares into that folder.GFlare EditorGIF OptionsGIF WarningGIF: Undocumented GIF composite type %d is not handled. Animation might not play or re-save perfectly.GIMP ExtensionGIMP Plug-InGIMP Table MagicGIMP brush file appears to be corrupted.GIMP brushes are either GRAYSCALE or RGBAG_lowGamma:General OptionsGeneral PreferencesGimp-Print Version GimpressionistGlass TileGlass Tile...Glow Paint OptionsGr_eyGrabGrab _AfterGrab a single windowGrab the whole screenGradientGradient Flare...Gradient Map...Gradient map selection menuGradientsGraph of the current settingsGrayGrayscaleGreenGreen:GreyGridGrid GranularityGrid OffsetGrid SettingsGrid Settings...Grid Visibility and TypeGrid spacing:GuidesGuides...Guillotine...HSVHTML Page OptionsH_ighlight:H_ighlightsH_ueH_ue:He_xagonsHeight of the paper that you wish to print toHeight:Help ID '%s' unknownHey where has the object gone ?Higher values increase the magnitude of the effectHigher values makes the highlights more focusedHigher values makes the object reflect more light (appear lighter)Higher values restrict the effect to fewer areas of the imageHighlight:Highlights:HorizontalHorizontal ColorHorizontallyHorseshoeHotHot...How many units make up an inch.How much to "darken" the drop shadowHow much to "darken" the edges of each brush strokeHow much to blur the drop shadowHueHue Rotation:Hue VariationsHue:IDITER:IWarpI_ntensityI_nteractiveIf checked GTM will output a full HTML document with , , etc. tags instead of just the table html.If checked GTM will replace any rectangular sections of identically colored blocks with one large cell with ROWSPAN and COLSPAN values.If checked the mapping will begin at the right side, as opposed to beginning at the left.If unchecked the image will be circularly mapped onto a rectangle. If checked the image will be mapped onto a circle.If unchecked the mapping will put the bottom row in the middle and the top row on the outside. If checked it will be the opposite.If you enable this option higher color values will be swapped with lower ones and vice versaIf you enable this option the preview will be redrawn automaticallyIllusionIllusion...Im_ageImage / Output SettingsImage ComposingImage SelectionImage SizeImage dimensions: %d x %dImage is not a gray image (bpp=%d)Image name:Image size has changed.Images for the Cap FacesImages have different sizeImport path elements of the SVG so they can be used with the GIMP path toolIn_verseInchInclude decorationsInsert PointIntegerIntensityIntensity LevelsIntensity of original color when lit by a light sourceInterlaceInternal GIMP procedureIntersectionIntersection ColorInvalid UTF-8 string in PSD fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in pattern file '%s'.InversionInverts the Papers textureIsometricIt is highly recommended to add +and make a folder '%s', then you can save your own GFlares into that folder.GFlare EditorGIF OptionsGIF WarningGIF imageGIF: Undocumented GIF composite type %d is not handled. Animation might not play or re-save perfectly.GIMP ExtensionGIMP Help browserGIMP Plug-InGIMP Table MagicGIMP Windows Icon PluginGIMP brushGIMP brush (animated)GIMP brush file appears to be corrupted.GIMP brushes are either GRAYSCALE or RGBAGIMP compressed XJT imageGIMP patternG_lowG_reen threshold:Gamma:Gaussian BlurGaussian Blur...Gee-_SlimeGee-_ZoomGeneralGeneral OptionsGeneral PreferencesGeneral optionsGet sample colorsGfigGimp-Print Version GimpressionistGlass TileGlass Tile...Glow Paint OptionsGr_eyGrabGrab _AfterGrab a single windowGrab the whole screenGradientGradient Flare...Gradient Map...Gradient fillGradient map selection menuGradient scale:GradientsGraph of the current settingsGraphic antialiasingGrayGray ModeGray OptionsGray ThresholdGrayscaleGreenGreen fr_equency:Green ph_aseshift:Green:GreyGridGrid GranularityGrid OffsetGrid SettingsGrid Settings...Grid Visibility and TypeGrid color:Grid settings...Grid spacing:Grid type:GuidesGuides are pre-defined rectangles covering the image. You define them by their width, height, and spacing from each other. This allows you to rapidly create the most common image map type - image collection of "thumbnails", suitable for navigation bars.Guides...Guillotine...HSVHTML Page OptionsHTML tableH_ighlight:H_ighlightsH_ueH_ue:He_xagonsHeight (pixels):Height of the paper that you wish to print toHeight:Help ID '%s' unknownHey where has the object gone ?High _Quality previewHigher values increase the magnitude of the effectHigher values makes the highlights more focusedHigher values makes the object reflect more light (appear lighter)Higher values restrict the effect to fewer areas of the imageHighlight:Highlights:Ho_ld the minimal channelsHo_le width:Ho_rizontal base:Hol_e height:Hold intensityHole sp_acing:HorizontalHorizontal ColorHorizontallyHorseshoeHotHot spot _X:Hot spot _Y:Hot...How many units make up an inch.How much to "darken" the drop shadowHow much to "darken" the edges of each brush strokeHow much to blur the drop shadowHueHue Rotation:Hue VariationsHue _frequency:Hue _phaseshift:Hue:I don't careIDIFS FractalIFS Fractal Render OptionsIFS Fractal: BlackIFS Fractal: BlueIFS Fractal: GreenIFS Fractal: RedIFS Fractal: TargetITER:IWarpI_ntensityI_nteractiveI_nvert bumpmapI_nverted imageI_solateIcon #%iIcon detailsIf checked GTM will output a full HTML document with , , etc. tags instead of just the table html.If checked GTM will replace any rectangular sections of identically colored blocks with one large cell with ROWSPAN and COLSPAN values.If checked the mapping will begin at the right side, as opposed to beginning at the left.If unchecked the image will be circularly mapped onto a rectangle. If checked the image will be mapped onto a circle.If unchecked the mapping will put the bottom row in the middle and the top row on the outside. If checked it will be the opposite.If you enable this option higher color values will be swapped with lower ones and vice versaIf you enable this option the preview will be redrawn automaticallyIllusionIllusion...Im_ageImageImage / Output SettingsImage ComposingImage SelectionImage SizeImage TypesImage _Type:Image _height:Image dimensions: %d x %dImage is not a gray image (bpp=%d)Image name:Image size has changed.Image spac_ing:Image type:Imagemap plug-in 2.2Images for the Cap FacesImages have different sizeImport _pathsImport path elements of the SVG so they can be used with the GIMP path toolIn_tegration steps:In_verseInchInclude decorationsIndexedIndexed Palette TypeInitial value:Ink type:Input levels:Insert PointInsertion DateIntegerIntensityIntensity LevelsIntensity of original color when lit by a light sourceInterlaceInternal GIMP procedureIntersectionIntersection ColorInvalid UTF-8 string in PSD fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in pattern file '%s'.InversionInverts the Papers textureIsometricIt is highly recommended to add (gimpressionist-path "%s") -(or similar) to your gimprc file.Iterations:JNGJPEG previewJigsawJigsaw StyleJuliaKeep image's valuesKeep originalKeep the first valueLABLZ77L_eadingL_eft BorderL_ength:L_inearLambdaLandscapeLaplace...Larg_e 3x3Layer %s doesn't have an alpha channel, skippedLeft:Lens EffectLess Sat:Let the direction from the center determine the direction of the strokeLet the direction from the center determine the size of the strokeLet the value (brightness) of the region determine the direction of the strokeLet the value (brightness) of the region determine the size of the strokeLightLight SettingsLight source X direction in XYZ spaceLight source X position in XYZ spaceLight source Y direction in XYZ spaceLight source Y position in XYZ spaceLight source Z direction in XYZ spaceLight source Z position in XYZ spaceLighterLighter:Lighting EffectsLighting Effects...LineLinearLink TypeList ViewLizardLo_ng-staggeredLo_wer BorderLoad Channel Mixer SettingsLoad Curve Points from fileLoad FITS FileLoad FlameLoad Fractal ParametersLoad Gfig object collectionLoad ImagemapLoad KISS PaletteLoad Parameters fromLoad PostScriptLoad a fractal from fileLoad the curves from a fileLoading Screen Shot...LogarithmicLoopLuma_y470:Luma_y470f:Luma_y709:Luma_y709f:Luminosity _Threshold:MNG OptionsMagen_taMagentaMagenta:Magenta_KMain OptionsMake destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMandelbrot ParametersManualManually specify the stroke orientationManually specify the stroke sizeMap Color RangeMap Images to Box FacesMap file formatMap to Box...Map to Cylinder...Map to ObjectMap to Plane...Map to Sphere...Map to:Mapping colors...MarbleMask FileMatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max RGBMax RGB...Max. Memory:Maximum height for bumpsMaximum size:MazeMerging...Midtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Minimum size:Mirror the active curve to the other borderModeMode _1Mode _2Modify CurvesMore Sat:MosaicMotion BlurMotion Blurring...MoveMove DownMove SashMove Selected ObjectsMove To FrontMove UpMove a single pointMove an objectMovementMultiple (57):Multiply gradient (0,1)Multiply rand. value (0,1)Multiply rand. value (0,2)My first fractalNL FilterNL Filter...NameNew FractalNew GFlareNew UnitNewsprintNewsprint...No %s in gimprc: +(or similar) to your gimprc file.Iterations:JNGJNG + delta PNGJPEG compression quality:JPEG imageJPEG previewJPEG quality parameterJPEG smoothing factor:JigsawJigsaw StyleJuliaKISS CELKeep _even fieldsKeep image's valuesKeep o_dd fieldsKeep originalKeep the first valueLABLZ77L_eadingL_eft BorderL_ength:L_inearLambdaLandscapeLaplaceLaplace...Larg_e 3x3Layer %s doesn't have an alpha channel, skippedLayer background type. Copy causes the previous layer to be copied before the draw is performed.LeftLeft edgeLeft:Lens EffectLess Sat:Let the direction from the center determine the direction of the strokeLet the direction from the center determine the size of the strokeLet the value (brightness) of the region determine the direction of the strokeLet the value (brightness) of the region determine the size of the strokeLevelLightLight 1Light 2Light 3Light 4Light 5Light 6Light SettingsLight _direction:Light intensityLight source X direction in XYZ spaceLight source X position in XYZ spaceLight source Y direction in XYZ spaceLight source Y position in XYZ spaceLight source Z direction in XYZ spaceLight source Z position in XYZ spaceLighterLighter:Lighting EffectsLighting Effects...Lighting preset:Lightsource color:Lightsource type:LineLine artLinearLink TypeList ViewLizardLo_ng-staggeredLo_wer BorderLoad Channel Mixer SettingsLoad Curve Points from fileLoad FITS FileLoad FlameLoad Fractal ParametersLoad Gfig object collectionLoad ImagemapLoad KISS PaletteLoad Lighting PresetLoad Parameters fromLoad PostScriptLoad QBE fileLoad a fractal from fileLoad the curves from a fileLoading Screen Shot...Lock _thresholdsLogarithmicLoopLower leftLower rightLower selected objectLower selected object to bottomLower t_hreshold:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Luminosity _Threshold:Luminosity freq_uency:Luminosity pha_seshift:MNG OptionsMNG animationM_aximum value:Ma_x depth:Ma_ximum height:Magen_taMagentaMagenta:Magenta_KMagnitude map:Main OptionsMake destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMandelbrot ParametersManualManually specify the stroke orientationManually specify the stroke sizeMap Color RangeMap Images to Box FacesMap _Object...Map file formatMap from _topMap to Box...Map to Cylinder...Map to ObjectMap to Plane...Map to Sphere...Map to:Mapping colors...MarbleMask FileMaterial propertiesMatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max RGBMax RGB...Max undo:Max. Memory:Maximum height for bumpsMaximum size:MazeMedia size:Media source:Media type:MedianMenuMenu PathMenu Path/NameMerge imported pathsMerging...Microsoft WMF fileMicrosoft Windows iconMiddle-click inside preview to pick "From Color"Midtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Minimum size:Mirror the active curve to the other borderMisc arrange:Mo_dify green channelMo_dify saturation channelMod. rate:Mod_ify blue channelMod_ify luminosity channelModeMode _1Mode _2Modify CurvesMor_e opaqueMore Advanced OptionsMore Sat:More _white (larger value)More blac_k (smaller value)More t_ransparentMosaicMotion BlurMotion Blurring...MoveMove DownMove SashMove Selected ObjectsMove To FrontMove UpMove a single pointMove an objectMovementMultiple (57):Multiply gradient (0,1)Multiply rand. value (0,1)Multiply rand. value (0,2)Mutation dist.:Mutation rate:My first fractalNL FilterNL Filter...NameNeon DetectionNeon...New FractalNew GFlareNew UnitNew printer...New seedNewsprin_t...NewsprintNewsprint...No %s in gimprc: You need to add an entry like (%s "%s") -to your %s file.No colorsNo data capturedNo matchesNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Nothing to crop.Number of ColorsNumber of M_RU entries (1 - 16):Number of TilesNumber of _Frames:Number of _Undo levels (1 - 99):Number of colors:Number of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_pacity:O_ptionsO_rientationO_thersO_utput LPI:O_verlayO_versample:Object DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOffset (1):Offset all vectors with a given angleOffset:Oil Painting...OilifyOn Edges:On Film:Only one unique colorOp_acity:Op_tionsOpacity:OpenOpen FileOpen failedOpening '%s'...Opens up the Orientation Map EditorOpens up the Size Map EditorOptimizeOptimize the output for the type of image being printedOptimizing Animation...OptionsOr_ientationOr_igin at bottom leftOrientationOrientation Map EditorOrientation:OriginalOriginal:Ot_herOutputOutput Levels:Outside TypeOverlayPNGPNM save cannot handle images with alpha channels.PNM: Error reading file.PNM: Invalid X resolution.PNM: Invalid Y resolution.PNM: Invalid file.PNM: Invalid maximum value.PNM: Premature end of file.PPD File:PPIPS DiamondPS Square (Euclidean Dot)P_aperP_reviewPage %dPage Curl...PageSetupDlg failed: %dPagecurl EffectPages:Paint Mode:Paint edgesPainting...Paper TilePaper Tile...Parameter k:ParametersParse error in '%s': -%sPastePastedPasting...PercentPercentage of pixels to be filteredPhongPhotographPieces:Pixel _Height:Pixel _Width:PixelizePixelizing...PixelsPl_acementPlace strokes randomly around the imagePlacementPlanePlasmaPlasma...Play/StopPlease check your installation.PluralPo_larization:PointPolarPolarizePolarizing...PolygonPortraitPositionPosition the image on the page. +to your %s file.No colorsNo compressionNo data capturedNo fillNo lightNo matchesNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Nothing to crop.Number of ColorsNumber of M_RU entries (1 - 16):Number of SegmentsNumber of TilesNumber of _Frames:Number of _Undo levels (1 - 99):Number of cells:Number of colors:Number of cycles covering full value rangeNumber of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_nly foregroundO_pacity:O_ptionsO_rientationO_thersO_utput LPI:O_utput channel:O_verlap:O_verlayO_versample:Object DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOc_tagons & squaresOff_set:Offset (1):Offset _angle:Offset all vectors with a given angleOffset:Oil Painting...Oili_fy...OilifyOn Edges:On Film:On edges:One frame per layer (replace)Only b_ackgroundOnly one unique colorOp_acity:Op_timal estimationOp_tionsOpacity:OpenOpen FileOpen IFS Fraktal fileOpen failedOpen recentOpening '%s'...Opening thumbnail for '%s'...Opens up the Orientation Map EditorOpens up the Size Map EditorOptimizeOptimize (for _GIF)Optimize the output for the type of image being printedOptimizing Animation...OptionsOr_ientationOr_igin at bottom leftOrientationOrientation Map EditorOrientation:OriginalOriginal intensityOriginal:Ot_herOther optionsOutputOutput Levels:Output type:Outside TypeOverlayP(ower factor):PDF documentPGM imagePNGPNG + delta PNGPNG compression level:PNG imagePNM ImagePNM imagePNM save cannot handle images with alpha channels.PNM: Error reading file.PNM: Invalid X resolution.PNM: Invalid Y resolution.PNM: Invalid file.PNM: Invalid maximum value.PNM: Premature end of file.PPD File:PPIPPM imagePS DiamondPS Square (Euclidean Dot)P_aperP_olar Coords...P_reviewPage %dPage Curl...Page SetupPageSetupDlg failed: %dPagecurl EffectPages to load (e.g.: 1-4 or 1,3,5-7)Pages:Paint Mode:Paint Shop Pro imagePaint edgesPainting...Pal_ette File:PalettePaper TilePaper Tile...Parameter k:ParametersParameters were saved to '%s'Parse error in '%s': +%sPastePaste from ClipboardPastedPasting...Pattern fillPercentPercent _black:Percent _white:Percentage of pixels to be filteredPhase angle, range 0-360PhongPhotocopyPhotographPhotoshop imagePieces:Ping pongPixel _Height:Pixel _Width:Pixel value scalingPixelizePixelizing...PixelsPl_acementPlace strokes randomly around the imagePlacementPlanar (RRR,GGG,BBB)Planar RGBPlanePlasmaPlasma...Play/StopPlayback:Please check your installation.Plot a graph of the settingsPlug-In BrowserPluralPo_larization:PointPoint lightPolarPolarizePolarizing...PolygonPortraitPositionPosition X:Position Y:Position Z:Position the image on the page. Click and drag with the primary button to position the image. Click and drag with the second button to move the image with finer precision; each unit of motion moves the image one point (1/72") Click and drag with the third (middle) button to move the image in units of the image size. Holding down the shift key while clicking and dragging constrains the image to only horizontal or vertical motion. -If you click another button while dragging the mouse, the image will return to its original position.PostScript save cannot handle images with alpha channelsPre_viewPreferencesPreserve the original image as a backgroundPreviewPreview SizePreview as You DragPrint Color AdjustPrint and -Save SettingsPrint in black and white (no color, and no shades of gray)Print in shades of gray using black inkPrintDlg failed: %dPrinter Model:Printer SettingsPrinter doesn't support bitmapsPrinting...Probability Gradient:ProgressivePropagating Value ChannelPropagating _Alpha ChannelQbist ...Quality:RGBRGBARGBA/GRAYA drawable is not selected.RLER_adius:R_andomization (%):R_ecursiveR_edR_epeat:R_everseRadialRadial Gradient:RadiansRadians/PiRadiusRadius:RandomRandom Hurl 1.7Random Pick 1.7Random Seed:Random Slur 1.7Random sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)Ranks:RawRays Paint OptionsRe_dReads the selected Preset into memoryRealtime PreviewRecompute preview imageRectangleRedRed:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:RedoRedo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRefresh the Preview windowRegular Polygon Number of SidesRelati_ve linkRelief:Remap Colorized...Remo_veRemoving Animation Background...Removing color...Render Flare...Render Scalable Vector GraphicsRendered SVGRendered WMFRenderingRendering Blast...Rendering Fractal...Rendering IFS (%d/%d)...Rendering SVG...Rendering Sphere...Rendering SuperNova...Rendering Tiles...Rendering Wind...ReplaceReread the folder of PresetsRescan GradientsRescan for FractalsReset parameters to default valuesReset the active curveResize area's?ResolutionResolution and quality of the printResolution:Resulting Guide Bounds: %d,%d to %d,%d (%d areas)Resulting Guide Bounds: 0,0 to 0,0 (0 areas)Revert to the original imageRewindRight Border:Right:RippleRippling...Ro_tation:Ro_w:Rotat_e:Rotate X:Rotate Y:Rotate Z:RotatedRotating the colormap...Rotating...RotationRotation angle about X axisRotation angle about Y axisRotation angle about Z axisRotation:RoughnessRoundRunLength EncodedSUNRAS save cannot handle images with alpha channelsSVG file does not -specify a size!S_econd Color:S_elect Window AfterS_elect here:S_electorS_hrinkS_ineS_trength exp.:S_trength:S_tripedS_ubject:S_wapS_wirl CCWSameSample Analyze...Sample ColorizeSample:Samples the color from the pixel in the center of the brushSat_urationSatu_rationSaturationSaturation VariationsSaturation:SaveSave -SettingsSave BrushSave Channel Mixer SettingsSave CurrentSave Curve Points to fileSave EXIF dataSave FileSave FlameSave Fractal ParametersSave Gfig DrawingSave ImagemapSave Parameters toSave _color values from transparent pixelsSave active fractal to fileSave as BMPSave as BrushSave as Brush PipeSave as C-SourceSave as GIFSave as JPEGSave as MNGSave as PNGSave as PNMSave as PSPSave as PatternSave as PostScriptSave as SGISave as SUNRASSave as TGASave as TIFFSave as TextSave as XBMSave as XJTSave as XPMSave current...Save the current settings to the specified fileSave the curves to a fileSavedSaving '%s'...Saw_toothSc_attering:Scale Hue by:Scale Value by:Scale X:Scale Y:Scale Z:Scale by:Scale the print to the number of dots per inchScale the print to the size of the pageScale:Scaling:Scatter HSVScattering HSV...ScreenScreen ShotSe_lection OnlySearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeascapeSecond Destination ColorSecond Flares Paint OptionsSecond Source ColorSeconds DelaySeed of Random (only for "From Seed" Modes)Seed:Selec_tion In ContextSelectSelect AllSelect ColorSelect Film ColorSelect HTML fileSelect Image FileSelect NextSelect Number ColorSelect Pixels bySelect PreviousSelect RegionSelect _AllSelect allSelect contiguous regionsSelect existing areaSelect folder and rescan collectionSelect next smvectorSelect next vectorSelect previous smvectorSelect previous vectorSelect the base unit of measurement for printingSelect the desired output typeSelect the name of the printer (not the type, or model, of printer) that you wish to print toSelect the orientation: portrait, landscape, upside down, or seascape (upside down landscape)Select whether scaling is measured as percent of available page size or number of output dots per inchSelect your printer modelSelect:Selected:SelectionSelection To Path Advanced SettingsSelection size is not even. -Tileable maze won't work perfectly.Selection to Path...Selective Gaussian BlurSelective Gaussian Blur...Selective Load SettingsSelective Load fromSelects a random direction of each strokeSelects a random size for each strokeSelects if the resulting image should be seamlessly tileableSelects if to place strokes all the way out to the edges of the imageSemi-Flattening...Send To BackSeparate to:September 31, 1999Set light source colorSet the base unit of measurement to centimetresSet the base unit of measurement to inchesSet the brightness of the print. -0 is solid black, 2 is solid whiteSet the contrast of the printSet the height of the printSet the print size to the size of the imageSet the scale (size) of the imageSet the width of the printSetStretchBltMode failed (warning only)SettingsSettings for this MapfileSetup PrinterSha_dowsShadow blur:Shadow darken:Shadow depth:Shadows:Shape of Second FlaresSharpenSharpening...Shear:ShiftShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow Line FrameShow all objectsShow area URL _tipShow area _handlesShow gridShow next objectShow previous objectShow/hide preview wireframeSi_ngular:SierpinskiSimpleSin_usoidalSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size Factor Gradient:Size Map EditorSize of paper that you wish to print toSize:Sizes:Slowest, but most accurate and smoothest color for continuous tone images and photographsSmearSmoo_thingSmoot_hSmooth PaletteSmoothing X gradient...Smoothing Y gradient...Smoothing:Smoothness of AliasingSmvectorsSnap to gridSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySolidSolid NoiseSolid Noise...Solid colored backgroundSome data has been changed!Sorry, I can save only INDEXED and GRAY images.Sorry, channels and masks can not be rotated.Source (input slot) of media you're printing toSource 1:Source 2:Source color rangeSource...Spacing:SparkleSparkling...Spatial TransformationSpecified window not foundSpecifies the amount of embossing to apply to the image (in percent)Specifies the aspect ratio of the brushSpecifies the scale of the texture (in percent of original file)Specular:SphereSphere DesignerSphericalSpiderSpike Thickness:SpiralSpiral Number of TurnsSpot Radius:SpotsSpreadSpread AmountSpreading...St_rength exp.:StandardStar Number of PointsStart angle:StartPage failedStepStop when pixel differences are smaller than this valueStretchStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, error = %d, y = %dStroke _density:StrongStyleSubdivide:Subsampling:Substeps:SuperNovaSuperNova Color PickerSw_irl CWSwap the two curvesSwirlSwitch to c/clockwiseSwitch to clockwiseSymbolTIFF ChannelT_ilableT_urbulence:T_urbulentTable Creation OptionsTable OptionsTargetTel_netTemporaryTemporary ProcedureTextureTexture PropertiesTexture:TexturesThe GIF format only supports comments in 7bit ASCII encoding. No comment is saved.The GIMP help files are not installed.The GIMPressionistThe PNG file specifies an offset that caused the layer to be positioned outside the image.The TIFF format only supports comments in +If you click another button while dragging the mouse, the image will return to its original position.PostScript documentPostScript save cannot handle images with alpha channelsPre_viewPreferencesPreserve _luminosityPreserve the original image as a backgroundPreviewPreview SizePreview _size:Preview as You DragPrewittPrim's algorithmPrint Color AdjustPrint and +Save SettingsPrint in black and white (no color, and no shades of gray)Print in shades of gray using black inkPrint to FilePrintDlg failed: %dPrinter Model:Printer SettingsPrinter doesn't support bitmapsPrinter model:Printer name:Printing...Probability Gradient:Procedure BrowserProcedure _BrowserProgressivePropagatePropagating Value ChannelPropagating _Alpha ChannelQbist ...Quality:R, G, B (normal)RGBRGB Save TypeRGBARGBA/GRAYA drawable is not selected.RLERLE compressionR_adius 2:R_adius:R_andom hue:R_andom seed:R_andomization (%):R_ecursiveR_edR_ed threshold:R_epeat:R_everseRadialRadial Gradient:RadiansRadians/PiRadiusRadius:Raise selected objectRaise selected object to topRando_m saturation:RandomRandom Hurl 1.7Random Pick 1.7Random Seed:Random Slur 1.7Random _seed:Random seedRandom sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)Range high:Range low:Ranks:RawRaw Image DataRaw Image LoaderRaw Image SaveRays Paint OptionsRe_centerRe_dReads the selected Preset into memoryRealtime PreviewRecompute CenterRecompute preview imageRectangleRedRed _frequency:Red _phaseshift:Red:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:RedoRedo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRefresh the Preview windowRegular Polygon Number of SidesRelati_ve linkRelative probability:Released under the GNU General Public LicenseRelief:Remap Colorized...Remo_veRemoving Animation Background...Removing color...Render Flare...Render Scalable Vector GraphicsRender Windows MetafileRender optionsRendered SVGRendered WMFRenderingRendering Blast...Rendering Fractal...Rendering IFS (%d/%d)...Rendering SVG...Rendering Sphere...Rendering SuperNova...Rendering Tiles...Rendering Wind...ReplaceReread the folder of PresetsRescan GradientsRescan for FractalsReset parameters to default valuesReset the active curveResize area's?ResolutionResolution and quality of the printResolution:Resulting Guide Bounds: %d,%d to %d,%d (%d areas)Resulting Guide Bounds: 0,0 to 0,0 (0 areas)Retinex (4/4): updated...Retinex Image EnhancementRetinex...Retinex: Filtering...Return ValuesRevert to the original imageRewindRightRight Border:Right edgeRight:RippleRippling...Ro_tation:Ro_w:RobertsRotat_e:RotateRotate / ScaleRotate X:Rotate Y:Rotate Z:RotatedRotating the colormap...Rotating...RotationRotation angle about X axisRotation angle about Y axisRotation angle about Z axisRotation angle:Rotation:RoughnessRoundRunLength EncodedSUN Rasterfile imageSUNRAS save cannot handle images with alpha channelsSVG file does not +specify a size!S_catter HSV...S_econd Color:S_elect Window AfterS_elect here:S_electorS_how cursorS_hrinkS_ineS_trength exp.:S_trength:S_tripedS_ubject:S_wapS_wirl CCWSa_ve alpha channel (RGBA/RGB)SameSample Analyze...Sample ColorizeSample _density:Sample:Samples the color from the pixel in the center of the brushSat_urationSatu_rationSaturationSaturation VariationsSaturation fr_equency:Saturation ph_aseshift:Saturation:SaveSave +SettingsSave (middle transform) as QBE fileSave BrushSave Channel Mixer SettingsSave CurrentSave Curve Points to fileSave EXIF dataSave FileSave FlameSave Fractal ParametersSave Gfig DrawingSave ImagemapSave Lighting PresetSave Parameters toSave _background colorSave _color values from transparent pixelsSave _gammaSave _resolutionSave active fractal to fileSave as BMPSave as BrushSave as Brush PipeSave as C-SourceSave as GIFSave as IFS Fraktal fileSave as JPEGSave as MNGSave as PNGSave as PNMSave as PSPSave as PatternSave as PostScriptSave as SGISave as SUNRASSave as TGASave as TIFFSave as TextSave as XBMSave as XJTSave as XPMSave background colorSave color _values from transparent pixelsSave comme_ntSave creation _timeSave creation timeSave current...Save failedSave gammaSave layer o_ffsetSave resolutionSave the current settings to the specified fileSave the curves to a fileSave thumbnailSavedSaving '%s'...Saw_toothSc_ale 1:Sc_attering:Sca_le 2:Scalable SVG imageScale Hue by:Scale Value by:Scale X:Scale Y:Scale Z:Scale by:Scale the print to the number of dots per inchScale the print to the size of the pageScale:Scaling:Scatter HSVScatter RGBScattering HSV...ScreenScreen ShotSe_lection OnlySearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeascapeSecond Destination ColorSecond Flares Paint OptionsSecond Source ColorSecond colorSeconds DelaySeconds delaySeed of Random (only for "From Seed" Modes)Seed:Selec_tion In ContextSelectSelect AllSelect ColorSelect Film ColorSelect HTML fileSelect Image FileSelect NextSelect Number ColorSelect Palette File to LoadSelect Pixels bySelect PreviousSelect RegionSelect _AllSelect _allSelect allSelect an objectSelect contiguous regionSelect contiguous regionsSelect existing areaSelect folder and rescan collectionSelect lightsource colorSelect next smvectorSelect next vectorSelect previous smvectorSelect previous vectorSelect the base unit of measurement for printingSelect the desired output typeSelect the name of the printer (not the type, or model, of printer) that you wish to print toSelect the orientation: portrait, landscape, upside down, or seascape (upside down landscape)Select whether scaling is measured as percent of available page size or number of output dots per inchSelect your printer modelSelect:Selected:SelectionSelection To Path Advanced SettingsSelection size is not even. +Tileable maze won't work perfectly.Selection to Path...Selective Gaussian BlurSelective Gaussian Blur...Selective Load SettingsSelective Load fromSelects a random direction of each strokeSelects a random size for each strokeSelects if the resulting image should be seamlessly tileableSelects if to place strokes all the way out to the edges of the imageSemi-Flattening...Send To BackSend as MailSeparate to:September 31, 1999Set light source colorSet the base unit of measurement to centimetresSet the base unit of measurement to inchesSet the brightness of the print. +0 is solid black, 2 is solid whiteSet the contrast of the printSet the height of the printSet the print size to the size of the imageSet the scale (size) of the imageSet the width of the printSetStretchBltMode failed (warning only)SettingsSettings for this MapfileSetup PrinterSetup printer...Sha_dowsShadow blur:Shadow darken:Shadow depth:Shadows:Shape of Second FlaresSharp edgesSharpenSharpening...Shear:ShiftShift _amount:Shift _horizontallyShift _verticallyShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow Line FrameShow _Preview in image windowShow all objectsShow area URL _tipShow area _handlesShow colorShow control pointsShow gridShow imageShow next objectShow positionShow preview _wireframeShow previous objectShow selectionShow/hide preview wireframeSi_ngular:Sides:SierpinskiSilicon Graphics IRIS imageSimpleSin_usoidalSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size Factor Gradient:Size Map EditorSize of paper that you wish to print toSize:Sizes:Slowest, but most accurate and smoothest color for continuous tone images and photographsSmearSmoo_th Palette...Smoo_thingSmoot_hSmooth PaletteSmooth samplesSmoothing X gradient...Smoothing Y gradient...Smoothing parametersSmoothing:Smoothness of AliasingSmvectorsSnap to gridSobelSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySoftglowSolidSolid NoiseSolid Noise...Solid colored backgroundSolid colorsSome data has been changed!Sorry, I can save only INDEXED and GRAY images.Sorry, channels and masks can not be rotated.Source (input slot) of media you're printing toSource 1:Source 2:Source channel in file:Source channel:Source color rangeSource...Sp_ike points:Sp_read...Spa_tial oversample:Spacing (percent):Spacing:SparkleSparkling...Spatial TransformationSpatial _filter radius:Specified window not foundSpecifies the amount of embossing to apply to the image (in percent)Specifies the aspect ratio of the brushSpecifies the scale of the texture (in percent of original file)Specular:SphereSphere DesignerSphere _Designer...SphericalSpi_ke angle (-1: random):SpiderSpik_e density:Spike Thickness:SpiralSpiral Number of TurnsSpot Radius:SpotsSpreadSpread AmountSpreading...St_rength exp.:StandardStandard (R,G,B)Star Number of PointsStart _index:Start angle:Start offset:StartPage failedStepStep size:Stop when pixel differences are smaller than this valueStretchStretch _HSVStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, error = %d, y = %dStroke _density:StrongStyleSu_perNova...Subdivide:Subsampling:Substeps:SuperNovaSuperNova Color PickerSw_irl CWSwap the two curvesSwirlSwitch to "From seed" with the last seedSwitch to c/clockwiseSwitch to clockwiseSymbolTIFF ChannelTIFF imageTWAIN (Dump)...TWAIN (Read)...T_ilableT_ile saturation:T_ile size:T_ransparent backgroundT_urbulence:T_urbulentTable Creation OptionsTable OptionsTarGA imageTargetTel_netTemporaryTemporary ProcedureText antialiasingTextureTexture PropertiesTexture TransformationsTexture:TexturesThank you for choosing GIMPThe GIF format only supports comments in 7bit ASCII encoding. No comment is saved.The GIMP help files are not installed.The GIMPressionistThe Gimpressionist DefaultsThe PNG file specifies an offset that caused the layer to be positioned outside the image.The TIFF format only supports comments in 7bit ASCII encoding. No comment is saved.The amount of cellpadding.The amount of cellspacing.The amount of highlighting on the edges of each pieceThe angle span of the first brush to createThe brush-size that matches the original image the closest is selectedThe colors are white and black.The default comment is limited to %d characters.The depth of the drop shadow, i.e. how far apart from the object it should beThe direction that matches the original image the closest is selectedThe distance from the center of the image determines the direction of the strokeThe distance from the center of the image determines the size of the strokeThe first row of the imageThe height for each table cell. Can be a number or a percent.The hue of the region determines the direction of the strokeThe hue of the region determines the size of the strokeThe image which you are trying to save as a GIF contains layers which extend beyond the actual borders of the image. This isn't allowed in GIFs, @@ -248,25 +399,30 @@ You may choose whether to crop all of the layers to the image borders, or cancel this save.The image which you are trying to save as an XBM contains more than two colors. -Please convert it to a black and white (1-bit) indexed image and try again.The largest brush to createThe layer preserves transparency.The name '%s' is used already!The name `%s' is used already!The number of directions (i.e. brushes) to useThe number of pixels in the table border.The number of sizes of brushes to useThe relative density of the brush strokesThe smallest brush to createThe smvector-field. Left-click to move selected smvector, Right-click to point it towards mouse, Middle-click to add a new smvector.The starting angle of the first brush to createThe strokes are evenly distributed across the imageThe strokes follow a "flowing" patternThe text for the table caption.The text to go into each cell.The type of this SUN-rasterfile is not supportedThe unit's abbreviation (e.g. "cm" for centimeters).The unit's plural form.The unit's singular form.The unit's symbol if it has one (e.g. "'" for inches). The unit's abbreviation is used if doesn't have a symbol.The vector-field. Left-click to move selected vector, Right-click to point it towards mouse, Middle-click to add a new vector.The width for each table cell. Can be a number or a percent.There are not enough layers to align.There is a problem with the GIMP help files.This field is a hint for numerical input fields. It specifies how many decimal digits the input field should provide to get approximately the same accuracy as an "inch" input field with two decimal digits.This image depth is not supportedThis is not a GIF fileThis string will be used to identify a unit in GIMP's configuration files.Thresho_ld:Threshold AlphaThreshold Alpha: Coloring Transparency...Threshold:TileTile source image: useful for infinite planesTile to New SizeTileItTileableTiler...Tiling PrimitivesTiling...ToTo ColorTo:ToolsTop:Tr_ailingTransferring TWAIN data...Transformation %sTransparentTreat as thisTry Bounding BoxTurbulence:TypeType of colormap not supportedType of ink in the printerType of light source to applyType of media you're printing toType of object to map toType:URLURL: %sUnOptimizing Animation...Unable to add additional point. -Uncompressed size: %sUndoUndo last zoomUnitUnit EditorUnit factor must not be 0.UnitsUnits:Unknown color model in PNG file '%s'.Unknown reasonUnnamedUnselectUnselect AllUnsharp MaskUnsupported bit depth (%d)!Unsupported brush formatUnsupported format or Clipboard empty!UntitledUnusual PCX flavour, giving upUpdateUpper left _x:Upper left _y:Upside downUse Gimp GuidesUse Original -Image SizeUse a transparent background; Only the strokes painted will be visibleUse average valueUse cosine-function for this color componentUse linear mapping instead of any trigonometrical function for this color channelUse log log smoothing to eliminate "banding" in the resultUse loglog smoothingUse reverse valueUse sine-function for this color componentV_alueValueValue Invert...Value PropagateValue Propagating...Value VariationsValue:Van Gogh (LIC)Van Gogh (LIC)...Vector _Angle:Vector _Length:VectorsVerticalVertical ColorVerticallyVideoVideo/RGB...View SourceVoronoi-mode makes only the smvector closest to the given point have any influenceVoronoi-mode makes only the vector closest to the given point have any influenceVorte_xVortex_2Vortex_3WAI_SWarningWarning: +Please convert it to a black and white (1-bit) indexed image and try again.The largest brush to createThe layer preserves transparency.The name '%s' is used already!The name `%s' is used already!The number of directions (i.e. brushes) to useThe number of pixels in the table border.The number of sizes of brushes to useThe offset can be adjusted by dragging the preview using the middle mouse button.The relative density of the brush strokesThe requested URL could not be loaded:The smallest brush to createThe smvector-field. Left-click to move selected smvector, Right-click to point it towards mouse, Middle-click to add a new smvector.The starting angle of the first brush to createThe strokes are evenly distributed across the imageThe strokes follow a "flowing" patternThe text for the table caption.The text to go into each cell.The type of this SUN-rasterfile is not supportedThe unit's abbreviation (e.g. "cm" for centimeters).The unit's plural form.The unit's singular form.The unit's symbol if it has one (e.g. "'" for inches). The unit's abbreviation is used if doesn't have a symbol.The vector-field. Left-click to move selected vector, Right-click to point it towards mouse, Middle-click to add a new vector.The width for each table cell. Can be a number or a percent.There are not enough layers to align.There is a problem with the GIMP help files.This field is a hint for numerical input fields. It specifies how many decimal digits the input field should provide to get approximately the same accuracy as an "inch" input field with two decimal digits.This image depth is not supportedThis is not a GIF fileThis string will be used to identify a unit in GIMP's configuration files.This tool has no optionsThresho_ld:Threshold AlphaThreshold Alpha: Coloring Transparency...Threshold:Til_e spacing:TileTile _height:Tile _neatness:Tile _width:Tile source imageTile source image: useful for infinite planesTile to New SizeTileItTileableTiler...Tiling PrimitivesTiling...ToTo ColorTo _bottomTo _polarTo _rightTo _topTo l_eftTo:Tool optionsToolsTop edgeTop-_leftTop:Tr_ailingTransferring TWAIN data...Transformation %sTransparentTransparent backgroundTreat as thisTree ViewTry Bounding BoxTurbulence:TypeType of colormap not supportedType of ink in the printerType of light source to applyType of media you're printing toType of object to map toType:URLURL: %sUnOptimizing Animation...Unable to add additional point. +Unable to save '%s'. The psd file format does not support images that are more than 30000 pixels wide or tall.Unable to save '%s'. The psd file format does not support images with layers that are more than 30000 pixels wide or tall.Uncompressed size: %sUndoUndo last zoomUnitUnit EditorUnit factor must not be 0.UnitsUnits:Unknown color model in PNG file '%s'.Unknown reasonUnnamedUnrecognized or invalid BMP compression format.UnselectUnselect AllUnsharp MaskUnsupported bit depth (%d)!Unsupported brush formatUnsupported format or Clipboard empty!UntitledUnusual PCX flavour, giving upUpdateUpdate _PreviewUpper leftUpper left _x:Upper left _y:Upper rightUpside downUs_e macros instead of structUse GIMP guides...Use Gimp GuidesUse Original +Image SizeUse _1 byte Run-Length-EncodingUse a transparent background; Only the strokes painted will be visibleUse average valueUse cosine-function for this color componentUse cyclic rangeUse linear mapping instead of any trigonometrical function for this color channelUse log log smoothing to eliminate "banding" in the resultUse loglog smoothingUse magnitude mapUse restart markersUse reverse valueUse sine-function for this color componentUse subcolorsUse the background colorUse the color of the imageUse the foreground colorV_alueValueValue Invert...Value PropagateValue Propagating...Value VariationsValue:Van Gogh (LIC)Van Gogh (LIC)...Vector _Angle:Vector _Length:Vector mag:VectorsVer_tical base:VerticalVertical ColorVerticallyVery darkVi_deo...VideoVideo PatternVideo/RGB...View SourceVoronoi-mode makes only the smvector closest to the given point have any influenceVoronoi-mode makes only the vector closest to the given point have any influenceVorte_xVortex_2Vortex_3WAI_SWMF file does not +specify a size!W_hirl and Pinch...W_ith source imageW_rite extra mask fileWarningWarning: The image you are loading has 16 bits per channel. GIMP can only handle 8 bit, so it will be converted for you. Information will be lost because of this conversion.Warning: Transparent color in written file might be incorrect on viewers which don't support transparency.Warning: '%s' is a parameter file for newer CML_explorer than me.Warning: '%s' is an old format file.Warning: the source and the destination are the same channel.Warning: unsupported layermode %d saved to XJTWarning: unsupported pathtype %d saved to XJTWarning: unsupported unittype %d saved to XJTWarpWarping Frame No. %d...Warping...Wave TypeWavesWaving...WeakWeb browser not specified. -Please specify a web browser using the Preferences Dialog.When toggled, the resulting image will be scaled to fit into the given size without changing the aspect ratio.Whirl and PinchWhirling and Pinching...WhiteWidth of the paper that you wish to print toWidth:WindWindowsWith gradient power (0,1)With p and random (0,1)With random power (0,1)With random power (0,10)WoodWrapWrite error occurredX scale (size)X:XBM OptionsXJT file contains unknown layermode %dXJT file contains unknown pathtype %dXJT file contains unknown unittype %dXMAX:XMIN:XPM file invalidX_1:X_2:Y scale (size)Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:Yellow_KYou are about to create a huge +Please specify a web browser using the Preferences Dialog.When toggled, the resulting image will be scaled to fit into the given size without changing the aspect ratio.Whirl and PinchWhirling and Pinching...WhiteWi_nd...Width (pixels):Width of the paper that you wish to print toWidth:WindWindowsWindows BMP imageWindows icons cannot be higher or wider than 255 pixels.With gradient power (0,1)With p and random (0,1)With random power (0,1)With random power (0,10)WoodWork on cop_yWrapWrite error occurredX BitMap imageX PixMap imageX scale (size)X window dumpX:XBM OptionsXJT file contains unknown layermode %dXJT file contains unknown pathtype %dXJT file contains unknown unittype %dXMAX:XMIN:XPM file invalidXWD-file %s has format %d, depth %d +and bits per pixel %d. +Currently this is not supported.XY position:X_1:X_2:Y scale (size)Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:Yellow_KYou are about to create a huge HTML file which will most likely crash your browser.You can not rotate the whole image if there's a floating selection.You can not rotate the whole image if there's a selection.You cannot save a cursor mask for an image -which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Base URL:_Bilinear_Black_Blacken_Blast_Blend_Blue_Blue:_Border:_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bumpmap_Copy_Deflate_Depth:_Derivative_Description:_Detail:_Digits:_Displacement:_Distorted_Dots_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Exponent:_Factor:_File_Filename:_Font:_Force_Fractals_Free_Ftp Site_Gamma:_General_Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Height_Height:_Help_Hex_Hidden_Holdness:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep NCSA circles true_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Light_Linear_Lines_Link_Lower_MIME_Mapping_Material_Max (%):_Max Depth:_Midtones_Millimeter_Mirror_Misc Ops._Monochrome_Move_No. Across:_None_Normal_Pack Bits_Parameters_Period:_Phase:_Ping Pong_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_Psychobilly_RGB_RLE compression_RLE encoded_Radial_Radius:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Right_Right Border_Rotated_Saturation_Saturation:_Search:_Second Flares_Sender:_Settings_Sharpness:_Size_Size:_Smear_Snap-To Grid Enabled_Speed:_Spokes:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Use double-sized grab handles_Uuencode_Value_Value:_Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp_Waterlevel:_Wavelength:_Web Site_White_Wide-striped_Width_Width:_Wind_Wrap_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyancyan_ke-_mailgreenhueinvalid formatted GFlare file: %s -k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screenvaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp.PLUGINS.ru +which has no alpha channel.Z scale (size)Z:ZSoft PCX imageZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:Zoom to_3x3_Abbreviation:_About ImageMap_Adaptive_Additive_Advanced_Advanced Options_Algorithm:_Alpha_Alpha threshold:_Alpha trimmed mean_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Apply Canvas..._Autocrop Image_Autocrop Layer_Automatically convert_Azimuth:_Background_Background color_Base URL:_Bevel width:_Bilinear_Black_Black level:_Blacken_Blast_Blend_Blinds..._Blue_Blue:_Blur_Blur radius:_Border Average..._Border:_Bottom-left_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bump Map..._Bump map:_Bumpmap_Checkerboard..._Clear_Color Enhance_Color Exchange..._Colorify..._Contents_Convolution Matrix..._Copy_Cubism..._Curve Bend..._Decompose..._Deflate_Deform radius:_Deinterlace..._Delay between frames where unspecified:_Depth Merge..._Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Dilate_Displace..._Displacement:_Distorted_Divisions:_Dots_Dynamic:_Edge enhancement_Edge..._Edit_Effect Image:_Elevation:_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Environment Map_Explicit tile_Exponent:_FG/BG lighting_Factor:_Factory defaults_File_Filename:_Film..._Filter Pack..._Filter length:_Find Backdrop_Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Foreground to peaks_Format:_Fractal Explorer..._Fractal Trace..._Fractals_Free_Ftp Site_GFlare..._GIF comment:_GIMPressionist..._Gamma:_Gaussian Blur..._General_Generate full HTML document_Gfig..._Glass Tile..._Glow radius:_Glowing:_Gopher_Gradient_Gradient Map_Gray:_Green_Green:_Grey_Grid_Grid size:_Grid..._Grow_Guillotine_HSL color model_Height_Height:_Help_Hex_Hidden_High_Hold the maximal channels_Holdness:_Hole offset:_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hot..._Hue_Hue rotation:_Hurl..._ID:_IFS Fractal..._IIR_IWarp..._Ideal_Identifier prefix:_Ignore_Ignore the bottom layer even if visible_Illusion..._ImageMap..._Inch_Independent RGB_Input SPI:_Insert_Intensity:_Interlace_Interlacing (Adam7)_Invert_JPEG_JavaScript_Jigsaw..._Keep NCSA circles true_Keep aspect ratio_Keep original surroundings_Keep sign of result (one direction only)_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Lens refraction index:_Light_Lighting Effects..._Limit line width_Linear_Lines_Link_Load defaults_Lock channels_Loop forever_Low_Lower_MIME_Mail Image..._Make Seamless_Make surroundings transparent_Map backwards_Map type:_Mapping_Mask file extension:_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Max RGB..._Max. delta:_Maze..._Metallic_Middle value to peaks_Midtones_Millimeter_Minimum value:_Mirror_Misc Ops._Modify hue channel_Modify red channel_Monochrome_Mosaic..._Motion Blur..._Move_NL Filter..._Natural color_Neon..._No. Across:_Noise magnitude:_None_Normal_Normalize_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pack Bits_Pagecurl..._Palette Type:_Paper Tile..._Parameters_Percent black:_Period:_Phase:_Photocopy..._Pick..._Pinch amount:_Ping Pong_Pitted surfaces_Pixelize..._Plasma..._Playback..._Plug-In Browser_Plural:_Polished:_Polygon_PostScript level 2_Prefixed name:_Preserve luminosity_Presets_Preview_Preview once_Preview!_Print_Print..._Prompt for area info_Propagating rate:_Psychobilly_Qbist..._Quality:_RGB_RGB color model_RLE_RLE compression_RLE encoded_Radial_Radius 1:_Radius:_Random hue:_Random seed:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Remove Backdrop_Rendering_Require default URL_Retain tilability_Retinex..._Right_Right Border_Ripple..._Rotated_Sample Colorize..._Saturation_Saturation:_Save comment to file_Save defaults_Scale division:_Scale:_Scatter RGB..._Screen Shot..._Search depth:_Search:_Second Flares_Selective Gaussian Blur..._Semi-Flatten_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Shiny:_Show cursor_Sinus..._Size_Size:_Slur..._Small Tiles..._Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Softglow..._Solid Noise..._Sparkle..._Speed:_Spike length:_Spokes:_Spot function:_Square_Squares_Staggered_Strength:_Stretch Contrast_Stroke_Symbol:_TWAIN..._Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold Alpha..._Threshold:_Tile bumpmap_Tile size:_Tile..._Title:_Tools_Top Start at:_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_UnOptimize_Undo_Undo %s_Uniform_Unit Editor_Unsharp Mask..._Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Use double-sized grab handles_Use intensity algorithm_Use the (invisible) bottom layer as the base_Uuencode_Value_Value Invert_Value Propagate..._Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Voronoi_Warp_Warp..._Waterlevel:_Wavelength:_Waves..._Web Site_Whirl angle:_White_White level:_Wide-striped_Width_Width:_Wind_With white noise_Wrap_Wrap around_Write hot spot values_X Scale:_X displacement:_X offset:_X ratio:_X size:_X10 format bitmap_X:_Y Scale:_Y displacement:_Y offset:_Y ratio:_Y size:_Y:_Yellow_Z:_Zealous Crop_Zoom_Zoom:`Default' is created.a _Single Windowafteralphaautostretch_hsv: cmap was NULL! Quitting... +blackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fbzip archivec_astretch: cmap was NULL! Quitting... +cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s +k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: ru Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 -PO-Revision-Date: 2004-07-15 00:09+0400 +POT-Creation-Date: 2005-05-08 12:28+0200 +PO-Revision-Date: 2005-04-10 00:13+0400 Last-Translator: AnatolyA. Yakushin Language-Team: russian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.3.1 +X-Generator: KBabel 1.9.1 Все права принадлежат (C) 1997-2001 Michael Sweet, Robert Krawitz, @@ -287,44 +443,52 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - (ошибочная высота!) (ошибочная ширина!) строк "Фиксированное зерно" псевдоним для меня. -Одинаковые зерна производят одинаковые изображения, если (1) ширина изображений одинакова (по этой причине изображение и его предпросмотр различаются) и (2) скорости всех мутаций равны 0.Число пятен:%d на %d%s -- Печать v%sФайл '%s' поврежден. + (ошибочная высота!) (ошибочная ширина!) столбцах на каждом слое строк вОдинаковые зерна производят одинаковые изображения, если (1) ширина изображений одинакова (по этой причине изображение и его предпросмотр различаются) и (2) значения всех изменений равны 0.#Число пятен:Число поддиапазонов:%d дополнений%d процедур%d на %d%s -- Печать v%sФайл '%s' поврежден. Строка %d раздела параметров неправильна"%s" не является файлом DICOM'%s' не является файлом Исследователя Фракталов"%s" -не является файлом PCX"%s" не является обычным файлом"%s" не пригодный BMP-файл"%s" не является файлом Град.вспышки."%s": +не является файлом PCX"%s" не является файлом flame"%s" - некорректный файл BMP"%s" не является файлом Град.вспышки."%s": Невозможно прочесть заголовок (ftell == %ld)"%s": тип данных изображения не указан"%s": -высота изображения не указана"%s": -не указано изображение(Нет)<Безымянное>Доверительное значение для адаптивного выделенияМенее устарелое создание Adam D. Moss /adam@gimp.org / adam@foxbox.org/ 1998-2000Определение единицы будет сохранено только перед выходом из GIMP если столбец отмечен.Текст ALT: (необязательно)О программеДобавитьДополнительныеВсеАльфа-нагрузкаАльфа:Освещение:Амплитуда:Угол:АнимироватьПрисоединитьАвтоматическиСреднее под кистьюАббревиатураО программеО дополнении Gimp-PrintДействиеДополнительныеАдаптивноеДобавить дополнительные направляющиеДобавить путь Исследователя ФракталовДобавить новый sm-векторДобавить новый векторДобавление жалюзи...Добавление шахматной доски...Добавление шума...ДобавлениеДобавлять эффект тени к каждому мазку кистьюДобавить случайный шум к цветуПодстройка цветогого баланса, яркости, контрастности, насыщенностиПодбор интенсивности вспышкиПодбор порога яркостиПодбор числа лучейПодбор непрозрачности лучейПодбор угла луча (-1 означает выбор случайного угла)Подбор плотности лучаПодбор длины лучаПодбор степени того как много тона будет изменяться случайноПодбор степени того как много насыщенности будет изменяться случайно.Подбор баланса голубого для печатиОпределяет плотность (количество краски) печати. Плотность надо уменьшить если краска размазывается или проступает сквозь бумагу. Плотность надо увеличить если черные элементы изображения таковыми не являются.Определяет гамму печати. Большие значения - светлая печать. Меньшие - темная. Черный и белый цвета останутся такими же, чего не добиться определяя яркость.Подбор баланса пурпурного для печатиНастроить яркость просмотраПодбор насыщенности (цветового баланса) для печати -Используйте нулевую насыщенность для создания изображения в оттенках серого с использованием цветных и чёрных чернилПодбор баланса жёлтого для печатиКоррекция Переднего плана/Фона...Дополнительные параметры пакета фильтровОбрабатываемый диапазонТ_екст подсказкиЧужое отображение 2Чужое отображение 2: Преобразование...Выровнять видимые слоиВсе JNGВсе PNGВсе значения - доли высоты пленкиВсе черноеВсе сероеВсе текстовые поля должны содержать значения.Все белоеАльфаАльфа каналыАльфа:Освещение:Степень окрашивания собственным цветом там куда не попадают прямые лучиВеличина:Устаревшее создание Adam D. Moss /adam@gimp.org / adam@foxbox.org/ 1998-2000Угол смещения:Диапазон углов:Угол:Угловой градиент:Градиент угловой протяженностиПараметры анимированного GIFСглаживаниеКачество сглаживание. Более высокое лучше, но медленнееИспользовать бумагу как есть (без придания ей рельефа)ПрименитьПрименить холстПрименить действующий градиент к итоговому изображениюПрименяется холст...Применение сверткиПрименяется линза...Применяется набор фильтров...Вы действительно хотите удалить -"%s" из списка и с диска?Настройки области #%dНастройки областиОбласть:СтрелкаКак указано вышеAsciiПропорции:Сборка пазла...Асимметрия:Автор:Автор:АвтоАвтоувеличение контраста...Автрорастягивание HSV...АвтоматическиДоступные изображения:Ч/БЗамещение BLANK/NaN точекЗадняя часть:ФонФон (%d%s)Цвет фонаТип фонаФон:Неправильная цветовая картаБарнсли 1Барнсли 2Барнсли 3Основной URL:Изгибнаиболее подходящий для изображений большими областями ровного цветаЗакругленные краяБилинейныйЧерныйЧерный:Настройки смесителяЖалюзиСинийСиний:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Параметры размыванияРадиус размыванияТип размыванияРазмывание...РамкаПоиск среднего значения цвета...Размер рамкиУсредненный цвет рамкиОбаОбаНижняя граница:НизПараллелепипедЯркость:ПросмотрРельефРельефСоздание рельефа...Рельефпо DATAMIN/DATAMAXCML_исследователь: выполнение...CMYCMYKCX:CY:CMYKКамераЗаголовокЦентр кистиЦентрированиеВыбрать:КругСоздать новое изображениеПересеченияИскривленныеГолубойЦилиндрНастройки рассчетаВозможна работа только с изображениями в режиме RGB.Возможно только сохранение рисунков!Эта операция действует только на слоях (а был вызван на канале или маске)Невозможно создать новое изображениеНе удалось получить данные из буфера обмена.Невозможно выполнять действия с изображением неизвестного типаНевозможно удалить! Должна быть хотя бы одна Град.вспышка.Невозможно выполнить действия с пустым выделениемНевозможно применять к индексированным изображениям.Невозможно использовать для работы с индексированными изображениямиНевозможно использовать в слоях с маскойНевозможно выполнить действия с изображением неизвестного типаНевозможно прочесть расширение из %sНевозможно прочесть сноску из "%s"Невозможно сохранить изображение в формате RGB. Преобразуйте его в индексированный формат или в градации серого.Невозможно сохранить изображения с альфа-каналом.Невозможно сохранить изображения с альфа-каналами.ЦентрЦентр X:Центр Y:Центр СверхновойЦентрировать изображение горизонтально на страницеЦентрировать изображение на страницеЦентрировать изображение вертикально на страницеЦентр:ЦентрироватьИзменить порядок указателейИзменяет значение CX (меняет пропорции фрактала, действует на любой фрактал кроме Мандельброта и Серпинского)Изменяет значение CY (меняет пропорции фрактала, действует на любой фрактал кроме Мандельброта и Серпинского)Изменить угол выбранного sm-вектораИзменить угол указанного вектораИзменить экспоненту силы:Изменить ограничение первой (минимальной) x-координатыИзменить ограничение первой (минимальной) y-координатыИзменить интенсивность синего каналаИзменить интенсивность зеленого каналаИзменить интенсивность красного каналаИзменить число повторов вычисления. Чем выше, тем больше деталей будет вычислено, но это потребует больше времениИзменить число цветов в отображенииИзменить ограничение второй (максимальной) x-координатыИзменить ограничение второй (максимальной) y-координатыИзменить длину выбранного sm-вектораИзменить длину выбранного вектораИзменить до этогоИзменить гамму (яркость) выбранной кистиКанал #%d:Микшер каналовСообщение микшера каналовПредставление каналаКаналыОтметьте, если таблица должна быть озаглавлена.Шахматная доскаШахматная доскаОтметка в этой графе заставит GTM удалять пробелы между TD-тэгами и содержимым ячейки. Это необходимо только для регулирования положения на уровне точек растра.Выберите фрактал дважды щелкнув на немВыберите большую степень сжатия для получения файла меньшего размераВыберите алгоритм смешения. Adaptive Hybrid обычно дает прекрасное качество. +не указана высота изображения"%s": +не указана ширина изображения(Нет)1 дополнение1 процедура1 bpp, 1-bit alpha, 2-slot palette32 bpp, 8-bit alpha, no palette4 bpp, 1-bit alpha, 16-slot palette8 bpp, 1-bit alpha, 256-slot palette<Безымянное>Доверительное значение для адаптивного выделенияНаименее устаревшее творение Adam D. Moss /adam@gimp.org / adam@foxbox.org/ 1998-2000Определение единицы будет сохранено только перед выходом из GIMP если столбец отмечен.Текст ALTТекст ALT: (необязательно)ASCIIО программеАдаптивная интерполяцияДобавитьДобавить рамкуДополнительноВсевсем секторамАльфа-нагрузкаАльфа:Освещение:Величина:Амплитуда:Угол:АнимироватьПрисоединитьАвтообновление просмотраАвтоматическиСреднее под кистьюАббревиатураО программеО дополнении Gimp-PrintДействиеДополнительноАдаптивноеАдаптивная супервыборкаДобавить доп. направляющиеДобавить путь Исследователя ФракталовДобавить новый sm-векторДобавить новый векторДобавление жалюзи...Шахматная доска...Добавление шума...ДобавлениеДополнительная информацияДобавлять эффект тени к каждому мазку кистьюДобавить случайный шум к цветуНастроить Пер.план/ФонПодстройка цветогого баланса, яркости, контрастности, насыщенностиПодстройка вывода...Подбор интенсивности вспышкиПодбор порога яркостиПодбор числа лучейПодбор непрозрачности лучейПодбор угла луча (-1 означает выбор случайного угла)Подбор плотности лучаПодбор длины лучаПодбор степени того как много тона будет изменяться случайноПодбор степени того как много насыщенности будет изменяться случайно.Подбор баланса голубого для печатиОпределяет плотность (количество краски) печати. Плотность надо уменьшить если краска размазывается или проступает сквозь бумагу. Плотность надо увеличить если черные элементы изображения таковыми не являются.Определяет гамму печати. Большие значения - светлая печать. Меньшие - темная. Черный и белый цвета останутся такими же, чего не добиться определяя яркость.Подбор баланса пурпурного для печатиНастроить яркость просмотраПодбор насыщенности (цветового баланса) для печати +Используйте нулевую насыщенность для создания изображения в оттенках серого с использованием цветных и чёрных чернилПодбор баланса жёлтого для печатиКоррекция Переднего плана/Фона...Дополнительные параметрыДополнительноДиапазонАгрессивное RLE +(Не поддерживается SGI)Т_екст подсказкикаждому второмуAlias|Wavefront PIXЧужое отображение 2...Чужое отображение 2Чужое отображение 2: Преобразование...Выровнять видимые слоиВыровнять видимые слои...Все JNGВсе PNGВсе значения - доли высоты пленкиВсе черноеВсе сероеВсе текстовые поля должны содержать значения.Все белоеРасщепление блоковАльфаАльфа каналыАльфа:Неосвещенного:Степень окрашивания собственным цветом там куда не попадают прямые лучиВеличина:Морально устаревшее творение Adam D. Moss /adam@gimp.org / adam@foxbox.org/ 1998-2000Угол смещения:Диапазон углов:Угол:Угловой градиент:Градиент угловой протяж-ти:Параметры анимацииПараметры анимированного MNGВоспроизведение: СглаживаниеКачество сглаживания. Более высокое лучше, но медленнееИспользовать бумагу как есть (без придания ей рельефа)ПрименитьПрименить холстЛинза...Применить действующий градиент к итоговому изображениюПрименяется холст...Применение сверткиЛинза...Применяется набор фильтров...Вы действительно хотите удалить +"%s" из списка и с диска?Настройки области #%dНастройки областиСписок областейОбл.:СтрелкаКак указано вышеAsciiПропорции:Сборка пазла...Асимметрия:СнизуСверхуАвтор:Автор:АвтоАвтоувеличение контраста...Автрорастягивание HSV...AutoDesk FLIC animationАвтоматическиАвтообновлениеИзображения:B, G, R, X (в стиле bmp)Ч/БЗамещение BLANK/NaN точекПроцент черногоПорог синего:Цвет фонаЗадняя:ФонФон (%d%s)Цвет фонаТип фонаФон:Неправильная цветовая картаБарнсли 1Барнсли 2Барнсли 3Основной URL:Основные параметрыИзгибнаиболее подходящий для изображений большими областями ровного цветаРельеф кромкиБилинейныйЧерный и белыйЧерныйЧерный и белыйЧерный:Параметры смешиванияЖалюзиСинийЧастота синего:Фазовый сдвиг синего:Синий:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:ЦентрРазмывание:Параметры размыванияРадиус размыванияТип размыванияРазмывание...РамкаПоиск среднего значения цвета...Размер рамкиУсредненный цвет рамкиОбаОбаНижняя граница:Нижний крайСнизу справаНижняя:ПараллелепипедЯркость:ПросмотрРельефРельефСоздание рельефа...Источник рельефа:Рельефпо DATAMIN/DATAMAXИсходный код CЗаголовок исходного кода CCML Исследователь: переписать файл?CML_исследователь...CML_исследователь: выполнение...CMYCMYKCX:CY:CMYKКамераЗаголовокСодержимое ячейки:Размер ячейки:Центр кистиЦентрированиеВыбрать:КругСобрать...Создать новое изображениеПересеченияИскривленныеГолубойЦилиндрCa_rtoon...Настройки рассчетаВозможна работа только с изображениями в режиме RGB.Возможно только сохранение рисунков!Эта операция действует только на слоях (а была вызвана для канале или маски)Невозможно создать новое изображениеНе удалось получить данные из буфера обмена.Невозможно выполнять действия с изображением неизвестного типаНевозможно прочесть цветовые записиНевозможно удалить! Должна быть хотя бы одна Град.вспышка.Невозможно выполнить действия с пустым выделениемФильтр неприменим к индексированным изображениям.Невозможно применять к индексированным изображениямНевозможно использовать в слоях с маскойНевозможно выполнить действия с изображением неизвестного типаНевозможно прочесть расширение из %sНевозможно прочесть сноску из "%s"Невозможно сохранить изображение в формате RGB. Преобразуйте его в индексированный формат или в градации серого.Невозможно сохранить изображения с альфа-каналом.Невозможно сохранить изображения с альфа-каналами.CartoonРазмер ячейки:Cell-_padding:Cell-_spacing:ЦентрЦентр по X:Центр по Y:Центр отблескаЦентр СверхновойЦентрировать изображение горизонтально на страницеЦентрировать изображение на страницеЦентрировать изображение вертикально на страницеЦентр:ЦентрироватьЧувств. канала:Изменить порядок указателейИзменяет значение CX (меняет пропорции фрактала, действует на любой фрактал кроме Мандельброта и Серпинского)Изменяет значение CY (меняет пропорции фрактала, действует на любой фрактал кроме Мандельброта и Серпинского)Изменить угол выбранного sm-вектораИзменить угол указанного вектораИзменить экспоненту силы:Изменить ограничение первой (минимальной) x-координатыИзменить ограничение первой (минимальной) y-координатыИзменить интенсивность синего каналаИзменить интенсивность зеленого каналаИзменить интенсивность красного каналаИтерация, число повторов вычисления. Чем выше, тем больше деталей будет вычислено, но это потребует больше времениИзменить число цветов в отображенииИзменить ограничение второй (максимальной) x-координатыИзменить ограничение второй (максимальной) y-координатыИзменить длину выбранного sm-вектораИзменить длину выбранного вектораИзменить до этогоИзменить гамму (яркость) выбранной кистиКанал #%d:Независимые от канала параметрыМикшер каналов...Микшер каналовСообщение микшера каналовПредставление каналаКаналыОтметьте, если у таблицы должен быть заголовок.Шахматная доскаШахматная доскаПри включении этой опции GTM удалит пробелы между TD-тэгами и содержимым ячейки. Это необходимо только для регулирования положения на уровне точек растра.Выберите фрактал дважды щелкнув на немВыбор файла PPDВыберите большую степень сжатия для получения файла меньшего размераВыберите файл PPDВыберите алгоритм смешения. Adaptive Hybrid обычно дает прекрасное качество. Ordered - работает быстрее и неплохо справляется с фотогрфиями. Fast и Very Fast - -самые быстрые режимы. Их можно применять к текстам и штриховым рисункам.Выберите модель принтера, файл PPD и команду, которую вы используетет для этого принтераКругОчистка...ОчиститьЗамыкать кривую при завершенииЗакрыватьЦветЦвет:ЦветаКомментарий:Сложность:Сжимать TD-тэгиЗамкнутая областьКонтраст:Столбец:СобратьЦветПлотность цветаУсиление цвета...Замена цветаЗамена цвета...Замена цвета: с цветаЗамена цвета: на цветЦветовая функцияЦветовой режимДиалог выбора цветаПреобразование цветовЦветовой шум:Цвет вычисляется как среднее всех пикселов под кистьюЦветной выводЦвет -> Альфа-каналВыбор цвета в альфа-каналеЦветовая карта:Анализ изображенияАнализ изображенияОкрашиваниеОкрашивание выбраным цветомОкрашивание...ОкрашиваниеВращение цветовой картыЦветаЦвета:ОбъединитьКомментарий:Команда:КомментарийКомментарий:СобратьСобрать каналыСборка изображений...Сборка...Сборка:Размер сжатого файла %sCжатиеСтепень сжатия (приблизит.): %d к 1ПропорцииСоздание лабиринта с использованием алгоритма Prim...Конструирование рассеченного лабиринта с использованием алгоритма Prim...СодержаниеНепрерывный градиент без зазоровНепрерывный градиентНепрерывное обновлениеКонтраст:УправлениеУправляет тем насколько интенсивными будут бликиСначала преобразуйте изображение в RGB!Матрица свёрткиМатрица свёртки не работает -на слоях меньших трех точек растра.СверткаСкопироватьСкопировать Град.вспышкуСкопировать настройкиСкопировать объектСкопировать активную кривую на другой крайСкопировать текстуру выбранной бумаги как фонКопирование IFS в изображение (%d/%d)...Копирование...Авторское право:КосинусНевозможно создать рабочий каталог '%s': %sНевозможно запустить указанный просмотрщик: +самые быстрые режимы. Их можно применять к текстам и штриховым рисункам.Выберите модель принтера, файл PPD и команду, которую вы используетет для этого принтераКругГлубина круга (%):Очистка...ОчиститьОчистить прозрачноеЗамыкать кривую при завершенииЗакрыватьЦветУсреднение цветаЦвет:ЦветаКомментарий:Компенсировать затемнениеСложность:Сжимать тэги TDСтепень сжатия:Замкнутая областьКонтраст:Корреляция шумаСтолбец:Собрать по основаниюЦветПлотность цветаПовышение насыщенности...Замена цветаЗамена цвета...Замена цвета: с цветаЗамена цвета: на цветЦветовая функцияЦветовой режимЗамена цвета...Диалог выбора цветаПреобразование цветовЦветовой шум:Вариации цвета:ЦветЦвет вычисляется как среднее всех точек под кистьюЦветной выводЦвет в альфа-каналВыбор цвета для альфа-каналаЦвет в альфа-канал...Цвет:Цветовая карта:Анализ изображения...Анализ изображенияАнализ изображенияОкрашиваниеЦвет для окрашиванияОкрашивание...ОкрашиваниеВращение цветовой картыВращение цветовой карты...ЦветаЦвета:ОбъединитьКомментарий:Команда:КомментарийКомментарий:СобратьСобрать каналыСборка изображений...Сборка...Сборка:Размер сжатого файла %sCжатиеСтепень сжатия (приблизит.): %d к 1Тип сжатияПропорцииСоздание лабиринта с использованием алгоритма Prim...Конструирование безшовного лабиринта с использованием алгоритма Prim...СодержаниеНепрерывный градиент без зазоровНепрерывный градиентАвтообновлениеСтруктураКонтраст:УправлениеУправляет тем насколько интенсивными будут бликиСначала преобразуйте изображение в RGB!Матрица свёрткиМатрица свёртки не работает +на слоях меньших трех точек растра.СверткаКопироватьСкопировать Град.вспышкуСкопировать настройкиСкопировать объектСкопировать параметрыСкопировать активную кривую на другой крайСкопировать текстуру выбранной бумаги как фонСкопировать в буферКопирование IFS в изображение (%d/%d)...Копирование...Авторское право (С) 1999-2004 Maurits RijkАвторское право:КосинусНевозможно создать рабочий каталог '%s': %sНевозможно запустить указанный просмотрщик: %sНе удалось получить слои изображения %dНевозможно интерпретировать файл '%s'Невозможно загрузить параметры PNG по умолчаниюНевозможно открыть '%s' как файл SUN-rasterНевозможно открыть "%s" для чтенияНевозможно открыть '%s' для записи: %sНевозможно открыть "%s" для записиНевозможно открыть '%s' для записи: %sНевозможно разобрать команду указанного просмотрщика: %sНевозможно прочесть заголовок XWD из "%s"Невозможно прочесть цветовые записи из '%s'Невозможно прочесть заголовок из "%s"Не удалось записать '%s': %sНе удалось загрузить одну из кистей в последовательности.Невозможно сохранить прозрачность, вместо нее будет сохранена непрозрачность.Не удалось прочитать файл:Не удалось сохранить файл: Не удалось сохранить файл ресурсов:Невозможно дальнейшее уменьшение цветов. -Сохраняется как непрозрачное.Coupled-Map-Lattice ExplorerСоздатьСоздать направляющиеСоздать отображение цветов используя градиент из редактора градиентовСоздать отображение цветов с указанными выше параметрами (цветовая плотность/функция). Результат демонстрируется в окне просмотра.Создавать новое изображение при применении фильтраСоздать новую единицу "с нуля"Создать новую единицу используя выбранную как шаблон.Создать кривую Безье. Shift + кнопка мыши - завершение создания.Создать окружностьСоздать эллипсСоздать линиюСоздать прав. многоугольникСоздать спиральСоздать звёздочкуСбой CreateDIBSectionСоздано в GimpСоздание дифракционного шаблона...ОбрезатьКадрирование...Кривая:КубизмСлой загибаПоложение загибаОриентация загибаТекущее:Изгиб кривойИзгиб кривой...Тип кривой:Кривая для края:Выбор цвета:ВырезатьГолубойГолубой:Голубой_KЦилиндрДлина цилиндраРадиус цилиндраДелитель:ТемнееТемнее:Сжатие данныхФорматирование данныхДата:РазобратьРазборка...ИсходнаяТип карты по умолчаниюURL по умолчанию:Определить круглую/овальную областьОпределить новый принтерОпределить многоугольную областьОпределить прямоугольную областьУказать новый логический принтер. Он представляет собой поименованый набор настроек.Режим деформацииСтепень наклона кромкиГрадусыУбрать черезстрочностьУбрать черезстрочность...Задержка встроена чтобы предотвратить перезагрузку процессора сложной анимациейУдалить/Удалить областьУдалить фракталУдалить Град.вспышкуУдалить точкуУдалить объектУдалить выбранный фракталУдалить выбранную областьУдалить выбранный sm-векторУдалить выбранный векторУдалить выбранные настройкиДельта-функцияПошаговая дельта-функцияПлотность:Объединение глубинОбъединение глубин...Извлечение гладкой палитры...Описание:Удаление пятенИтоговый цветовой диапазонНазначение:Удалить штрихиУбирание штрихов...Предел отклонения:РомбДифракционные шаблоныРассеяние:ЦифрыРазмер:РазмерыРазмеры:НаправлениеВектор направленияНаправленныйНаправленияНаправления:ЗамещениеЗамещение...Показать как:Расстояние от нижнего края бумаги до изображенияРасстояние от левого края бумаги до изображенияРасстояние от левого края бумаги до правого края изображенияРасстояние от правого края бумаги до изображенияРасстояние от верхнего края бумаги до нижнего края изображенияРасстояние от верхнего края бумаги до изображенияАлгоритм смешения:СегментыПросмотрВы действительно хотите отказаться от изменений?Нарисовать рамку из лучей вокруг изображенияРисунки имеют различный размерРисование пламени...Рисование сетки...Рисование лабиринта...Настройки рисункаНарисовать линию между контрольными точками. Только при создании кривойПадающая теньПри чтении обнаружен конец файлаВозвышение:РасширятьКаждый кусочек имеет искривленные стороныКаждый кусочек имеет прямые стороныЗахватываются краяВыделение краяВыделение края...Темные края:КраяПравкаПравка информации об области...Правка пламениПравка информации о карте...Правка объектаПравка названия фракталаИсправить информацию о выбранной областиПравка объекта предназначенного только для чтения - вы не сможете сохранить результатКанал эффектаОператор эффектаБарельефВключить/отключить рельефное преобразование (глубина изображения)Включить/отключить environment преобразование (отражение)Включить/отключить высококачественный предварительный просмотрВключить/Выключить удаление зубчатых краев (сглаживание)Включить/отключить немедленный предварительный просмотрИнкапсуляция:Неправильная конечная страницаГравюраГравирование...Ввести название для скопированной Град.вспышкиВведите название для новой градиентной вспышкиВвод названия для логического принтераВесь слойИспользуемое изображение окруженияОшибка при открытии файла FITSОшибка при записи rgb-изображенияОшибка при захвате снимка экранаОшибка в файле кисти GIMP -"%s"Ошибка в файле кисти GIMP.Ошибка в получении идентификатора слояОшибка в процессе создания снимкаОшибка при открытии файлаОшибка при открытии файла %sОшибка считывания заголовка BMP-файла -из "%s"Ошибка при открытии файлаОшибка при запуске ghostscript (%s)Ошибка при чтении '%s'. Файл поврежден?Ошибка при сохранении '%s'. Невозможно сохранить изображение.Ошибка при записи в файл вывода.Ошибка: невозможно прочитать файл свойств XJT '%s'Ошибка: файл свойств XJT '%s' пустОшибка: не удалось загрузить параметрыОшибка: это не файл параметров CMLРавномерно распределенныеПросмотр экспортируемого файлаФайл FITS не содержит изображения, которое можно показатьFITS-сохранение не может обработать изображение с альфа-каналомФайлПервый цвет:МножительНе удалось открыть файл Град.вспышки "%s": %sНе удалось сохранить файл PPM "%s": -%sНе удалось записать файл Град.вспышки "%s": %sБыстрое целоеСамый быстрый и яркий - для текста и штриховых рисунковПероФайлФайл "%s" сохранен.Файл %s существует. +Сохраняется как непрозрачное.Исследователь Coupled-Map-LatticeСоздать новое изображениеСоздатьСоздать направляющиеСоздать новый слойСоздать гистограммуСоздать отображение цветов используя градиент из редактора градиентовСоздать отображение цветов с указанными выше параметрами (цветовая плотность/функция). Результат виден в окне просмотра.Создавать новое изображение при применении фильтраСоздать новую единицу "с нуля"Создать новую единицу используя выбранную как шаблон.Создать дугуСоздать кривую БезьеСоздать кривую Безье. Shift + кнопка мыши - завершение создания.Создать окружностьСоздать эллипсСоздать направляющие...Создать линиюСоздать новое изображениеСоздать прав. многоугольникСоздать спиральСоздать звёздочкуСбой CreateDIBSectionСоздано в GIMPСоздание дифракционного шаблона...ОбрезатьКадрирование...Функция:КубизмКубистическое преобразование...Наложение слоев (об'единение)Слой загибаПоложение загибаОриентация загибаВыбранный градиентВыбранный градиент(обращенный)Текущее:Изгиб кривойИзгиб кривой...Тип кривой:Кривая для края:Выбор цвета:Выбранный градиентВырезатьГолубойГолубой:Голубой_KЦилиндрДлина цилиндраРадиус цилиндраМетод DCT:Формат DICOMСтепень деформ.:Делитель:ТемнееТемнее:Сжатие данныхФорматирование данныхФорматирование данныхДата:РазобратьРазобрать на слоиРазбираем...ИсходнаяТип карты по умолчаниюURL по умолчанию:Тип:Задержка кадра по умолчанию:Кадры:Определить круглую/овальную областьОпределить новый принтерОпределить многоугольную областьОпределить прямоугольную областьУказать новый логический принтер. Он представляет собой поименованый набор настроек.Режим деформацииСтепень объемности кромкиГрадусыУбрать черезстрочностьУбрать черезстрочность...Задержка встроена чтобы предотвратить перезагрузку процессора сложной анимациейУдалитьУдалить областьУдалить фракталУдалить Град.вспышкуУдалить точкуУдалить объектУдалить выбранный фракталУдалить выбранную областьУдалить выбранный sm-векторУдалить выбранный векторУдалить выбранные настройкиДельта-функцияПошаговая дельта-функцияПлотность:Объединение глубинПреимущественно в глубинуКарта глубин:Объединение глубин...Извлечение гладкой палитры...Удаление пятенУдаление штрихов...Описание:Снять выделениеУдаление пятенКанал назначения:Итоговый цветовой диапазонНазначение:Удалить штрихиУдаление штрихов...Предел отклонения:РомбРазница по Гауссу...ДифференциальныйДифракционные шаблоныОсвещенного:Расст. диффузииDigital Imaging and Communications in Medicine imageЦифрыРазмер:РазмерыРазмеры:НаправлениеВектор направленияНаправленныйНаправленный светНаправленияНаправления:ЗамещениеКарта замещения:Замещение...Показать как:Расстояние от нижнего края бумаги до изображенияРасстояние от левого края бумаги до изображенияРасстояние от левого края бумаги до правого края изображенияРасстояние от правого края бумаги до изображенияРасстояние от верхнего края бумаги до нижнего края изображенияРасстояние от верхнего края бумаги до изображенияАлгоритм смешения:Размер смешения:РазделениеПросмотрВы действительно хотите отказаться от изменений?Вы действительно хотите переписать?Выделение краяДокумент не найденНарисовать рамку из лучей вокруг изображенияРисунки имеют различный размерРисование пламени...Рисование сетки...Рисование лабиринта...Настройки рисункаНарисовать линию между контрольными точками. Только при создании кривойПадающая теньПри чтении обнаружен конец файлаДанные EXIF не будут прочитаны.Возвышение:Использовать рельефное отображениеВключить окружениеРежимРасширятьЭлементы с искривленными сторонамиЭлементы с прямыми сторонамиЗахватывать краяВыделение краяВыделение края...Темные края:КраяПравкаПравка информации об области...Правка пламениПравка информации о карте...Правка объектаПравка инф. об области...Правка названия фракталаПравка инф. о картеИсправить информацию о выбранной областиПравка объекта предназначенного только для чтения - вы не сможете сохранить результатКаналОператорБарельефГравировка...Изображение окружения:Включить сглаживаниеВключить/отключить рельефное преобразование (глубина изображения)Включить/отключить environment преобразование (отражение)Включить/отключить высококачественный предварительный просмотрВключить/выключить удаление зубчатых краев (сглаживание)Включить/отключить немедленный предварительный просмотрКодированный PostScriptКодирование:Неправильная конечная страницаГравюраГравировка...Название скопированной Град.вспышкиВведите название для новой градиентной вспышкиУкажите имя файла PPD для принтераУкажите правильную команду печати вашему принтеру. Внимание: не убирайте +`-l' или `-oraw' из командной строки, в этом случае печать может работать некорректно.Ввод названия для логического принтераВесь слойЧуств. окружения:Используемое изображение окруженияОшибка при открытии файла FITSОшибка при записи индексированного/серого изображенияОшибка при записи изображения RGBОшибка при захвате снимка экранаОшибка в файле кисти GIMP +"%s"Ошибка в файле кисти GIMP.Ошибка в получении идентификатора слояОшибка в процессе создания снимкаОшибка при открытии файлаОшибка при открытии файла %sОшибка считывания заголовка файла BMP +из "%s"Ошибка при открытии файлаОшибка при запуске ghostscript (%s)Ошибка при запуске ghostscript: %sОшибка при открытии временного файла '%s'. +Error trying to save figure as a parasite: can't attach parasite to drawable. +Ошибка при чтении '%s'. Файл поврежден?Ошибка при сохранении '%s'. Невозможно сохранить изображение.Ошибка при записи в файл вывода.Ошибка: невозможно прочитать файл свойств XJT '%s'Ошибка: файл свойств XJT '%s' пустОшибка: не удалось загрузить параметрыОшибка: это не файл параметров CMLРаспределить равномерноExp:Просмотр экспортируемого файлаИзвлечь каналыЦвет передн. планаФайл FITS не содержит изображения, которое можно отобразитьFITS не может сохранить изображение с альфа-каналомФайлПервый цвет:Интенс. вспышки:МножительНе удалось открыть файл Град.вспышки "%s": %sНе удалось сохранить файл PPM "%s": +%sНе удалось записать файл Град.вспышки "%s": %sБыстрое целоеСамый быстрый и яркий - для текста и штриховых рисунковПероФайлФайл "%s" сохранен.Файл '%s' не является файлом IFS ComposeФайл %s существует. Переписать?Файл '%s' поврежден. -Строка %d раздела параметров неправильна'%s' не является файлом Исследователя ФракталовФайл неподдерживаемого формата.Имя файла:Имя файла: %sЗаполнить (снизу вверх)Заполнить (слева на право)Заполнить (справа на лево)Заполнить (сверху вниз)Заполнить с параметром kФотопленкаФильтрМоделирование набора фильтровПоиск фона анимации...Поиск краев...Поиск XY градиента...Первый итоговый цветПервый GfigЦвет первого источникаМеню выбора карты векторов с фикс.направлениямиПламяПламя работает только с RGB изображениями.ОтблескОтражениеС плавающей точкойТекущий шаг %d...ПлавающееСосредотачивать мазки вокруг центра изображенияПередний планПараметры фракталаФрактальный следТип фракталаНазвание фрактала:Градиент исследователя ФракталовДробные пикселыКадр %dКадр %d (%d%s)Кадр %d из %dКадр (%i)ИзС цветаИз бумагиИз:Передняя часть:ПолныйФункцияВыделение свободной области выборG-Q-бистСкольжениеGFLI 1.3 - Загрузка стопки кадровGFLI 1.3 - Сохранение стопки кадровГрад.вспышкаФайл GFlare '%s' не сохранен. +Строка %d раздела параметров неправильна'%s' не является файлом Исследователя ФракталовФайл существуетФайл неподдерживаемого формата.Размер: %02.01f КбРазмер: неизвестенИмя файла:Имя файла: %sЗаливкаЗаполнить (снизу вверх)Заполнить (слева на право)Заполнить (справа на лево)Заполнить (сверху вниз)Заполнить с параметром kФотопленкаФильтрМоделирование набора фильтровПоиск фона анимации...Поиск краев...Поиск XY градиента...Первый итоговый цветПервый GfigЦвет первого источникаПервый цветФикс. зерноМеню выбора карты векторов с фикс.направлениямиПламя"Пламя" работает только с изображениями RGB.ОтблескFlexible Image Transport SystemОтражениеС плавающей точкойТекущий шаг %d...ПлавающееПередний планСосредотачивать мазки вокруг центра изображенияСоздать типичный JPEGПередний планПередний план и фонПараметры фракталаФрактальный следТип фракталаНазвание фрактала:Градиент исследователя ФракталовДробные пикселыКадр %dКадр %d (%d%s)Кадр %d из %dКадр (%i)Расположение кадра если не указано: ЧастотыЧастота (строки):ИзИз буфераС цветаИз градиентаИз бумагиИз обращенного градиентаИз:Передняя:ПолныйФункцияТип функции:Выделение свободной области выборG-Q-бистФайл G3 faxСкольжениеМасштабGFLI 1.3 - Загрузка стопки кадровGFLI 1.3 - Сохранение стопки кадровГрадиентная вспышкаФайл GFlare '%s' не сохранен. Если вы добавите новую запись в %s, например: (gflare-path "%s") и создадите папку %s, -то сможете сохранять созданные вами файлы GFlare в этой папке.Редактор Град.вспышкиПараметры GIFПредупреждение GIFGIF: Недокументированный тип композиции %d. Возможно, анимация не будет работать или не сохранится корректно.Расширение GIMPДополнение GIMPТабличная магия GIMPПохоже, файл кисти GIMP поврежден.Кисти GIMP либо в оттенках серого или RGBAСвечениеГамма:Общие параметрыОбщие настройкиВерсия Gimp-PrintГимпрессионистСтеклянные блокиСоздание стеклянных блоков...Параметры рисования свеченияСерыйЗахватитьСделать скриншот черезЗахватить одно окноЗахватить весь экранГрадиентГрадиентная вспышка...Градиентное отображение...Меню выбора градиентной картыГрадиентыГрафик текущих установокСерыйОттенки серогоЗеленыйЗелёный:СерыйСеткаЗернистость сеткиСмещение направляющейНастройки направляющихНастройки направляющих...Тип и видимость направляющихРазмер сетки:НаправляющиеНаправляющие...Гильотина...HSVПараметры HTML-страницыБлики:Блики:Тон:Тон:ШестиугольникиВысота бумаги для печатиВысота:Неизвестный ID в системе помощи - '%s'Эй, куда делся объект?Повышение значений усиливает эффектУвеличение этого числа делает блики более резкимиПовышение значений делает объект отражающим больше света (кажется светлее)Повышение значений ограничивает эффект меньшими областями изображенияБлики:Блики:ГоризонтальЦвет для горизонталейГоризонтальноПодкова"Горячие" цвета"Горячие" цвета...Как много единиц составляют дюйм.Насколько "темной" будет отбрасываемая теньКак сильно "затемнены" края у каждого мазка кистьюКак сильно размывается отбрасываемая теньТонВращение тона:Варианты тонаТон:ИдентификаторИтер.:Интерактивное искажениеИнтенсивностьИнтерактивноеЕсли отмечено, то в документ будут добавлены тэги , и другие, а не только те которые относятся к таблице.Если отмечено, GTM будет заменять любые прямоугольные секции одинаково окрашенных блоков на одну большую ячейку со значениями ROWSPAN и COLSPAN.Если отмечено, отображение начнется с правой стороны, в противном случае - с левой.Если неотмечено, то изображение будет отображено в прямоугольник. Если +то сможете сохранять созданные вами файлы GFlare в этой папке.Редактор Град.вспышкиПараметры GIFПредупреждение GIFФормат GIFGIF: Недокументированный тип композиции %d. Возможно, анимация не будет работать или не сохранится корректно.Расширение GIMPПросмотр справки GIMPДополнение GIMPМагические таблицы GIMPДополнение GIMP Windows IconКисть GIMPАнимированная кисть GIMPПохоже, файл кисти GIMP поврежден.Кисти GIMP - или в оттенках серого, или RGBAСжатое изображение GIMP XJTШаблон GIMPСвечениеПорог зеленого:Гамма:Гауссово размываниеГауссово размывание...СкольжениеМасштабОбщий видОбщие параметрыОбщие настройкиОбщие параметрыПолучить цветаGfigВерсия Gimp-PrintГимпрессионистСтеклянные блокиСоздание стеклянных блоков...Параметры свеченияСерыйЗахватитьСделать скриншот черезЗахватить одно окноЗахватить весь экранГрадиентГрадиентная вспышка...Градиент...ГрадиентВыбор карты сдвигаРазмер сдвига:ГрадиентыГрафик текущих установокСглаживание графикиСерыйРежим серогоСерыйПорог серого:Оттенки серогоЗеленыйЧастота зеленого:Фазовый сдвиг зеленого:Зелёный:СерыйСеткаЗернистость сеткиСмещение сеткиНастройки направляющихНастройка сетки...Тип и видимость направляющихЦвет сетки:Настройка сетки...Размер сетки:Тип сетки:НаправляющиеНаправляющие - это прямоугольникиб разделяющие изображение. +Укажите ширину, высоту и отступы между ними. +Это позволит вам быстро создать большинство карт изображения +обычного типа - коллекции "миниатюр", подходящих для навигации.Направляющие...Гильотина...HSVПараметры страницы HTMLТаблица HTMLБлики:БликиТонуТон:ШестиугольникиВысота (пикс.):Высота бумаги для печатиВысота:Неизвестный ID в системе помощи - '%s'Эй, куда делся объект?Высококачественный просмотрПовышение значений усиливает эффектУвеличение этого числа делает блики более резкимиПовышение значений делает объект отражающим больше света (кажется светлее)Повышение значений ограничивает эффект меньшими областями изображенияБлики:Блики:Сохранять минимальные каналыШирина отверстий:Горизонт. основание:Высота отверстий:Сохранить глубинуМежду отверстиями:ГоризонтальЦвет для горизонталейГоризонтальноПодковаЯркие цвета"Горячая точка" X:"Горячая точка" X:Яркий...Сколько единиц составляют дюйм.Насколько "темной" будет отбрасываемая теньКак сильно "затемнены" края у каждого мазка кистьюКак сильно размывается отбрасываемая теньТонВращение тона:Варианты тонаЧастота тона:Фазовый сдвиг тона:Тон:Не важноИдентификаторIFS FractalПараметры визуализацииIFS Fractal: черныйIFS Fractal: синийIFS Fractal: зеленыйIFS Fractal: красныйIFS Fractal: TargetИтер.:Интерактивное искажениеИнтенсивностьИнтерактивноИнвертировать рельефИнверт. изображениеТолько этот светИконка #%iДетали иконкиПри включении этой опции в документ будут добавлены тэги , и другие, а не только те которые относятся к таблице.При включении этой опции GTM будет заменять любые прямоугольные секции одинаково окрашенных блоков на одну большую ячейку со значениями ROWSPAN и COLSPAN.Если отмечено, отображение начнется с правой стороны, в противном случае - с левой.Если не отмечено, то изображение будет отображено в прямоугольник. Если отмечено - то в круг.Если не отмечено, то нижняя часть будет помещена в центр, а -верхняя - на внешнюю сторону. Если отмечено - то наоборот.Если вы выберите этот параметр, более яркие цвета поменяются с менее яркими и наоборотЕсли вы выберете этоу опцию, просмотр будет обновляться автоматическиИллюзияИллюзия...ИзображениеИзображение/Настройки выводаСборка изображенияВыбор изображенияРазмер изображенияРазмеры изображения: %d x %dИзображение не является серым (bpp=%d)Название изображения:Размер изображения изменен.Изображения для оснований цилиндраИзображения имеют различный размерИмпортировать элементы контура из SVG, так чтобы они могли быть использованы инструментом "Контур"ИнвертироватьДюймВключая обрамлениеВставить точкуЦелоеИнтенсивностьУровни интенсивностиИнтенсивность исходного цвета при освещении источником светаЧерезстрочностьВнутренняя процедура GIMPПересечениеЦвет пересеченийОшибочная строка UTF-8 в файле PSDОшибочная строка UTF-8 в файле кисти %sОшибочная строка UTF-8 в файле шаблона %sИнверсияИнвертировать текстуру бумагиИзометрияРекомендуется добавить строку +верхняя - на внешнюю сторону. Если отмечено - то наоборот.Если вы выберите этот параметр, более яркие цвета поменяются с менее яркими и наоборотЕсли вы выберете эту опцию, просмотр будет обновляться автоматическиИллюзияИллюзия...ИзображениеИзображениеИзображение/Настройки выводаСборка изображенияВыбор изображенияРазмерТипы изображенийТип изображения:Высота кадров:Размеры изображения: %d x %dИзображение не является серым (bpp=%d)Название изображения:Размер изображения изменен.Интервал между кадрами:Тип изображения:Imagemap plug-in 2.2Изображения для оснований цилиндраИзображения имеют различный размерИмпорт _КонтуровИмпортировать элементы контура из SVG, чтобы они могли быть использованы инструментом "Контур"Интеграц. шаги:ИнвертироватьДюймВключая обрамлениеИндексированноеТип инедксированной палитрыНачальное значение:Тип чернил:Уровень на входе:Вставить точкуДата включенияЦелоеИнтенсивностьИнтенсивность цветаИнтенсивность исходного цвета при освещении источником светаЧерезстрочностьВнутренняя процедура GIMPПересечениеЦвет пересеченийОшибочная строка UTF-8 в файле PSDОшибочная строка UTF-8 в файле кисти %sОшибочная строка UTF-8 в файле шаблона %sИнверсияИнвертировать текстуру бумагиИзометрияРекомендуется добавить строку (gimpressionist-path "%s") -(или аналогичную) в файл gimprc.Кол-во применений фильтра:JNGПросмотр JPEGПазлСтиль головоломкиЖюлиаСохранять значения изображенияСохранить исходноеСохранить первое значениеLABLZ77ПереднийЛевая границаДлина:ЛинейныйЛямбдаАльбомЛаплас...Большой 3x3Слой %s не имеет альфа-канала, пропущен.Левая сторона:Эффект линзыМеньше насыщ.:Направление от центра определяет направление мазкаРазмер мазка будет определяться направлением от центраЯркость области определяет направление мазкаРазмер мазка будет определяться яркостью областиСветНастройки светаНаправление источника света по X в XYZ пространствеX-координата источника света в XYZ пространствеНаправление источника света по Y в XYZ пространствеY-координата источника света в XYZ пространствеНаправление источника света по Z в XYZ пространствеZ-координата источника света в XYZ пространствеСветлееСветлее:Световые эффектыОсвещение...ЛинияЛинейныйТип ссылкиПросмотр спискаЯщерицаДлинный шахматныйНижняя границаЗагрузить установки микшера каналовЗагрузить точки кривой из файлаЗагрузка файла в формате FITSЗагрузить пламяЗагрузить параметры фракталаЗагрузка набора объектов GfigЗагрузка карты изображенияЗагрузка палитры KISSЗагрузить параметры изЗагрузка PostScriptЗагрузить фрактал из файлаЗагрузить кривые из файлаСнимок экранаЛогарифмическийЦиклLuma_y470:Luma_y470f:Luma_y709:Luma_y709f:Порог яркости:Параметры MNGПурпурныйПурпурныйПурпурный:Пурпурный_KОсновные параметрыСделать результирующее изображение прозрачным с нулевой высотой рельефаСделать изображение прозрачным вне объектаMan'o'warМандельбротПараметры МандельбротаРучноеНаправление мазков указывается вручнуюЗадать размер мазка вручнуюОтобразить цветовой диапазонОтобразить на плоскости параллелепипедаФормат файла картыКарту в куб...Карту в цилиндрОтобразить в объектКарту в плоскостьКарту в сферуОтобразить в:Отображение цветов...МраморФайл маскиМатрицаМакс. (x+d, -)Макс. (x+d, -), (0.5 < x)Макс. (x+d, -), (x < 0.5)Макс. (x, -)Макс. (x-d, -)Макс. (x-d, -), (0.5 < x)Макс. (x-d, -), (x < 0.5)Макс. RGBМакс. RGB...Макс. память:Максимальная высота для рельефаМакс. размер:МраморСлияние...Полутона:Мин. (x+d, -)Мин. (x+d, -), (0.5 < x)Мин. (x+d, -), (x < 0.5)Мин. (x, -)Мин. (x-d, -)Мин. (x-d, -), (0.5 < x)Мин. (x-d, -), (x < 0.5)Мин. размер:Зеракально отразить активную кривую на другой крайРежимРежим 1Режим 2Изменить кривыеБольше насыщ.:МозаикаРазмывание движениемРазмывание движением...ПереместитьСдвинуть внизСдвинуть поясПереместить выделенные объектыПереместить впередСдвинуть вверхПереместить одну точкуПереместить объектДвижениеУмножение (57):Умножать градиент (0,1)Умножать на случайное число (0,1)Умножать на случайное число (0,2)Мой первый фракталНелинейный фильтрНелинейный фильтр...НазваниеНовый фракталНовая градиентная вспышкаНовая единицаГазетаГазетная бумага...В gimprc отсутствует %s: +(или аналогичную) в файл gimprc.Кол-во применений:JNGJNG + delta PNGКачество сжатия JPEG:Формат JPEGПросмотр JPEGКачество изображения JPEGПоказатель сглаживания JPEG:ПазлСтиль пазлаЖюлиаKISS CELСохранить четные поляСохранять значения изображенияСохранить нечетные поляСохранить исходноеСохранить первое значениеLABLZ77ПереднийЛевая границаДлина:ЛинейныйЛямбдаАльбомЛапласЛаплас...Большой 3x3Слой %s не имеет альфа-канала, пропущен.Тип фона слоя. "Копия" будет вызывать копирование предыдущего слоя перед выполнением рисованияСлеваЛевый крайЛевая:Эффект линзыМеньше насыщ.:Направление от центра определяет направление мазкаРазмер мазка будет определяться направлением от центраЯркость области определяет направление мазкаРазмер мазка будет определяться яркостью областиУровеньСветСвет 1Свет 2Свет 3Свет 4Свет 5Свет 6Настройки светаНаправление света:Интенсивность освещенияНаправление источника света по X в XYZ пространствеКоордината X источника света в XYZ пространствеНаправление источника света по Y в XYZ пространствеКоордината Y источника света в XYZ пространствеНаправление источника света по Z в XYZ пространствеКоордината Z источника света в XYZ пространствеСветлееСветлее:ОсвещениеОсвещение...Настройки фильтра:Цвет источника света:Тип освещения:ЛинияРисунок в линияхЛинейнаяТип ссылкиПросмотр спискаЯщерицаДлинный шахматныйНижняя границаЗагрузить установки микшера каналовЗагрузить точки кривой из файлаЗагрузка файла в формате FITSЗагрузить пламяЗагрузить параметры фракталаЗагрузка набора объектов GfigЗагрузка карты изображенияЗагрузка палитры KISSЗагрузить параметры фильтраЗагрузить параметры изЗагрузка PostScriptЗагрузка файла QBEЗагрузить фрактал из файлаЗагрузить кривые из файлаЗагрузка снимка экрана...Зафиксировать порогиЛогарифмическаяЦиклСнизу слеваСнизу справаОпустить выделенный объектОпустить до самого низа выделенный объектНижний порог:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Порог яркости:Частота яркости:Фазовый сдвиг яркости:Параметры MNGАнимация MNGМакс. значение:Макс. глубина:Макс. высота:ПурпурныйПурпурныйПурпурный:Пурпурный_KКарта значений:Основные параметрыСделать итоговое изображение прозрачным с нулевой высотой рельефаСделать изображение прозрачным вне объектаMan'o'warМандельбротПараметры МандельбротаРучноеНаправление мазков указывается вручнуюЗадать размер мазка вручнуюОтобразить цветовой диапазонИзображения для сторонОтобразить в объект...Формат файла картыОтобразить сверхуОтображение в кубОтображение в цилиндрОтобразить в объектОтображение в плоскостьОтображение в сферуОтобразить в:Отображение цветов...МраморФайл маскиСвойства текстурыМатрицаМакс. (x+d, -)Макс. (x+d, -), (0.5 < x)Макс. (x+d, -), (x < 0.5)Макс. (x, -)Макс. (x-d, -)Макс. (x-d, -), (0.5 < x)Макс. (x-d, -), (x < 0.5)Макс. RGBМакс. RGB...Макс. отмен:Макс. память:Степень рельефности изображенияМакс. размер:ЛабиринтРазмер листа:Источник:Тип носителя:СреднееМенюПуть менюПуть/Название менюОбьединить импортированные контурыСлияние...Файл Microsoft WMFИконка Microsoft WindowsНажмите среднюю кнопку внутри для +выбора цвета для заменыПолутона:Мин. (x+d, -)Мин. (x+d, -), (0.5 < x)Мин. (x+d, -), (x < 0.5)Мин. (x, -)Мин. (x-d, -)Мин. (x-d, -), (0.5 < x)Мин. (x-d, -), (x < 0.5)Мин. размер:Зеракально отразить активную кривую на другой крайПорядок:Изменить зеленый каналИзменить канал насыщенностиЧастота модификации:Изменить синий каналИзменить канал яркостиРежимРежим 1Режим 2Изменить кривыеМенее прозрачныйДополнительно к "дополнительно"Больше насыщ.:Более светлоеБолее темноеБолее прозрачныйМозаикаРазмывание движениемРазмывание движением...ПереместитьСдвинуть внизСдвинуть поясПереместить выделенные объектыПереместить впередСдвинуть вверхПереместить одну точкуПереместить объектПеремещениеУмножение (57):Умножать градиент (0,1)Умножать на случайное число (0,1)Умножать на случайное число (0,2)Расст. изменений:Коэфф. изменений:Мой первый фракталНелинейный фильтрНелинейный фильтр...НазваниеВыделение края - неонНеон...Новый фракталНовая град. вспышкаНовая единицаНовый принтер...Новое зерноГазетная бумага...Газетная бумагаГазетная бумага...В gimprc отсутствует %s: Добавьте запись (%s "%s") -в файл %s.Нет цветов Данные не захваченыСовпадений нетНет выделения для преобразованияНет значимого расширения, попытка загрузки с помощью команды fileНет подходящего расширения, сохраненяется как сжатый XCF.К-во секторов в высоту:ШумНеквадратные пикселы. Изображение, вероятно, искажено.НикакойНормальноеНормальное:Нормализация...Нечего кадрировать.Число цветовЧисло строк MRU (1 - 16):Количество частей пазлаЧисло кадров:Число уровней отката (1 - 99):Число цветов:Число частей по горизонталиЧисло частей по вертикалиЧисло применений фильтраЧисло цветов: %dНумерацияСмещение:Непрозрачность:ПараметрыОриентацияДругиеLPI на выходе:ПерекрываниеПерекрывание:Детали объектаX-координата объекта в XYZ пространствеY-координата объекта в XYZ пространствеZ-координата объекта в XYZ пространствеСмещение (1):Сместить все векторы на заданный уголСмещение:Рисование маслом...Масляная краскаНа краях:Фотопленка:Только один цветНепрозрачность:ПараметрыНепрозрачность:ОткрытьОткрыть файлНе удалось открытьОткрывается "%s"...Открыть редактор карт ориентацииОткрыть редактор карты размеровОптимизироватьОпределить тип изображенияОптимизация фильма...ПараметрыОриентацияНачало внизу слеваОриентацияРедактор карт ориентацииОриентация:ИсходнаяИсходное:ДругоеВыводУровень на выходе:Тип выводаПерекрываниеPNGИзображение с альфа-каналом нельзя сохранить как PNM.PNM: Ошибка при открытии файла.PNM: неправильное разрешение по X.PNM: неправильное разрешение по Y.PNM: неисправный файл.PNM: неправильное максимальное значение.PNM: Преждевременный конец файла.Файл PPD:PPIPS ромбPS квадрат (Евклидова точка)БумагаПросмотрСтраница %dЗагибание страницы...Сбой диалога настройки страницы: %dЭффект загнутой страницыСтраницы:Режим рисования:Рисовать краяРисование...Разрез бумагиРазрез бумаги...Параметр "k":ПараметрыОшибка при открытии файла "%s": -%sВставитьВставленоеВставка...ПроцентПроцент фильтруемых пикселовФонгФотографияКусочки:Высота точки:Ширина точки:ПикселезоватьПикселизация...Точки растраРазмещениеРазмещать мазки случайно вокруг изображенияРазмещениеПлоскостьПлазмаПлазма...Пуск/СтопПожалуйста, проверье вашу установку.МножественноеПоляризация:ТочечныйПолярностьПоляризоватьПоляризация...МногоугольникПортретПозицияРасположение рисунка на странице. +в файл %s.Нет цветов Без сжатияДанные не захваченыНетНет освещенияСовпадений нетНет выделения для преобразованияНет значимого расширения, попытка загрузки с помощью команды fileНет подходящего расширения, сохраненяется как сжатый XCF.Секторов в высоту:ШумНеровные пикселы. Изображение, вероятно, искажено.НетНормальноеНормальное:Нормализация...Нечего кадрировать.Число цветовЧисло строк MRU (1 - 16):Число сегментов:Количество частей пазлаЧисло кадров:Число уровней отката (1 - 99):Число ячеек:Число цветов:Количество цикловЧисло частей по горизонталиЧисло частей по вертикалиЧисло применений фильтраЧисло цветов: %dНумерацияСмещение:Только цвет переднего планаНепрозрачность:ПараметрыОриентацияДругиеLPI на выходе:Канал вывода:Перекрывание:ПерекрываниеПерекрывание:Детали объектаКоордината X объекта в XYZ пространствеКоордината Y объекта в XYZ пространствеКоордината Z объекта в XYZ пространствеВосьмиугольники/квадратыСмещение:Смещение (1):Угол смещения:Сместить все векторы на заданный уголСмещение:Рисование маслом...Масляная краскаМасляная краскаНа краях:Фотопленка:На краях:Один кадр на слой (замена)Только фонТолько один цветНепрозрачность:Оптимальный расчетПараметрыНепрозрачность:ОткрытьОткрыть файлОткрыть файл IFSНе удалось открытьОткрыть последниеОткрывается "%s"...Открывается предпросмотр для '%s'...Открыть редактор карт ориентацииОткрыть редактор карты размеровОптимизироватьОпримизация (_GIF)Определить тип изображенияОптимизация...ПараметрыОриентацияНачало внизу слеваРасположениеРедактор карт ориентацииОриентация:ИсходнаяИсходная глубинаИсходное:ДругоеДругие параметрыВыводУровень на выходе:Тип вывода:Тип выводаПерекрываниеp(степень):Документ PDFФормат PGMPNGPNG + delta PNGСтепень сжатия PNG:Формат PNGФормат PNMФормат PNMИзображение с альфа-каналом нельзя сохранить как PNM.PNM: Ошибка при открытии файла.PNM: неправильное разрешение по X.PNM: неправильное разрешение по Y.PNM: неисправный файл.PNM: неправильное максимальное значение.PNM: Преждевременный конец файла.Файл PPD:PPIФормат PPMPS ромбPS квадратБумагаПолярные коорд...ПросмотрСтраница %dЗагибание страницы...Настройка страницыСбой диалога настройки страницы: %dЭффект загнутой страницыЗагрузка страниц (т.е.: 1-4 или 1,3,5-7)Страницы:Режим рисования:Формат Paint Shop ProРисовать краяРисование...Файл палитры:ПалитраРазрез бумагиРазрез бумаги...Параметр "k":ПараметрыПараметры были сохранены в +"%s"Ошибка при открытии файла "%s": +%sВставитьВставить из буфераВставленноеВставка...ШаблонПроцентахПроцент черного:Процент белого:Процент фильтруемых пикселовУгол фазового сдвига, от 0 до 360PhongФотокопияФотографияИзображение формата PhotoshopКусочки:Пинг-понгВысота точки:Ширина точки:Масштабирование значений точекПикселизацияПикселизация...Точки растраРазмещениеРазмещать мазки случайно вокруг изображенияРазмещениеPlanar (RRR,GGG,BBB)Плоский RGBПлоскостьПлазмаПлазма...Пуск/СтопВоспроизведение:Пожалуйста, проверье вашу установку.Вывести график настроекСписок дополненийМн.ч.Поляризация:ТочечныйИсточник светаПолярностьПоляризоватьПоляризация...МногоугольникПортретПозицияПозиц.X:Позиц.Y:Позиц.Z:Расположение рисунка на странице. Нажмите левой кнопкой и потяните чтобы установить расположение рисунка. Нажмите правой кнопкой и потяните чтобы окончательно установить расположение рисунка с большей точностью - каждое движение будет перемещать изображение на одну @@ -334,36 +498,41 @@ Если при перемещении удерживать Shift, то изображение будет перемещаться только по горизонтали или только по вертикали. Если в процессе перемещения вы нажмете другую кнопку мыши, то изображение вернется -на исходную позицию.Изображение с альфа-каналами невозможно сохранить как PostScriptПросмотрНастройкиСохранить исходное изображение как фонПросмотрРазмер просмотраПросмотр при перетаскиванииПодбор цвета печатиНапечатать и -сохранить настройкиПечатает в черно-белой гамме (нет цветов, нет оттенков серого)Пчатате в оттенках серого используя черные чернилаСбой диалога печати: %dМодель принтера:Настройки принтераПринтер не поддерживает битовые картыПечать...Градиент вероятности:ПрогрессивнаяРаспространение канала яркостиРаспространение альфа-каналаQ-бист...Качество:RGBRGBAРисунок RGBA/GRAYA не выбран.RLEРадиус:Случайность (%):РекурсивноеКрасныйПовтор:ОбратитьРадиальноеРадиальный градиент:РадианыРадианы/ПиРадиусРадиус:СлучайностьСлучайный бросок 1.7Случайный выбор 1.7Случайное зерно:Таянье 1.7Случайное (shared)Случайный, независимый от каналаСлучайноеСлучайное из зернаСлучайное из зерна (shared)Количество кадров:НеобработанныйПараметры рисования лучейКрасныйСчитать выбранные настройки в памятьПросмотр в реальном времениПересчитать изображение просмотраПрямоугольникКрасныйКрасный:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:ВозвратПовторить последнее изменение масштабаПерерисоватьПерерисовать просмотрУменьшить яркостьУменьшить насыщенностьРефлексияОбновить окно просмотраЧисло сторон правильного многоугольникаОтносительная ссылкаРельеф:Окрашивание по образцу...УдалитьУдаление фона анимации...Удаление цвета...Создание отблеска...Создать Scalable Vector GraphicsСозданный SVGСозданный WMFВизуализацияОтображение порыва ветра...Отображение фрактала...Визуализация IFS (%d%d)...Визуализация SVG...Визуализация сферы...Визуализация Сверхновой...Визуализация элементов...Отображение ветра...ЗаместитьПеречитать каталог настроекПеречитать градиентыПеречитать фракталыСбросить параметры в исходные значенияСбросить активную кривуюИзменить размер сектора?РазрешениеРазрешение и качество печатиРазрешение:Направляющие проходят от %d,%d до %d,%d (%d секторов)Направляющие проходят от: 0,0 до 0,0 (0 секторов)Восстановить исходное изображениеПеремоткаПравая граница:Правая сторона:Создать рябьСоздание ряби...Вращение:Строка:Вращение:Вращение по X:Вращение по Y:Вращение по Z:ПовернутаяВращение цветовой карты...Вращение...ВращениеУгол поворота вокруг оси XУгол поворота вокруг оси YУгол поворота вокруг оси ZВращение:ШероховатостьКругRLE-кодированиеНевозможно сохранить как SUNRAS изображение с альфа-каналомВ файле SVG -не указан размер!Второй цвет:Выбрать окно черезВыбрать:Тип вспышкиСокращениеСинусЭкспонента силы:Сила:ПолосатыйТема:ПерестановкаВихрь CCWОставить прежниеАнализ образца...Окраска по образцуОбразец:Образец цвета из пиксела в центре кистиНасыщенностьНасыщенностьНасыщенностьИзменения насыщенностиНасыщенность:СохранитьСохранить -настройкиСохранить кистьСохранить установки микшера каналовСохранить текущиеСохранить точки кривой в файлеСохранить данные EXIFСохранить файлСохранить пламяСохранить параметры фракталаСохранить рисунок GfigСохранить карту изображенияСохранить параметры вСохранить значения цвета прозрачных точекСохранить текущий фрактал в файлеСохранить как BMPСохранить как кистьСохранить как последовательность кистейСохранить как исходный текст CСохранить как GIFСохранить как JPEGСохранить как MNGСохранить как PNGСохранить как PNMСохранить как PSPСохранить как шаблонСохранить как PostScriptСохранить как SGIСохранить как SUNRASСохранить как TGAСохранить как TIFFСохранить как текстСохранить как XBMСохранить как XJTСохранить как XPMСохранить текущие...Сохранить текущие настройки в указанном файлеСохранить кривые в файлеСохраненноеСохранение "%s"...ПилообразнаяРассеяние:Масштабировать оттенок по:Масштабировать яркость по:Масштаб X:Масштаб Y:Масштаб Z:Масштаб Z:Масштабировать в точках на дюймМасштабировать в процентах от полного размера страницыМасштаб:Масштабирование:Рассеивание HSVРассеивание HSV...ЭкранСнимок экранаВыделенную частьПоиск по аннотацииПоиск по названиюПоиск - пожалуйста подождитеПоиск по аннотации - пожалуйста подождитеПоиск по названию - пожалуйста подождитеПейзажВторой итоговый цветПараметры рисования второй вспышкиЦвет второго источникаЗадержка в секундахСлучайное зерно (только для режима "из зерна")Зерно:Выделение в контекстеВыборВыделить всеВыбор цветаВыбрать цвет пленкиВыбрать HTML-файлВыбрать файл изображенияВыбрать след.Выбрать цвет цифрВыбрать точки растра поВыбрать пред.Выделить областьВыделить всеВыделить всеВыделить сплошную областьВыделить существующую областьВыбрать каталог и перечитать содержимоеВыбрать следующий sm-векторВыбрать следующий векторВыбрать предыдущий sm-векторВыбрать предыдущий векторУстановить единицы измерения для печатиВыберите тип выводаВыберите имя принтера (не тип, не модель)Укажите расположение: портретное, ладшафтное, верхом вниз или пейзажВыберите масштабирование в процентах относительно размера страницы или плотность точек на один дюймВыбор модели принтераВыбор:Выделенное:ВыделениеДополнительные настройки Выделение->КонтурНеправильный размер выделения. -Лабиринт будет неровный.Выделение в контур...Выборочное Гауссово размываниеВыборочное Гауссово размываниеВыборочная загрузка настроекВыборочная загрузка изВыбирать случайное направление для каждого мазкаВыбирать случайный размер для каждого мазкаВыберите если итоговое изображение должно казаться бесшовнымНаносить ли рисунок на все изображение вплоть до его границПолусведение...Переместить назадРазделить на:Сентябрь 31, 1999Установка цвета источникаОпределить сантиметр как основную единицу измерения для печатиОпределить дюйм как основную единицу измерения для печатиУстановите яркость печати. -0 - полностью черный, 2 - полностью белыйУстановить контрастность печатиУстановить высоту печатиИспользовать исходный размер изображенияУкажите масштаб (размер) изображенияУстановить ширину печатиСбой SetStretchBltMode (только предупреждение)НастройкиНастройки для этого файла картыНастройка принтераТениРазмывание тени:Глубина тени:Глубина тени:Тени:Форма второй вспышкиПовышение резкостиПовышение резкости...Наклон:СдвигВыполняется сдвиг...Нужно ли инвертировать эффект?Нужно ли сохранять яркость?ПоказатьПоказать кадр линииПоказать все объектыПоказывать подсказку с URL областиПоказывать обработчик областиПоказать сеткуПоказать следующий объектПоказать предыдущий объектПоказать скрыть каркас просмотраЕдинственное:СерпинскийПростоеСинусоидальныйСинусЕдинственноеCинусСинус: Визуализация...СинусоидальныйРазмерРазмер (%):Градиент масштабного множителяРедактор карты размеровРазмер бумаги для печатиРазмер:Размеры:Самый медленный, но самый аккуратный, наилучший выбор для фотографий.ПятноСглаживание изображенияСглаживаниеГладкая палитраСглаживание Х градиента...Сглаживание Y градиента...Сглаживание:Гладкость выравниванияSm-векторВыровнять по сеткеВыделение края по Sobel...Выделение края по SobelГоризонтальное размывание по SobelВертикальное размывание по SobelРовный фонСплошной шумДобавление сплошного шума...Сплошной окрашенный фонНекоторые данные изменились!Можно сохранить только индексированное или серое изображение.Извините, каналы и маски не могут быть повернуты.Название лотка из которого будет происходить печатьИсточник 1:Источник 2:Исходный цветовой диапазонИсточник...Интервал: ИскраИскрение...Пространственное преобразованиеУказанное окно не найденоУказать степень рельефности применяемой к изображению (в процентах)Указывает пропорции для кистиУказать масштаб текстуры (в процентах от оригинального файла)Отражение:СфераСоздание сферыСферическийСпиральТолщина пятен:СпиральЧисло оборотов спиралиРадиус пятна:ПятнаРассеиваниеСтепень рассеиванияРассеивание...Экспонента силы:СтандартЧисло лучей звездыНачальный угол:Неправильная начальная страницаШагОстанавливаться когда различие между пикселами меньше, чем это значениеРастянутьСбой StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY), ошибка = %d, y = %dПлотность мазков:CильноеСтильПодразделять:Субвыборка:Подшаги:СверхноваяЦвет СверхновойВихрь CWПереставить две кривыеВихрьПротив часовойПо часовойСимволКаналы TIFFРассеченноеТурбулентность:ТурбулентноеПараметры создания таблицыПараметры таблицыЦельТелнетВременноеВременная процедураТекстураСвойства текстурыТекстура:ТекстурыФормат GIF поддерживает комментарии только в -7-битном ASCII. Комментарий не сохранён.Файлы помощи GIMP не установлены.ГимпрессионистВ файле формата PNG указано смещение, которое располагает слой за пределами изображения.Формат TIFF поддерживает только 7-битные -комментарии ASCII. Комментарий не сохранён.Размер заполнения ячеек.Размер интервала ячеек.Размер блика на краях каждого кусочкаУгол первой создаваемой кистиВыбирать размер кисти наиболее совпадающий с исходным изображениемЧерный и белыйКомментарий по умолчанию ограничен длиной в %d символов.Глубина падающей тени, определяет как далеко от объекта она должна бытьВыбирается наиболее совпадающее с оригинальным изображением направлениеРасстояние от центра изображения определяет направление мазкаРазмер мазка будет определяться расстоянием от центра изображенияПервая строка изображенияВысота для каждой ячейки таблицы. Может быть числом или процентом.Оттенок области определяет направление мазкаРазмер мазка будет определяться оттенком областиИзображение, которое вы пытаетесь сохранить как GIF -содержит слои выходящие за действительные границы -изображения. Боюсь, что это недопустимо в GIF. - +на исходную позицию.Документ PostScriptИзображение с альфа-каналами невозможно сохранить как PostScriptПросмотрНастройкиСохранять яркостьСохранить исходное изображение как фонПросмотрРазмер просмотраРазмер просмотра:Просмотр при перетаскиванииПо _ПревиттуАлгоритм Prim'аПодбор цвета печатиНапечатать и +сохранить настройкиПечатает в черно-белой гамме (нет цветов, нет оттенков серого)Пчатате в оттенках серого используя черные чернилаПечатать в файлСбой диалога печати: %dМодель принтера:Настройки принтераПринтер не поддерживает битовые картыМодель принтера:Название принтера:Печать...Градиент вероятности:Список процедурСписок процедурПрогрессивнаяПараметрыРаспространение канала яркостиРаспространение альфа-каналаQ-бист...Качество:R, G, B (обычный)RGBТип сохранения RGBRGBAРисунок RGBA/GRAYA не выбран.RLEСжатие RLEРадиус 2:Радиус:Случайный тон:Случайное зерно:Случайность (%):РекурсивноеКрасныйПорог красного:Повтор:ОбратитьРадиальноеРадиальный градиент:РадианыРадианы/ПиРадиусРадиус:Поднять выделенный объектПоднять на передний план выделенный объектСлучайная насыщ.:СлучайноСлучайный бросок 1.7Случайный выбор 1.7Случайное зерно:Таянье 1.7Случайное зерно:Случайное зерноСлучайное (shared)Случайный, независимый от каналаСлучайноеСлучайное из зернаСлучайное из зерна (shared)Верхний диапазон:Нижний диапазон:Кадры:НеобработанныйRaw Image DataЗагрузчик RAWСохранить RAWПараметры лучейЦентрироватьКрасныйСчитать выбранные настройки в памятьИнтерактивноПересчитать центрОбновить изображение просмотраПрямоугольникКрасныйЧастота красного:Фазовый сдвиг красного:Красный:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:ВозвратПовторить последнее изменение масштабаОбновитьОбновить просмотрУменьшить яркостьУменьшить насыщенностьСтепень отраженияОбновить окно просмотраЧисло сторон правильного многоугольникаОтносительная ссылкаОтносительная вероятность:Выпущено под лицензией GNU GPLРельеф:Окрашивание по образцу...УдалитьУдаление фона анимации...Удаление цвета...Создание отблеска...Создать Scalable Vector GraphicsОтображение Windows MetafileПараметры визуал-ииСозданный SVGСозданный WMFВизуализацияПорыва ветра...Отображение фрактала...Визуализация IFS (%d%d)...Визуализация SVG...Визуализация сферы...Визуализация Сверхновой...Визуализация элементов...Отображение ветра...ЗаменитьПеречитать каталог настроекПеречитать градиентыПеречитать фракталыСбросить параметры в исходные значенияСбросить активную кривуюИзменить размер сектора?РазрешениеРазрешение и качество печатиРазрешение:Направляющие проходят от %d,%d до %d,%d (%d секторов)Направляющие проходят от: 0,0 до 0,0 (0 секторов)Retinex (4/4): обновлен...Улушение алгоритмом RetinexRetinex...Reintex: фильтр...Возвращаемые значенияВосстановить исходное изображениеПеремоткаСправаПравая граница:Правый крайПравая:РябьСоздание ряби...Вращение:Строка:По _РобертсуВращение:ПовернутьВращение/МасштабВращ. X:Вращ. Y:Вращ. Z:ПовернутаяВращение цветовой карты...Вращение...ВращениеУгол поворота вокруг оси XУгол поворота вокруг оси YУгол поворота вокруг оси ZУгол поворота:Вращение:ШероховатостьКругRLE-кодированиеSUN RasterfileИзображение с альфа-каналом невозможно сохранить как SUNRASВ файле SVG +не указан размер!Рассеивание HSV...Второй цвет:Выбрать окно черезВыбранный:Тип вспышкиПоказать курсорСокращениеСинусЭкспон. силы:Сила:ПолосатыйТема:ПоменятьВихрь CCWСохранить альфа-канал (RGBA/RGB)ПрежниеАнализ образца...Окраска по образцуПлотность образца:Образец:Образец цвета из точки в центре кистиНасыщенностьНасыщенностиНасыщенностьИзменение насыщенностиЧастота насыщенности:Фазовый сдвиг насыщенн.:Насыщенность:СохранитьСохранить +настройкиСохранение файла QBEСохранить кистьСохранить установки микшера каналовСохранить текущиеСохранить точки кривой в файлеСохранить EXIFСохранить файлСохранить пламяСохранить параметры фракталаСохранить рисунок GfigСохранить карту изображенияСохранить параметры фильтраСохранить параметры вСохранить цвет фонаСохранить значения цвета прозрачных точекСохранить гаммуСохранить разрешениеСохранить текущий фрактал в файлеСохранить как BMPСохранить как кистьСохранить анимированную кистьСохранить как исходный код CСохранить как GIFСохранить как файл IFSСохранить как JPEGСохранить как MNGСохранить как PNGСохранить как PNMСохранить как PSPСохранить как шаблонСохранить как PostScriptСохранить как SGIСохранить как SUNRASСохранить как TGAСохранить как TIFFСохранить как текстСохранить как XBMСохранить как XJTСохранить как XPMСохранить цвет фонаСохранить значения цвета прозрачных точекСохранить комментарийСохранить время созданияСохранить время созданияСохранить текущие...Не удалось сохранитьСохранить гаммуСохранить смещение слояСохранить разрешениеСохранить текущие настройки в указанном файлеСохранить кривые в файлеСохранить предпросмотрСохраненноеСохранение "%s"...ПилообразнаяГлубина 1:Рассеяние:Глубина 2:Векторный формат SVGМасштабировать оттенок по:Масштабировать яркость по:Масштаб X:Масш. Y:Масш. Z:Масштаб в:Масштабировать в точках на дюймМасштабировать в процентах от полного размера страницыМасштаб:Масштабирование:Рассеивание HSVРассеивание RGBРассеивание HSV...ЭкранСнимок экранаВыделенную частьПоиск по аннотацииПоиск по названиюПоиск - пожалуйста подождитеПоиск по аннотации - пожалуйста подождитеПоиск по названию - пожалуйста подождитеПейзажВторой итоговый цветПараметры второй вспышкиЦвет второго источникаВторой цветЗадержка в секундахЗадержка в секундахСлучайное зерно (только для режима "из зерна")Зерно:Выделение в контекстеВыборВыделить всеВыбор цветаВыбрать цвет пленкиВыбрать файл HTMLВыбрать файл изображенияВыбрать след.Выбрать цвет цифрВыбрать файл плаитрыВыбрать точки поВыбрать пред.Выделить областьВыделить всеВыделить всеВыделить всеВыделить объектВыделить сплошную областьВыделить сплошную областьВыделить существующую областьВыбрать каталог и перечитать содержимоеЦвет источника освещенияВыбрать следующий sm-векторВыбрать следующий векторВыбрать предыдущий sm-векторВыбрать предыдущий векторУстановить единицы измерения для печатиВыберите тип выводаВыберите имя принтера (не тип, не модель)Укажите расположение: портретное, ладшафтное, верхом вниз или пейзажВыберите масштабирование в процентах относительно размера страницы или плотность точек на один дюймВыбор модели принтераВыбор:Выделенное:ВыделениеДополнительные настройки Выделение->КонтурНеправильный размер выделения. +Лабиринт будет неровный.Выделение в контур...Выборочное Гауссово размываниеВыборочное Гауссово размывание...Выборочная загрузка настроекВыборочная загрузка изВыбирать случайное направление для каждого мазкаВыбирать случайный размер для каждого мазкаВыберите, если итоговое изображение должно казаться бесшовнымНаносить ли рисунок на все изображение вплоть до его границПолусведение...Переместить назадПослать по почтеРазделить на:Сентябрь 31, 1999Установка цвета источникаОпределить сантиметр как основную единицу измерения для печатиОпределить дюйм как основную единицу измерения для печатиУстановите яркость печати. +0 - полностью черный, 2 - полностью белыйУстановить контрастность печатиУстановить высоту печатиИспользовать исходный размер изображенияУкажите масштаб (размер) изображенияУстановить ширину печатиСбой SetStretchBltMode (только предупреждение)НастройкиНастройки для этого файла картыНастройка принтераНастроить принтер...ТениРазмывание тени:Цвет тени:Глубина тени:Тени:Форма второй вспышкиРезкие краяПовышение резкостиПовышение резкости...Наклон:СдвигВеличина сдвига:Горизонтальный сдвигВертикальный сдвигСдвиг...Нужно ли инвертировать эффект?Нужно ли сохранять яркость?ПоказатьПоказать кадр линииПросмотр в окне изображенияПоказать все объектыПоказывать подсказку с URL областиПоказывать обработчик областиПоказать цветСкрыть контр.точкиПоказать сеткуПоказать изображениеПоказать следующий объектПоказать позициюПоказать сетку просмотраПоказать предыдущий объектПоказать выделениеПоказать скрыть каркас просмотраЕдинственное:Стороны:СерпинскийSilicon Graphics IRISПростоеСинусоидальныйСинусЕд.ч.CинусСинус: визуализация...СинусоидальнаяРазмерРазмер (%):Градиент масш. множителя:Редактор карты размеровРазмер бумаги для печатиРазмер:Размеры:Самый медленный, но самый аккуратный, наилучший выбор для фотографий.ПятноГладкая палитра...Сглаживание изображенияСглаживаниеГладкая палитраСглаживать цвета образцаСглаживание Х градиента...Сглаживание Y градиента...Параметры сглаживанияСглаживание:Гладкость выравниванияSm-векторыВыровнять по сеткеСобелВыделение края по Sobel...Выделение края по SobelГоризонтальное размывание по SobelВертикальное размывание по SobelМягкий светРовный фонСплошной шумСплошной шум...Сплошной окрашенный фонСплошные цветаНекоторые данные изменились!Можно сохранить только индексированное или серое изображение.Извините, каналы и маски не могут быть повернуты.Название лотка из которого будет происходить печатьИсточник 1:Источник 2:Исходный канал в файл:Исходный канал:Исходный цветовой диапазонИсточник...Число лучей:Рассеивание...Перекрывание:Интервал (проценты):Интервал:ИскрыИскрение...Пространственное преобразованиеРадиус фильтра:Указанное окно не найденоУказать степень рельефности применяемой к изображению (в процентах)Указывает пропорции для кистиУказать масштаб текстуры (в процентах от оригинального файла)Отражение:СфераСоздание сферыСоздание сферы...СферическаяУгол луча (-1 random):СпиральПлотность луча:Толщина пятен:СпиральЧисло оборотов спиралиРадиус пятна:ПятнаРассеиваниеСтепень рассеиванияРассеивание...Экспонента силы:СтандартСтандарт (R,G,B)Число лучей звездыСчитаем от:Начальный угол:Начальное смещения:Неправильная начальная страницаШагРазмер шага:Останавливаться, когда различие между пикселами меньше, чем это значениеРастянутьРастянуть HSVСбой StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY), ошибка = %d, y = %dПлотность мазков:CильноеСтильСверхновая...Подразделять:Субвыборка:Подшаги:СверхноваяЦвет СверхновойВихрь CWПоменять местами кривыеВихрьПереключиться в "из зерна" с последним зерномПротив часовойПо часовойСимволКанал TIFFФормат TIFFTWAIN (Dump)...TWAIN (Read)...Без швовНасыщ. элемента:Размер блоков:Прозрачный фонТурбулентность:ТурбулентноеПараметры создания таблицыПараметры таблицыФормат TarGAЦельTel_netВременноеВременная процедураСглаживание текстаТекстураСвойства текстурыПреобразованияТекстура:ТекстурыСпасибо за то что выбрали GimpФормат GIF поддерживает комментарии только в +7-битном ASCII. Комментарий не сохранён.Файлы помощи GIMP не установлены.ГимпрессионистНастройки Гимпрессиониста +по умолчаниюВ файле формата PNG указано смещение, которое располагает слой за пределами изображения.Формат TIFF поддерживает только 7-битные +комментарии ASCII. Комментарий не сохранён.Размер заполнения ячеек.Размер интервала ячеек.Размер блика на краях каждого кусочкаДиапазон углов первой создаваемой кистиВыбирать размер кисти наиболее совпадающий с исходным изображениемЧерный и белыйКомментарий по умолчанию ограничен длиной в %d символов.Глубина падающей тени, определяет как далеко от объекта она должна бытьВыбирается наиболее совпадающее с оригинальным изображением направлениеРасстояние от центра изображения определяет направление мазкаРазмер мазка будет определяться расстоянием от центра изображенияПервая строка изображенияВысота для каждой ячейки таблицы. Может быть числом или процентом.Оттенок области определяет направление мазкаРазмер мазка будет определяться оттенком областиИзображение, которое вы пытаетесь сохранить как GIF +содержит слои выходящие за границы изображения. Это +недопустимо в GIF. Вы можете или обрезать все слои по границе изображения, или отменить это сохранение.Изображение, которое вы пытаетесь сохранить как XBM, содержит больше чем два цвета. Пожалуйста, преобразуйте его в черно-белое -(1-бит) индексированное изображение и попробуйте снова.Наибольшая создаваемая кистьСлой сохраняет прозрачность.Название '%s' уже используется!Название '%s' уже используется!Используемое число направлений (т.е. кистей)Число точек в рамке таблицы.Используемое число размеров кистейОтносительная плотность мазков кистьюНаименьшая создаваемая кистьПоле sm-вектор. Щелчок левой кнопкой - перемещение выбранного sm-вектора, щелчок правой кнопкой - указание sm-вектора мышью, щелчок средней кнопкой - добавление нового sm-вектора.Угол первой создаваемой кистиМазки равномерно распределяются по изображениюМазки соответствуют "плавающему" шаблонуТекст заголовка таблицы.Текст помещаемый в каждую ячейку.Такой тип файлов SUN-raster не поддерживаетсяАббревиатура единицы (например "см" для сантиметров).Множественное число единицы.Единственное число единицы.Символ единицы если он есть (например "'"для дююмов). Используйте аббревиатуры, для единиц у которых нет символа.Векторное поле. Щелчок левой кнопкой перемещает выбранный вектор, щелчок правой указывает вектор, щелчок средней - добавляет новый вектор.Ширина для каждой ячейки таблицы. Может быть числом или процентом.Недостаточно слоев для выравнивания.Проблемы с файлом помощи GIMPЭто поле - подсказка для поля числового вода. Оно указывает как много десятичных знаков в поле ввода будут давать примерно такую же точность как поле ввода "дюймов" с двумя десятичными знаками.Глубина этого изображения не поддерживаетсяне является файлом GIFСтрока, которая будет использоваться для идентификации единицы в конфигурационном файле GIMP.Порог:Порог альфа-каналаПорог альфа-канала: Окрашивание прозрачности...Порог:ЧерепицаРазрезать исходное изображение: полезно для бесконечных плоскостейРазмер покрываемой площадиНарезатьБесшовноеРассечение...Элементы мозайкиУкладка черепицы...ВНа цветВ:ИнструментыВерх:ЗамыкающийПередача TWAIN-данных...Преобразование %sПрозрачныйОбрабатывать как этоОграничить размерТурбулентность:ТипНе поддерживается тип цветовой картыТип чернил в принтереТип используемого источника освещенияТип носителя на который производится печатьТип объекта отображенияТип:URLURL: %sРазОптимизация фильма...Не удалось добавить дополнительную точку. -Размер несжатого файла в байтах: %sОткатОтменить последнее изменение масштабаЕдиницаРедактор единицМножитель единицы не должен быть 0.ЕдиницыЕдиницы:Неизвестная цветовая модель в файле PNG '%s'.Неизвестная причинаБезымянноеСнять выделениеСнять выделение со всегоНерезкая маскаНеподдерживаемое число цветов (%d)!Неподдерживаемый формат кистиНеподдерживаемый формат или буфер обмена пуст!НеозаглавленноеНеобычный вид файла PCX. Выход.ОбновитьВерхний левый угол X:Верхний левый угол Y:Верхом внизИспользовать направляющие GimpИспользовать исходный -размер изображенияИспользовать прозрачный фон; Только нанесенные мазки будут видныИспользовать среднее значениеИспользовать косинусоидальную функцию для этого цветового компонентаИспользовать линейное отображение вместо любой тригонометрической функции для этого цветового каналаЧтобы избежать разделения изображения на полосы, используйте параметр "Сглаживание"Использовать loglog cглаживаниеИспользовать обратное значениеИспользовать синусоидальную функцию для этого цветового компонентаЯркостьЯркостьИнверсия значения...Распространение значенийРаспространение значений...Изменения значенийЯркость:Ван Гог (LIC)Ван Гог (LIC)...Угол вектора:Длина вектора:ВекторыВертикальЦвет для вертикалейВертикальноВидеоВидео/RGB...Просмотр источникаВ режиме "Вороной" только ближайший к заданной точке sm-вектор оказывает воздействиеВ режиме "Вороной" только ближайший к заданной точке вектор оказывает воздействиеВихрьВихрь2Вихрь3WAISВниманиеПредупреждение: +(1-бит) индексированное изображение и попробуйте снова.Наибольшая создаваемая кистьСлой сохраняет прозрачность.Название '%s' уже используется!Название '%s' уже используется!Используемое число направлений (т.е. кистей)Число точек в рамке таблицы.Используемое число размеров кистейСмещение можно установить перемещая изображение предпросмотра средней кнопкой мыши.Относительная плотность мазков кистьюНевозможно загрузить запрашиваемый URL:Наименьшая создаваемая кистьПоле sm-вектор. Щелчок левой кнопкой - перемещение выбранного sm-вектора, щелчок правой кнопкой - указание sm-вектора мышью, щелчок средней кнопкой - добавление нового sm-вектора.Угол первой создаваемой кистиМазки равномерно распределяются по изображениюМазки соответствуют "плавающему" шаблонуТекст заголовка таблицы.Текст помещаемый в каждую ячейку.Этот тип файлов не поддерживается SUN-rasterАббревиатура единицы (например "см" для сантиметров).Множественное число единицы.Единственное число единицы.Символ единицы если он есть (например "'"для дююмов). Используйте аббревиатуры, для единиц у которых нет символа.Векторное поле. Щелчок левой кнопкой перемещает выбранный вектор, щелчок правой указывает вектор, щелчок средней - добавляет новый вектор.Ширина для каждой ячейки таблицы. Может быть числом или процентом.Недостаточно слоев для выравнивания.Проблемы с файлом помощи GIMPЭто поле - подсказка для поля числового вода. Оно указывает как много десятичных знаков в поле ввода будут давать примерно такую же точность как поле ввода "дюймов" с двумя десятичными знаками.Глубина этого изображения не поддерживаетсяЭто не файл формата GIFСтрока, которая будет использоваться для идентификации единицы в конфигурационном файле GIMP.У этого инструмента нет параметровПорог:Порог альфа-каналаПорог альфа-канала: Окрашивание прозрачности...Порог:Между блоками:ЧерепицаВысота блока:Четкость формы:Ширина блока:Разрезать исходное изображениеРазрезать исходное изображение: полезно для бесконечных плоскостейРазмер покрываемой площадиМаленькая черепицаБесшовноеБез швов...Элементы мозаикиУкладка черепицы...ВНа цветВнизВ полярноеНаправоВверхНалевоВ:Параметры инструментаИнструментыВерхний крайСверху слеваВерхняя:ЗамыкающийПередача TWAIN-данных...Преобразование %sПрозрачныйПрозрачный фонОбрабатывать как этоПросмотр дереваОграничить размерТурбулент.:ТипНе поддерживается тип цветовой картыТип чернил в принтереТип используемого источника освещенияТип носителя на который производится печатьТип объекта отображенияТип:URLURL: %sРазОптимизация...Не удалось добавить дополнительную точку. +Невозможно сохранить '%s'. Формат PSD не поддерживает изображения, размеры которых превышают 30000 точек в длину или ширину.Невозможно сохранить '%s'. Формат PSD не поддерживает слои, размеры которых превышают 30000 точек в длину или ширину.Размер несжатого файла: %sОткатОтменить последнее изменение масштабаЕдиницаРедактор единицМножитель единицы не должен быть 0.ЕдиницыЕдиницы:Неизвестная цветовая модель в файле PNG '%s'.Неизвестная причинаБезымянноеНераспознаваемый или некорректный тип сжатия BMP.Снять выделениеСнять все выделениеНерезкая маскаНеподдерживаемая глубина цвета (%d)!Неподдерживаемый формат кистиНеподдерживаемый формат или буфер обмена пуст!БезымянноеНеобычный вид файла PCX. Выход.ОбновитьПросмотрСверху слеваВерхний левый угол X:Верхний левый угол Y:Сверху справаВерхом внизИспользовать макросы вместо структурИспользовать направляющие GIMP...Использовать направляющиеИспользовать исходный +размер изображенияИспользовать 1-байтное RLEИспользовать прозрачный фон; будут видны только нанесенные мазкиИспользовать среднее значениеИспользовать косинусоидальную функцию для этого цветового компонентаИспользовать циклический диапазонИспользовать линейное отображение вместо любой тригонометрической функции для этого цветового каналаЧтобы избежать разделения изображения на полосы, используйте параметр "Сглаживание"Использовать cглаживание loglogИспользовать карту значенийПерезапустить маркерыИспользовать обратное значениеИспользовать синусоидальную функцию для этого цветового компонентаИспользовать субцветаИспользовать цвет фонаИспользовать цвет изображенияИспользовать цвет переднего планаЯркостиЯркостьИнверсия значения...Распространение значенийРаспространение значений...Изменение яркостиЯркость:Ван Гог (LIC)Ван Гог (LIC)...Угол вектора:Длина вектора:Длина вектора:ВекторыВерт. основание:ВертикальЦвет для вертикалейВертикальноОчень темноеВидео...ВидеоШаблонВидео/RGB...Просмотр источникаВ режиме "Voronoi" только ближайший к заданной точке sm-вектор оказывает воздействиеВ режиме "Voronoi" только ближайший к заданной точке вектор оказывает воздействиеВихрьВихрь2Вихрь3WAISВ файле WMF +не указан размер!Вихрь и щипок...С исходным изображениемЗаписать дополнительный файл маскиВниманиеПредупреждение: Изображение, которое вы собираетесь загрузить имеет 16 бит на канал. -GIMPподдерживает только 8 бит на канал, так что изображение будет +GIMP поддерживает только 8 бит на канал, так что изображение будет преобразовано. В процессе преобразования информация изображения будет утеряна.Предупреждение: Прозрачный цвет может некорректно отображаться в просмотрщиках, не поддерживающих прозрачность.Внимание: "%s" -это файл параметров для более новой версии CML_explorer'а чем выполняющаяся.Внимание: "%s" -это файл старого формата.Внимание: источник и назначение в одном канале.Внимание: в XJT сохранен неподдерживаемый режим слоя %dВнимание: в XJT сохранен неподдерживаемый тип контура %dВнимание: в XJT сохранена единица неподдерживаемого типа %dДеформацияИскажается кадр N %d ...Искажение...Тип волныВолныСоздание волн...СлабоеПросмотрщик не указан. -Необходимо указать его в диалоге Настройки.Если выбрано, итоговое изображение будет масштабироваться до заполнения заданного размера без изменения пропорций.Вихрь и щипокСоздание вихрей и щипков...БелыйШирина бумаги для печатиШирина:ВетерОкнаСо степенью градиента (0,1)Со степенью p и случайным числом (0,1)Со случайной степенью (0,1)Со случайной степенью (0,10)ДеревоЗаворачиватьВозникла ошибка записиМасштаб X (размер)X:Параметры XBMXJT-файл содержит неизвестный режим слоя %dXJT-файл содержит неизвестный тип контура %dXJT-файл содержит единицу неизвестного типа %dXмакс:Xмин:Неверный файл XPMX1:X2:Масштаб Y (размер)Y:Yмакс:Yмин:Y1:Y2:ЖелтыйЖелтый:Желтый_KВы почти создали огромный -HTML-файл, который наверняка -обрушит ваш навигатор.Вы не можете повернуть все изображение, если в нем есть плавающее выделение.Вы не может повернуть все изображение, если в нем есть выделенная область.Невозможно сохранить маску курсора в -изображении, которое не имеет альфа-канала.Масштаб Z (размер)Z:Усердное кадрирование(tm)...МасштабМасштаб +Увеличить масштаб (делает изображение больше)Масштаб -Уменьшить масштаб (делает изображение меньше)3х3Аббревиатура:АдаптивноеДополняющийДополнительныеАльфаАльфа:Величина:Амплитуда:Угол:АнимироватьСглаживание контураАвтоматически преобразовыватьАзимут:ФонОсновной URL:БилинейныйЧерныйСделать чернымПорыв ветраСмешатьСинийСиний:Border:Низ:ПараллелепипедЯркостьЯркость:КистьКарта рельефаРельефСкопироватьУменьшитьГлубина:ПроизводнаяОписание:Детали:Цифры:Замещение:ИскаженныйТочкиПравкаИзображение эффекта:Возвышение:БарельефEncapsulated PostScriptВсе изображениеКарта окруженияЭкспонента:Множитель:ФайлИмя файла:Шрифт:УсиливатьФракталыСвободнаяFtp-сайтГамма:Общий видGopherГрадиентСерый:ЗелёныйЗелёный:СерыйРостВысотаВысота:СправкаШестиугольникСкрытьФиксация:ГоризонтальноеГоризонтально:Гор. интервал:ТонИдентификатор:ИдеальныйИгнорироватьДюймSPI на входе:ВставитьЧерезстрочность (Adam7)ИнвертироватьJPEGJavaScriptСохранить NCSA окружностиУдалитьLZWЛапласБольшой шахматныйСлеваЛевая начинается сСветЛинейноеЛинииСсылкаНижнегоMIMEОтображениеМатериалМакс.(%):Макс. глубина:ПолутонаМиллиметрОтражениеРазн. парам.МонохромныйПереместитьК-во секторов в ширину:НикакойНормальноеУпакованные битыПараметрыПериод:Фаза:Пинг-ПонгМножественное:МногоугольникНастройкиПросмотрПросмотр!Приглашение для ввода информации об областиПсиходелияRGBRLE сжатиеRLE-кодированиеРадиальноеРадиус:ПеремешатьЛучиПолучатель:ПрямоугольникКрасный:Возврат %sОтражающиесяУдалитьВизуализацияТребуется URL по умолчаниюСправаПравая границаПовернутыйНасыщенностьНасыщенность:Поиск:Вторичные вспышкиОтправитель:УстановкиРезкость:РазмерРазмер:РазмытьВыравнивание по направляющимСкорость:Лучи:КвадратныеКвадратыШахматныйСила:Символ:Название/ID целевого кадра: (необязательно - используется только для кадров)Толщина:ПорогПорог:Заголовок:ИнструментыВерхняя начинается сВерх:ПрозрачныйURL активируемый при щелчке на этой области: (обязательно!)Откат %sОбновитьВерхнегоВерхняя границаИспользовать выделение удвоенного размераUuencodeЯркостьЯркость:Изменение:Верт. интервал:ВертикальноеВертикально:ПросмотрВоронойДеформацияВатерлиния:Длина волны:Web-сайтБелыйС широкими полосамиШиринаШирина:ВетерЗаворачиватьМасштаб X:_X:Масштаб Y:_Y:Желтый_Z:МасштабМасштаб:"Исходная" создана.Одно окночерезальфа-каналчерныйсинийblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fсмголубойголубой_kэл.адресзеленыйтоннеправильно сформатированный файл Град.вспышки: %s -k(1-x^p)Пошаговая k(1-x^p)kx^pПошаговая kx^pk{x(1-x)}^pПошаговая k{x(1-x)}^pluma_y470luma_y470fluma_y709luma_y709fпурпурныйпурпурный_kмиллисекундне найдено %s в списке град.вспышек gflares_listточки растраточек сверхуточек слеваточек растра/%aкрасныйredness_cr470redness_cr470fredness_cr709redness_cr709fнасыщенностьПошаговая sin^pфункция основанная на sin^pнекоторая ошибка в расширении файлаВесь экраняркостьx (пикселы)y (пикселы)желтыйжелтый_k \ No newline at end of file +это файл параметров для более новой версии CML Исследователья, чем выполняющаяся.Внимание: "%s" +это файл старого формата.Внимание: источник и пункт назначения находятся в одном канале.Внимание: в XJT сохранен неподдерживаемый режим слоя %dВнимание: в XJT сохранен неподдерживаемый тип контура %dВнимание: в XJT сохранена единица неподдерживаемого типа %dДеформацияИскажается кадр N %d ...Искажение...Тип волныВолныСоздание волн...СлабоеПросмотрщик не указан. +Необходимо указать его в диалоге "Настройки".Если выбрано, итоговое изображение будет масштабироваться до заполнения заданного размера без изменения пропорций.Вихрь и щипокСоздание вихрей и щипков...БелыйВетер...Ширина (пикс.):Ширина бумаги для печатиШирина:ВетерОкнаФормат Windows BMPРазмеры иконки для Windows не могут превышать 255 точек в длину или ширину.Со степенью градиента (0,1)Со степенью p и случайным числом (0,1)Со случайной степенью (0,1)Со случайной степенью (0,10)ДеревоРаботать с копиейЗаворачиватьОшибка записиФормат X BitMapФормат X PixMapМасштаб X (размер)X window dumpX:Параметры XBMXJT-файл содержит неизвестный режим слоя %dXJT-файл содержит неизвестный тип контура %dXJT-файл содержит единицу неизвестного типа %dX-max:X-min:Неверный файл XPMXWD-файл %s имеет формат %d, глубину %d +и %d бит на пиксел. +В настоящее время это не поддерживается.Позиция XY:X1:X2:Масштаб Y (размер)Y:Y-max:Y-min:Y1:Y2:ЖелтыйЖелтый:Желтый_KВы почти создали огромный +файл HTML, который наверняка +обрушит ваш браузер.Вы не можете повернуть все изображение, если в нем есть плавающее выделение.Вы не может повернуть все изображение, если в нем есть выделенная область.Невозможно сохранить маску курсора в +изображении, которое не имеет альфа-канала.Масштаб Z (размер)Z:ZSoft PCXУсердное кадрирование(tm)...МасштабМасштаб +Увеличить масштаб (делает изображение больше)Масштаб -Уменьшить масштаб (делает изображение меньше)Масштаб:Масштаб3х3Аббревиатура:О ImageMap...АдаптивноеДополняющийДополнительноДополнительноАлгоритм:АльфаПорог альфа-канала:Альфа-усеченное среднееАльфа:Величина:Амплитуда:Угол:АнимироватьСглаживание контураПрименить холст...Автокадр изображенияАвтокадр слояАвтоматически преобразовыватьАзимут:ФонЦвет фонаОсновной URL:Рельеф:БилинейныйЧерныйУровень черного:Сделать чернымПорыв ветраГрадиентЖалюзи...СинийСиний:РазмываниеРадиус разм.:Средний цвет рамки...Border:Снизу слеваНиз:ПараллелепипедЯркость:ЯркостьЯркость:КистьКол-во цветов:Карта рельефаРельеф...Рельеф из:РельефШахматная доска...О_чиститьНасыщенность...Замена цвета...Окрашивание...СодержаниеМатрица свёртки...КопироватьКубизм...Изгиб кривой...Разобрать...УменьшитьРадиус деформ.:Убрать черезстрочность...Задержка между кадрами (если не указана) равна:Объединение глубин...Глубина:ПроизводнаяОписание:Детализация:Дифракционные шаблоны...Цифры:Распространение(темнее)Замещение...Замещение:ИскаженныйДеления:ТочкиДинамика:Усиление краяКрай...ПравкаИзображение:Возвышение:БарельефБарельеф...Кодированный PostScriptВсе изображениеКарта окруженияуказанномуЭкспонента:Осветление пер.плана/фонаМножитель:По умолчаниюФайлИмя файла:Фотопленка...Набор фильтров...Длина фильтра:Найти фонРастягивать по высоте изображенияПламя...Отблеск...Шрифт:УсиливатьБесшовностьПередний план и фонЦвет переднего планаМакс. цвет переднего планаФормат:Исследователь Фракталов...Фрактальный след...ФракталыСвободнаяFtp-сайтГрад.вспышка...Комментарий GIF:Гимпрессионист...Гамма:Гауссово размывание...Общий видСоздать полный HTML-документGfig...Стеклянные блоки...Радиус:Контраст:GopherГрадиентГрадиентСерый:ЗелёныйЗелёный:Серый_СеткаРазмер сетки:Сетка...РостГильотина...Цветовая модель HSLВысотаВысота:СправкаШестиугольникСкрытьВысокийСохранять максимальные каналыФиксация:Смещение отверстий:ГоризонтальноеГоризонтальный стиль:Горизонтально:Гор. интервал:Яркий...ТонВращение тона:Бросок...Идентификатор:_IFS Fractal..._IIRИскажение...ИдеальныйПрефикс идентификатора:ИгнорироватьИгнорировать нижний слой даже если он видимИллюзия...Карта изображения...ДюймНезависимое RGBSPI на входе:ВставитьИнтенсивность:ЧерезстрочностьЧерезстрочность (Adam7)ИнвертироватьJPEGJavaScriptПазл...Сохранить NCSA окружностиСохранить пропорцииСохранять оригинальное окружениеСохранять знак результата (одно направление)УдалитьLZWЛапласБольшой шахматныйСлеваЛевая начинается сКоэффициент преломления:СветОсвещение...Ограничить ширину линииЛинейноеЛинииСсылкаЗагрузить настр.Фиксировать каналыБесконечный циклНизкийНижнегоMIMEОтправить почтой...Без швовСделать окружение прозрачнымОтобразить назадТип:ОтображениеРасширение файла маски:Радиус маски:Размер маски:МатериалМакс.(%):Макс. глубина:Макс. RGB...Макс. дельта:Лабиринт...МеталликCредние значенияПолутонаМиллиметрМин. значение:ОтразитьРазн. парам.Изменить канал тонаИзменить красный каналМонохромныйМозаика...Размывание движением...ПереместитьНелинейный фильтр...Естественный цветНеон...Секторов в ширину:Величина шума:НикакойНормальноеУпорядочитьВысота чисел:Кол-во сегментов:Непрозрачность:Оптимизация (разн.)Упакованные битыЗагибание страницы...Тип палитры:Разрез бумаги...ПараметрыПроцент черного:Период:Фаза:Фотокопия...Выбор...Величина щипка:Пинг-понгПоверхности с выемкамиПикселизация...Плазма...Воспроизведение...Список дополненийМножественное:Резкость:МногоугольникPostScript Level 2Префиксное имя:Сохранять яркостьНастройкиПросмотрПросмотрПросмотр!ПечатьПечать...Приглашение для ввода информации об областиСкорость распространения:ПсиходелияQ-бист...Качество:RGBЦветовая модель RGBRLERLE сжатиеRLE-кодированиеРадиальноеРадиус 1:Радиус:Случайный тон:Случайное зерно:ПеремешатьЛучиПолучатель:ПрямоугольникКрасный:Повторить %sОтражающиесяУдалитьУдалить фонВизуализацияТребуется URL по умолчаниюБесшовность_Retinex...СправаПравая границаРябь...ПовернутыйОкраска по образцу...НасыщенностьНасыщенность:Сохранить комментарий в файлСохранить настр.Деление:Масштаб:Рассеивание RGB...Снимок экрана...Глубина поиска:Поиск:Вторичные вспышкиВыборочное Гауссово...Полусведение...Отправитель:Устанавливать окружение в цвет фонаУстановить окружение в индекс 0ПараметрыТень под загибомПовышение резкости...Резкость:Сдвиг...Блики:Показать курсорCинус...РазмерРазмер:Таянье...Маленькая черепицаРазмытьСглаживание:Выравнивание по направляющимСобел...Мягкий свет...Сплошной шум...Искры...Скорость:Длина лучей:Лучи:Форма точек:КвадратныеКвадратыШахматныйСила:Увеличить контрастОбвестиСимвол:_TWAIN...Название/ID целевого кадра: (необязательно - используется только для кадров)Толщина:ПорогПорог альфа-канала...Порог:Повторяющийся рельефРазмер элемента:Черепица...Заголовок:ИнструментыВерхняя начинается сСверху справаВерх:ПрозрачныйURL активируемый при щелчке на этой области: (обязательно!)РазОптимизацияО_тменаОтменить %sОбычныйРедактор единицНерезкая маска...ОбновитьВерхнегоВерхняя границаВерхний порог:Использовать типы GLib (guint8*)Использовать цвет фонаИспользовать CellspanИспользовать выделение удвоенного размераИспользовать алгоритм яркостиИспользовать (невидимый) нижний слой как основаниеUuencodeЯркостьИнверсия значенияРаспространение значений...Яркость:Ван Гог (LIC)...Изменение:Верт. интервал:ВертикальноеВертикальный стиль:Вертикально:Просмотр_VoronoiДеформацияДеформация...Ватерлиния:Длина волны:Волны...Web-сайтУгол вихря:БелыйУровень белого:С широкими полосамиШиринаШирина:ВетерС белым шумомЗаворачиватьБез швовЗаписать значения "горячих точек"Масштаб X:Замещение по Х:Смещение по X:по X:Размер по Х:Битовая карта формата Х10_X:Масштаб Y:Замещение по Y:Смещение по Y:по Y:Размер по Y:_Y:Желтый_Z:Усердное кадрированиеМасштабМасштаб:"Исходная" создана.Одно окночерезальфа-каналautostretch_hsv: cmap равна нулю! Выход... +черныйсинийblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fархив bzipc_astretch: cmap равно нулю! Выход... +смголубойголубой_kэл.адресзеленыйархив gzipтоннеправильно сформатированный файл Град.вспышки: %s +k(1-x^p)Пошаговая k(1-x^p)kx^pПошаговая kx^pk{x(1-x)}^pПошаговая k{x(1-x)}^pluma_y470luma_y470fluma_y709luma_y709fпурпурныйпурпурный_kмиллисекундне найдено %s в списке град.вспышек gflares_listточек растраточек сверхуточек слеваточек растра/%aкрасныйredness_cr470redness_cr470fredness_cr709redness_cr709fнасыщенностьПошаговая sin^pфункция основанная на sin^pнекоторая ошибка в расширении файлаВесь экранв альфа-каналяркостьx (пикселы)y (пикселы)желтыйжелтый_k \ No newline at end of file diff -uraN gimp-2.2.6/po-plug-ins/ru.po gimp-2.2.7/po-plug-ins/ru.po --- gimp-2.2.6/po-plug-ins/ru.po 2005-04-10 02:11:56.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/ru.po 2005-05-08 23:42:16.000000000 +0200 @@ -1,24 +1,25 @@ +# translation of ru.po to russian # translation of gimp.PLUGINS.ru.po to russian # translation of gimp.PLUGINS.po to russian -# Copyright (C) 1999-2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 1999-2002, 2003, 2004, 2005 Free Software Foundation, Inc. # Valek Filippov , 1999-2002. # Anatoly A. Yakushin , 2003, 2004. -# Roxana Chernogolova , 2003, 2004. +# Roxana Chernogolova , 2003, 2004, 2005. # Grigory Bakunov , 2003. -# AnatolyA. Yakushin , 2004. +# AnatolyA. Yakushin , 2004, 2005. # msgid "" msgstr "" -"Project-Id-Version: gimp.PLUGINS.ru\n" +"Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" -"PO-Revision-Date: 2004-07-15 00:09+0400\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" +"PO-Revision-Date: 2005-04-10 00:13+0400\n" "Last-Translator: AnatolyA. Yakushin \n" "Language-Team: russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.3.1\n" +"X-Generator: KBabel 1.9.1\n" #: ../plug-ins/FractalExplorer/Dialogs.c:523 #: ../plug-ins/gfig/gfig-dialog.c:283 ../plug-ins/gflare/gflare.c:891 @@ -43,19 +44,19 @@ #: ../plug-ins/FractalExplorer/Dialogs.c:608 msgid "Realtime Preview" -msgstr "Просмотр в реальном времени" +msgstr "Интерактивно" #: ../plug-ins/FractalExplorer/Dialogs.c:615 msgid "If you enable this option the preview will be redrawn automatically" -msgstr "Если вы выберете этоу опцию, просмотр будет обновляться автоматически" +msgstr "Если вы выберете эту опцию, просмотр будет обновляться автоматически" #: ../plug-ins/FractalExplorer/Dialogs.c:618 msgid "Redraw" -msgstr "Перерисовать" +msgstr "Обновить" #: ../plug-ins/FractalExplorer/Dialogs.c:624 msgid "Redraw preview" -msgstr "Перерисовать просмотр" +msgstr "Обновить просмотр" #. Zoom Options #: ../plug-ins/FractalExplorer/Dialogs.c:627 @@ -81,7 +82,7 @@ #: ../plug-ins/FractalExplorer/Dialogs.c:696 msgid "XMIN:" -msgstr "Xмин:" +msgstr "X-min:" #: ../plug-ins/FractalExplorer/Dialogs.c:699 msgid "Change the first (minimal) x-coordinate delimitation" @@ -89,7 +90,7 @@ #: ../plug-ins/FractalExplorer/Dialogs.c:707 msgid "XMAX:" -msgstr "Xмакс:" +msgstr "X-max:" #: ../plug-ins/FractalExplorer/Dialogs.c:710 msgid "Change the second (maximal) x-coordinate delimitation" @@ -97,7 +98,7 @@ #: ../plug-ins/FractalExplorer/Dialogs.c:718 msgid "YMIN:" -msgstr "Yмин:" +msgstr "Y-min:" #: ../plug-ins/FractalExplorer/Dialogs.c:721 msgid "Change the first (minimal) y-coordinate delimitation" @@ -105,7 +106,7 @@ #: ../plug-ins/FractalExplorer/Dialogs.c:729 msgid "YMAX:" -msgstr "Yмакс:" +msgstr "Y-max:" #: ../plug-ins/FractalExplorer/Dialogs.c:732 msgid "Change the second (maximal) y-coordinate delimitation" @@ -120,7 +121,7 @@ "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 @@ -220,7 +221,7 @@ #: ../plug-ins/FractalExplorer/Dialogs.c:905 msgid "Use loglog smoothing" -msgstr "Использовать loglog cглаживание" +msgstr "Использовать cглаживание loglog" #: ../plug-ins/FractalExplorer/Dialogs.c:912 msgid "Use log log smoothing to eliminate \"banding\" in the result" @@ -291,11 +292,11 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Никакой" +msgstr "Нет" #: ../plug-ins/FractalExplorer/Dialogs.c:979 #: ../plug-ins/FractalExplorer/Dialogs.c:1020 @@ -362,7 +363,7 @@ "function). The result is visible in the preview image" msgstr "" "Создать отображение цветов с указанными выше параметрами (цветовая плотность/" -"функция). Результат демонстрируется в окне просмотра." +"функция). Результат виден в окне просмотра." #: ../plug-ins/FractalExplorer/Dialogs.c:1120 msgid "Apply active gradient to final image" @@ -395,7 +396,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -461,9 +462,8 @@ "Строка %d раздела параметров неправильна" #: ../plug-ins/FractalExplorer/FractalExplorer.c:269 -#, fuzzy msgid "_Fractal Explorer..." -msgstr "Добавить путь Исследователя Фракталов" +msgstr "Исследователь Фракталов..." #: ../plug-ins/FractalExplorer/FractalExplorer.c:400 msgid "Rendering Fractal..." @@ -537,7 +537,6 @@ msgstr "Освещение..." #: ../plug-ins/Lighting/lighting_main.c:197 -#, fuzzy msgid "_Lighting Effects..." msgstr "Освещение..." @@ -547,17 +546,14 @@ msgstr "Общие параметры" #: ../plug-ins/Lighting/lighting_ui.c:269 -#, fuzzy msgid "T_ransparent background" msgstr "Прозрачный фон" #: ../plug-ins/Lighting/lighting_ui.c:279 msgid "Make destination image transparent where bump height is zero" -msgstr "" -"Сделать результирующее изображение прозрачным с нулевой высотой рельефа" +msgstr "Сделать итоговое изображение прозрачным с нулевой высотой рельефа" #: ../plug-ins/Lighting/lighting_ui.c:282 -#, fuzzy msgid "Cre_ate new image" msgstr "Создать новое изображение" @@ -567,7 +563,6 @@ msgstr "Создавать новое изображение при применении фильтра" #: ../plug-ins/Lighting/lighting_ui.c:294 -#, fuzzy msgid "High _Quality preview" msgstr "Высококачественный просмотр" @@ -581,34 +576,28 @@ msgstr "Настройки света" #: ../plug-ins/Lighting/lighting_ui.c:344 -#, fuzzy msgid "Light 1" -msgstr "Свет" +msgstr "Свет 1" #: ../plug-ins/Lighting/lighting_ui.c:345 -#, fuzzy msgid "Light 2" -msgstr "Свет" +msgstr "Свет 2" #: ../plug-ins/Lighting/lighting_ui.c:346 -#, fuzzy msgid "Light 3" -msgstr "Свет" +msgstr "Свет 3" #: ../plug-ins/Lighting/lighting_ui.c:347 -#, fuzzy msgid "Light 4" -msgstr "Свет" +msgstr "Свет 4" #: ../plug-ins/Lighting/lighting_ui.c:348 -#, fuzzy msgid "Light 5" -msgstr "Свет" +msgstr "Свет 5" #: ../plug-ins/Lighting/lighting_ui.c:349 -#, fuzzy msgid "Light 6" -msgstr "Свет" +msgstr "Свет 6" #. row labels #: ../plug-ins/Lighting/lighting_ui.c:358 @@ -617,7 +606,6 @@ msgstr "Тип:" #: ../plug-ins/Lighting/lighting_ui.c:363 -#, fuzzy msgid "Color:" msgstr "Цвет:" @@ -636,9 +624,8 @@ #: ../plug-ins/Lighting/lighting_ui.c:388 #: ../plug-ins/MapObject/mapobject_ui.c:679 -#, fuzzy msgid "Select lightsource color" -msgstr "Выбор цвета источника" +msgstr "Цвет источника освещения" #: ../plug-ins/Lighting/lighting_ui.c:400 #: ../plug-ins/MapObject/mapobject_ui.c:692 @@ -646,14 +633,12 @@ msgstr "Установка цвета источника" #: ../plug-ins/Lighting/lighting_ui.c:408 -#, fuzzy msgid "_Intensity:" -msgstr "Интенсивность" +msgstr "Интенсивность:" #: ../plug-ins/Lighting/lighting_ui.c:414 -#, fuzzy msgid "Light intensity" -msgstr "Исходная глубина цвета" +msgstr "Интенсивность освещения" #: ../plug-ins/Lighting/lighting_ui.c:417 #: ../plug-ins/MapObject/mapobject_ui.c:694 @@ -672,7 +657,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:432 #: ../plug-ins/MapObject/mapobject_ui.c:718 msgid "Light source X position in XYZ space" -msgstr "X-координата источника света в XYZ пространстве" +msgstr "Координата X источника света в XYZ пространстве" #: ../plug-ins/Lighting/lighting_ui.c:439 ../plug-ins/common/flarefx.c:761 #: ../plug-ins/common/mblur.c:1007 ../plug-ins/common/nova.c:456 @@ -684,7 +669,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:445 #: ../plug-ins/MapObject/mapobject_ui.c:732 msgid "Light source Y position in XYZ space" -msgstr "Y-координата источника света в XYZ пространстве" +msgstr "Координата Y источника света в XYZ пространстве" #: ../plug-ins/Lighting/lighting_ui.c:452 msgid "_Z:" @@ -693,7 +678,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:458 #: ../plug-ins/MapObject/mapobject_ui.c:746 msgid "Light source Z position in XYZ space" -msgstr "Z-координата источника света в XYZ пространстве" +msgstr "Координата Z источника света в XYZ пространстве" #. ***************************************************** #. radio buttons for choosing LEFT or RIGHT @@ -749,24 +734,20 @@ msgstr "Направление источника света по Z в XYZ пространстве" #: ../plug-ins/Lighting/lighting_ui.c:502 -#, fuzzy msgid "I_solate" -msgstr "Уменьшить" +msgstr "Только этот свет" #: ../plug-ins/Lighting/lighting_ui.c:512 -#, fuzzy msgid "Lighting preset:" -msgstr "Световые эффекты" +msgstr "Настройки фильтра:" #: ../plug-ins/Lighting/lighting_ui.c:558 -#, fuzzy msgid "Material properties" msgstr "Свойства текстуры" #: ../plug-ins/Lighting/lighting_ui.c:576 -#, fuzzy msgid "_Glowing:" -msgstr "Плавающее" +msgstr "Контраст:" #: ../plug-ins/Lighting/lighting_ui.c:592 #: ../plug-ins/MapObject/mapobject_ui.c:859 @@ -775,7 +756,6 @@ "Степень окрашивания собственным цветом там куда не попадают прямые лучи" #: ../plug-ins/Lighting/lighting_ui.c:605 -#, fuzzy msgid "_Bright:" msgstr "Яркость:" @@ -785,9 +765,8 @@ msgstr "Интенсивность исходного цвета при освещении источником света" #: ../plug-ins/Lighting/lighting_ui.c:634 -#, fuzzy msgid "_Shiny:" -msgstr "Синус" +msgstr "Блики:" #: ../plug-ins/Lighting/lighting_ui.c:650 #: ../plug-ins/MapObject/mapobject_ui.c:960 @@ -796,7 +775,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:662 msgid "_Polished:" -msgstr "" +msgstr "Резкость:" #: ../plug-ins/Lighting/lighting_ui.c:678 #: ../plug-ins/MapObject/mapobject_ui.c:989 @@ -806,10 +785,9 @@ #. Metallic #: ../plug-ins/Lighting/lighting_ui.c:687 msgid "_Metallic" -msgstr "" +msgstr "Металлик" #: ../plug-ins/Lighting/lighting_ui.c:723 -#, fuzzy msgid "E_nable bump mapping" msgstr "Использовать рельефное отображение" @@ -818,45 +796,42 @@ msgstr "Включить/отключить рельефное преобразование (глубина изображения)" #: ../plug-ins/Lighting/lighting_ui.c:755 -#, fuzzy msgid "Bumpm_ap image:" -msgstr "Изображение рельефа:" +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 "Линейный" +msgstr "Линейная" #: ../plug-ins/Lighting/lighting_ui.c:759 msgid "Logarithmic" -msgstr "Логарифмический" +msgstr "Логарифмическая" #: ../plug-ins/Lighting/lighting_ui.c:760 ../plug-ins/common/bumpmap.c:900 #: ../plug-ins/flame/flame.c:734 msgid "Sinusoidal" -msgstr "Синусоидальный" +msgstr "Синусоидальная" #: ../plug-ins/Lighting/lighting_ui.c:761 ../plug-ins/common/bumpmap.c:899 #: ../plug-ins/flame/flame.c:735 msgid "Spherical" -msgstr "Сферический" +msgstr "Сферическая" #: ../plug-ins/Lighting/lighting_ui.c:771 msgid "Cu_rve:" -msgstr "Кривая:" +msgstr "Функция:" #: ../plug-ins/Lighting/lighting_ui.c:776 -#, fuzzy msgid "Ma_ximum height:" -msgstr "Максимальная высота:" +msgstr "Макс. высота:" #: ../plug-ins/Lighting/lighting_ui.c:786 msgid "Maximum height for bumps" -msgstr "Максимальная высота для рельефа" +msgstr "Степень рельефности изображения" #: ../plug-ins/Lighting/lighting_ui.c:811 -#, fuzzy msgid "E_nable environment mapping" msgstr "Включить окружение" @@ -865,7 +840,6 @@ msgstr "Включить/отключить environment преобразование (отражение)" #: ../plug-ins/Lighting/lighting_ui.c:847 -#, fuzzy msgid "En_vironment image:" msgstr "Изображение окружения:" @@ -897,7 +871,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:933 msgid "Lighting Effects" -msgstr "Световые эффекты" +msgstr "Освещение" #: ../plug-ins/Lighting/lighting_ui.c:982 #: ../plug-ins/gimpressionist/preview.c:181 @@ -908,46 +882,43 @@ #: ../plug-ins/Lighting/lighting_ui.c:989 #: ../plug-ins/MapObject/mapobject_ui.c:1425 msgid "Recompute preview image" -msgstr "Пересчитать изображение просмотра" +msgstr "Обновить изображение просмотра" #: ../plug-ins/Lighting/lighting_ui.c:991 msgid "I_nteractive" -msgstr "Интерактивное" +msgstr "Интерактивно" #: ../plug-ins/Lighting/lighting_ui.c:1005 msgid "Enable/disable real time preview of changes" msgstr "Включить/отключить немедленный предварительный просмотр" #: ../plug-ins/Lighting/lighting_ui.c:1044 -#, fuzzy msgid "Save Lighting Preset" -msgstr "Световые эффекты" +msgstr "Сохранить параметры фильтра" #: ../plug-ins/Lighting/lighting_ui.c:1177 -#, fuzzy msgid "Load Lighting Preset" -msgstr "Световые эффекты" +msgstr "Загрузить параметры фильтра" #: ../plug-ins/MapObject/mapobject_apply.c:273 msgid "Map to Plane..." -msgstr "Карту в плоскость" +msgstr "Отображение в плоскость" #: ../plug-ins/MapObject/mapobject_apply.c:276 msgid "Map to Sphere..." -msgstr "Карту в сферу" +msgstr "Отображение в сферу" #: ../plug-ins/MapObject/mapobject_apply.c:279 msgid "Map to Box..." -msgstr "Карту в куб..." +msgstr "Отображение в куб" #: ../plug-ins/MapObject/mapobject_apply.c:282 msgid "Map to Cylinder..." -msgstr "Карту в цилиндр" +msgstr "Отображение в цилиндр" #: ../plug-ins/MapObject/mapobject_main.c:199 -#, fuzzy msgid "Map _Object..." -msgstr "Отобразить в объект" +msgstr "Отобразить в объект..." #: ../plug-ins/MapObject/mapobject_ui.c:248 #: ../plug-ins/MapObject/mapobject_ui.c:1340 @@ -961,7 +932,6 @@ #. General options #: ../plug-ins/MapObject/mapobject_ui.c:496 -#, fuzzy msgid "General options" msgstr "Общие параметры" @@ -990,7 +960,6 @@ msgstr "Тип объекта отображения" #: ../plug-ins/MapObject/mapobject_ui.c:532 -#, fuzzy msgid "Transparent background" msgstr "Прозрачный фон" @@ -999,7 +968,6 @@ msgstr "Сделать изображение прозрачным вне объекта" #: ../plug-ins/MapObject/mapobject_ui.c:545 -#, fuzzy msgid "Tile source image" msgstr "Разрезать исходное изображение" @@ -1008,18 +976,16 @@ msgstr "Разрезать исходное изображение: полезно для бесконечных плоскостей" #: ../plug-ins/MapObject/mapobject_ui.c:559 -#, fuzzy msgid "Create new image" msgstr "Создать новое изображение" #: ../plug-ins/MapObject/mapobject_ui.c:578 -#, fuzzy msgid "Enable _antialiasing" msgstr "Включить сглаживание" #: ../plug-ins/MapObject/mapobject_ui.c:585 msgid "Enable/disable jagged edges removal (antialiasing)" -msgstr "Включить/Выключить удаление зубчатых краев (сглаживание)" +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 @@ -1029,7 +995,7 @@ #: ../plug-ins/MapObject/mapobject_ui.c:605 msgid "Antialiasing quality. Higher is better, but slower" -msgstr "Качество сглаживание. Более высокое лучше, но медленнее" +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 @@ -1039,30 +1005,25 @@ #: ../plug-ins/MapObject/mapobject_ui.c:622 msgid "Stop when pixel differences are smaller than this value" msgstr "" -"Останавливаться когда различие между пикселами меньше, чем это значение" +"Останавливаться, когда различие между пикселами меньше, чем это значение" #: ../plug-ins/MapObject/mapobject_ui.c:658 -#, fuzzy msgid "Point light" msgstr "Источник света" #: ../plug-ins/MapObject/mapobject_ui.c:659 -#, fuzzy msgid "Directional light" msgstr "Направленный свет" #: ../plug-ins/MapObject/mapobject_ui.c:660 -#, fuzzy msgid "No light" msgstr "Нет освещения" #: ../plug-ins/MapObject/mapobject_ui.c:674 -#, fuzzy msgid "Lightsource type:" msgstr "Тип освещения:" #: ../plug-ins/MapObject/mapobject_ui.c:684 -#, fuzzy msgid "Lightsource color:" msgstr "Цвет источника света:" @@ -1072,20 +1033,20 @@ #: ../plug-ins/MapObject/mapobject_ui.c:825 msgid "Intensity Levels" -msgstr "Уровни интенсивности" +msgstr "Интенсивность цвета" #: ../plug-ins/MapObject/mapobject_ui.c:844 msgid "Ambient:" -msgstr "Освещение:" +msgstr "Неосвещенного:" #: ../plug-ins/MapObject/mapobject_ui.c:873 #: ../plug-ins/MapObject/mapobject_ui.c:916 msgid "Diffuse:" -msgstr "Рассеяние:" +msgstr "Освещенного:" #: ../plug-ins/MapObject/mapobject_ui.c:897 msgid "Reflectivity" -msgstr "Рефлексия" +msgstr "Степень отражения" #: ../plug-ins/MapObject/mapobject_ui.c:931 msgid "Higher values makes the object reflect more light (appear lighter)" @@ -1102,19 +1063,19 @@ #: ../plug-ins/MapObject/mapobject_ui.c:1035 msgid "Object X position in XYZ space" -msgstr "X-координата объекта в XYZ пространстве" +msgstr "Координата X объекта в XYZ пространстве" #: ../plug-ins/MapObject/mapobject_ui.c:1048 msgid "Object Y position in XYZ space" -msgstr "Y-координата объекта в XYZ пространстве" +msgstr "Координата Y объекта в XYZ пространстве" #: ../plug-ins/MapObject/mapobject_ui.c:1061 msgid "Object Z position in XYZ space" -msgstr "Z-координата объекта в XYZ пространстве" +msgstr "Координата Z объекта в XYZ пространстве" #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Вращение" @@ -1132,35 +1093,35 @@ #: ../plug-ins/MapObject/mapobject_ui.c:1132 msgid "Front:" -msgstr "Передняя часть:" +msgstr "Передняя:" #: ../plug-ins/MapObject/mapobject_ui.c:1132 msgid "Back:" -msgstr "Задняя часть:" +msgstr "Задняя:" #: ../plug-ins/MapObject/mapobject_ui.c:1133 #: ../plug-ins/print/gimp_main_window.c:523 msgid "Top:" -msgstr "Верх:" +msgstr "Верхняя:" #: ../plug-ins/MapObject/mapobject_ui.c:1133 #: ../plug-ins/print/gimp_main_window.c:564 msgid "Bottom:" -msgstr "Низ" +msgstr "Нижняя:" #: ../plug-ins/MapObject/mapobject_ui.c:1134 #: ../plug-ins/print/gimp_main_window.c:510 msgid "Left:" -msgstr "Левая сторона:" +msgstr "Левая:" #: ../plug-ins/MapObject/mapobject_ui.c:1134 #: ../plug-ins/print/gimp_main_window.c:536 msgid "Right:" -msgstr "Правая сторона:" +msgstr "Правая:" #: ../plug-ins/MapObject/mapobject_ui.c:1140 msgid "Map Images to Box Faces" -msgstr "Отобразить на плоскости параллелепипеда" +msgstr "Изображения для сторон" #: ../plug-ins/MapObject/mapobject_ui.c:1178 #: ../plug-ins/common/spheredesigner.c:2719 @@ -1238,9 +1199,8 @@ msgstr "Увеличить масштаб (делает изображение больше)" #: ../plug-ins/MapObject/mapobject_ui.c:1455 -#, fuzzy msgid "Show preview _wireframe" -msgstr "Показать каркас просмотра" +msgstr "Показать сетку просмотра" #: ../plug-ins/MapObject/mapobject_ui.c:1464 msgid "Show/hide preview wireframe" @@ -1248,7 +1208,7 @@ #: ../plug-ins/bmp/bmp.c:120 ../plug-ins/bmp/bmp.c:139 msgid "Windows BMP image" -msgstr "" +msgstr "Формат Windows BMP" #: ../plug-ins/bmp/bmpread.c:86 msgid "Bad colormap" @@ -1284,7 +1244,7 @@ #: ../plug-ins/bmp/bmpread.c:348 #, c-format msgid "'%s' is not a valid BMP file" -msgstr "\"%s\" не пригодный BMP-файл" +msgstr "\"%s\" - некорректный файл BMP" #: ../plug-ins/bmp/bmpread.c:220 ../plug-ins/bmp/bmpread.c:239 #: ../plug-ins/bmp/bmpread.c:260 ../plug-ins/bmp/bmpread.c:279 @@ -1293,12 +1253,12 @@ #, c-format msgid "Error reading BMP file header from '%s'" msgstr "" -"Ошибка считывания заголовка BMP-файла\n" +"Ошибка считывания заголовка файла BMP\n" "из \"%s\"" #: ../plug-ins/bmp/bmpread.c:450 ../plug-ins/bmp/bmpread.c:485 msgid "Unrecognized or invalid BMP compression format." -msgstr "" +msgstr "Нераспознаваемый или некорректный тип сжатия BMP." #. #. * Create the "background" layer to hold the image... @@ -1313,7 +1273,7 @@ #: ../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:833 +#: ../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 @@ -1344,7 +1304,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -1362,99 +1322,80 @@ msgstr "RLE-кодирование" #: ../plug-ins/common/AlienMap2.c:145 -#, fuzzy msgid "_Modify red channel" -msgstr "Изменить канал красный/тон" +msgstr "Изменить красный канал" #: ../plug-ins/common/AlienMap2.c:145 -#, fuzzy msgid "_Modify hue channel" -msgstr "Изменить канал красный/тон" +msgstr "Изменить канал тона" #: ../plug-ins/common/AlienMap2.c:146 -#, fuzzy msgid "Mo_dify green channel" -msgstr "Изменить канал красный/тон" +msgstr "Изменить зеленый канал" #: ../plug-ins/common/AlienMap2.c:146 -#, fuzzy msgid "Mo_dify saturation channel" -msgstr "Изменить канал зеленый/насыщенность" +msgstr "Изменить канал насыщенности" #: ../plug-ins/common/AlienMap2.c:147 -#, fuzzy msgid "Mod_ify blue channel" -msgstr "Изменить канал красный/тон" +msgstr "Изменить синий канал" #: ../plug-ins/common/AlienMap2.c:147 -#, fuzzy msgid "Mod_ify luminosity channel" -msgstr "Изменить канал синий/яркость" +msgstr "Изменить канал яркости" #: ../plug-ins/common/AlienMap2.c:152 -#, fuzzy msgid "Red _frequency:" -msgstr "R/H-частота:" +msgstr "Частота красного:" #: ../plug-ins/common/AlienMap2.c:152 -#, fuzzy msgid "Hue _frequency:" -msgstr "R/H-частота:" +msgstr "Частота тона:" #: ../plug-ins/common/AlienMap2.c:153 -#, fuzzy msgid "Green fr_equency:" -msgstr "G/S-частота:" +msgstr "Частота зеленого:" #: ../plug-ins/common/AlienMap2.c:153 -#, fuzzy msgid "Saturation fr_equency:" -msgstr "Насыщенность:" +msgstr "Частота насыщенности:" #: ../plug-ins/common/AlienMap2.c:154 -#, fuzzy msgid "Blue freq_uency:" -msgstr "B/L-частота:" +msgstr "Частота синего:" #: ../plug-ins/common/AlienMap2.c:154 -#, fuzzy msgid "Luminosity freq_uency:" -msgstr "Порог яркости:" +msgstr "Частота яркости:" #: ../plug-ins/common/AlienMap2.c:156 -#, fuzzy msgid "Red _phaseshift:" -msgstr "R/H-фазовый сдвиг:" +msgstr "Фазовый сдвиг красного:" #: ../plug-ins/common/AlienMap2.c:156 -#, fuzzy msgid "Hue _phaseshift:" -msgstr "R/H-фазовый сдвиг:" +msgstr "Фазовый сдвиг тона:" #: ../plug-ins/common/AlienMap2.c:157 -#, fuzzy msgid "Green ph_aseshift:" -msgstr "G/S-фазовый сдвиг:" +msgstr "Фазовый сдвиг зеленого:" #: ../plug-ins/common/AlienMap2.c:157 -#, fuzzy msgid "Saturation ph_aseshift:" -msgstr "Насыщенность:" +msgstr "Фазовый сдвиг насыщенн.:" #: ../plug-ins/common/AlienMap2.c:158 -#, fuzzy msgid "Blue pha_seshift:" -msgstr "B/L-фазовый сдвиг:" +msgstr "Фазовый сдвиг синего:" #: ../plug-ins/common/AlienMap2.c:158 -#, fuzzy msgid "Luminosity pha_seshift:" -msgstr "Порог яркости:" +msgstr "Фазовый сдвиг яркости:" #: ../plug-ins/common/AlienMap2.c:193 -#, fuzzy msgid "Alien Map _2..." -msgstr "Чужое отображение 2" +msgstr "Чужое отображение 2..." #: ../plug-ins/common/AlienMap2.c:325 msgid "AlienMap2: Transforming..." @@ -1467,12 +1408,12 @@ #: ../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 "" +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 "" +msgstr "Угол фазового сдвига, от 0 до 360" #. Propagate Mode #: ../plug-ins/common/AlienMap2.c:512 ../plug-ins/common/hot.c:588 @@ -1481,18 +1422,16 @@ msgstr "Режим" #: ../plug-ins/common/AlienMap2.c:516 -#, fuzzy msgid "_RGB color model" msgstr "Цветовая модель RGB" #: ../plug-ins/common/AlienMap2.c:517 -#, fuzzy msgid "_HSL color model" msgstr "Цветовая модель HSL" #: ../plug-ins/common/CEL.c:112 ../plug-ins/common/CEL.c:130 msgid "KISS CEL" -msgstr "" +msgstr "KISS CEL" #: ../plug-ins/common/CEL.c:191 msgid "Load KISS Palette" @@ -1505,7 +1444,7 @@ #: ../plug-ins/common/CEL.c:438 #, c-format msgid "Unsupported bit depth (%d)!" -msgstr "Неподдерживаемое число цветов (%d)!" +msgstr "Неподдерживаемая глубина цвета (%d)!" #: ../plug-ins/common/CML_explorer.c:131 msgid "Keep image's values" @@ -1720,9 +1659,8 @@ msgstr "(Нет)" #: ../plug-ins/common/CML_explorer.c:470 -#, fuzzy msgid "CML _Explorer..." -msgstr "CML_исследователь: выполнение..." +msgstr "CML_исследователь..." #: ../plug-ins/common/CML_explorer.c:760 msgid "CML_explorer: evoluting..." @@ -1730,20 +1668,17 @@ #: ../plug-ins/common/CML_explorer.c:1186 msgid "Coupled-Map-Lattice Explorer" -msgstr "Coupled-Map-Lattice Explorer" +msgstr "Исследователь Coupled-Map-Lattice" #: ../plug-ins/common/CML_explorer.c:1225 -#, fuzzy msgid "New seed" msgstr "Новое зерно" #: ../plug-ins/common/CML_explorer.c:1236 -#, fuzzy msgid "Fix seed" msgstr "Фикс. зерно" #: ../plug-ins/common/CML_explorer.c:1247 -#, fuzzy msgid "Random seed" msgstr "Случайное зерно" @@ -1762,27 +1697,23 @@ #: ../plug-ins/common/CML_explorer.c:1301 msgid "_Advanced" -msgstr "Дополнительные" +msgstr "Дополнительно" #: ../plug-ins/common/CML_explorer.c:1316 -#, fuzzy msgid "Channel Independent Parameters" -msgstr "Параметры независимые от канала" +msgstr "Независимые от канала параметры" #: ../plug-ins/common/CML_explorer.c:1338 -#, fuzzy msgid "Initial value:" msgstr "Начальное значение:" #: ../plug-ins/common/CML_explorer.c:1344 -#, fuzzy msgid "Zoom scale:" msgstr "Масштаб:" #: ../plug-ins/common/CML_explorer.c:1353 -#, fuzzy msgid "Start offset:" -msgstr "Начало смещения:" +msgstr "Начальное смещения:" #: ../plug-ins/common/CML_explorer.c:1362 msgid "Seed of Random (only for \"From Seed\" Modes)" @@ -1793,7 +1724,6 @@ msgstr "Зерно:" #: ../plug-ins/common/CML_explorer.c:1386 -#, fuzzy msgid "Switch to \"From seed\" with the last seed" msgstr "Переключиться в \"из зерна\" с последним зерном" @@ -1804,10 +1734,9 @@ "(this is the reason why image on drawable is different from preview), and " "(2) all mutation rates equal to zero." msgstr "" -"\"Фиксированное зерно\" псевдоним для меня.\n" "Одинаковые зерна производят одинаковые изображения, если (1) ширина " "изображений одинакова (по этой причине изображение и его предпросмотр " -"различаются) и (2) скорости всех мутаций равны 0." +"различаются) и (2) значения всех изменений равны 0." #: ../plug-ins/common/CML_explorer.c:1406 msgid "O_thers" @@ -1818,18 +1747,15 @@ msgstr "Скопировать настройки" #: ../plug-ins/common/CML_explorer.c:1440 -#, fuzzy msgid "Source channel:" msgstr "Исходный канал:" #: ../plug-ins/common/CML_explorer.c:1455 #: ../plug-ins/common/CML_explorer.c:1503 -#, fuzzy msgid "Destination channel:" msgstr "Канал назначения:" #: ../plug-ins/common/CML_explorer.c:1459 -#, fuzzy msgid "Copy parameters" msgstr "Скопировать параметры" @@ -1838,7 +1764,6 @@ msgstr "Выборочная загрузка настроек" #: ../plug-ins/common/CML_explorer.c:1488 -#, fuzzy msgid "Source channel in file:" msgstr "Исходный канал в файл:" @@ -1847,7 +1772,6 @@ msgstr "Разн. парам." #: ../plug-ins/common/CML_explorer.c:1558 -#, fuzzy msgid "Function type:" msgstr "Тип функции:" @@ -1856,73 +1780,60 @@ msgstr "Сборка:" #: ../plug-ins/common/CML_explorer.c:1588 -#, fuzzy msgid "Misc arrange:" msgstr "Порядок:" #: ../plug-ins/common/CML_explorer.c:1592 -#, fuzzy msgid "Use cyclic range" msgstr "Использовать циклический диапазон" #: ../plug-ins/common/CML_explorer.c:1602 -#, fuzzy msgid "Mod. rate:" msgstr "Частота модификации:" #: ../plug-ins/common/CML_explorer.c:1611 -#, fuzzy msgid "Env. sensitivity:" -msgstr "Чуствительность окружения:" +msgstr "Чуств. окружения:" #: ../plug-ins/common/CML_explorer.c:1620 -#, fuzzy msgid "Diffusion dist.:" -msgstr "Расстояние диффузии" +msgstr "Расст. диффузии" #: ../plug-ins/common/CML_explorer.c:1629 -#, fuzzy msgid "# of subranges:" msgstr "Число поддиапазонов:" #: ../plug-ins/common/CML_explorer.c:1638 -#, fuzzy msgid "P(ower factor):" -msgstr "П(оказатель степени):" +msgstr "p(степень):" #: ../plug-ins/common/CML_explorer.c:1647 msgid "Parameter k:" msgstr "Параметр \"k\":" #: ../plug-ins/common/CML_explorer.c:1656 -#, fuzzy msgid "Range low:" msgstr "Нижний диапазон:" #: ../plug-ins/common/CML_explorer.c:1665 -#, fuzzy msgid "Range high:" msgstr "Верхний диапазон:" #: ../plug-ins/common/CML_explorer.c:1677 -#, fuzzy msgid "Plot a graph of the settings" msgstr "Вывести график настроек" #: ../plug-ins/common/CML_explorer.c:1722 -#, fuzzy msgid "Ch. sensitivity:" -msgstr "Чувствительность канала:" +msgstr "Чувств. канала:" #: ../plug-ins/common/CML_explorer.c:1732 -#, fuzzy msgid "Mutation rate:" -msgstr "Скорость мутаций:" +msgstr "Коэфф. изменений:" #: ../plug-ins/common/CML_explorer.c:1742 -#, fuzzy msgid "Mutation dist.:" -msgstr "Расстояние изменений" +msgstr "Расст. изменений:" #: ../plug-ins/common/CML_explorer.c:1819 msgid "Graph of the current settings" @@ -1930,7 +1841,7 @@ #: ../plug-ins/common/CML_explorer.c:1889 msgid "Warning: the source and the destination are the same channel." -msgstr "Внимание: источник и назначение в одном канале." +msgstr "Внимание: источник и пункт назначения находятся в одном канале." #: ../plug-ins/common/CML_explorer.c:1948 msgid "Save Parameters to" @@ -1938,7 +1849,7 @@ #: ../plug-ins/common/CML_explorer.c:2056 #: ../plug-ins/common/channel_mixer.c:1052 -#, fuzzy, c-format +#, c-format msgid "Parameters were saved to '%s'" msgstr "" "Параметры были сохранены в\n" @@ -1946,7 +1857,7 @@ #: ../plug-ins/common/CML_explorer.c:2077 msgid "CML Explorer: Overwrite File?" -msgstr "" +msgstr "CML Исследователь: переписать файл?" #: ../plug-ins/common/CML_explorer.c:2091 #: ../plug-ins/common/channel_mixer.c:1083 @@ -1982,7 +1893,8 @@ msgid "Warning: '%s' is a parameter file for newer CML_explorer than me." msgstr "" "Внимание: \"%s\"\n" -"это файл параметров для более новой версии CML_explorer'а чем выполняющаяся." +"это файл параметров для более новой версии CML Исследователья, чем " +"выполняющаяся." #: ../plug-ins/common/CML_explorer.c:2311 msgid "Error: failed to load parameters" @@ -1990,7 +1902,7 @@ #: ../plug-ins/common/aa.c:94 msgid "ASCII art" -msgstr "" +msgstr "ASCII" #. Create the actual window. #: ../plug-ins/common/aa.c:345 @@ -1998,14 +1910,12 @@ msgstr "Сохранить как текст" #: ../plug-ins/common/aa.c:360 -#, fuzzy msgid "_Format:" -msgstr "Шрифт:" +msgstr "Формат:" #: ../plug-ins/common/align_layers.c:135 -#, fuzzy msgid "Align _Visible Layers..." -msgstr "Выровнять видимые слои" +msgstr "Выровнять видимые слои..." #: ../plug-ins/common/align_layers.c:173 msgid "There are not enough layers to align." @@ -2017,7 +1927,7 @@ #: ../plug-ins/common/align_layers.c:417 ../plug-ins/common/align_layers.c:448 msgid "Collect" -msgstr "Собрать" +msgstr "Собрать по основанию" #: ../plug-ins/common/align_layers.c:418 msgid "Fill (left to right)" @@ -2034,12 +1944,10 @@ msgstr "Выровнять по сетке" #: ../plug-ins/common/align_layers.c:429 -#, fuzzy msgid "_Horizontal style:" msgstr "Горизонтальный стиль:" #: ../plug-ins/common/align_layers.c:433 -#, fuzzy msgid "Left edge" msgstr "Левый край" @@ -2049,14 +1957,12 @@ msgstr "Центр" #: ../plug-ins/common/align_layers.c:435 -#, fuzzy msgid "Right edge" msgstr "Правый край" #: ../plug-ins/common/align_layers.c:444 -#, fuzzy msgid "Ho_rizontal base:" -msgstr "Горизонтальное основание:" +msgstr "Горизонт. основание:" #: ../plug-ins/common/align_layers.c:449 msgid "Fill (top to bottom)" @@ -2067,52 +1973,42 @@ msgstr "Заполнить (снизу вверх)" #: ../plug-ins/common/align_layers.c:460 -#, fuzzy msgid "_Vertical style:" msgstr "Вертикальный стиль:" #: ../plug-ins/common/align_layers.c:463 -#, fuzzy msgid "Top edge" msgstr "Верхний край" #: ../plug-ins/common/align_layers.c:465 -#, fuzzy msgid "Bottom edge" msgstr "Нижний край" #: ../plug-ins/common/align_layers.c:474 -#, fuzzy msgid "Ver_tical base:" -msgstr "Вертикальное основание:" +msgstr "Верт. основание:" #: ../plug-ins/common/align_layers.c:478 -#, fuzzy msgid "_Grid size:" msgstr "Размер сетки:" #: ../plug-ins/common/align_layers.c:487 -#, fuzzy msgid "_Ignore the bottom layer even if visible" msgstr "Игнорировать нижний слой даже если он видим" #: ../plug-ins/common/align_layers.c:497 -#, fuzzy msgid "_Use the (invisible) bottom layer as the base" msgstr "Использовать (невидимый) нижний слой как основание" #: ../plug-ins/common/animationplay.c:181 -#, fuzzy msgid "_Playback..." -msgstr "Воспроизведение:" +msgstr "Воспроизведение..." #: ../plug-ins/common/animationplay.c:413 -#, fuzzy msgid "Animation Playback:" -msgstr "Воспроизведение фильма: " +msgstr "Воспроизведение: " #: ../plug-ins/common/animationplay.c:431 -#, fuzzy msgid "Playback:" msgstr "Воспроизведение:" @@ -2135,30 +2031,27 @@ #: ../plug-ins/common/animoptimize.c:140 msgid "Optimize (for _GIF)" -msgstr "" +msgstr "Опримизация (_GIF)" #: ../plug-ins/common/animoptimize.c:158 -#, fuzzy msgid "_Optimize (Difference)" -msgstr "/Фильтры/Анимация/Оптимизация (разн.)" +msgstr "Оптимизация (разн.)" #: ../plug-ins/common/animoptimize.c:175 -#, fuzzy msgid "_UnOptimize" -msgstr "Оптимизировать" +msgstr "РазОптимизация" #: ../plug-ins/common/animoptimize.c:198 -#, fuzzy msgid "_Remove Backdrop" -msgstr "Удалить" +msgstr "Удалить фон" #: ../plug-ins/common/animoptimize.c:214 msgid "_Find Backdrop" -msgstr "" +msgstr "Найти фон" #: ../plug-ins/common/animoptimize.c:429 msgid "UnOptimizing Animation..." -msgstr "РазОптимизация фильма..." +msgstr "РазОптимизация..." #: ../plug-ins/common/animoptimize.c:432 msgid "Removing Animation Background..." @@ -2170,64 +2063,55 @@ #: ../plug-ins/common/animoptimize.c:439 msgid "Optimizing Animation..." -msgstr "Оптимизация фильма..." +msgstr "Оптимизация..." #: ../plug-ins/common/apply_lens.c:112 -#, fuzzy msgid "Apply _Lens..." -msgstr "Применяется линза..." +msgstr "Линза..." #: ../plug-ins/common/apply_lens.c:179 msgid "Applying lens..." -msgstr "Применяется линза..." +msgstr "Линза..." #: ../plug-ins/common/apply_lens.c:391 msgid "Lens Effect" msgstr "Эффект линзы" #: ../plug-ins/common/apply_lens.c:417 -#, fuzzy msgid "_Keep original surroundings" msgstr "Сохранять оригинальное окружение" #: ../plug-ins/common/apply_lens.c:432 -#, fuzzy msgid "_Set surroundings to index 0" -msgstr "Устанавливать окружение в индекс 0" +msgstr "Установить окружение в индекс 0" #: ../plug-ins/common/apply_lens.c:433 -#, fuzzy msgid "_Set surroundings to background color" msgstr "Устанавливать окружение в цвет фона" #: ../plug-ins/common/apply_lens.c:448 -#, fuzzy msgid "_Make surroundings transparent" -msgstr "Делать окружение прозрачным" +msgstr "Сделать окружение прозрачным" #: ../plug-ins/common/apply_lens.c:465 -#, fuzzy msgid "_Lens refraction index:" -msgstr "Коэффициент преломления линзы:" +msgstr "Коэффициент преломления:" #: ../plug-ins/common/autocrop.c:85 -#, fuzzy msgid "_Autocrop Image" -msgstr "Все изображение" +msgstr "Автокадр изображения" #: ../plug-ins/common/autocrop.c:99 -#, fuzzy msgid "_Autocrop Layer" -msgstr "Слой загиба" +msgstr "Автокадр слоя" #: ../plug-ins/common/autocrop.c:146 msgid "Cropping..." msgstr "Кадрирование..." #: ../plug-ins/common/autostretch_hsv.c:80 -#, fuzzy msgid "Stretch _HSV" -msgstr "Растянуть" +msgstr "Растянуть HSV" #: ../plug-ins/common/autostretch_hsv.c:116 msgid "Auto-Stretching HSV..." @@ -2235,12 +2119,11 @@ #: ../plug-ins/common/autostretch_hsv.c:192 msgid "autostretch_hsv: cmap was NULL! Quitting...\n" -msgstr "" +msgstr "autostretch_hsv: cmap равна нулю! Выход...\n" #: ../plug-ins/common/blinds.c:124 -#, fuzzy msgid "_Blinds..." -msgstr "Жалюзи" +msgstr "Жалюзи..." #: ../plug-ins/common/blinds.c:191 msgid "Adding Blinds..." @@ -2253,7 +2136,7 @@ #. Orientation toggle box #: ../plug-ins/common/blinds.c:255 ../plug-ins/common/ripple.c:535 msgid "Orientation" -msgstr "Ориентация" +msgstr "Расположение" #: ../plug-ins/common/blinds.c:259 ../plug-ins/common/ripple.c:539 #: ../plug-ins/common/tileit.c:418 ../plug-ins/pagecurl/pagecurl.c:530 @@ -2275,12 +2158,10 @@ msgstr "Замещение:" #: ../plug-ins/common/blinds.c:315 -#, fuzzy msgid "_Number of segments:" -msgstr "Число сегментов:" +msgstr "Кол-во сегментов:" #: ../plug-ins/common/blur.c:147 -#, fuzzy msgid "_Blur" msgstr "Размывание" @@ -2289,9 +2170,8 @@ msgstr "Размывание..." #: ../plug-ins/common/borderaverage.c:101 -#, fuzzy msgid "_Border Average..." -msgstr "Поиск среднего значения цвета..." +msgstr "Средний цвет рамки..." #: ../plug-ins/common/borderaverage.c:168 msgid "Border Average..." @@ -2310,14 +2190,12 @@ msgstr "Толщина:" #: ../plug-ins/common/borderaverage.c:413 -#, fuzzy msgid "_Bucket size:" -msgstr "Количество цветов:" +msgstr "Кол-во цветов:" #: ../plug-ins/common/bumpmap.c:343 -#, fuzzy msgid "_Bump Map..." -msgstr "Карта рельефа" +msgstr "Рельеф..." #: ../plug-ins/common/bumpmap.c:492 msgid "Bump-mapping..." @@ -2328,30 +2206,25 @@ msgstr "Рельеф" #: ../plug-ins/common/bumpmap.c:895 -#, fuzzy msgid "_Bump map:" -msgstr "Карта рельефа:" +msgstr "Рельеф из:" #: ../plug-ins/common/bumpmap.c:907 -#, fuzzy msgid "_Map type:" -msgstr "Тип карты" +msgstr "Тип:" #. Compensate darkening #: ../plug-ins/common/bumpmap.c:912 -#, fuzzy msgid "Co_mpensate for darkening" msgstr "Компенсировать затемнение" #. Invert bumpmap #: ../plug-ins/common/bumpmap.c:926 -#, fuzzy msgid "I_nvert bumpmap" msgstr "Инвертировать рельеф" #. Tile bumpmap #: ../plug-ins/common/bumpmap.c:940 -#, fuzzy msgid "_Tile bumpmap" msgstr "Повторяющийся рельеф" @@ -2363,8 +2236,7 @@ msgid "_Elevation:" msgstr "Возвышение:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 -#, fuzzy +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "Смещение по X:" @@ -2373,9 +2245,10 @@ "The offset can be adjusted by dragging the preview using the middle mouse " "button." msgstr "" +"Смещение можно установить перемещая изображение предпросмотра средней " +"кнопкой мыши." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 -#, fuzzy +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "Смещение по Y:" @@ -2388,9 +2261,8 @@ msgstr "Освещение:" #: ../plug-ins/common/c_astretch.c:78 -#, fuzzy msgid "_Stretch Contrast" -msgstr "Автоувеличение контраста..." +msgstr "Увеличить контраст" #: ../plug-ins/common/c_astretch.c:112 msgid "Auto-Stretching Contrast..." @@ -2398,12 +2270,11 @@ #: ../plug-ins/common/c_astretch.c:152 msgid "c_astretch: cmap was NULL! Quitting...\n" -msgstr "" +msgstr "c_astretch: cmap равно нулю! Выход...\n" #: ../plug-ins/common/cartoon.c:147 -#, fuzzy msgid "Ca_rtoon..." -msgstr "Заголовок" +msgstr "Ca_rtoon..." #: ../plug-ins/common/cartoon.c:229 ../plug-ins/common/dog.c:247 #: ../plug-ins/common/gauss.c:431 ../plug-ins/common/neon.c:221 @@ -2411,27 +2282,23 @@ #: ../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 "Невозможно использовать для работы с индексированными изображениями" +msgstr "Невозможно применять к индексированным изображениям" #: ../plug-ins/common/cartoon.c:808 -#, fuzzy msgid "Cartoon" -msgstr "Заголовок" +msgstr "Cartoon" #: ../plug-ins/common/cartoon.c:838 ../plug-ins/common/photocopy.c:867 -#, fuzzy msgid "_Mask radius:" -msgstr "Радиус размывания:" +msgstr "Радиус маски:" #: ../plug-ins/common/cartoon.c:852 -#, fuzzy msgid "_Percent black:" -msgstr "Процент" +msgstr "Процент черного:" #: ../plug-ins/common/ccanalyze.c:110 -#, fuzzy msgid "Colorcube A_nalysis..." -msgstr "Анализ изображения" +msgstr "Анализ изображения..." #: ../plug-ins/common/ccanalyze.c:200 msgid "Colorcube Analysis..." @@ -2464,7 +2331,7 @@ #: ../plug-ins/common/ccanalyze.c:394 #, c-format msgid "Uncompressed size: %s" -msgstr "Размер несжатого файла в байтах: %s" +msgstr "Размер несжатого файла: %s" #: ../plug-ins/common/ccanalyze.c:401 #, c-format @@ -2482,16 +2349,14 @@ msgstr "Степень сжатия (приблизит.): %d к 1" #: ../plug-ins/common/channel_mixer.c:197 -#, fuzzy msgid "Channel Mi_xer..." -msgstr "Микшер каналов" +msgstr "Микшер каналов..." #: ../plug-ins/common/channel_mixer.c:485 msgid "Channel Mixer" msgstr "Микшер каналов" #: ../plug-ins/common/channel_mixer.c:514 -#, fuzzy msgid "O_utput channel:" msgstr "Канал вывода:" @@ -2522,7 +2387,6 @@ msgstr "Монохромный" #: ../plug-ins/common/channel_mixer.c:628 -#, fuzzy msgid "Preserve _luminosity" msgstr "Сохранять яркость" @@ -2539,13 +2403,12 @@ msgstr "Сообщение микшера каналов" #: ../plug-ins/common/checkerboard.c:93 -#, fuzzy msgid "_Checkerboard..." -msgstr "Шахматная доска" +msgstr "Шахматная доска..." #: ../plug-ins/common/checkerboard.c:161 msgid "Adding Checkerboard..." -msgstr "Добавление шахматной доски..." +msgstr "Шахматная доска..." #: ../plug-ins/common/checkerboard.c:310 msgid "Checkerboard" @@ -2561,16 +2424,14 @@ msgstr "Размер:" #: ../plug-ins/common/color_enhance.c:80 -#, fuzzy msgid "_Color Enhance" -msgstr "Усиление цвета..." +msgstr "Насыщенность..." #: ../plug-ins/common/color_enhance.c:115 msgid "Color Enhance..." -msgstr "Усиление цвета..." +msgstr "Повышение насыщенности..." #: ../plug-ins/common/colorify.c:110 -#, fuzzy msgid "_Colorify..." msgstr "Окрашивание..." @@ -2588,12 +2449,11 @@ #: ../plug-ins/common/colorify.c:290 msgid "Colorify Custom Color" -msgstr "Окрашивание выбраным цветом" +msgstr "Цвет для окрашивания" #: ../plug-ins/common/colortoalpha.c:104 -#, fuzzy msgid "Color to _Alpha..." -msgstr "Цвет -> Альфа-канал" +msgstr "Цвет в альфа-канал..." #: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." @@ -2601,7 +2461,7 @@ #: ../plug-ins/common/colortoalpha.c:380 msgid "Color to Alpha" -msgstr "Цвет -> Альфа-канал" +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 @@ -2610,10 +2470,9 @@ #: ../plug-ins/common/colortoalpha.c:409 msgid "Color to Alpha Color Picker" -msgstr "Выбор цвета в альфа-канале" +msgstr "Выбор цвета для альфа-канала" #: ../plug-ins/common/colortoalpha.c:423 -#, fuzzy msgid "to alpha" msgstr "в альфа-канал" @@ -2730,9 +2589,8 @@ msgstr "Redness_cr709f:" #: ../plug-ins/common/compose.c:294 -#, fuzzy msgid "C_ompose..." -msgstr "Сборка..." +msgstr "Собрать..." #: ../plug-ins/common/compose.c:360 #, c-format @@ -2779,11 +2637,11 @@ #: ../plug-ins/common/compressor.c:153 msgid "gzip archive" -msgstr "" +msgstr "архив gzip" #: ../plug-ins/common/compressor.c:174 msgid "bzip archive" -msgstr "" +msgstr "архив bzip" #: ../plug-ins/common/compressor.c:367 msgid "No sensible extension, saving as compressed XCF." @@ -2801,11 +2659,11 @@ msgid "Re_d" msgstr "Красный" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../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:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "Синий" @@ -2827,9 +2685,8 @@ msgstr "Обрезать" #: ../plug-ins/common/convmatrix.c:195 -#, fuzzy msgid "_Convolution Matrix..." -msgstr "Матрица свёртки" +msgstr "Матрица свёртки..." #: ../plug-ins/common/convmatrix.c:229 msgid "Convolution Matrix does not work on layers smaller than 3 pixels." @@ -2875,16 +2732,14 @@ msgstr "Каналы" #: ../plug-ins/common/csource.c:108 -#, fuzzy msgid "C source code" -msgstr "Цветовой режим" +msgstr "Исходный код C" #: ../plug-ins/common/csource.c:635 msgid "Save as C-Source" -msgstr "Сохранить как исходный текст C" +msgstr "Сохранить как исходный код C" #: ../plug-ins/common/csource.c:659 -#, fuzzy msgid "_Prefixed name:" msgstr "Префиксное имя:" @@ -2895,35 +2750,30 @@ #. Use Comment #. #: ../plug-ins/common/csource.c:675 -#, fuzzy msgid "_Save comment to file" msgstr "Сохранить комментарий в файл" #. GLib types #. #: ../plug-ins/common/csource.c:687 -#, fuzzy msgid "_Use GLib types (guint8*)" msgstr "Использовать типы GLib (guint8*)" #. Use Macros #. #: ../plug-ins/common/csource.c:699 -#, fuzzy msgid "Us_e macros instead of struct" msgstr "Использовать макросы вместо структур" #. Use RLE #. #: ../plug-ins/common/csource.c:711 -#, fuzzy msgid "Use _1 byte Run-Length-Encoding" msgstr "Использовать 1-байтное RLE" #. Alpha #. #: ../plug-ins/common/csource.c:723 -#, fuzzy msgid "Sa_ve alpha channel (RGBA/RGB)" msgstr "Сохранить альфа-канал (RGBA/RGB)" @@ -2932,43 +2782,37 @@ msgstr "Непрозрачность:" #: ../plug-ins/common/cubism.c:156 -#, fuzzy msgid "_Cubism..." -msgstr "Кубизм" +msgstr "Кубизм..." #: ../plug-ins/common/cubism.c:269 msgid "Cubism" msgstr "Кубизм" #: ../plug-ins/common/cubism.c:298 -#, fuzzy msgid "_Tile size:" msgstr "Размер элемента:" #: ../plug-ins/common/cubism.c:311 -#, fuzzy msgid "T_ile saturation:" -msgstr "Насыщенность элемента:" +msgstr "Насыщ. элемента:" #: ../plug-ins/common/cubism.c:322 -#, fuzzy msgid "_Use background color" msgstr "Использовать цвет фона" #: ../plug-ins/common/cubism.c:412 -#, fuzzy msgid "Cubistic Transformation..." -msgstr "Кубистическое преобразование" +msgstr "Кубистическое преобразование..." #: ../plug-ins/common/curve_bend.c:567 -#, fuzzy 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." @@ -2993,15 +2837,13 @@ #. The preview button #: ../plug-ins/common/curve_bend.c:1297 -#, fuzzy msgid "_Preview once" -msgstr "Однократный просмотр" +msgstr "Просмотр" #. The preview toggle #: ../plug-ins/common/curve_bend.c:1306 -#, fuzzy msgid "Automatic pre_view" -msgstr "Автообновление просмотра" +msgstr "Автообновление" #. Options area, bottom of column #. the vertical box and its toggle buttons @@ -3029,7 +2871,6 @@ #. The work_on_copy toggle #: ../plug-ins/common/curve_bend.c:1368 -#, fuzzy msgid "Work on cop_y" msgstr "Работать с копией" @@ -3065,7 +2906,7 @@ #. The Copy button #: ../plug-ins/common/curve_bend.c:1441 msgid "_Copy" -msgstr "Скопировать" +msgstr "Копировать" #: ../plug-ins/common/curve_bend.c:1446 msgid "Copy the active curve to the other border" @@ -3074,7 +2915,7 @@ #. The CopyInv button #: ../plug-ins/common/curve_bend.c:1453 msgid "_Mirror" -msgstr "Отражение" +msgstr "Отразить" #: ../plug-ins/common/curve_bend.c:1458 msgid "Mirror the active curve to the other border" @@ -3083,11 +2924,11 @@ #. The Swap button #: ../plug-ins/common/curve_bend.c:1466 msgid "S_wap" -msgstr "Перестановка" +msgstr "Поменять" #: ../plug-ins/common/curve_bend.c:1471 msgid "Swap the two curves" -msgstr "Переставить две кривые" +msgstr "Поменять местами кривые" #: ../plug-ins/common/curve_bend.c:1483 msgid "Reset the active curve" @@ -3249,13 +3090,12 @@ msgstr "redness_cr709f" #: ../plug-ins/common/decompose.c:245 -#, fuzzy msgid "_Decompose..." -msgstr "Разобрать" +msgstr "Разобрать..." #: ../plug-ins/common/decompose.c:330 msgid "Decomposing..." -msgstr "Разборка..." +msgstr "Разбираем..." #: ../plug-ins/common/decompose.c:1199 msgid "Decompose" @@ -3263,17 +3103,14 @@ #. parameter settings #: ../plug-ins/common/decompose.c:1215 -#, fuzzy msgid "Extract Channels" -msgstr "Извлечь каналы:" +msgstr "Извлечь каналы" #: ../plug-ins/common/decompose.c:1243 -#, fuzzy msgid "Decompose to _layers" msgstr "Разобрать на слои" #: ../plug-ins/common/deinterlace.c:99 -#, fuzzy msgid "_Deinterlace..." msgstr "Убрать черезстрочность..." @@ -3286,19 +3123,16 @@ msgstr "Убрать черезстрочность" #: ../plug-ins/common/deinterlace.c:349 -#, fuzzy msgid "Keep o_dd fields" msgstr "Сохранить нечетные поля" #: ../plug-ins/common/deinterlace.c:350 -#, fuzzy msgid "Keep _even fields" msgstr "Сохранить четные поля" #: ../plug-ins/common/depthmerge.c:192 -#, fuzzy msgid "_Depth Merge..." -msgstr "Объединение глубин" +msgstr "Объединение глубин..." #: ../plug-ins/common/depthmerge.c:382 msgid "Depth-merging..." @@ -3313,7 +3147,6 @@ msgstr "Источник 1:" #: ../plug-ins/common/depthmerge.c:691 ../plug-ins/common/depthmerge.c:721 -#, fuzzy msgid "Depth map:" msgstr "Карта глубин:" @@ -3322,22 +3155,18 @@ msgstr "Источник 2:" #: ../plug-ins/common/depthmerge.c:738 -#, fuzzy msgid "O_verlap:" msgstr "Перекрывание:" #: ../plug-ins/common/depthmerge.c:758 -#, fuzzy msgid "Sc_ale 1:" -msgstr "Масштаб 1:" +msgstr "Глубина 1:" #: ../plug-ins/common/depthmerge.c:768 -#, fuzzy msgid "Sca_le 2:" -msgstr "Масштаб 2:" +msgstr "Глубина 2:" #: ../plug-ins/common/despeckle.c:177 -#, fuzzy msgid "Des_peckle..." msgstr "Удаление пятен" @@ -3355,9 +3184,8 @@ #. parameter settings #: ../plug-ins/common/despeckle.c:454 -#, fuzzy msgid "Median" -msgstr "Радианы" +msgstr "Среднее" #: ../plug-ins/common/despeckle.c:460 msgid "_Adaptive" @@ -3375,30 +3203,27 @@ msgstr "Радиус:" #: ../plug-ins/common/despeckle.c:510 -#, fuzzy msgid "_Black level:" msgstr "Уровень черного:" #: ../plug-ins/common/despeckle.c:526 -#, fuzzy msgid "_White level:" msgstr "Уровень белого:" #: ../plug-ins/common/destripe.c:113 -#, fuzzy msgid "Des_tripe..." -msgstr "Убирание штрихов..." +msgstr "Удаление штрихов..." #: ../plug-ins/common/destripe.c:276 msgid "Destriping..." -msgstr "Убирание штрихов..." +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:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3406,17 +3231,16 @@ msgstr "Ширина:" #: ../plug-ins/common/destripe.c:480 -#, fuzzy msgid "Create _histogram" msgstr "Создать гистограмму" #: ../plug-ins/common/dicom.c:134 msgid "DICOM image" -msgstr "" +msgstr "Формат DICOM" #: ../plug-ins/common/dicom.c:159 msgid "Digital Imaging and Communications in Medicine image" -msgstr "" +msgstr "Digital Imaging and Communications in Medicine image" #: ../plug-ins/common/dicom.c:318 #, c-format @@ -3426,9 +3250,8 @@ "не является файлом DICOM" #: ../plug-ins/common/diffraction.c:177 -#, fuzzy msgid "_Diffraction Patterns..." -msgstr "Дифракционные шаблоны" +msgstr "Дифракционные шаблоны..." #: ../plug-ins/common/diffraction.c:334 msgid "Creating diffraction pattern..." @@ -3439,17 +3262,14 @@ msgstr "Дифракционные шаблоны" #: ../plug-ins/common/diffraction.c:524 -#, fuzzy msgid "Frequencies" msgstr "Частоты" #: ../plug-ins/common/diffraction.c:562 -#, fuzzy msgid "Contours" -msgstr "Контуры" +msgstr "Структура" #: ../plug-ins/common/diffraction.c:600 -#, fuzzy msgid "Sharp edges" msgstr "Резкие края" @@ -3467,12 +3287,10 @@ msgstr "Поляризация:" #: ../plug-ins/common/diffraction.c:638 -#, fuzzy msgid "Other options" msgstr "Другие параметры" #: ../plug-ins/common/displace.c:154 -#, fuzzy msgid "_Displace..." msgstr "Замещение..." @@ -3486,13 +3304,11 @@ #. X options #: ../plug-ins/common/displace.c:297 -#, fuzzy msgid "_X displacement:" msgstr "Замещение по Х:" #. Y Options #: ../plug-ins/common/displace.c:344 -#, fuzzy msgid "_Y displacement:" msgstr "Замещение по Y:" @@ -3506,49 +3322,42 @@ msgstr "Размыть" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "Черный" #: ../plug-ins/common/dog.c:139 -#, fuzzy msgid "Difference of Gaussians..." -msgstr "Выборочное Гауссово размывание" +msgstr "Разница по Гауссу..." #: ../plug-ins/common/dog.c:227 ../plug-ins/common/dog.c:274 -#, fuzzy msgid "DoG Edge Detect" msgstr "Выделение края" #: ../plug-ins/common/dog.c:295 -#, fuzzy msgid "Smoothing parameters" -msgstr "Скопировать параметры" +msgstr "Параметры сглаживания" #: ../plug-ins/common/dog.c:309 -#, fuzzy msgid "_Radius 1:" -msgstr "Радиус:" +msgstr "Радиус 1:" #: ../plug-ins/common/dog.c:313 -#, fuzzy msgid "R_adius 2:" -msgstr "Радиус:" +msgstr "Радиус 2:" #: ../plug-ins/common/dog.c:325 ../plug-ins/common/normalize.c:88 -#, fuzzy msgid "_Normalize" -msgstr "Нормальное" +msgstr "Упорядочить" #: ../plug-ins/common/dog.c:336 ../plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "Инвертировать" #: ../plug-ins/common/edge.c:162 -#, fuzzy msgid "_Edge..." -msgstr "Края" +msgstr "Край..." #: ../plug-ins/common/edge.c:234 msgid "Edge Detection..." @@ -3559,12 +3368,10 @@ msgstr "Выделение края" #: ../plug-ins/common/edge.c:675 -#, fuzzy msgid "Sobel" msgstr "Собел" #: ../plug-ins/common/edge.c:676 -#, fuzzy msgid "Prewitt" msgstr "По _Превитту" @@ -3573,34 +3380,28 @@ msgstr "Градиент" #: ../plug-ins/common/edge.c:678 -#, fuzzy msgid "Roberts" msgstr "По _Робертсу" #: ../plug-ins/common/edge.c:679 -#, fuzzy msgid "Differential" msgstr "Дифференциальный" #: ../plug-ins/common/edge.c:680 -#, fuzzy msgid "Laplace" msgstr "Лаплас" #: ../plug-ins/common/edge.c:689 -#, fuzzy msgid "_Algorithm:" -msgstr "Алгоритм" +msgstr "Алгоритм:" #: ../plug-ins/common/edge.c:697 -#, fuzzy msgid "A_mount:" msgstr "Величина:" #: ../plug-ins/common/emboss.c:133 -#, fuzzy msgid "_Emboss..." -msgstr "Барельеф" +msgstr "Барельеф..." #: ../plug-ins/common/emboss.c:376 ../plug-ins/common/emboss.c:439 msgid "Emboss" @@ -3623,21 +3424,20 @@ msgstr "Возвышение:" #: ../plug-ins/common/engrave.c:108 -#, fuzzy msgid "En_grave..." -msgstr "Гравирование..." +msgstr "Гравировка..." #: ../plug-ins/common/engrave.c:182 msgid "Engraving..." -msgstr "Гравирование..." +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:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -3645,12 +3445,10 @@ msgstr "Высота:" #: ../plug-ins/common/engrave.c:249 -#, fuzzy msgid "_Limit line width" -msgstr "Ограничение ширины линии" +msgstr "Ограничить ширину линии" #: ../plug-ins/common/exchange.c:133 -#, fuzzy msgid "_Color Exchange..." msgstr "Замена цвета..." @@ -3664,9 +3462,10 @@ msgstr "Замена цвета" #: ../plug-ins/common/exchange.c:308 -#, fuzzy msgid "Middle-click inside preview to pick \"From Color\"" -msgstr "Просмотр: щелкните внутри для выбора \"С цвета\"" +msgstr "" +"Нажмите среднюю кнопку внутри для\n" +"выбора цвета для замены" #: ../plug-ins/common/exchange.c:346 msgid "To Color" @@ -3685,29 +3484,24 @@ msgstr "Замена цвета: с цвета" #: ../plug-ins/common/exchange.c:423 -#, fuzzy msgid "R_ed threshold:" msgstr "Порог красного:" #: ../plug-ins/common/exchange.c:484 -#, fuzzy msgid "G_reen threshold:" msgstr "Порог зеленого:" #: ../plug-ins/common/exchange.c:545 -#, fuzzy msgid "B_lue threshold:" msgstr "Порог синего:" #: ../plug-ins/common/exchange.c:573 -#, fuzzy msgid "Lock _thresholds" msgstr "Зафиксировать пороги" #: ../plug-ins/common/film.c:240 -#, fuzzy msgid "_Film..." -msgstr "Фотопленка" +msgstr "Фотопленка..." #: ../plug-ins/common/film.c:325 msgid "Composing Images..." @@ -3716,7 +3510,7 @@ #: ../plug-ins/common/film.c:438 ../plug-ins/common/guillotine.c:183 #: ../plug-ins/helpbrowser/dialog.c:525 msgid "Untitled" -msgstr "Неозаглавленное" +msgstr "Безымянное" #. ** Get a RGB copy of the source region ** #: ../plug-ins/common/film.c:700 @@ -3725,7 +3519,7 @@ #: ../plug-ins/common/film.c:1079 msgid "Available Images:" -msgstr "Доступные изображения:" +msgstr "Изображения:" #: ../plug-ins/common/film.c:1080 msgid "On Film:" @@ -3744,7 +3538,6 @@ #. Keep maximum image height #: ../plug-ins/common/film.c:1185 -#, fuzzy msgid "_Fit height to images" msgstr "Растягивать по высоте изображения" @@ -3764,7 +3557,6 @@ msgstr "Нумерация" #: ../plug-ins/common/film.c:1253 -#, fuzzy msgid "Start _index:" msgstr "Считаем от:" @@ -3778,12 +3570,10 @@ msgstr "Выбрать цвет цифр" #: ../plug-ins/common/film.c:1287 -#, fuzzy msgid "At _bottom" msgstr "Снизу" #: ../plug-ins/common/film.c:1288 -#, fuzzy msgid "At _top" msgstr "Сверху" @@ -3798,47 +3588,39 @@ #: ../plug-ins/common/film.c:1332 msgid "Ad_vanced" -msgstr "Дополнительные" +msgstr "Дополнительно" #: ../plug-ins/common/film.c:1351 -#, fuzzy msgid "Image _height:" -msgstr "Высота изображения:" +msgstr "Высота кадров:" #: ../plug-ins/common/film.c:1362 -#, fuzzy msgid "Image spac_ing:" -msgstr "Интервал между изображениями:" +msgstr "Интервал между кадрами:" #: ../plug-ins/common/film.c:1373 -#, fuzzy msgid "_Hole offset:" msgstr "Смещение отверстий:" #: ../plug-ins/common/film.c:1384 -#, fuzzy msgid "Ho_le width:" msgstr "Ширина отверстий:" #: ../plug-ins/common/film.c:1395 -#, fuzzy msgid "Hol_e height:" msgstr "Высота отверстий:" #: ../plug-ins/common/film.c:1406 -#, fuzzy msgid "Hole sp_acing:" -msgstr "Интервал между отверстиями:" +msgstr "Между отверстиями:" #: ../plug-ins/common/film.c:1417 -#, fuzzy msgid "_Number height:" msgstr "Высота чисел:" #: ../plug-ins/common/flarefx.c:196 -#, fuzzy msgid "_FlareFX..." -msgstr "Отблеск" +msgstr "Отблеск..." #: ../plug-ins/common/flarefx.c:271 msgid "Render Flare..." @@ -3849,12 +3631,10 @@ msgstr "Отблеск" #: ../plug-ins/common/flarefx.c:741 -#, fuzzy msgid "Center of Flare Effect" msgstr "Центр отблеска" #: ../plug-ins/common/flarefx.c:777 -#, fuzzy msgid "_Show cursor" msgstr "Показать курсор" @@ -3879,9 +3659,8 @@ msgstr "Текущее:" #: ../plug-ins/common/fp.c:321 -#, fuzzy msgid "_Filter Pack..." -msgstr "Применяется набор фильтров..." +msgstr "Набор фильтров..." #: ../plug-ins/common/fp.c:361 msgid "Convert the image to RGB first!" @@ -3905,7 +3684,7 @@ #: ../plug-ins/common/fp.c:629 msgid "Affected Range" -msgstr "Обрабатываемый диапазон" +msgstr "Диапазон" #: ../plug-ins/common/fp.c:633 msgid "Sha_dows" @@ -3917,7 +3696,7 @@ #: ../plug-ins/common/fp.c:635 msgid "H_ighlights" -msgstr "Блики:" +msgstr "Блики" #: ../plug-ins/common/fp.c:649 msgid "Windows" @@ -3929,31 +3708,31 @@ #: ../plug-ins/common/fp.c:667 msgid "A_dvanced" -msgstr "Дополнительные" +msgstr "Дополнительно" #: ../plug-ins/common/fp.c:687 msgid "Value Variations" -msgstr "Изменения значений" +msgstr "Изменение яркости" #: ../plug-ins/common/fp.c:731 msgid "Saturation Variations" -msgstr "Изменения насыщенности" +msgstr "Изменение насыщенности" #: ../plug-ins/common/fp.c:783 msgid "Select Pixels by" -msgstr "Выбрать точки растра по" +msgstr "Выбрать точки по" #: ../plug-ins/common/fp.c:788 msgid "H_ue" -msgstr "Тон:" +msgstr "Тону" #: ../plug-ins/common/fp.c:789 msgid "Satu_ration" -msgstr "Насыщенность" +msgstr "Насыщенности" #: ../plug-ins/common/fp.c:790 msgid "V_alue" -msgstr "Яркость" +msgstr "Яркости" #: ../plug-ins/common/fp.c:816 msgid "Show" @@ -3989,7 +3768,7 @@ #: ../plug-ins/common/fp.c:1259 msgid "Advanced Filter Pack Options" -msgstr "Дополнительные параметры пакета фильтров" +msgstr "Дополнительные параметры" #: ../plug-ins/common/fp.c:1270 msgid "Smoothness of Aliasing" @@ -4004,9 +3783,8 @@ msgstr "Размер просмотра" #: ../plug-ins/common/fractaltrace.c:126 -#, fuzzy msgid "_Fractal Trace..." -msgstr "Фрактальный след" +msgstr "Фрактальный след..." #: ../plug-ins/common/fractaltrace.c:466 ../plug-ins/common/fractaltrace.c:693 msgid "Fractal Trace" @@ -4046,19 +3824,16 @@ msgstr "Y2:" #: ../plug-ins/common/gauss.c:157 -#, fuzzy msgid "_Gaussian Blur..." -msgstr "RLE Гауссово размывание" +msgstr "Гауссово размывание..." #: ../plug-ins/common/gauss.c:413 -#, fuzzy msgid "Gaussian Blur..." -msgstr "RLE Гауссово размывание" +msgstr "Гауссово размывание..." #: ../plug-ins/common/gauss.c:461 -#, fuzzy msgid "Gaussian Blur" -msgstr "IIR Гауссово размывание" +msgstr "Гауссово размывание" #. parameter settings #: ../plug-ins/common/gauss.c:484 @@ -4076,22 +3851,20 @@ msgstr "Вертикально:" #: ../plug-ins/common/gauss.c:525 -#, fuzzy msgid "Blur Method" -msgstr "Тип размывания" +msgstr "Размывание:" #: ../plug-ins/common/gauss.c:529 msgid "_IIR" -msgstr "" +msgstr "_IIR" #: ../plug-ins/common/gauss.c:530 -#, fuzzy msgid "_RLE" msgstr "RLE" #: ../plug-ins/common/gbr.c:130 ../plug-ins/common/gbr.c:151 msgid "GIMP brush" -msgstr "" +msgstr "Кисть GIMP" #: ../plug-ins/common/gbr.c:369 ../plug-ins/common/gbr.c:381 msgid "Unsupported brush format" @@ -4116,7 +3889,7 @@ #: ../plug-ins/common/gbr.c:578 msgid "GIMP brushes are either GRAYSCALE or RGBA" -msgstr "Кисти GIMP либо в оттенках серого или RGBA" +msgstr "Кисти GIMP - или в оттенках серого, или RGBA" #: ../plug-ins/common/gbr.c:663 msgid "Save as Brush" @@ -4125,7 +3898,7 @@ #. attach labels #: ../plug-ins/common/gbr.c:683 ../plug-ins/common/grid.c:769 msgid "Spacing:" -msgstr "Интервал: " +msgstr "Интервал:" #: ../plug-ins/common/gbr.c:694 ../plug-ins/common/gih.c:904 #: ../plug-ins/common/pat.c:521 ../plug-ins/gimpressionist/presets.c:642 @@ -4134,45 +3907,43 @@ #: ../plug-ins/common/gee.c:94 msgid "Gee-_Slime" -msgstr "" +msgstr "Скольжение" #: ../plug-ins/common/gee.c:152 msgid "GEE-SLIME" msgstr "Скольжение" #: ../plug-ins/common/gee.c:158 ../plug-ins/common/gee_zoom.c:191 -#, fuzzy msgid "Thank you for choosing GIMP" -msgstr "** Спасибо за то что выбрали Gimp **" +msgstr "Спасибо за то что выбрали Gimp" #: ../plug-ins/common/gee.c:166 msgid "" "A less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / " "1998-2000" msgstr "" -"Менее устарелое создание Adam D. Moss /adam@gimp.org / adam@foxbox.org/ 1998-" -"2000" +"Наименее устаревшее творение Adam D. Moss /adam@gimp.org / adam@foxbox.org/ " +"1998-2000" #: ../plug-ins/common/gee_zoom.c:124 -#, fuzzy msgid "Gee-_Zoom" msgstr "Масштаб" #: ../plug-ins/common/gee_zoom.c:185 msgid "GEE-ZOOM" -msgstr "" +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 "" -"Устаревшее создание Adam D. Moss /adam@gimp.org / adam@foxbox.org/ 1998-2000" +"Морально устаревшее творение Adam D. Moss /adam@gimp.org / adam@foxbox.org/ " +"1998-2000" #: ../plug-ins/common/gif.c:402 ../plug-ins/common/gifload.c:143 -#, fuzzy msgid "GIF image" -msgstr "Изображение" +msgstr "Формат GIF" #: ../plug-ins/common/gif.c:687 msgid "Couldn't simply reduce colors further. Saving as opaque." @@ -4226,9 +3997,8 @@ "the image borders, or cancel this save." msgstr "" "Изображение, которое вы пытаетесь сохранить как GIF\n" -"содержит слои выходящие за действительные границы\n" -"изображения. Боюсь, что это недопустимо в GIF.\n" -"\n" +"содержит слои выходящие за границы изображения. Это\n" +"недопустимо в GIF.\n" "\n" "Вы можете или обрезать все слои по границе\n" "изображения, или отменить это сохранение." @@ -4243,51 +4013,43 @@ msgstr "Параметры GIF" #: ../plug-ins/common/gif.c:1275 -#, fuzzy msgid "_Interlace" msgstr "Черезстрочность" #: ../plug-ins/common/gif.c:1291 -#, fuzzy msgid "_GIF comment:" msgstr "Комментарий GIF:" #. additional animated gif parameter settings #: ../plug-ins/common/gif.c:1348 msgid "Animated GIF Options" -msgstr "Параметры анимированного GIF" +msgstr "Параметры анимации" #: ../plug-ins/common/gif.c:1354 -#, fuzzy msgid "_Loop forever" msgstr "Бесконечный цикл" #: ../plug-ins/common/gif.c:1367 -#, fuzzy msgid "_Delay between frames where unspecified:" -msgstr "Если задержка между кадрами не указана, она равна:" +msgstr "Задержка между кадрами (если не указана) равна:" #: ../plug-ins/common/gif.c:1380 ../plug-ins/common/mng.c:1527 msgid "milliseconds" msgstr "миллисекунд" #: ../plug-ins/common/gif.c:1390 -#, fuzzy msgid "Frame disposal where unspecified: " msgstr "Расположение кадра если не указано: " #: ../plug-ins/common/gif.c:1394 -#, fuzzy msgid "I don't care" msgstr "Не важно" #: ../plug-ins/common/gif.c:1396 -#, fuzzy msgid "Cumulative layers (combine)" msgstr "Наложение слоев (об'единение)" #: ../plug-ins/common/gif.c:1398 -#, fuzzy msgid "One frame per layer (replace)" msgstr "Один кадр на слой (замена)" @@ -4302,11 +4064,11 @@ #: ../plug-ins/common/gifload.c:314 msgid "This is not a GIF file" -msgstr "не является файлом GIF" +msgstr "Это не файл формата GIF" #: ../plug-ins/common/gifload.c:352 msgid "Non-square pixels. Image might look squashed." -msgstr "Неквадратные пикселы. Изображение, вероятно, искажено." +msgstr "Неровные пикселы. Изображение, вероятно, искажено." #: ../plug-ins/common/gifload.c:866 #, c-format @@ -4335,7 +4097,7 @@ #: ../plug-ins/common/gih.c:205 ../plug-ins/common/gih.c:226 msgid "GIMP brush (animated)" -msgstr "" +msgstr "Анимированная кисть GIMP" #: ../plug-ins/common/gih.c:319 #, c-format @@ -4356,10 +4118,9 @@ #: ../plug-ins/common/gih.c:867 msgid "Save as Brush Pipe" -msgstr "Сохранить как последовательность кистей" +msgstr "Сохранить анимированную кисть" #: ../plug-ins/common/gih.c:890 -#, fuzzy msgid "Spacing (percent):" msgstr "Интервал (проценты):" @@ -4368,23 +4129,20 @@ msgstr "Точки растра" #: ../plug-ins/common/gih.c:962 -#, fuzzy msgid "Cell size:" msgstr "Размер ячейки:" #: ../plug-ins/common/gih.c:974 -#, fuzzy msgid "Number of cells:" msgstr "Число ячеек:" #: ../plug-ins/common/gih.c:999 msgid " Rows of " -msgstr " строк " +msgstr " строк в" #: ../plug-ins/common/gih.c:1011 -#, fuzzy msgid " Columns on each layer" -msgstr " столбцов на каждом слое" +msgstr " столбцах на каждом слое" #: ../plug-ins/common/gih.c:1015 msgid " (Width Mismatch!) " @@ -4404,12 +4162,11 @@ #: ../plug-ins/common/gih.c:1110 msgid "Ranks:" -msgstr "Количество кадров:" +msgstr "Кадры:" #: ../plug-ins/common/glasstile.c:129 -#, fuzzy msgid "_Glass Tile..." -msgstr "Создание стеклянных блоков..." +msgstr "Стеклянные блоки..." #: ../plug-ins/common/glasstile.c:209 msgid "Glass Tile..." @@ -4420,17 +4177,14 @@ msgstr "Стеклянные блоки" #: ../plug-ins/common/glasstile.c:281 -#, fuzzy msgid "Tile _width:" msgstr "Ширина блока:" #: ../plug-ins/common/glasstile.c:295 ../plug-ins/common/mosaic.c:621 -#, fuzzy msgid "Tile _height:" msgstr "Высота блока:" #: ../plug-ins/common/gqbist.c:415 -#, fuzzy msgid "_Qbist..." msgstr "Q-бист..." @@ -4439,32 +4193,28 @@ msgstr "Q-бист..." #: ../plug-ins/common/gqbist.c:695 -#, fuzzy msgid "Load QBE file" -msgstr "Загрузка QBE-файла..." +msgstr "Загрузка файла QBE" #: ../plug-ins/common/gqbist.c:733 -#, fuzzy msgid "Save (middle transform) as QBE file" -msgstr "Сохранение (среднего преобразования) как QBE-файла..." +msgstr "Сохранение файла QBE" #: ../plug-ins/common/gqbist.c:781 msgid "G-Qbist" msgstr "G-Q-бист" #: ../plug-ins/common/gradmap.c:86 -#, fuzzy msgid "_Gradient Map" -msgstr "Градиентное отображение..." +msgstr "Градиент" #: ../plug-ins/common/gradmap.c:124 msgid "Gradient Map..." -msgstr "Градиентное отображение..." +msgstr "Градиент..." #: ../plug-ins/common/grid.c:149 -#, fuzzy msgid "_Grid..." -msgstr "Направляющие..." +msgstr "Сетка..." #: ../plug-ins/common/grid.c:242 msgid "Drawing Grid..." @@ -4515,13 +4265,12 @@ msgstr "Цвет пересечений" #: ../plug-ins/common/gtm.c:154 -#, fuzzy msgid "HTML table" -msgstr "Мрамор" +msgstr "Таблица HTML" #: ../plug-ins/common/gtm.c:399 msgid "GIMP Table Magic" -msgstr "Табличная магия GIMP" +msgstr "Магические таблицы GIMP" #: ../plug-ins/common/gtm.c:419 msgid "Warning" @@ -4534,16 +4283,15 @@ "crash your browser." msgstr "" "Вы почти создали огромный\n" -"HTML-файл, который наверняка\n" -"обрушит ваш навигатор." +"файл HTML, который наверняка\n" +"обрушит ваш браузер." #. HTML Page Options #: ../plug-ins/common/gtm.c:439 msgid "HTML Page Options" -msgstr "Параметры HTML-страницы" +msgstr "Параметры страницы HTML" #: ../plug-ins/common/gtm.c:446 -#, fuzzy msgid "_Generate full HTML document" msgstr "Создать полный HTML-документ" @@ -4552,8 +4300,8 @@ "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 @@ -4561,7 +4309,6 @@ msgstr "Параметры создания таблицы" #: ../plug-ins/common/gtm.c:473 -#, fuzzy msgid "_Use cellspan" msgstr "Использовать Cellspan" @@ -4570,12 +4317,13 @@ "If checked GTM will replace any rectangular sections of identically colored " "blocks with one large cell with ROWSPAN and COLSPAN values." msgstr "" -"Если отмечено, GTM будет заменять любые прямоугольные секции одинаково " -"окрашенных блоков на одну большую ячейку со значениями ROWSPAN и COLSPAN." +"При включении этой опции GTM будет заменять любые прямоугольные секции " +"одинаково окрашенных блоков на одну большую ячейку со значениями ROWSPAN и " +"COLSPAN." #: ../plug-ins/common/gtm.c:488 msgid "Co_mpress TD tags" -msgstr "Сжимать TD-тэги" +msgstr "Сжимать тэги TD" #: ../plug-ins/common/gtm.c:494 msgid "" @@ -4583,9 +4331,9 @@ "and the cellcontent. This is only necessary for pixel level positioning " "control." msgstr "" -"Отметка в этой графе заставит GTM удалять пробелы между TD-тэгами и " -"содержимым ячейки. Это необходимо только для регулирования положения на " -"уровне точек растра." +"При включении этой опции GTM удалит пробелы между TD-тэгами и содержимым " +"ячейки. Это необходимо только для регулирования положения на уровне точек " +"растра." #: ../plug-ins/common/gtm.c:504 msgid "C_aption" @@ -4593,14 +4341,13 @@ #: ../plug-ins/common/gtm.c:510 msgid "Check if you would like to have the table captioned." -msgstr "Отметьте, если таблица должна быть озаглавлена." +msgstr "Отметьте, если у таблицы должен быть заголовок." #: ../plug-ins/common/gtm.c:525 msgid "The text for the table caption." msgstr "Текст заголовка таблицы." #: ../plug-ins/common/gtm.c:538 -#, fuzzy msgid "C_ell content:" msgstr "Содержимое ячейки:" @@ -4630,29 +4377,22 @@ msgstr "Высота для каждой ячейки таблицы. Может быть числом или процентом." #: ../plug-ins/common/gtm.c:609 -#, fuzzy msgid "Cell-_padding:" -msgstr "" -"Набивка ячеек\n" -"(cellpadding):" +msgstr "Cell-_padding:" #: ../plug-ins/common/gtm.c:613 msgid "The amount of cellpadding." msgstr "Размер заполнения ячеек." #: ../plug-ins/common/gtm.c:622 -#, fuzzy msgid "Cell-_spacing:" -msgstr "" -"Интервал ячеек\n" -"(cellspacing):" +msgstr "Cell-_spacing:" #: ../plug-ins/common/gtm.c:626 msgid "The amount of cellspacing." msgstr "Размер интервала ячеек." #: ../plug-ins/common/guillotine.c:72 -#, fuzzy msgid "_Guillotine" msgstr "Гильотина..." @@ -4662,23 +4402,21 @@ #: ../plug-ins/common/header.c:75 msgid "C source code header" -msgstr "" +msgstr "Заголовок исходного кода C" #: ../plug-ins/common/hot.c:217 -#, fuzzy msgid "_Hot..." -msgstr "\"Горячие\" цвета..." +msgstr "Яркий..." #: ../plug-ins/common/hot.c:379 msgid "Hot..." -msgstr "\"Горячие\" цвета..." +msgstr "Яркий..." #: ../plug-ins/common/hot.c:570 msgid "Hot" -msgstr "\"Горячие\" цвета" +msgstr "Яркие цвета" #: ../plug-ins/common/hot.c:600 -#, fuzzy msgid "Create _New layer" msgstr "Создать новый слой" @@ -4699,7 +4437,6 @@ msgstr "Сделать черным" #: ../plug-ins/common/illusion.c:101 -#, fuzzy msgid "_Illusion..." msgstr "Иллюзия..." @@ -4712,9 +4449,8 @@ msgstr "Иллюзия" #: ../plug-ins/common/illusion.c:423 -#, fuzzy msgid "_Divisions:" -msgstr "Деление:" +msgstr "Деления:" #: ../plug-ins/common/illusion.c:433 msgid "Mode _1" @@ -4725,7 +4461,6 @@ msgstr "Режим 2" #: ../plug-ins/common/iwarp.c:254 -#, fuzzy msgid "_IWarp..." msgstr "Искажение..." @@ -4739,9 +4474,8 @@ msgstr "Искажается кадр N %d ..." #: ../plug-ins/common/iwarp.c:806 -#, fuzzy msgid "Ping pong" -msgstr "Пинг-Понг" +msgstr "Пинг-понг" #: ../plug-ins/common/iwarp.c:941 msgid "A_nimate" @@ -4757,7 +4491,7 @@ #: ../plug-ins/common/iwarp.c:978 msgid "_Ping Pong" -msgstr "Пинг-Понг" +msgstr "Пинг-понг" #: ../plug-ins/common/iwarp.c:991 msgid "_Animate" @@ -4792,26 +4526,22 @@ msgstr "Вихрь CW" #: ../plug-ins/common/iwarp.c:1059 -#, fuzzy msgid "_Deform radius:" -msgstr "Радиус деформации:" +msgstr "Радиус деформ.:" #: ../plug-ins/common/iwarp.c:1069 -#, fuzzy msgid "D_eform amount:" -msgstr "Степень деформации:" +msgstr "Степень деформ.:" #: ../plug-ins/common/iwarp.c:1078 msgid "_Bilinear" msgstr "Билинейный" #: ../plug-ins/common/iwarp.c:1092 -#, fuzzy msgid "Adaptive s_upersample" msgstr "Адаптивная супервыборка" #: ../plug-ins/common/iwarp.c:1112 -#, fuzzy msgid "Ma_x depth:" msgstr "Макс. глубина:" @@ -4822,16 +4552,15 @@ #: ../plug-ins/common/iwarp.c:1135 ../plug-ins/common/sinus.c:764 #: ../plug-ins/gflare/gflare.c:2795 msgid "_Settings" -msgstr "Установки" +msgstr "Параметры" #: ../plug-ins/common/iwarp.c:1151 msgid "IWarp" msgstr "Интерактивное искажение" #: ../plug-ins/common/jigsaw.c:364 -#, fuzzy msgid "_Jigsaw..." -msgstr "Пазл" +msgstr "Пазл..." #: ../plug-ins/common/jigsaw.c:418 msgid "Assembling Jigsaw..." @@ -4855,16 +4584,15 @@ #: ../plug-ins/common/jigsaw.c:2490 msgid "Bevel Edges" -msgstr "Закругленные края" +msgstr "Рельеф кромки" #: ../plug-ins/common/jigsaw.c:2500 -#, fuzzy msgid "_Bevel width:" -msgstr "Закругление краев:" +msgstr "Рельеф:" #: ../plug-ins/common/jigsaw.c:2504 msgid "Degree of slope of each piece's edge" -msgstr "Степень наклона кромки" +msgstr "Степень объемности кромки" #: ../plug-ins/common/jigsaw.c:2517 msgid "H_ighlight:" @@ -4877,7 +4605,7 @@ #. frame for primitive radio buttons #: ../plug-ins/common/jigsaw.c:2538 msgid "Jigsaw Style" -msgstr "Стиль головоломки" +msgstr "Стиль пазла" #: ../plug-ins/common/jigsaw.c:2542 msgid "_Square" @@ -4889,16 +4617,15 @@ #: ../plug-ins/common/jigsaw.c:2547 msgid "Each piece has straight sides" -msgstr "Каждый кусочек имеет прямые стороны" +msgstr "Элементы с прямыми сторонами" #: ../plug-ins/common/jigsaw.c:2548 msgid "Each piece has curved sides" -msgstr "Каждый кусочек имеет искривленные стороны" +msgstr "Элементы с искривленными сторонами" #: ../plug-ins/common/jpeg.c:384 ../plug-ins/common/jpeg.c:422 -#, fuzzy msgid "JPEG image" -msgstr "Просмотр JPEG" +msgstr "Формат JPEG" #: ../plug-ins/common/jpeg.c:528 msgid "Export Preview" @@ -4906,19 +4633,18 @@ #: ../plug-ins/common/jpeg.c:892 msgid "EXIF data will be ignored." -msgstr "" +msgstr "Данные EXIF не будут прочитаны." #: ../plug-ins/common/jpeg.c:1106 msgid "JPEG preview" msgstr "Просмотр JPEG" #: ../plug-ins/common/jpeg.c:1368 -#, fuzzy, c-format +#, c-format msgid "File size: %02.01f kB" -msgstr "Размер: %ld байт (%02.01f Кб)" +msgstr "Размер: %02.01f Кб" #: ../plug-ins/common/jpeg.c:1861 ../plug-ins/common/jpeg.c:1961 -#, fuzzy msgid "File size: unknown" msgstr "Размер: неизвестен" @@ -4927,37 +4653,30 @@ msgstr "Сохранить как JPEG" #: ../plug-ins/common/jpeg.c:1947 -#, fuzzy msgid "_Quality:" msgstr "Качество:" #: ../plug-ins/common/jpeg.c:1951 -#, fuzzy msgid "JPEG quality parameter" -msgstr "Заполнить с параметром k" +msgstr "Качество изображения JPEG" #: ../plug-ins/common/jpeg.c:1970 -#, fuzzy msgid "Show _Preview in image window" msgstr "Просмотр в окне изображения" #: ../plug-ins/common/jpeg.c:1983 -#, fuzzy msgid "_Advanced Options" -msgstr "Дополнительные параметры пакета фильтров" +msgstr "Дополнительно" #: ../plug-ins/common/jpeg.c:2011 -#, fuzzy msgid "_Smoothing:" msgstr "Сглаживание:" #: ../plug-ins/common/jpeg.c:2024 -#, fuzzy msgid "Frequency (rows):" -msgstr "Перезапуск частоты (строки):" +msgstr "Частота (строки):" #: ../plug-ins/common/jpeg.c:2038 -#, fuzzy msgid "Use restart markers" msgstr "Перезапустить маркеры" @@ -4971,16 +4690,15 @@ #: ../plug-ins/common/jpeg.c:2086 msgid "Force baseline JPEG" -msgstr "" +msgstr "Создать типичный JPEG" #: ../plug-ins/common/jpeg.c:2102 msgid "Save EXIF data" -msgstr "Сохранить данные EXIF" +msgstr "Сохранить EXIF" #: ../plug-ins/common/jpeg.c:2119 -#, fuzzy msgid "Save thumbnail" -msgstr "Сохранить файл" +msgstr "Сохранить предпросмотр" #. Subsampling #: ../plug-ins/common/jpeg.c:2136 @@ -4990,7 +4708,7 @@ #. DCT method #: ../plug-ins/common/jpeg.c:2163 msgid "DCT method:" -msgstr "" +msgstr "Метод DCT:" #: ../plug-ins/common/jpeg.c:2169 msgid "Fast Integer" @@ -5009,9 +4727,9 @@ msgstr "Комментарий" #: ../plug-ins/common/jpeg.c:2338 -#, fuzzy, c-format +#, c-format msgid "Opening thumbnail for '%s'..." -msgstr "Открывается \"%s\"..." +msgstr "Открывается предпросмотр для '%s'..." #: ../plug-ins/common/laplace.c:95 msgid "_Laplace" @@ -5035,7 +4753,7 @@ #: ../plug-ins/common/lic.c:664 msgid "Effect Channel" -msgstr "Канал эффекта" +msgstr "Канал" #: ../plug-ins/common/lic.c:671 msgid "_Brightness" @@ -5043,7 +4761,7 @@ #: ../plug-ins/common/lic.c:677 msgid "Effect Operator" -msgstr "Оператор эффекта" +msgstr "Оператор" #: ../plug-ins/common/lic.c:682 msgid "_Derivative" @@ -5058,56 +4776,46 @@ msgstr "Свертка" #: ../plug-ins/common/lic.c:694 -#, fuzzy msgid "_With white noise" msgstr "С белым шумом" #: ../plug-ins/common/lic.c:695 -#, fuzzy msgid "W_ith source image" msgstr "С исходным изображением" #: ../plug-ins/common/lic.c:714 msgid "_Effect Image:" -msgstr "Изображение эффекта:" +msgstr "Изображение:" #: ../plug-ins/common/lic.c:725 -#, fuzzy msgid "_Filter length:" msgstr "Длина фильтра:" #: ../plug-ins/common/lic.c:734 -#, fuzzy msgid "_Noise magnitude:" msgstr "Величина шума:" #: ../plug-ins/common/lic.c:743 -#, fuzzy msgid "In_tegration steps:" -msgstr "Интеграционные шаги:" +msgstr "Интеграц. шаги:" #: ../plug-ins/common/lic.c:752 -#, fuzzy msgid "_Minimum value:" -msgstr "Минимальное значение:" +msgstr "Мин. значение:" #: ../plug-ins/common/lic.c:761 -#, fuzzy msgid "M_aximum value:" -msgstr "Максимальное значение:" +msgstr "Макс. значение:" #: ../plug-ins/common/lic.c:812 -#, fuzzy msgid "_Van Gogh (LIC)..." msgstr "Ван Гог (LIC)..." #: ../plug-ins/common/mail.c:253 -#, fuzzy msgid "_Mail Image..." -msgstr "/Файл/Отправить почтой..." +msgstr "Отправить почтой..." #: ../plug-ins/common/mail.c:474 -#, fuzzy msgid "Send as Mail" msgstr "Послать по почте" @@ -5134,7 +4842,7 @@ #. Encapsulation label #: ../plug-ins/common/mail.c:580 msgid "Encapsulation:" -msgstr "Инкапсуляция:" +msgstr "Кодирование:" #: ../plug-ins/common/mail.c:592 msgid "_Uuencode" @@ -5166,16 +4874,15 @@ #: ../plug-ins/common/mapcolor.c:154 msgid "Adjust _FG-BG" -msgstr "" +msgstr "Настроить Пер.план/Фон" #: ../plug-ins/common/mapcolor.c:172 -#, fuzzy 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 "Невозможно применять к индексированным изображениям." +msgstr "Фильтр неприменим к индексированным изображениям." #: ../plug-ins/common/mapcolor.c:240 msgid "Adjusting Foreground/Background..." @@ -5203,7 +4910,6 @@ msgstr "В:" #: ../plug-ins/common/max_rgb.c:106 -#, fuzzy msgid "_Max RGB..." msgstr "Макс. RGB..." @@ -5220,17 +4926,14 @@ msgstr "Макс. RGB" #: ../plug-ins/common/max_rgb.c:295 -#, fuzzy msgid "_Hold the maximal channels" msgstr "Сохранять максимальные каналы" #: ../plug-ins/common/max_rgb.c:298 -#, fuzzy msgid "Ho_ld the minimal channels" msgstr "Сохранять минимальные каналы" #: ../plug-ins/common/mblur.c:176 -#, fuzzy msgid "_Motion Blur..." msgstr "Размывание движением..." @@ -5262,12 +4965,11 @@ msgid "Blur Parameters" msgstr "Параметры размывания" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "Угол:" #: ../plug-ins/common/mblur.c:969 -#, fuzzy msgid "Blur Center" msgstr "Центр" @@ -5292,22 +4994,18 @@ msgstr "Черезстрочность" #: ../plug-ins/common/mng.c:1345 -#, fuzzy msgid "Save background color" msgstr "Сохранить цвет фона" #: ../plug-ins/common/mng.c:1356 -#, fuzzy msgid "Save gamma" msgstr "Сохранить гамму" #: ../plug-ins/common/mng.c:1366 -#, fuzzy msgid "Save resolution" msgstr "Сохранить разрешение" #: ../plug-ins/common/mng.c:1377 -#, fuzzy msgid "Save creation time" msgstr "Сохранить время создания" @@ -5320,14 +5018,12 @@ msgstr "JNG" #: ../plug-ins/common/mng.c:1400 -#, fuzzy msgid "PNG + delta PNG" -msgstr "PNG + Delta PNG" +msgstr "PNG + delta PNG" #: ../plug-ins/common/mng.c:1401 -#, fuzzy msgid "JNG + delta PNG" -msgstr "JNG + Delta PNG" +msgstr "JNG + delta PNG" #: ../plug-ins/common/mng.c:1402 msgid "All PNG" @@ -5338,7 +5034,6 @@ msgstr "Все JNG" #: ../plug-ins/common/mng.c:1415 -#, fuzzy msgid "Default chunks type:" msgstr "Тип:" @@ -5348,15 +5043,13 @@ #: ../plug-ins/common/mng.c:1419 msgid "Replace" -msgstr "Заместить" +msgstr "Заменить" #: ../plug-ins/common/mng.c:1430 -#, fuzzy msgid "Default frame disposal:" msgstr "Кадры:" #: ../plug-ins/common/mng.c:1442 -#, fuzzy msgid "PNG compression level:" msgstr "Степень сжатия PNG:" @@ -5365,17 +5058,14 @@ msgstr "Выберите большую степень сжатия для получения файла меньшего размера" #: ../plug-ins/common/mng.c:1464 -#, fuzzy msgid "JPEG compression quality:" msgstr "Качество сжатия JPEG:" #: ../plug-ins/common/mng.c:1481 -#, fuzzy msgid "JPEG smoothing factor:" msgstr "Показатель сглаживания JPEG:" #: ../plug-ins/common/mng.c:1491 -#, fuzzy msgid "Animated MNG options" msgstr "Параметры анимированного MNG" @@ -5384,19 +5074,16 @@ msgstr "Цикл" #: ../plug-ins/common/mng.c:1511 -#, fuzzy msgid "Default frame delay:" msgstr "Задержка кадра по умолчанию:" #: ../plug-ins/common/mng.c:1589 -#, fuzzy msgid "MNG animation" -msgstr "Параметры MNG" +msgstr "Анимация MNG" #: ../plug-ins/common/mosaic.c:309 -#, fuzzy msgid "_Mosaic..." -msgstr "Мозаика" +msgstr "Мозаика..." #. progress bar for gradient finding #: ../plug-ins/common/mosaic.c:435 @@ -5413,29 +5100,25 @@ msgstr "Мозаика" #: ../plug-ins/common/mosaic.c:544 -#, fuzzy msgid "Co_lor averaging" msgstr "Усреднение цвета" #: ../plug-ins/common/mosaic.c:554 -#, fuzzy msgid "Allo_w tile splitting" -msgstr "Позволить расщепление кусочков" +msgstr "Расщепление блоков" #: ../plug-ins/common/mosaic.c:564 -#, fuzzy msgid "_Pitted surfaces" msgstr "Поверхности с выемками" #: ../plug-ins/common/mosaic.c:574 -#, fuzzy msgid "_FG/BG lighting" -msgstr "Осветление переднего плана/фона" +msgstr "Осветление пер.плана/фона" #. tiling primitive #: ../plug-ins/common/mosaic.c:588 msgid "Tiling Primitives" -msgstr "Элементы мозайки" +msgstr "Элементы мозаики" #: ../plug-ins/common/mosaic.c:592 msgid "_Squares" @@ -5446,9 +5129,8 @@ msgstr "Шестиугольники" #: ../plug-ins/common/mosaic.c:594 -#, fuzzy msgid "Oc_tagons & squares" -msgstr "Восьмиугольники и квадраты" +msgstr "Восьмиугольники/квадраты" #. parameter settings #: ../plug-ins/common/mosaic.c:603 @@ -5456,180 +5138,165 @@ msgstr "Настройки" #: ../plug-ins/common/mosaic.c:612 -#, fuzzy msgid "T_ile size:" -msgstr "Размер элемента:" +msgstr "Размер блоков:" #: ../plug-ins/common/mosaic.c:630 -#, fuzzy msgid "Til_e spacing:" -msgstr "Интервал между элементами:" +msgstr "Между блоками:" #: ../plug-ins/common/mosaic.c:639 -#, fuzzy msgid "Tile _neatness:" -msgstr "Чистота элементов:" +msgstr "Четкость формы:" #: ../plug-ins/common/mosaic.c:649 -#, fuzzy msgid "Light _direction:" -msgstr "Направление освещения:" +msgstr "Направление света:" #: ../plug-ins/common/mosaic.c:658 -#, fuzzy msgid "Color _variation:" -msgstr "Цветовые вариации:" +msgstr "Вариации цвета:" #: ../plug-ins/common/mosaic.c:2392 msgid "Unable to add additional point.\n" msgstr "Не удалось добавить дополнительную точку.\n" #: ../plug-ins/common/neon.c:135 -#, fuzzy msgid "_Neon..." -msgstr "Видео/RGB..." +msgstr "Неон..." #: ../plug-ins/common/neon.c:207 -#, fuzzy msgid "Neon..." -msgstr "Газетная бумага..." +msgstr "Неон..." #: ../plug-ins/common/neon.c:697 -#, fuzzy msgid "Neon Detection" -msgstr "Выделение края" +msgstr "Выделение края - неон" #: ../plug-ins/common/neon.c:742 ../plug-ins/common/unsharp.c:678 msgid "_Amount:" msgstr "Величина:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Круг" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Линия" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Ромб" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" -msgstr "PS квадрат (Евклидова точка)" +msgstr "PS квадрат" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS ромб" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "Серый" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "Красный" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "Голубой" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Пурпурный" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "Желтый" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Интенсивность" -#: ../plug-ins/common/newsprint.c:537 -#, fuzzy +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "Газетная бумага..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Газетная бумага..." -#: ../plug-ins/common/newsprint.c:1042 -#, fuzzy +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" -msgstr "Капельная функция:" +msgstr "Форма точек:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" -msgstr "Газета" +msgstr "Газетная бумага" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Разрешение" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "SPI на входе:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "LPI на выходе:" -#: ../plug-ins/common/newsprint.c:1289 -#, fuzzy +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "Размер ячейки:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Экран" -#: ../plug-ins/common/newsprint.c:1321 -#, fuzzy +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" -msgstr "Черная составляющая (%)" +msgstr "Процент черного" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Разделить на:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "CMYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "Интенсивность" -#: ../plug-ins/common/newsprint.c:1406 -#, fuzzy +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "Фиксировать каналы" -#: ../plug-ins/common/newsprint.c:1419 -#, fuzzy +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" -msgstr "Исходные настройки" +msgstr "По умолчанию" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Сглаживание" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "Перекрывание:" #: ../plug-ins/common/nlfilt.c:126 -#, fuzzy msgid "_NL Filter..." msgstr "Нелинейный фильтр..." @@ -5646,17 +5313,14 @@ msgstr "Фильтр" #: ../plug-ins/common/nlfilt.c:1042 -#, fuzzy msgid "_Alpha trimmed mean" msgstr "Альфа-усеченное среднее" #: ../plug-ins/common/nlfilt.c:1044 -#, fuzzy msgid "Op_timal estimation" msgstr "Оптимальный расчет" #: ../plug-ins/common/nlfilt.c:1046 -#, fuzzy msgid "_Edge enhancement" msgstr "Усиление края" @@ -5665,28 +5329,24 @@ msgstr "Альфа:" #: ../plug-ins/common/noisify.c:157 -#, fuzzy msgid "_Scatter RGB..." -msgstr "Рассеивание HSV..." +msgstr "Рассеивание RGB..." #: ../plug-ins/common/noisify.c:285 msgid "Adding Noise..." msgstr "Добавление шума..." #: ../plug-ins/common/noisify.c:451 -#, fuzzy msgid "Scatter RGB" -msgstr "Рассеивание HSV" +msgstr "Рассеивание RGB" #: ../plug-ins/common/noisify.c:477 -#, fuzzy msgid "Co_rrelated noise" -msgstr "Создать эллипс" +msgstr "Корреляция шума" #: ../plug-ins/common/noisify.c:492 -#, fuzzy msgid "_Independent RGB" -msgstr "Независимое" +msgstr "Независимое RGB" #: ../plug-ins/common/noisify.c:516 ../plug-ins/common/noisify.c:520 msgid "_Gray:" @@ -5706,9 +5366,8 @@ msgstr "Нормализация..." #: ../plug-ins/common/nova.c:179 -#, fuzzy msgid "Su_perNova..." -msgstr "Сверхновая" +msgstr "Сверхновая..." #: ../plug-ins/common/nova.c:262 msgid "Rendering SuperNova..." @@ -5727,7 +5386,6 @@ msgstr "Лучи:" #: ../plug-ins/common/nova.c:386 -#, fuzzy msgid "R_andom hue:" msgstr "Случайный тон:" @@ -5736,12 +5394,10 @@ msgstr "Центр Сверхновой" #: ../plug-ins/common/nova.c:472 -#, fuzzy msgid "S_how cursor" msgstr "Показать курсор" #: ../plug-ins/common/oilify.c:111 -#, fuzzy msgid "Oili_fy..." msgstr "Масляная краска" @@ -5754,12 +5410,10 @@ msgstr "Масляная краска" #: ../plug-ins/common/oilify.c:504 -#, fuzzy msgid "_Mask size:" msgstr "Размер маски:" #: ../plug-ins/common/oilify.c:515 -#, fuzzy msgid "_Use intensity algorithm" msgstr "Использовать алгоритм яркости" @@ -5769,7 +5423,7 @@ #: ../plug-ins/common/papertile.c:254 msgid "Division" -msgstr "Сегменты" +msgstr "Разделение" #: ../plug-ins/common/papertile.c:293 msgid "Fractional Pixels" @@ -5793,43 +5447,39 @@ #: ../plug-ins/common/papertile.c:324 msgid "Movement" -msgstr "Движение" +msgstr "Перемещение" #: ../plug-ins/common/papertile.c:337 msgid "_Max (%):" msgstr "Макс.(%):" #: ../plug-ins/common/papertile.c:343 -#, fuzzy msgid "_Wrap around" -msgstr "Безшовное изображение" +msgstr "Без швов" #: ../plug-ins/common/papertile.c:353 msgid "Background Type" msgstr "Тип фона" #: ../plug-ins/common/papertile.c:360 -#, fuzzy msgid "I_nverted image" -msgstr "Инвертированное изображение" +msgstr "Инверт. изображение" #: ../plug-ins/common/papertile.c:362 msgid "Im_age" msgstr "Изображение" #: ../plug-ins/common/papertile.c:364 -#, fuzzy msgid "Fo_reground color" -msgstr "Цвет переднего плана" +msgstr "Передний план" #: ../plug-ins/common/papertile.c:366 -#, fuzzy msgid "Bac_kground color" msgstr "Цвет фона" #: ../plug-ins/common/papertile.c:368 msgid "S_elect here:" -msgstr "Выбрать:" +msgstr "Выбранный:" #: ../plug-ins/common/papertile.c:375 msgid "Background Color" @@ -5844,14 +5494,12 @@ msgstr "Сентябрь 31, 1999" #: ../plug-ins/common/papertile.c:816 -#, fuzzy msgid "_Paper Tile..." msgstr "Разрез бумаги..." #: ../plug-ins/common/pat.c:104 ../plug-ins/common/pat.c:126 -#, fuzzy msgid "GIMP pattern" -msgstr "Шаблон" +msgstr "Шаблон GIMP" #: ../plug-ins/common/pat.c:343 #, c-format @@ -5864,7 +5512,7 @@ #: ../plug-ins/common/pcx.c:96 ../plug-ins/common/pcx.c:115 msgid "ZSoft PCX image" -msgstr "" +msgstr "ZSoft PCX" #: ../plug-ins/common/pcx.c:314 #, c-format @@ -5885,14 +5533,12 @@ msgstr "Необычный вид файла PCX. Выход." #: ../plug-ins/common/photocopy.c:158 -#, fuzzy msgid "_Photocopy..." -msgstr "\"Горячие\" цвета..." +msgstr "Фотокопия..." #: ../plug-ins/common/photocopy.c:837 -#, fuzzy msgid "Photocopy" -msgstr "Фотография" +msgstr "Фотокопия" #: ../plug-ins/common/photocopy.c:881 ../plug-ins/common/sharpen.c:509 #: ../plug-ins/common/softglow.c:687 @@ -5900,21 +5546,18 @@ msgstr "Резкость:" #: ../plug-ins/common/photocopy.c:895 -#, fuzzy msgid "Percent _black:" -msgstr "Процент" +msgstr "Процент черного:" #: ../plug-ins/common/photocopy.c:909 -#, fuzzy msgid "Percent _white:" -msgstr "Процент" +msgstr "Процент белого:" #: ../plug-ins/common/pix.c:141 ../plug-ins/common/pix.c:158 msgid "Alias|Wavefront PIX image" -msgstr "" +msgstr "Alias|Wavefront PIX" #: ../plug-ins/common/pixelize.c:173 -#, fuzzy msgid "_Pixelize..." msgstr "Пикселизация..." @@ -5924,7 +5567,7 @@ #: ../plug-ins/common/pixelize.c:315 msgid "Pixelize" -msgstr "Пикселезовать" +msgstr "Пикселизация" #: ../plug-ins/common/pixelize.c:337 msgid "Pixel _Width:" @@ -5935,7 +5578,6 @@ msgstr "Высота точки:" #: ../plug-ins/common/plasma.c:185 -#, fuzzy msgid "_Plasma..." msgstr "Плазма..." @@ -5948,7 +5590,6 @@ msgstr "Плазма" #: ../plug-ins/common/plasma.c:334 -#, fuzzy msgid "Random _seed:" msgstr "Случайное зерно:" @@ -5959,7 +5600,7 @@ #: ../plug-ins/common/png.c:249 ../plug-ins/common/png.c:266 #: ../plug-ins/common/png.c:281 ../plug-ins/common/png.c:295 msgid "PNG image" -msgstr "" +msgstr "Формат PNG" #: ../plug-ins/common/png.c:657 #, c-format @@ -5990,56 +5631,46 @@ msgstr "Сохранить как PNG" #: ../plug-ins/common/png.c:1595 -#, fuzzy msgid "_Load defaults" -msgstr "Загрузить исходные настройки" +msgstr "Загрузить настр." #: ../plug-ins/common/png.c:1596 -#, fuzzy msgid "_Save defaults" -msgstr "Сохранить исходные настройки" +msgstr "Сохранить настр." #: ../plug-ins/common/png.c:1617 msgid "_Interlacing (Adam7)" msgstr "Черезстрочность (Adam7)" #: ../plug-ins/common/png.c:1628 -#, fuzzy msgid "Save _background color" msgstr "Сохранить цвет фона" #: ../plug-ins/common/png.c:1636 -#, fuzzy msgid "Save _gamma" msgstr "Сохранить гамму" #: ../plug-ins/common/png.c:1645 -#, fuzzy msgid "Save layer o_ffset" msgstr "Сохранить смещение слоя" #: ../plug-ins/common/png.c:1654 -#, fuzzy msgid "Save _resolution" msgstr "Сохранить разрешение" #: ../plug-ins/common/png.c:1663 -#, fuzzy msgid "Save creation _time" msgstr "Сохранить время создания" #: ../plug-ins/common/png.c:1671 -#, fuzzy msgid "Save comme_nt" msgstr "Сохранить комментарий" #: ../plug-ins/common/png.c:1686 -#, fuzzy msgid "Save color _values from transparent pixels" msgstr "Сохранить значения цвета прозрачных точек" #: ../plug-ins/common/png.c:1699 -#, fuzzy msgid "Co_mpression level:" msgstr "Степень сжатия:" @@ -6048,23 +5679,20 @@ msgstr "Невозможно загрузить параметры PNG по умолчанию" #: ../plug-ins/common/pnm.c:228 -#, fuzzy msgid "PNM Image" -msgstr "Изображение" +msgstr "Формат PNM" #: ../plug-ins/common/pnm.c:248 msgid "PNM image" -msgstr "" +msgstr "Формат PNM" #: ../plug-ins/common/pnm.c:260 -#, fuzzy msgid "PGM image" -msgstr "Просмотр JPEG" +msgstr "Формат PGM" #: ../plug-ins/common/pnm.c:272 -#, fuzzy msgid "PPM image" -msgstr "Изображение" +msgstr "Формат PPM" #: ../plug-ins/common/pnm.c:465 ../plug-ins/common/pnm.c:486 #: ../plug-ins/common/pnm.c:493 ../plug-ins/common/pnm.c:502 @@ -6106,7 +5734,6 @@ #. file save type #: ../plug-ins/common/pnm.c:959 -#, fuzzy msgid "Data formatting" msgstr "Форматирование данных" @@ -6120,7 +5747,7 @@ #: ../plug-ins/common/polar.c:170 msgid "P_olar Coords..." -msgstr "" +msgstr "Полярные коорд..." #: ../plug-ins/common/polar.c:357 msgid "Polarizing..." @@ -6131,17 +5758,14 @@ msgstr "Поляризовать" #: ../plug-ins/common/polar.c:620 -#, fuzzy msgid "Circle _depth in percent:" -msgstr "Глубина круга в процентах:" +msgstr "Глубина круга (%):" #: ../plug-ins/common/polar.c:632 -#, fuzzy msgid "Offset _angle:" msgstr "Угол смещения:" #: ../plug-ins/common/polar.c:647 -#, fuzzy msgid "_Map backwards" msgstr "Отобразить назад" @@ -6154,7 +5778,6 @@ "левой." #: ../plug-ins/common/polar.c:664 -#, fuzzy msgid "Map from _top" msgstr "Отобразить сверху" @@ -6167,7 +5790,6 @@ "верхняя - на внешнюю сторону. Если отмечено - то наоборот." #: ../plug-ins/common/polar.c:682 -#, fuzzy msgid "To _polar" msgstr "В полярное" @@ -6176,22 +5798,20 @@ "If unchecked the image will be circularly mapped onto a rectangle. If " "checked the image will be mapped onto a circle." msgstr "" -"Если неотмечено, то изображение будет отображено в прямоугольник. Если\n" +"Если не отмечено, то изображение будет отображено в прямоугольник. Если\n" "отмечено - то в круг." #: ../plug-ins/common/postscript.c:576 ../plug-ins/common/postscript.c:662 -#, fuzzy msgid "PostScript document" -msgstr "PostScript Level 2" +msgstr "Документ PostScript" #: ../plug-ins/common/postscript.c:595 ../plug-ins/common/postscript.c:677 -#, fuzzy msgid "Encapsulated PostScript image" -msgstr "Encapsulated PostScript" +msgstr "Кодированный PostScript" #: ../plug-ins/common/postscript.c:614 msgid "PDF document" -msgstr "" +msgstr "Документ PDF" #: ../plug-ins/common/postscript.c:1005 #, c-format @@ -6202,64 +5822,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Изображение с альфа-каналами невозможно сохранить как PostScript" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Ошибка при запуске ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 -#, fuzzy, c-format +#: ../plug-ins/common/postscript.c:1661 +#, c-format msgid "Error starting ghostscript: %s" -msgstr "Ошибка при запуске ghostscript (%s)" +msgstr "Ошибка при запуске ghostscript: %s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Возникла ошибка записи" +msgstr "Ошибка записи" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Загрузка PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Визуализация" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Страницы:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" -msgstr "" +msgstr "Загрузка страниц (т.е.: 1-4 или 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Ограничить размер" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Окрашивание" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "Ч/Б" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Серый" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6267,43 +5887,40 @@ msgid "Color" msgstr "Цвет" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Автоматически" -#: ../plug-ins/common/postscript.c:3015 -#, fuzzy +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Сглаживание текста" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Слабое" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Cильное" -#: ../plug-ins/common/postscript.c:3027 -#, fuzzy +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Сглаживание графики" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Сохранить как PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" -msgstr "Размер изображения" +msgstr "Размер" -#: ../plug-ins/common/postscript.c:3152 -#, fuzzy +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "Сохранить пропорции" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -6312,38 +5929,36 @@ "заданного размера без изменения пропорций." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Единица" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "Дюйм" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "Миллиметр" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Вывод" -#: ../plug-ins/common/postscript.c:3204 -#, fuzzy +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "PostScript Level 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" -msgstr "Encapsulated PostScript" +msgstr "Кодированный PostScript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Просмотр" -#: ../plug-ins/common/postscript.c:3243 -#, fuzzy +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "Размер просмотра:" @@ -6353,7 +5968,7 @@ #: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" -msgstr "" +msgstr "Изображение формата Photoshop" #: ../plug-ins/common/psd_save.c:1312 #, c-format @@ -6361,6 +5976,8 @@ "Unable to save '%s'. The psd file format does not support images that are " "more than 30000 pixels wide or tall." msgstr "" +"Невозможно сохранить '%s'. Формат PSD не поддерживает изображения, размеры " +"которых превышают 30000 точек в длину или ширину." #: ../plug-ins/common/psd_save.c:1324 #, c-format @@ -6368,10 +5985,12 @@ "Unable to save '%s'. The psd file format does not support images with " "layers that are more than 30000 pixels wide or tall." msgstr "" +"Невозможно сохранить '%s'. Формат PSD не поддерживает слои, размеры которых " +"превышают 30000 точек в длину или ширину." #: ../plug-ins/common/psp.c:362 msgid "Paint Shop Pro image" -msgstr "" +msgstr "Формат Paint Shop Pro" #: ../plug-ins/common/psp.c:402 msgid "Save as PSP" @@ -6403,21 +6022,18 @@ msgstr "Таянье 1.7" #: ../plug-ins/common/randomize.c:244 -#, fuzzy msgid "_Hurl..." -msgstr "Загибание страницы..." +msgstr "Бросок..." #: ../plug-ins/common/randomize.c:256 msgid "_Pick..." -msgstr "" +msgstr "Выбор..." #: ../plug-ins/common/randomize.c:268 -#, fuzzy msgid "_Slur..." -msgstr "Источник..." +msgstr "Таянье..." #: ../plug-ins/common/randomize.c:756 ../plug-ins/common/snoise.c:614 -#, fuzzy msgid "_Random seed:" msgstr "Случайное зерно:" @@ -6438,151 +6054,128 @@ msgstr "Число применений фильтра" #: ../plug-ins/common/raw.c:166 ../plug-ins/common/raw.c:181 -#, fuzzy msgid "Raw Image Data" -msgstr "Перезагрузить изображения" +msgstr "Raw Image Data" #: ../plug-ins/common/raw.c:915 -#, fuzzy msgid "Raw Image Loader" -msgstr "/Файл/Печать..." +msgstr "Загрузчик RAW" #: ../plug-ins/common/raw.c:943 -#, fuzzy msgid "Image" msgstr "Изображение" #: ../plug-ins/common/raw.c:955 msgid "Planar RGB" -msgstr "" +msgstr "Плоский RGB" #: ../plug-ins/common/raw.c:956 msgid "Indexed" -msgstr "" +msgstr "Индексированное" #: ../plug-ins/common/raw.c:961 -#, fuzzy msgid "Image _Type:" msgstr "Тип изображения:" #: ../plug-ins/common/raw.c:1011 -#, fuzzy msgid "Palette" -msgstr "Круговая палитра" +msgstr "Палитра" #: ../plug-ins/common/raw.c:1021 ../plug-ins/common/raw.c:1109 msgid "R, G, B (normal)" -msgstr "" +msgstr "R, G, B (обычный)" #: ../plug-ins/common/raw.c:1022 ../plug-ins/common/raw.c:1111 msgid "B, G, R, X (bmp style)" -msgstr "" +msgstr "B, G, R, X (в стиле bmp)" #: ../plug-ins/common/raw.c:1027 -#, fuzzy msgid "_Palette Type:" -msgstr "Тип RGB-шаблона" +msgstr "Тип палитры:" #: ../plug-ins/common/raw.c:1038 -#, fuzzy msgid "Off_set:" msgstr "Смещение:" #: ../plug-ins/common/raw.c:1050 -#, fuzzy msgid "Select Palette File to Load" -msgstr "Выбрать файл изображения" +msgstr "Выбрать файл плаитры" #: ../plug-ins/common/raw.c:1053 -#, fuzzy msgid "Pal_ette File:" -msgstr "Разрез бумаги" +msgstr "Файл палитры:" #: ../plug-ins/common/raw.c:1081 -#, fuzzy msgid "Raw Image Save" -msgstr "Размер изображения" +msgstr "Сохранить RAW" #: ../plug-ins/common/raw.c:1095 -#, fuzzy msgid "RGB Save Type" -msgstr "Тип RGB-шаблона" +msgstr "Тип сохранения RGB" #: ../plug-ins/common/raw.c:1099 -#, fuzzy msgid "Standard (R,G,B)" -msgstr "Стандарт" +msgstr "Стандарт (R,G,B)" #: ../plug-ins/common/raw.c:1100 msgid "Planar (RRR,GGG,BBB)" -msgstr "" +msgstr "Planar (RRR,GGG,BBB)" #: ../plug-ins/common/raw.c:1105 -#, fuzzy msgid "Indexed Palette Type" -msgstr "Тип RGB-шаблона" +msgstr "Тип инедксированной палитры" #: ../plug-ins/common/retinex.c:168 -#, fuzzy msgid "_Retinex..." -msgstr "Создание ряби..." +msgstr "_Retinex..." #: ../plug-ins/common/retinex.c:251 -#, fuzzy msgid "Retinex..." -msgstr "Вращение..." +msgstr "Retinex..." #: ../plug-ins/common/retinex.c:253 msgid "Retinex (4/4): updated..." -msgstr "" +msgstr "Retinex (4/4): обновлен..." #: ../plug-ins/common/retinex.c:290 -#, fuzzy msgid "Retinex Image Enhancement" -msgstr "Усиление края" +msgstr "Улушение алгоритмом Retinex" #: ../plug-ins/common/retinex.c:311 msgid "Level" -msgstr "" +msgstr "Уровень" #: ../plug-ins/common/retinex.c:315 -#, fuzzy msgid "_Uniform" -msgstr "Редактор единиц" +msgstr "Обычный" #: ../plug-ins/common/retinex.c:317 -#, fuzzy msgid "_Low" -msgstr "Нижнего" +msgstr "Низкий" #: ../plug-ins/common/retinex.c:319 -#, fuzzy msgid "_High" -msgstr "Высота" +msgstr "Высокий" #: ../plug-ins/common/retinex.c:344 -#, fuzzy msgid "_Scale:" msgstr "Масштаб:" #: ../plug-ins/common/retinex.c:359 -#, fuzzy msgid "_Scale division:" msgstr "Деление:" #: ../plug-ins/common/retinex.c:374 msgid "_Dynamic:" -msgstr "" +msgstr "Динамика:" #: ../plug-ins/common/retinex.c:648 -#, fuzzy msgid "Retinex: Filtering..." -msgstr "Размывание движением..." +msgstr "Reintex: фильтр..." #: ../plug-ins/common/ripple.c:138 -#, fuzzy msgid "_Ripple..." -msgstr "Создание ряби..." +msgstr "Рябь..." #: ../plug-ins/common/ripple.c:222 msgid "Rippling..." @@ -6590,12 +6183,11 @@ #: ../plug-ins/common/ripple.c:472 msgid "Ripple" -msgstr "Создать рябь" +msgstr "Рябь" #: ../plug-ins/common/ripple.c:522 -#, fuzzy msgid "_Retain tilability" -msgstr "Сохранить бесшовность" +msgstr "Бесшовность" #. Edges toggle box #: ../plug-ins/common/ripple.c:556 @@ -6642,18 +6234,16 @@ msgstr "Вращение..." #: ../plug-ins/common/sample_colorize.c:296 -#, fuzzy msgid "_Sample Colorize..." -msgstr "Окраска по образцу" +msgstr "Окраска по образцу..." #: ../plug-ins/common/sample_colorize.c:1310 msgid "Sample Colorize" msgstr "Окраска по образцу" #: ../plug-ins/common/sample_colorize.c:1315 -#, fuzzy msgid "Get sample colors" -msgstr "Получить цвета образца" +msgstr "Получить цвета" #: ../plug-ins/common/sample_colorize.c:1317 msgid "Apply" @@ -6670,31 +6260,26 @@ msgstr "Образец:" #: ../plug-ins/common/sample_colorize.c:1361 -#, fuzzy msgid "From reverse gradient" msgstr "Из обращенного градиента" #: ../plug-ins/common/sample_colorize.c:1366 -#, fuzzy msgid "From gradient" msgstr "Из градиента" #. check button #: ../plug-ins/common/sample_colorize.c:1387 #: ../plug-ins/common/sample_colorize.c:1414 -#, fuzzy msgid "Show selection" msgstr "Показать выделение" #. check button #: ../plug-ins/common/sample_colorize.c:1398 #: ../plug-ins/common/sample_colorize.c:1425 -#, fuzzy msgid "Show color" msgstr "Показать цвет" #: ../plug-ins/common/sample_colorize.c:1538 -#, fuzzy msgid "Input levels:" msgstr "Уровень на входе:" @@ -6704,25 +6289,21 @@ #. check button #: ../plug-ins/common/sample_colorize.c:1628 -#, fuzzy msgid "Hold intensity" -msgstr "Сохранить глубину цвета" +msgstr "Сохранить глубину" #. check button #: ../plug-ins/common/sample_colorize.c:1639 -#, fuzzy msgid "Original intensity" -msgstr "Исходная глубина цвета" +msgstr "Исходная глубина" #. check button #: ../plug-ins/common/sample_colorize.c:1657 -#, fuzzy msgid "Use subcolors" msgstr "Использовать субцвета" #. check button #: ../plug-ins/common/sample_colorize.c:1668 -#, fuzzy msgid "Smooth samples" msgstr "Сглаживать цвета образца" @@ -6735,7 +6316,6 @@ msgstr "Окрашивание по образцу..." #: ../plug-ins/common/scatter_hsv.c:113 -#, fuzzy msgid "S_catter HSV..." msgstr "Рассеивание HSV..." @@ -6764,9 +6344,8 @@ msgstr "Яркость:" #: ../plug-ins/common/screenshot.c:257 ../plug-ins/winsnap/winsnap.c:990 -#, fuzzy msgid "_Screen Shot..." -msgstr "Снимок экрана" +msgstr "Снимок экрана..." #: ../plug-ins/common/screenshot.c:395 msgid "Error grabbing the pointer" @@ -6774,7 +6353,7 @@ #: ../plug-ins/common/screenshot.c:471 msgid "Loading Screen Shot..." -msgstr "Снимок экрана" +msgstr "Загрузка снимка экрана..." #: ../plug-ins/common/screenshot.c:478 ../plug-ins/common/screenshot.c:638 msgid "Screen Shot" @@ -6815,30 +6394,26 @@ msgstr "Сделать скриншот через" #: ../plug-ins/common/sel_gauss.c:107 -#, fuzzy msgid "_Selective Gaussian Blur..." -msgstr "Выборочное Гауссово размывание" +msgstr "Выборочное Гауссово..." #: ../plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." -msgstr "Выборочное Гауссово размывание" +msgstr "Выборочное Гауссово размывание..." #: ../plug-ins/common/sel_gauss.c:225 msgid "Selective Gaussian Blur" msgstr "Выборочное Гауссово размывание" #: ../plug-ins/common/sel_gauss.c:257 -#, fuzzy msgid "_Blur radius:" -msgstr "Радиус размывания:" +msgstr "Радиус разм.:" #: ../plug-ins/common/sel_gauss.c:267 -#, fuzzy msgid "_Max. delta:" msgstr "Макс. дельта:" #: ../plug-ins/common/semiflatten.c:77 -#, fuzzy msgid "_Semi-Flatten" msgstr "Полусведение..." @@ -6847,7 +6422,6 @@ msgstr "Полусведение..." #: ../plug-ins/common/sharpen.c:124 -#, fuzzy msgid "_Sharpen..." msgstr "Повышение резкости..." @@ -6863,41 +6437,36 @@ msgstr "Повышение резкости" #: ../plug-ins/common/shift.c:113 -#, fuzzy msgid "_Shift..." -msgstr "Выполняется сдвиг..." +msgstr "Сдвиг..." #: ../plug-ins/common/shift.c:194 msgid "Shifting..." -msgstr "Выполняется сдвиг..." +msgstr "Сдвиг..." #: ../plug-ins/common/shift.c:349 msgid "Shift" msgstr "Сдвиг" #: ../plug-ins/common/shift.c:373 -#, fuzzy msgid "Shift _horizontally" msgstr "Горизонтальный сдвиг" #: ../plug-ins/common/shift.c:374 -#, fuzzy msgid "Shift _vertically" msgstr "Вертикальный сдвиг" #: ../plug-ins/common/shift.c:404 -#, fuzzy msgid "Shift _amount:" msgstr "Величина сдвига:" #: ../plug-ins/common/sinus.c:191 -#, fuzzy msgid "_Sinus..." -msgstr "Cинус" +msgstr "Cинус..." #: ../plug-ins/common/sinus.c:284 msgid "Sinus: rendering..." -msgstr "Синус: Визуализация..." +msgstr "Синус: визуализация..." #. Create Main window with a vbox #. ============================== @@ -6926,12 +6495,10 @@ msgstr "Настройки рассчета" #: ../plug-ins/common/sinus.c:734 -#, fuzzy msgid "R_andom seed:" msgstr "Случайное зерно:" #: ../plug-ins/common/sinus.c:743 -#, fuzzy msgid "_Force tiling?" msgstr "Бесшовность" @@ -6954,12 +6521,10 @@ msgstr "Черный и белый" #: ../plug-ins/common/sinus.c:795 -#, fuzzy msgid "Bl_ack & white" msgstr "Черный и белый" #: ../plug-ins/common/sinus.c:797 -#, fuzzy msgid "_Foreground & background" msgstr "Передний план и фон" @@ -6968,12 +6533,10 @@ msgstr "Выбрать:" #: ../plug-ins/common/sinus.c:812 -#, fuzzy msgid "First color" msgstr "Первый цвет" #: ../plug-ins/common/sinus.c:822 -#, fuzzy msgid "Second color" msgstr "Второй цвет" @@ -6991,7 +6554,7 @@ #: ../plug-ins/common/sinus.c:888 msgid "Blend Settings" -msgstr "Настройки смесителя" +msgstr "Параметры смешивания" #: ../plug-ins/common/sinus.c:901 msgid "L_inear" @@ -7011,16 +6574,15 @@ #: ../plug-ins/common/sinus.c:925 msgid "_Blend" -msgstr "Смешать" +msgstr "Градиент" #: ../plug-ins/common/sinus.c:1042 msgid "Do _Preview" msgstr "Просмотр" #: ../plug-ins/common/smooth_palette.c:88 -#, fuzzy msgid "Smoo_th Palette..." -msgstr "Гладкая палитра" +msgstr "Гладкая палитра..." #: ../plug-ins/common/smooth_palette.c:180 msgid "Deriving Smooth Palette..." @@ -7031,18 +6593,16 @@ msgstr "Гладкая палитра" #: ../plug-ins/common/smooth_palette.c:445 -#, fuzzy msgid "_Search depth:" msgstr "Глубина поиска:" #: ../plug-ins/common/snoise.c:186 -#, fuzzy msgid "_Solid Noise..." -msgstr "Добавление сплошного шума..." +msgstr "Сплошной шум..." #: ../plug-ins/common/snoise.c:336 msgid "Solid Noise..." -msgstr "Добавление сплошного шума..." +msgstr "Сплошной шум..." #. Dialog initialization #: ../plug-ins/common/snoise.c:583 @@ -7051,7 +6611,7 @@ #: ../plug-ins/common/snoise.c:627 msgid "_Detail:" -msgstr "Детали:" +msgstr "Детализация:" #. Turbulent #: ../plug-ins/common/snoise.c:637 @@ -7061,22 +6621,19 @@ #. Tilable #: ../plug-ins/common/snoise.c:651 msgid "T_ilable" -msgstr "Рассеченное" +msgstr "Без швов" #: ../plug-ins/common/snoise.c:666 -#, fuzzy msgid "_X size:" msgstr "Размер по Х:" #: ../plug-ins/common/snoise.c:679 -#, fuzzy msgid "_Y size:" msgstr "Размер по Y:" #: ../plug-ins/common/sobel.c:119 -#, fuzzy msgid "_Sobel..." -msgstr "Собел" +msgstr "Собел..." #: ../plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" @@ -7091,32 +6648,28 @@ msgstr "Вертикальное размывание по Sobel" #: ../plug-ins/common/sobel.c:273 -#, fuzzy msgid "_Keep sign of result (one direction only)" -msgstr "Сохранять знак результата (только одно направление)" +msgstr "Сохранять знак результата (одно направление)" #: ../plug-ins/common/sobel.c:359 msgid "Sobel Edge Detecting..." msgstr "Выделение края по Sobel..." #: ../plug-ins/common/softglow.c:138 -#, fuzzy msgid "_Softglow..." -msgstr "Собел" +msgstr "Мягкий свет..." #: ../plug-ins/common/softglow.c:629 msgid "Softglow" -msgstr "" +msgstr "Мягкий свет" #: ../plug-ins/common/softglow.c:659 -#, fuzzy msgid "_Glow radius:" -msgstr "Радиус размывания:" +msgstr "Радиус:" #: ../plug-ins/common/sparkle.c:186 -#, fuzzy msgid "_Sparkle..." -msgstr "Искрение..." +msgstr "Искры..." #: ../plug-ins/common/sparkle.c:292 msgid "Sparkling..." @@ -7124,7 +6677,7 @@ #: ../plug-ins/common/sparkle.c:343 msgid "Sparkle" -msgstr "Искра" +msgstr "Искры" #: ../plug-ins/common/sparkle.c:366 msgid "Luminosity _Threshold:" @@ -7135,16 +6688,14 @@ msgstr "Подбор порога яркости" #: ../plug-ins/common/sparkle.c:376 -#, fuzzy msgid "F_lare intensity:" -msgstr "Интенсивность вспышки:" +msgstr "Интенс. вспышки:" #: ../plug-ins/common/sparkle.c:379 msgid "Adjust the Flare Intensity" msgstr "Подбор интенсивности вспышки" #: ../plug-ins/common/sparkle.c:386 -#, fuzzy msgid "_Spike length:" msgstr "Длина лучей:" @@ -7153,25 +6704,22 @@ msgstr "Подбор длины луча" #: ../plug-ins/common/sparkle.c:396 -#, fuzzy msgid "Sp_ike points:" -msgstr "Количество лучей:" +msgstr "Число лучей:" #: ../plug-ins/common/sparkle.c:399 msgid "Adjust the Number of Spikes" msgstr "Подбор числа лучей" #: ../plug-ins/common/sparkle.c:406 -#, fuzzy msgid "Spi_ke angle (-1: random):" -msgstr "Угол луча (-1: случайный):" +msgstr "Угол луча (-1 random):" #: ../plug-ins/common/sparkle.c:409 msgid "Adjust the Spike Angle (-1 means a Random Angle is chosen)" msgstr "Подбор угла луча (-1 означает выбор случайного угла)" #: ../plug-ins/common/sparkle.c:417 -#, fuzzy msgid "Spik_e density:" msgstr "Плотность луча:" @@ -7184,7 +6732,6 @@ msgstr "Подбор непрозрачности лучей" #: ../plug-ins/common/sparkle.c:437 -#, fuzzy msgid "_Random hue:" msgstr "Случайный тон:" @@ -7193,16 +6740,14 @@ msgstr "Подбор степени того как много тона будет изменяться случайно" #: ../plug-ins/common/sparkle.c:448 -#, fuzzy msgid "Rando_m saturation:" -msgstr "Случайная насыщенность:" +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 -#, fuzzy msgid "_Preserve luminosity" msgstr "Сохранять яркость" @@ -7219,7 +6764,6 @@ msgstr "Нужно ли инвертировать эффект?" #: ../plug-ins/common/sparkle.c:490 -#, fuzzy msgid "A_dd border" msgstr "Добавить рамку" @@ -7228,32 +6772,26 @@ msgstr "Нарисовать рамку из лучей вокруг изображения" #: ../plug-ins/common/sparkle.c:507 -#, fuzzy msgid "_Natural color" msgstr "Естественный цвет" #: ../plug-ins/common/sparkle.c:508 -#, fuzzy msgid "_Foreground color" msgstr "Цвет переднего плана" #: ../plug-ins/common/sparkle.c:509 -#, fuzzy msgid "_Background color" msgstr "Цвет фона" #: ../plug-ins/common/sparkle.c:516 -#, fuzzy msgid "Use the color of the image" msgstr "Использовать цвет изображения" #: ../plug-ins/common/sparkle.c:517 -#, fuzzy msgid "Use the foreground color" msgstr "Использовать цвет переднего плана" #: ../plug-ins/common/sparkle.c:518 -#, fuzzy msgid "Use the background color" msgstr "Использовать цвет фона" @@ -7276,7 +6814,7 @@ #: ../plug-ins/common/spheredesigner.c:284 msgid "Phong" -msgstr "Фонг" +msgstr "Phong" #: ../plug-ins/common/spheredesigner.c:285 msgid "Noise" @@ -7321,9 +6859,8 @@ msgstr "Создание сферы" #: ../plug-ins/common/spheredesigner.c:2518 -#, fuzzy msgid "Update _Preview" -msgstr "Автообновление просмотра" +msgstr "Просмотр" #: ../plug-ins/common/spheredesigner.c:2572 msgid "Textures" @@ -7359,68 +6896,61 @@ #: ../plug-ins/common/spheredesigner.c:2682 msgid "Turbulence:" -msgstr "Турбулентность:" +msgstr "Турбулент.:" #: ../plug-ins/common/spheredesigner.c:2689 msgid "Amount:" msgstr "Величина:" #: ../plug-ins/common/spheredesigner.c:2696 -#, fuzzy msgid "Exp.:" msgstr "Exp:" #: ../plug-ins/common/spheredesigner.c:2703 -#, fuzzy msgid "Texture Transformations" -msgstr "Преобразование %s" +msgstr "Преобразования" #: ../plug-ins/common/spheredesigner.c:2726 msgid "Scale Y:" -msgstr "Масштаб Y:" +msgstr "Масш. Y:" #: ../plug-ins/common/spheredesigner.c:2732 msgid "Scale Z:" -msgstr "Масштаб Z:" +msgstr "Масш. Z:" #: ../plug-ins/common/spheredesigner.c:2739 msgid "Rotate X:" -msgstr "Вращение по X:" +msgstr "Вращ. X:" #: ../plug-ins/common/spheredesigner.c:2746 msgid "Rotate Y:" -msgstr "Вращение по Y:" +msgstr "Вращ. Y:" #: ../plug-ins/common/spheredesigner.c:2753 msgid "Rotate Z:" -msgstr "Вращение по Z:" +msgstr "Вращ. Z:" #: ../plug-ins/common/spheredesigner.c:2760 -#, fuzzy msgid "Position X:" -msgstr "Позиция" +msgstr "Позиц.X:" #: ../plug-ins/common/spheredesigner.c:2767 -#, fuzzy msgid "Position Y:" -msgstr "Позиция" +msgstr "Позиц.Y:" #: ../plug-ins/common/spheredesigner.c:2774 -#, fuzzy msgid "Position Z:" -msgstr "Позиция" +msgstr "Позиц.Z:" #: ../plug-ins/common/spheredesigner.c:2922 msgid "Rendering Sphere..." msgstr "Визуализация сферы..." #: ../plug-ins/common/spheredesigner.c:2979 -#, fuzzy msgid "Sphere _Designer..." -msgstr "Создание сферы" +msgstr "Создание сферы..." #: ../plug-ins/common/spread.c:99 -#, fuzzy msgid "Sp_read..." msgstr "Рассеивание..." @@ -7437,9 +6967,8 @@ msgstr "Степень рассеивания" #: ../plug-ins/common/struc.c:1146 -#, fuzzy msgid "_Apply Canvas..." -msgstr "Применяется холст..." +msgstr "Применить холст..." #: ../plug-ins/common/struc.c:1227 msgid "Applying Canvas..." @@ -7450,28 +6979,24 @@ msgstr "Применить холст" #: ../plug-ins/common/struc.c:1290 -#, fuzzy msgid "_Top-right" msgstr "Сверху справа" #: ../plug-ins/common/struc.c:1291 -#, fuzzy msgid "Top-_left" msgstr "Сверху слева" #: ../plug-ins/common/struc.c:1292 -#, fuzzy msgid "_Bottom-left" msgstr "Снизу слева" #: ../plug-ins/common/struc.c:1293 -#, fuzzy msgid "Bottom-_right" msgstr "Снизу справа" #: ../plug-ins/common/sunras.c:217 ../plug-ins/common/sunras.c:237 msgid "SUN Rasterfile image" -msgstr "" +msgstr "SUN Rasterfile" #: ../plug-ins/common/sunras.c:392 #, c-format @@ -7480,7 +7005,7 @@ #: ../plug-ins/common/sunras.c:400 msgid "The type of this SUN-rasterfile is not supported" -msgstr "Такой тип файлов SUN-raster не поддерживается" +msgstr "Этот тип файлов не поддерживается SUN-raster" #: ../plug-ins/common/sunras.c:423 #, c-format @@ -7497,7 +7022,7 @@ #: ../plug-ins/common/sunras.c:493 msgid "SUNRAS save cannot handle images with alpha channels" -msgstr "Невозможно сохранить как SUNRAS изображение с альфа-каналом" +msgstr "Изображение с альфа-каналом невозможно сохранить как SUNRAS" #: ../plug-ins/common/sunras.c:504 msgid "Can't operate on unknown image types" @@ -7525,9 +7050,8 @@ msgstr "RLE-кодирование" #: ../plug-ins/common/svg.c:136 -#, fuzzy msgid "Scalable SVG image" -msgstr "Масштаб по изображению" +msgstr "Векторный формат SVG" #: ../plug-ins/common/svg.c:313 ../plug-ins/common/svg.c:696 msgid "Unknown reason" @@ -7566,14 +7090,12 @@ msgstr "Высота:" #: ../plug-ins/common/svg.c:841 ../plug-ins/common/wmf.c:628 -#, fuzzy msgid "_X ratio:" -msgstr "Изменение:" +msgstr "по X:" #: ../plug-ins/common/svg.c:863 ../plug-ins/common/wmf.c:650 -#, fuzzy msgid "_Y ratio:" -msgstr "Изменение:" +msgstr "по Y:" #: ../plug-ins/common/svg.c:877 ../plug-ins/common/wmf.c:664 msgid "Constrain aspect ratio" @@ -7586,7 +7108,6 @@ #. Path Import #: ../plug-ins/common/svg.c:908 -#, fuzzy msgid "Import _paths" msgstr "Импорт _Контуров" @@ -7594,18 +7115,16 @@ msgid "" "Import path elements of the SVG so they can be used with the GIMP path tool" msgstr "" -"Импортировать элементы контура из SVG, так чтобы они могли быть использованы " +"Импортировать элементы контура из SVG, чтобы они могли быть использованы " "инструментом \"Контур\"" #: ../plug-ins/common/svg.c:927 -#, fuzzy msgid "Merge imported paths" msgstr "Обьединить импортированные контуры" #: ../plug-ins/common/tga.c:233 ../plug-ins/common/tga.c:249 -#, fuzzy msgid "TarGA image" -msgstr "Передача изображения" +msgstr "Формат TarGA" #: ../plug-ins/common/tga.c:428 #, c-format @@ -7632,9 +7151,8 @@ msgstr "Начало внизу слева" #: ../plug-ins/common/threshold_alpha.c:95 -#, fuzzy msgid "_Threshold Alpha..." -msgstr "Порог альфа-канала" +msgstr "Порог альфа-канала..." #: ../plug-ins/common/threshold_alpha.c:134 msgid "The layer preserves transparency." @@ -7658,20 +7176,19 @@ #: ../plug-ins/common/tiff.c:211 ../plug-ins/common/tiff.c:232 #: ../plug-ins/common/tiff.c:249 -#, fuzzy msgid "TIFF image" -msgstr "Каналы TIFF" +msgstr "Формат TIFF" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Страница %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" -msgstr "Каналы TIFF" +msgstr "Канал TIFF" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7680,11 +7197,11 @@ msgstr "" "Предупреждение:\n" "Изображение, которое вы собираетесь загрузить имеет 16 бит на канал.\n" -"GIMPподдерживает только 8 бит на канал, так что изображение будет\n" +"GIMP поддерживает только 8 бит на канал, так что изображение будет\n" "преобразовано. В процессе преобразования информация изображения\n" "будет утеряна." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7692,47 +7209,46 @@ "Формат TIFF поддерживает только 7-битные\n" "комментарии ASCII. Комментарий не сохранён." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Сохранить как TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Cжатие" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "Никакой" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "Упакованные биты" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "Уменьшить" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Сохранить значения цвета прозрачных точек" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Комментарий:" #: ../plug-ins/common/tile.c:112 -#, fuzzy msgid "_Tile..." -msgstr "Рассечение..." +msgstr "Черепица..." #. Set the tile cache size #: ../plug-ins/common/tile.c:192 ../plug-ins/common/tileit.c:320 @@ -7752,14 +7268,13 @@ msgstr "Создать новое изображение" #: ../plug-ins/common/tileit.c:224 -#, fuzzy msgid "_Small Tiles..." -msgstr "всем секторам" +msgstr "Маленькая черепица" #. Get the preview image #: ../plug-ins/common/tileit.c:363 msgid "TileIt" -msgstr "Нарезать" +msgstr "Маленькая черепица" #. Area for buttons etc #. Flip @@ -7768,19 +7283,16 @@ msgstr "Отражение" #: ../plug-ins/common/tileit.c:454 -#, fuzzy msgid "A_ll tiles" msgstr "всем секторам" #: ../plug-ins/common/tileit.c:468 -#, fuzzy msgid "Al_ternate tiles" -msgstr "каждому второму сектору" +msgstr "каждому второму" #: ../plug-ins/common/tileit.c:482 -#, fuzzy msgid "_Explicit tile" -msgstr "указанному сектору" +msgstr "указанному" #: ../plug-ins/common/tileit.c:488 msgid "Ro_w:" @@ -7796,17 +7308,16 @@ #. Lower frame saying howmany segments #: ../plug-ins/common/tileit.c:573 -#, fuzzy msgid "Number of Segments" msgstr "Число сегментов:" #: ../plug-ins/common/tiler.c:66 msgid "_Make Seamless" -msgstr "" +msgstr "Без швов" #: ../plug-ins/common/tiler.c:322 msgid "Tiler..." -msgstr "Рассечение..." +msgstr "Без швов..." #: ../plug-ins/common/uniteditor.c:94 msgid "Saved" @@ -7837,7 +7348,7 @@ #: ../plug-ins/common/uniteditor.c:98 msgid "How many units make up an inch." -msgstr "Как много единиц составляют дюйм." +msgstr "Сколько единиц составляют дюйм." #: ../plug-ins/common/uniteditor.c:99 msgid "Digits" @@ -7875,7 +7386,7 @@ #: ../plug-ins/common/uniteditor.c:109 msgid "Singular" -msgstr "Единственное" +msgstr "Ед.ч." #: ../plug-ins/common/uniteditor.c:109 msgid "The unit's singular form." @@ -7883,7 +7394,7 @@ #: ../plug-ins/common/uniteditor.c:110 msgid "Plural" -msgstr "Множественное" +msgstr "Мн.ч." #: ../plug-ins/common/uniteditor.c:110 msgid "The unit's plural form." @@ -7898,7 +7409,6 @@ msgstr "Создать новую единицу используя выбранную как шаблон." #: ../plug-ins/common/uniteditor.c:151 -#, fuzzy msgid "_Unit Editor" msgstr "Редактор единиц" @@ -7947,9 +7457,8 @@ msgstr "Редактор единиц" #: ../plug-ins/common/unsharp.c:143 -#, fuzzy msgid "_Unsharp Mask..." -msgstr "Нерезкая маска" +msgstr "Нерезкая маска..." #: ../plug-ins/common/unsharp.c:468 msgid "Merging..." @@ -8000,9 +7509,8 @@ msgstr "Точки" #: ../plug-ins/common/video.c:1817 -#, fuzzy msgid "Vi_deo..." -msgstr "Видео/RGB..." +msgstr "Видео..." #: ../plug-ins/common/video.c:1889 msgid "Video/RGB..." @@ -8014,7 +7522,6 @@ #. frame for the radio buttons #: ../plug-ins/common/video.c:2035 -#, fuzzy msgid "Video Pattern" msgstr "Шаблон" @@ -8027,68 +7534,56 @@ msgstr "Повернутый" #: ../plug-ins/common/vinvert.c:84 -#, fuzzy msgid "_Value Invert" -msgstr "Инверсия значения..." +msgstr "Инверсия значения" #: ../plug-ins/common/vinvert.c:126 msgid "Value Invert..." msgstr "Инверсия значения..." #: ../plug-ins/common/vpropagate.c:193 -#, fuzzy msgid "More _white (larger value)" -msgstr "Более светлое (большие значения)" +msgstr "Более светлое" #: ../plug-ins/common/vpropagate.c:196 -#, fuzzy msgid "More blac_k (smaller value)" -msgstr "Более темное (меньшие значения)" +msgstr "Более темное" #: ../plug-ins/common/vpropagate.c:199 -#, fuzzy msgid "_Middle value to peaks" msgstr "Cредние значения" #: ../plug-ins/common/vpropagate.c:202 -#, fuzzy msgid "_Foreground to peaks" -msgstr "Максимальный цвет переднего плана" +msgstr "Макс. цвет переднего плана" #: ../plug-ins/common/vpropagate.c:205 -#, fuzzy msgid "O_nly foreground" msgstr "Только цвет переднего плана" #: ../plug-ins/common/vpropagate.c:208 -#, fuzzy msgid "Only b_ackground" msgstr "Только фон" #: ../plug-ins/common/vpropagate.c:211 -#, fuzzy msgid "Mor_e opaque" msgstr "Менее прозрачный" #: ../plug-ins/common/vpropagate.c:214 -#, fuzzy msgid "More t_ransparent" msgstr "Более прозрачный" #: ../plug-ins/common/vpropagate.c:242 -#, fuzzy msgid "_Value Propagate..." -msgstr "Распространение значений" +msgstr "Распространение значений..." #: ../plug-ins/common/vpropagate.c:254 -#, fuzzy msgid "E_rode" msgstr "Режим" #: ../plug-ins/common/vpropagate.c:266 -#, fuzzy msgid "_Dilate" -msgstr "Уменьшить" +msgstr "Распространение(темнее)" #: ../plug-ins/common/vpropagate.c:476 msgid "Value Propagating..." @@ -8100,42 +7595,34 @@ #. Parameter settings #: ../plug-ins/common/vpropagate.c:1116 -#, fuzzy msgid "Propagate" -msgstr "Режим распространения" +msgstr "Параметры" #: ../plug-ins/common/vpropagate.c:1129 -#, fuzzy msgid "Lower t_hreshold:" msgstr "Нижний порог:" #: ../plug-ins/common/vpropagate.c:1141 -#, fuzzy msgid "_Upper threshold:" msgstr "Верхний порог:" #: ../plug-ins/common/vpropagate.c:1153 -#, fuzzy msgid "_Propagating rate:" msgstr "Скорость распространения:" #: ../plug-ins/common/vpropagate.c:1164 -#, fuzzy msgid "To l_eft" msgstr "Налево" #: ../plug-ins/common/vpropagate.c:1167 -#, fuzzy msgid "To _right" msgstr "Направо" #: ../plug-ins/common/vpropagate.c:1170 -#, fuzzy msgid "To _top" msgstr "Вверх" #: ../plug-ins/common/vpropagate.c:1173 -#, fuzzy msgid "To _bottom" msgstr "Вниз" @@ -8148,38 +7635,33 @@ msgstr "Распространение канала яркости" #: ../plug-ins/common/warp.c:247 -#, fuzzy msgid "_Warp..." -msgstr "Искажение..." +msgstr "Деформация..." #: ../plug-ins/common/warp.c:391 msgid "Warp" msgstr "Деформация" #: ../plug-ins/common/warp.c:405 -#, fuzzy msgid "Basic Options" msgstr "Основные параметры" #: ../plug-ins/common/warp.c:427 -#, fuzzy msgid "Step size:" msgstr "Размер шага:" #: ../plug-ins/common/warp.c:441 ../plug-ins/ifscompose/ifscompose.c:1214 msgid "Iterations:" -msgstr "Кол-во применений фильтра:" +msgstr "Кол-во применений:" #. Displacement map menu #: ../plug-ins/common/warp.c:450 -#, fuzzy msgid "Displacement map:" msgstr "Карта замещения:" #. ======================================================================= #. Displacement Type #: ../plug-ins/common/warp.c:468 -#, fuzzy msgid "On edges:" msgstr "На краях:" @@ -8197,24 +7679,20 @@ msgstr "Черный" #: ../plug-ins/common/warp.c:524 -#, fuzzy msgid "FG color" -msgstr "Цвет переднего плана" +msgstr "Цвет передн. плана" #. -------------------------------------------------------------------- #. --------- The secondary table -------------------------- #: ../plug-ins/common/warp.c:544 -#, fuzzy msgid "Advanced Options" -msgstr "Дополнительные параметры пакета фильтров" +msgstr "Дополнительно" #: ../plug-ins/common/warp.c:560 -#, fuzzy msgid "Dither size:" msgstr "Размер смешения:" #: ../plug-ins/common/warp.c:573 -#, fuzzy msgid "Rotation angle:" msgstr "Угол поворота:" @@ -8224,33 +7702,28 @@ #. Magnitude map menu #: ../plug-ins/common/warp.c:595 -#, fuzzy msgid "Magnitude map:" msgstr "Карта значений:" #: ../plug-ins/common/warp.c:617 -#, fuzzy msgid "Use magnitude map" -msgstr "Карта значений:" +msgstr "Использовать карту значений" #. -------------------------------------------------------------------- #. --------- The "other" table -------------------------- #: ../plug-ins/common/warp.c:630 -#, fuzzy msgid "More Advanced Options" -msgstr "Основные параметры" +msgstr "Дополнительно к \"дополнительно\"" #: ../plug-ins/common/warp.c:647 -#, fuzzy msgid "Gradient scale:" -msgstr "Масштаб градиента:" +msgstr "Размер сдвига:" #: ../plug-ins/common/warp.c:670 msgid "Gradient map selection menu" -msgstr "Меню выбора градиентной карты" +msgstr "Выбор карты сдвига" #: ../plug-ins/common/warp.c:680 -#, fuzzy msgid "Vector mag:" msgstr "Длина вектора:" @@ -8288,9 +7761,8 @@ msgstr "Текущий шаг %d..." #: ../plug-ins/common/waves.c:127 -#, fuzzy msgid "_Waves..." -msgstr "Сохранить как..." +msgstr "Волны..." #: ../plug-ins/common/waves.c:249 msgid "Waves" @@ -8322,7 +7794,7 @@ "Please specify a web browser using the Preferences Dialog." msgstr "" "Просмотрщик не указан.\n" -"Необходимо указать его в диалоге Настройки." +"Необходимо указать его в диалоге \"Настройки\"." #: ../plug-ins/common/webbrowser.c:161 #, c-format @@ -8343,9 +7815,8 @@ "%s" #: ../plug-ins/common/whirlpinch.c:161 -#, fuzzy msgid "W_hirl and Pinch..." -msgstr "Вихрь и щипок" +msgstr "Вихрь и щипок..." #: ../plug-ins/common/whirlpinch.c:348 msgid "Whirling and Pinching..." @@ -8356,29 +7827,24 @@ msgstr "Вихрь и щипок" #: ../plug-ins/common/whirlpinch.c:564 -#, fuzzy msgid "_Whirl angle:" msgstr "Угол вихря:" #: ../plug-ins/common/whirlpinch.c:576 -#, fuzzy msgid "_Pinch amount:" msgstr "Величина щипка:" #: ../plug-ins/common/winclipboard.c:109 -#, fuzzy msgid "Copy to Clipboard" -msgstr "/Правка/Скопировать в буфер" +msgstr "Скопировать в буфер" #: ../plug-ins/common/winclipboard.c:121 -#, fuzzy msgid "Paste from Clipboard" -msgstr "/Правка/Вставить из буфера" +msgstr "Вставить из буфера" #: ../plug-ins/common/winclipboard.c:133 -#, fuzzy msgid "From Clipboard" -msgstr "С цвета" +msgstr "Из буфера" #: ../plug-ins/common/winclipboard.c:331 msgid "Copying..." @@ -8396,20 +7862,19 @@ #. #: ../plug-ins/common/winclipboard.c:587 msgid "Pasted" -msgstr "Вставленое" +msgstr "Вставленное" #: ../plug-ins/common/winclipboard.c:600 msgid "Pasting..." msgstr "Вставка..." #: ../plug-ins/common/wind.c:183 -#, fuzzy msgid "Wi_nd..." -msgstr "Создание волн..." +msgstr "Ветер..." #: ../plug-ins/common/wind.c:315 msgid "Rendering Blast..." -msgstr "Отображение порыва ветра..." +msgstr "Порыва ветра..." #: ../plug-ins/common/wind.c:438 msgid "Rendering Wind..." @@ -8447,7 +7912,7 @@ #. ************************************************** #: ../plug-ins/common/wind.c:954 msgid "Edge Affected" -msgstr "Захватываются края" +msgstr "Захватывать края" #: ../plug-ins/common/wind.c:958 msgid "L_eading" @@ -8474,14 +7939,12 @@ msgstr "Повышение значений усиливает эффект" #: ../plug-ins/common/winprint.c:224 -#, fuzzy msgid "_Print" -msgstr "Точечный" +msgstr "Печать" #: ../plug-ins/common/winprint.c:236 -#, fuzzy msgid "Page Setup" -msgstr "/Файл/Настройка страницы" +msgstr "Настройка страницы" #: ../plug-ins/common/winprint.c:341 #, c-format @@ -8528,21 +7991,19 @@ #: ../plug-ins/common/wmf.c:131 msgid "Microsoft WMF file" -msgstr "" +msgstr "Файл Microsoft WMF" #: ../plug-ins/common/wmf.c:336 -#, fuzzy msgid "" "WMF file does not\n" "specify a size!" msgstr "" -"В файле SVG\n" +"В файле WMF\n" "не указан размер!" #: ../plug-ins/common/wmf.c:484 -#, fuzzy msgid "Render Windows Metafile" -msgstr "Загрузка файлов в формате Windows Metafile" +msgstr "Отображение Windows Metafile" #: ../plug-ins/common/wmf.c:947 ../plug-ins/sgi/sgi.c:318 #, c-format @@ -8555,11 +8016,11 @@ #: ../plug-ins/common/xbm.c:169 ../plug-ins/common/xbm.c:187 msgid "X BitMap image" -msgstr "" +msgstr "Формат X BitMap" #: ../plug-ins/common/xbm.c:241 msgid "Created with The GIMP" -msgstr "Создано в Gimp" +msgstr "Создано в GIMP" #: ../plug-ins/common/xbm.c:804 #, c-format @@ -8577,7 +8038,7 @@ "No image width specified" msgstr "" "\"%s\":\n" -"не указано изображение" +"не указана ширина изображения" #: ../plug-ins/common/xbm.c:818 #, c-format @@ -8586,7 +8047,7 @@ "No image height specified" msgstr "" "\"%s\":\n" -"высота изображения не указана" +"не указана высота изображения" #: ../plug-ins/common/xbm.c:825 #, c-format @@ -8630,28 +8091,23 @@ #. X10 format #: ../plug-ins/common/xbm.c:1167 -#, fuzzy msgid "_X10 format bitmap" msgstr "Битовая карта формата Х10" #: ../plug-ins/common/xbm.c:1187 -#, fuzzy msgid "_Identifier prefix:" msgstr "Префикс идентификатора:" #. hotspot toggle #: ../plug-ins/common/xbm.c:1209 -#, fuzzy msgid "_Write hot spot values" msgstr "Записать значения \"горячих точек\"" #: ../plug-ins/common/xbm.c:1231 -#, fuzzy msgid "Hot spot _X:" msgstr "\"Горячая точка\" X:" #: ../plug-ins/common/xbm.c:1241 -#, fuzzy msgid "Hot spot _Y:" msgstr "\"Горячая точка\" X:" @@ -8661,18 +8117,16 @@ msgstr "Файл маски" #: ../plug-ins/common/xbm.c:1258 -#, fuzzy msgid "W_rite extra mask file" msgstr "Записать дополнительный файл маски" #: ../plug-ins/common/xbm.c:1271 -#, fuzzy msgid "_Mask file extension:" msgstr "Расширение файла маски:" #: ../plug-ins/common/xpm.c:170 ../plug-ins/common/xpm.c:195 msgid "X PixMap image" -msgstr "" +msgstr "Формат X PixMap" #: ../plug-ins/common/xpm.c:354 #, c-format @@ -8688,13 +8142,12 @@ msgstr "Сохранить как XPM" #: ../plug-ins/common/xpm.c:796 -#, fuzzy msgid "_Alpha threshold:" msgstr "Порог альфа-канала:" #: ../plug-ins/common/xwd.c:277 ../plug-ins/common/xwd.c:297 msgid "X window dump" -msgstr "" +msgstr "X window dump" #: ../plug-ins/common/xwd.c:430 #, c-format @@ -8704,38 +8157,35 @@ "\"%s\"" #: ../plug-ins/common/xwd.c:468 -#, fuzzy msgid "Can't read color entries" -msgstr "невозможно прочесть цветовые записи" +msgstr "Невозможно прочесть цветовые записи" #: ../plug-ins/common/xwd.c:527 -#, fuzzy, c-format +#, c-format msgid "" "XWD-file %s has format %d, depth %d\n" "and bits per pixel %d.\n" "Currently this is not supported." msgstr "" -"загрузка_изображения (xwd): XWD-файл %s имеет формат %d, глубину %d\n" +"XWD-файл %s имеет формат %d, глубину %d\n" "и %d бит на пиксел.\n" -"В настоящее время это не поддерживается.\n" +"В настоящее время это не поддерживается." #: ../plug-ins/common/xwd.c:557 msgid "Cannot save images with alpha channels." msgstr "Невозможно сохранить изображения с альфа-каналами." #: ../plug-ins/common/xwd.c:2160 -#, fuzzy msgid "Error during writing indexed/gray image" msgstr "Ошибка при записи индексированного/серого изображения" #: ../plug-ins/common/xwd.c:2258 msgid "Error during writing rgb image" -msgstr "Ошибка при записи rgb-изображения" +msgstr "Ошибка при записи изображения RGB" #: ../plug-ins/common/zealouscrop.c:85 -#, fuzzy msgid "_Zealous Crop" -msgstr "Усердное кадрирование(tm)..." +msgstr "Усердное кадрирование" #: ../plug-ins/common/zealouscrop.c:133 msgid "ZealousCropping(tm)..." @@ -8748,7 +8198,7 @@ #: ../plug-ins/dbbrowser/gimpprocbrowser.c:128 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:142 msgid "Procedure Browser" -msgstr "" +msgstr "Список процедур" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:132 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:146 @@ -8780,14 +8230,13 @@ msgstr "Поиск - пожалуйста подождите" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:428 -#, fuzzy msgid "1 Procedure" -msgstr "Временная процедура" +msgstr "1 процедура" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:430 -#, fuzzy, c-format +#, c-format msgid "%d Procedures" -msgstr "Временная процедура" +msgstr "%d процедур" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:476 #: ../plug-ins/dbbrowser/plugin-browser.c:516 @@ -8808,12 +8257,11 @@ #: ../plug-ins/dbbrowser/gimpprocview.c:146 msgid "Return Values" -msgstr "" +msgstr "Возвращаемые значения" #: ../plug-ins/dbbrowser/gimpprocview.c:159 -#, fuzzy msgid "Additional Information" -msgstr "Пространственное преобразование" +msgstr "Дополнительная информация" #: ../plug-ins/dbbrowser/gimpprocview.c:198 msgid "Author:" @@ -8844,24 +8292,21 @@ msgstr "Временная процедура" #: ../plug-ins/dbbrowser/plugin-browser.c:151 -#, fuzzy msgid "_Plug-In Browser" -msgstr "Просмотр базы данных" +msgstr "Список дополнений" #: ../plug-ins/dbbrowser/plugin-browser.c:418 -#, fuzzy msgid "1 Plug-In Interface" -msgstr "Количество дополнений: %d" +msgstr "1 дополнение" #: ../plug-ins/dbbrowser/plugin-browser.c:420 -#, fuzzy, c-format +#, c-format msgid "%d Plug-In Interfaces" -msgstr "Количество дополнений: %d" +msgstr "%d дополнений" #: ../plug-ins/dbbrowser/plugin-browser.c:544 -#, fuzzy msgid "Plug-In Browser" -msgstr "Просмотр базы данных" +msgstr "Список дополнений" #: ../plug-ins/dbbrowser/plugin-browser.c:595 msgid "Name" @@ -8869,18 +8314,15 @@ #: ../plug-ins/dbbrowser/plugin-browser.c:603 #: ../plug-ins/dbbrowser/plugin-browser.c:672 -#, fuzzy msgid "Insertion Date" -msgstr "Вставить точку" +msgstr "Дата включения" #: ../plug-ins/dbbrowser/plugin-browser.c:611 -#, fuzzy msgid "Menu Path" -msgstr "Путь меню:" +msgstr "Путь меню" #: ../plug-ins/dbbrowser/plugin-browser.c:619 #: ../plug-ins/dbbrowser/plugin-browser.c:681 -#, fuzzy msgid "Image Types" msgstr "Типы изображений" @@ -8889,26 +8331,24 @@ msgstr "Просмотр списка" #: ../plug-ins/dbbrowser/plugin-browser.c:663 -#, fuzzy msgid "Menu Path/Name" msgstr "Путь/Название меню" #: ../plug-ins/dbbrowser/plugin-browser.c:704 -#, fuzzy msgid "Tree View" msgstr "Просмотр дерева" #: ../plug-ins/dbbrowser/procedure-browser.c:89 msgid "Procedure _Browser" -msgstr "" +msgstr "Список процедур" #: ../plug-ins/faxg3/faxg3.c:100 msgid "G3 fax image" -msgstr "" +msgstr "Файл G3 fax" #: ../plug-ins/fits/fits.c:159 ../plug-ins/fits/fits.c:178 msgid "Flexible Image Transport System" -msgstr "" +msgstr "Flexible Image Transport System" #: ../plug-ins/fits/fits.c:346 msgid "Error during open of FITS file" @@ -8916,11 +8356,11 @@ #: ../plug-ins/fits/fits.c:351 msgid "FITS file keeps no displayable images" -msgstr "Файл FITS не содержит изображения, которое можно показать" +msgstr "Файл FITS не содержит изображения, которое можно отобразить" #: ../plug-ins/fits/fits.c:430 msgid "FITS save cannot handle images with alpha channels" -msgstr "FITS-сохранение не может обработать изображение с альфа-каналом" +msgstr "FITS не может сохранить изображение с альфа-каналом" #: ../plug-ins/fits/fits.c:969 msgid "Load FITS File" @@ -8936,7 +8376,6 @@ msgstr "Белый" #: ../plug-ins/fits/fits.c:996 -#, fuzzy msgid "Pixel value scaling" msgstr "Масштабирование значений точек" @@ -8949,9 +8388,8 @@ msgstr "Сборка изображения" #: ../plug-ins/flame/flame.c:133 -#, fuzzy msgid "_Flame..." -msgstr "Пламя" +msgstr "Пламя..." #: ../plug-ins/flame/flame.c:227 msgid "Drawing Flame..." @@ -8959,12 +8397,12 @@ #: ../plug-ins/flame/flame.c:319 msgid "Flame works only on RGB drawables." -msgstr "Пламя работает только с RGB изображениями." +msgstr "\"Пламя\" работает только с изображениями RGB." #: ../plug-ins/flame/flame.c:402 #, c-format msgid "'%s' is not a regular file" -msgstr "\"%s\" не является обычным файлом" +msgstr "\"%s\" не является файлом flame" #: ../plug-ins/flame/flame.c:637 msgid "Edit Flame" @@ -8988,12 +8426,12 @@ #: ../plug-ins/flame/flame.c:731 msgid "Same" -msgstr "Оставить прежние" +msgstr "Прежние" #: ../plug-ins/flame/flame.c:732 ../plug-ins/gimpressionist/orientation.c:146 #: ../plug-ins/gimpressionist/size.c:149 msgid "Random" -msgstr "Случайность" +msgstr "Случайно" #: ../plug-ins/flame/flame.c:736 msgid "Swirl" @@ -9040,26 +8478,22 @@ msgstr "Гамма:" #: ../plug-ins/flame/flame.c:1079 -#, fuzzy msgid "Sample _density:" msgstr "Плотность образца:" #: ../plug-ins/flame/flame.c:1090 -#, fuzzy msgid "Spa_tial oversample:" -msgstr "Пространственное перекрывание:" +msgstr "Перекрывание:" #: ../plug-ins/flame/flame.c:1101 -#, fuzzy msgid "Spatial _filter radius:" -msgstr "Радиус пространственного фильтра:" +msgstr "Радиус фильтра:" #: ../plug-ins/flame/flame.c:1120 msgid "Color_map:" msgstr "Цветовая карта:" #: ../plug-ins/flame/flame.c:1162 -#, fuzzy msgid "Custom gradient" msgstr "Выбранный градиент" @@ -9090,49 +8524,41 @@ #. Start building the dialog up #: ../plug-ins/gfig/gfig-dialog.c:295 -#, fuzzy msgid "Gfig" msgstr "Gfig" #. Tool options notebook #: ../plug-ins/gfig/gfig-dialog.c:341 -#, fuzzy msgid "Tool options" -msgstr "Параметры масштаба" +msgstr "Параметры инструмента" #: ../plug-ins/gfig/gfig-dialog.c:358 -#, fuzzy msgid "_Stroke" -msgstr "Лучи:" +msgstr "Обвести" #. Fill frame on right side #: ../plug-ins/gfig/gfig-dialog.c:405 -#, fuzzy msgid "Fill" -msgstr "Фотопленка" +msgstr "Заливка" #: ../plug-ins/gfig/gfig-dialog.c:419 msgid "No fill" -msgstr "" +msgstr "Нет" #: ../plug-ins/gfig/gfig-dialog.c:420 -#, fuzzy msgid "Color fill" msgstr "Цвет" #: ../plug-ins/gfig/gfig-dialog.c:421 -#, fuzzy msgid "Pattern fill" -msgstr "Разрез бумаги" +msgstr "Шаблон" #: ../plug-ins/gfig/gfig-dialog.c:422 -#, fuzzy msgid "Gradient fill" msgstr "Градиент" #. "show image" checkbutton at bottom of style frame #: ../plug-ins/gfig/gfig-dialog.c:482 -#, fuzzy msgid "Show image" msgstr "Показать изображение" @@ -9154,39 +8580,32 @@ msgstr "Первый Gfig" #: ../plug-ins/gfig/gfig-dialog.c:859 -#, fuzzy msgid "_Undo" -msgstr "Откат" +msgstr "О_тмена" #: ../plug-ins/gfig/gfig-dialog.c:863 -#, fuzzy msgid "_Clear" -msgstr "Очистить" +msgstr "О_чистить" #: ../plug-ins/gfig/gfig-dialog.c:867 -#, fuzzy msgid "_Grid" -msgstr "Сетка" +msgstr "_Сетка" #: ../plug-ins/gfig/gfig-dialog.c:875 -#, fuzzy msgid "Raise selected object" -msgstr "Переместить выделенные объекты" +msgstr "Поднять выделенный объект" #: ../plug-ins/gfig/gfig-dialog.c:879 -#, fuzzy msgid "Lower selected object" -msgstr "Переместить выделенные объекты" +msgstr "Опустить выделенный объект" #: ../plug-ins/gfig/gfig-dialog.c:883 -#, fuzzy msgid "Raise selected object to top" -msgstr "Считать выбранные настройки в память" +msgstr "Поднять на передний план выделенный объект" #: ../plug-ins/gfig/gfig-dialog.c:887 -#, fuzzy msgid "Lower selected object to bottom" -msgstr "Переместить выделенные объекты" +msgstr "Опустить до самого низа выделенный объект" #: ../plug-ins/gfig/gfig-dialog.c:891 msgid "Show previous object" @@ -9213,7 +8632,6 @@ msgstr "Создать эллипс" #: ../plug-ins/gfig/gfig-dialog.c:914 ../plug-ins/gfig/gfig-stock.c:44 -#, fuzzy msgid "Create arc" msgstr "Создать дугу" @@ -9250,29 +8668,25 @@ msgstr "Удалить объект" #: ../plug-ins/gfig/gfig-dialog.c:942 ../plug-ins/gfig/gfig-stock.c:51 -#, fuzzy msgid "Select an object" -msgstr "Удалить объект" +msgstr "Выделить объект" #: ../plug-ins/gfig/gfig-dialog.c:1023 msgid "This tool has no options" -msgstr "" +msgstr "У этого инструмента нет параметров" #. Put buttons in #: ../plug-ins/gfig/gfig-dialog.c:1230 -#, fuzzy msgid "Show position" msgstr "Показать позицию" #: ../plug-ins/gfig/gfig-dialog.c:1242 -#, fuzzy msgid "Show control points" msgstr "Скрыть контр.точки" #: ../plug-ins/gfig/gfig-dialog.c:1276 -#, fuzzy msgid "Max undo:" -msgstr "Макс. отмена:" +msgstr "Макс. отмен:" #: ../plug-ins/gfig/gfig-dialog.c:1285 #: ../plug-ins/gimpressionist/general.c:166 @@ -9288,10 +8702,9 @@ #: ../plug-ins/imagemap/imap_object_popup.c:113 #: ../plug-ins/imagemap/imap_toolbar.c:126 msgid "Copy" -msgstr "Скопировать" +msgstr "Копировать" #: ../plug-ins/gfig/gfig-dialog.c:1298 -#, fuzzy msgid "" "Layer background type. Copy causes the previous layer to be copied before " "the draw is performed." @@ -9325,7 +8738,6 @@ msgstr "Изометрия" #: ../plug-ins/gfig/gfig-dialog.c:1413 -#, fuzzy msgid "Grid type:" msgstr "Тип сетки:" @@ -9346,27 +8758,22 @@ msgstr "Светлее" #: ../plug-ins/gfig/gfig-dialog.c:1426 -#, fuzzy msgid "Very dark" msgstr "Очень темное" #: ../plug-ins/gfig/gfig-dialog.c:1435 -#, fuzzy msgid "Grid color:" -msgstr "Цвет сетки" +msgstr "Цвет сетки:" #: ../plug-ins/gfig/gfig-dialog.c:1638 -#, fuzzy msgid "Sides:" -msgstr "Размеры:" +msgstr "Стороны:" #: ../plug-ins/gfig/gfig-dialog.c:1648 -#, fuzzy msgid "Right" msgstr "Справа" #: ../plug-ins/gfig/gfig-dialog.c:1649 -#, fuzzy msgid "Left" msgstr "Слева" @@ -9400,9 +8807,8 @@ #. Position labels #: ../plug-ins/gfig/gfig-preview.c:383 -#, fuzzy msgid "XY position:" -msgstr "XY позиция:" +msgstr "Позиция XY:" #: ../plug-ins/gfig/gfig-spiral.c:59 msgid "Spiral Number of Turns" @@ -9413,25 +8819,25 @@ msgstr "Число лучей звезды" #: ../plug-ins/gfig/gfig-stock.c:41 -#, fuzzy msgid "Create bezier curve" -msgstr "Создать окружность" +msgstr "Создать кривую Безье" #: ../plug-ins/gfig/gfig.c:132 -#, fuzzy msgid "_Gfig..." -msgstr "Gfig" +msgstr "Gfig..." #: ../plug-ins/gfig/gfig.c:726 msgid "" "Error trying to save figure as a parasite: can't attach parasite to " "drawable.\n" msgstr "" +"Error trying to save figure as a parasite: can't attach parasite to " +"drawable.\n" #: ../plug-ins/gfig/gfig.c:747 #, c-format msgid "Error trying to open temp file '%s'for parasite loading.\n" -msgstr "" +msgstr "Ошибка при открытии временного файла '%s'.\n" #: ../plug-ins/gflare/gflare.c:560 msgid "Addition" @@ -9442,9 +8848,8 @@ msgstr "Перекрывание" #: ../plug-ins/gflare/gflare.c:821 -#, fuzzy msgid "_GFlare..." -msgstr "Град.вспышка" +msgstr "Град.вспышка..." #: ../plug-ins/gflare/gflare.c:960 msgid "Gradient Flare..." @@ -9488,10 +8893,9 @@ #. #: ../plug-ins/gflare/gflare.c:2294 msgid "GFlare" -msgstr "Град.вспышка" +msgstr "Градиентная вспышка" #: ../plug-ins/gflare/gflare.c:2346 -#, fuzzy msgid "A_uto update preview" msgstr "Автообновление просмотра" @@ -9508,7 +8912,6 @@ msgstr "Вращение:" #: ../plug-ins/gflare/gflare.c:2711 -#, fuzzy msgid "_Hue rotation:" msgstr "Вращение тона:" @@ -9521,7 +8924,6 @@ msgstr "Длина вектора:" #: ../plug-ins/gflare/gflare.c:2756 -#, fuzzy msgid "A_daptive supersampling" msgstr "Адаптивная интерполяция" @@ -9539,7 +8941,7 @@ #: ../plug-ins/gflare/gflare.c:2987 msgid "New GFlare" -msgstr "Новая градиентная вспышка" +msgstr "Новая град. вспышка" #: ../plug-ins/gflare/gflare.c:2990 msgid "Enter a name for the new GFlare" @@ -9556,7 +8958,7 @@ #: ../plug-ins/gflare/gflare.c:3069 msgid "Enter a name for the copied GFlare" -msgstr "Ввести название для скопированной Град.вспышки" +msgstr "Название скопированной Град.вспышки" #: ../plug-ins/gflare/gflare.c:3091 #, c-format @@ -9587,7 +8989,7 @@ #. Glow #: ../plug-ins/gflare/gflare.c:3367 msgid "Glow Paint Options" -msgstr "Параметры рисования свечения" +msgstr "Параметры свечения" #: ../plug-ins/gflare/gflare.c:3378 ../plug-ins/gflare/gflare.c:3406 #: ../plug-ins/gflare/gflare.c:3434 @@ -9602,12 +9004,12 @@ #. Rays #: ../plug-ins/gflare/gflare.c:3395 msgid "Rays Paint Options" -msgstr "Параметры рисования лучей" +msgstr "Параметры лучей" #. Rays #: ../plug-ins/gflare/gflare.c:3423 msgid "Second Flares Paint Options" -msgstr "Параметры рисования второй вспышки" +msgstr "Параметры второй вспышки" #: ../plug-ins/gflare/gflare.c:3450 ../plug-ins/gimpressionist/general.c:115 msgid "_General" @@ -9632,7 +9034,7 @@ #: ../plug-ins/gflare/gflare.c:3495 ../plug-ins/gflare/gflare.c:3600 msgid "Angular Size Gradient:" -msgstr "Градиент угловой протяженности" +msgstr "Градиент угловой протяж-ти:" #: ../plug-ins/gflare/gflare.c:3515 ../plug-ins/gflare/gflare.c:3620 #: ../plug-ins/gflare/gflare.c:3757 @@ -9667,7 +9069,7 @@ #: ../plug-ins/gflare/gflare.c:3733 msgid "Size Factor Gradient:" -msgstr "Градиент масштабного множителя" +msgstr "Градиент масш. множителя:" #: ../plug-ins/gflare/gflare.c:3737 msgid "Probability Gradient:" @@ -9700,7 +9102,7 @@ #: ../plug-ins/gfli/gfli.c:158 ../plug-ins/gfli/gfli.c:178 msgid "AutoDesk FLIC animation" -msgstr "" +msgstr "AutoDesk FLIC animation" #: ../plug-ins/gfli/gfli.c:527 #, c-format @@ -9776,11 +9178,11 @@ #: ../plug-ins/gimpressionist/color.c:61 msgid "Color is computed from the average of all pixels under the brush" -msgstr "Цвет вычисляется как среднее всех пикселов под кистью" +msgstr "Цвет вычисляется как среднее всех точек под кистью" #: ../plug-ins/gimpressionist/color.c:65 msgid "Samples the color from the pixel in the center of the brush" -msgstr "Образец цвета из пиксела в центре кисти" +msgstr "Образец цвета из точки в центре кисти" #: ../plug-ins/gimpressionist/color.c:76 msgid "Color _noise:" @@ -9812,7 +9214,7 @@ #: ../plug-ins/gimpressionist/general.c:167 msgid "Use a transparent background; Only the strokes painted will be visible" -msgstr "Использовать прозрачный фон; Только нанесенные мазки будут видны" +msgstr "Использовать прозрачный фон; будут видны только нанесенные мазки" #: ../plug-ins/gimpressionist/general.c:184 msgid "Paint edges" @@ -9829,7 +9231,7 @@ #: ../plug-ins/gimpressionist/general.c:198 msgid "Selects if the resulting image should be seamlessly tileable" -msgstr "Выберите если итоговое изображение должно казаться бесшовным" +msgstr "Выберите, если итоговое изображение должно казаться бесшовным" #: ../plug-ins/gimpressionist/general.c:203 msgid "Drop Shadow" @@ -9849,7 +9251,7 @@ #: ../plug-ins/gimpressionist/general.c:230 msgid "Shadow darken:" -msgstr "Глубина тени:" +msgstr "Цвет тени:" #: ../plug-ins/gimpressionist/general.c:234 msgid "How much to \"darken\" the drop shadow" @@ -9882,9 +9284,8 @@ msgstr "Доверительное значение для адаптивного выделения" #: ../plug-ins/gimpressionist/gimp.c:79 -#, fuzzy msgid "_GIMPressionist..." -msgstr "Гимпрессионист" +msgstr "Гимпрессионист..." #: ../plug-ins/gimpressionist/gimp.c:350 msgid "Painting..." @@ -9928,7 +9329,7 @@ #: ../plug-ins/gimpressionist/orientation.c:116 msgid "The angle span of the first brush to create" -msgstr "Угол первой создаваемой кисти" +msgstr "Диапазон углов первой создаваемой кисти" #: ../plug-ins/gimpressionist/orientation.c:139 msgid "" @@ -10063,14 +9464,14 @@ #: ../plug-ins/gimpressionist/orientmap.c:629 #: ../plug-ins/gimpressionist/sizemap.c:518 msgid "_Voronoi" -msgstr "Вороной" +msgstr "_Voronoi" #: ../plug-ins/gimpressionist/orientmap.c:637 msgid "" "Voronoi-mode makes only the vector closest to the given point have any " "influence" msgstr "" -"В режиме \"Вороной\" только ближайший к заданной точке вектор оказывает " +"В режиме \"Voronoi\" только ближайший к заданной точке вектор оказывает " "воздействие" #: ../plug-ins/gimpressionist/orientmap.c:647 @@ -10095,7 +9496,7 @@ #: ../plug-ins/gimpressionist/orientmap.c:680 msgid "S_trength exp.:" -msgstr "Экспонента силы:" +msgstr "Экспон. силы:" #: ../plug-ins/gimpressionist/orientmap.c:684 #: ../plug-ins/gimpressionist/sizemap.c:513 @@ -10136,7 +9537,7 @@ #: ../plug-ins/gimpressionist/placement.c:63 msgid "Evenly distributed" -msgstr "Равномерно распределенные" +msgstr "Распределить равномерно" #: ../plug-ins/gimpressionist/placement.c:71 msgid "Place strokes randomly around the image" @@ -10178,9 +9579,10 @@ msgstr "Сохранить текущие" #: ../plug-ins/gimpressionist/presets.c:863 -#, fuzzy msgid "The Gimpressionist Defaults" -msgstr "Гимпрессионист" +msgstr "" +"Настройки Гимпрессиониста\n" +"по умолчанию" #: ../plug-ins/gimpressionist/presets.c:979 msgid "_Presets" @@ -10290,7 +9692,7 @@ #: ../plug-ins/gimpressionist/sizemap.c:405 msgid "Smvectors" -msgstr "Sm-вектор" +msgstr "Sm-векторы" #: ../plug-ins/gimpressionist/sizemap.c:415 msgid "" @@ -10338,7 +9740,7 @@ "Voronoi-mode makes only the smvector closest to the given point have any " "influence" msgstr "" -"В режиме \"Вороной\" только ближайший к заданной точке sm-вектор оказывает " +"В режиме \"Voronoi\" только ближайший к заданной точке sm-вектор оказывает " "воздействие" #. don't translate the gimprc entry @@ -10380,23 +9782,20 @@ "%s" #: ../plug-ins/helpbrowser/dialog.c:159 -#, fuzzy msgid "GIMP Help browser" -msgstr "Просмотрщик справки GIMP" +msgstr "Просмотр справки GIMP" #: ../plug-ins/helpbrowser/dialog.c:411 -#, fuzzy msgid "Document not found" msgstr "Документ не найден" #: ../plug-ins/helpbrowser/dialog.c:413 msgid "The requested URL could not be loaded:" -msgstr "" +msgstr "Невозможно загрузить запрашиваемый URL:" #: ../plug-ins/ifscompose/ifscompose.c:357 -#, fuzzy msgid "_IFS Fractal..." -msgstr "Фрактальный след" +msgstr "_IFS Fractal..." #. Asym #: ../plug-ins/ifscompose/ifscompose.c:600 @@ -10414,9 +9813,8 @@ msgstr "Простое" #: ../plug-ins/ifscompose/ifscompose.c:668 -#, fuzzy msgid "IFS Fractal: Target" -msgstr "Фрактальный след" +msgstr "IFS Fractal: Target" #: ../plug-ins/ifscompose/ifscompose.c:674 msgid "Scale Hue by:" @@ -10432,29 +9830,24 @@ msgstr "Полный" #: ../plug-ins/ifscompose/ifscompose.c:713 -#, fuzzy msgid "IFS Fractal: Red" -msgstr "Тип фрактала" +msgstr "IFS Fractal: красный" #: ../plug-ins/ifscompose/ifscompose.c:720 -#, fuzzy msgid "IFS Fractal: Green" -msgstr "Фрактальный след" +msgstr "IFS Fractal: зеленый" #: ../plug-ins/ifscompose/ifscompose.c:727 -#, fuzzy msgid "IFS Fractal: Blue" -msgstr "Тип фрактала" +msgstr "IFS Fractal: синий" #: ../plug-ins/ifscompose/ifscompose.c:734 -#, fuzzy msgid "IFS Fractal: Black" -msgstr "Фрактальный след" +msgstr "IFS Fractal: черный" #: ../plug-ins/ifscompose/ifscompose.c:784 -#, fuzzy msgid "IFS Fractal" -msgstr "Новый фрактал" +msgstr "IFS Fractal" #: ../plug-ins/ifscompose/ifscompose.c:872 msgid "Spatial Transformation" @@ -10465,7 +9858,6 @@ msgstr "Преобразование цветов" #: ../plug-ins/ifscompose/ifscompose.c:888 -#, fuzzy msgid "Relative probability:" msgstr "Относительная вероятность:" @@ -10474,19 +9866,16 @@ msgstr "Выделить все" #: ../plug-ins/ifscompose/ifscompose.c:1067 -#, fuzzy msgid "Re_center" -msgstr "Пересчитать центр" +msgstr "Центрировать" #: ../plug-ins/ifscompose/ifscompose.c:1067 -#, fuzzy msgid "Recompute Center" -msgstr "/Пересчитать центр" +msgstr "Пересчитать центр" #: ../plug-ins/ifscompose/ifscompose.c:1071 -#, fuzzy msgid "Render options" -msgstr "Параметры визуализации" +msgstr "Параметры визуал-ии" #: ../plug-ins/ifscompose/ifscompose.c:1077 #: ../plug-ins/imagemap/imap_cmd_move.c:86 @@ -10495,21 +9884,18 @@ msgstr "Переместить" #: ../plug-ins/ifscompose/ifscompose.c:1080 -#, fuzzy msgid "Rotate" -msgstr "Повернутая" +msgstr "Повернуть" #: ../plug-ins/ifscompose/ifscompose.c:1080 -#, fuzzy msgid "Rotate / Scale" -msgstr "/Вращение\\/Масштаб" +msgstr "Вращение/Масштаб" #: ../plug-ins/ifscompose/ifscompose.c:1083 msgid "Stretch" msgstr "Растянуть" #: ../plug-ins/ifscompose/ifscompose.c:1180 -#, fuzzy msgid "IFS Fractal Render Options" msgstr "Параметры визуализации" @@ -10542,9 +9928,8 @@ msgstr "Преобразование %s" #: ../plug-ins/ifscompose/ifscompose.c:2400 -#, fuzzy msgid "Save failed" -msgstr "Сохранить файл" +msgstr "Не удалось сохранить" #: ../plug-ins/ifscompose/ifscompose.c:2481 #: ../plug-ins/ifscompose/ifscompose.c:2494 @@ -10552,34 +9937,29 @@ msgstr "Не удалось открыть" #: ../plug-ins/ifscompose/ifscompose.c:2489 -#, fuzzy, c-format +#, c-format msgid "File '%s' doesn't seem to be an IFS Fractal file." msgstr "Файл '%s' не является файлом IFS Compose" #: ../plug-ins/ifscompose/ifscompose.c:2529 -#, fuzzy msgid "Save as IFS Fraktal file" msgstr "Сохранить как файл IFS" #: ../plug-ins/ifscompose/ifscompose.c:2559 -#, fuzzy msgid "Open IFS Fraktal file" msgstr "Открыть файл IFS" #: ../plug-ins/imagemap/imap_about.c:43 -#, fuzzy msgid "Imagemap plug-in 2.2" -msgstr "Дополнение карты изображения 2.0" +msgstr "Imagemap plug-in 2.2" #: ../plug-ins/imagemap/imap_about.c:44 -#, fuzzy msgid "Copyright(c) 1999-2004 by Maurits Rijk" -msgstr "Авторское право (С) 1999-2003 Maurits Rijk" +msgstr "Авторское право (С) 1999-2004 Maurits Rijk" #: ../plug-ins/imagemap/imap_about.c:46 -#, fuzzy msgid "Released under the GNU General Public License" -msgstr " Выпущено под лицензией GNU GPL " +msgstr "Выпущено под лицензией GNU GPL" #: ../plug-ins/imagemap/imap_circle.c:64 msgid "C_ircle" @@ -10587,7 +9967,7 @@ #: ../plug-ins/imagemap/imap_circle.c:264 msgid "Center _x:" -msgstr "Центр X:" +msgstr "Центр по X:" #: ../plug-ins/imagemap/imap_circle.c:269 #: ../plug-ins/imagemap/imap_circle.c:276 @@ -10600,11 +9980,11 @@ #: ../plug-ins/imagemap/imap_rectangle.c:408 #: ../plug-ins/imagemap/imap_rectangle.c:415 msgid "pixels" -msgstr "точки растра" +msgstr "точек растра" #: ../plug-ins/imagemap/imap_circle.c:271 msgid "Center _y:" -msgstr "Центр Y:" +msgstr "Центр по Y:" #: ../plug-ins/imagemap/imap_cmd_clear.c:51 msgid "Clear" @@ -10642,7 +10022,7 @@ #: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:147 #: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:251 msgid "Use Gimp Guides" -msgstr "Использовать направляющие Gimp" +msgstr "Использовать направляющие" #: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:160 msgid "Al_ternate" @@ -10654,7 +10034,7 @@ #: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:169 msgid "Add Additional Guides" -msgstr "Добавить дополнительные направляющие" +msgstr "Добавить доп. направляющие" #: ../plug-ins/imagemap/imap_cmd_gimp_guides.c:177 msgid "L_eft Border" @@ -10687,16 +10067,15 @@ msgstr "Направляющие проходят от %d,%d до %d,%d (%d секторов)" #: ../plug-ins/imagemap/imap_cmd_guides.c:142 -#, fuzzy msgid "" "Guides are pre-defined rectangles covering the image. You define them by " "their width, height, and spacing from each other. This allows you to rapidly " "create the most common image map type - image collection of \"thumbnails\", " "suitable for navigation bars." msgstr "" -"Направляющие - это предопределенные прямоугольники покрывающие\n" -"изображение. Вы определяете их ширину, высоту и отступы между ними.\n" -"Это позволяет вам быстро создавать большинство карт изображения\n" +"Направляющие - это прямоугольникиб разделяющие изображение.\n" +"Укажите ширину, высоту и отступы между ними.\n" +"Это позволит вам быстро создать большинство карт изображения\n" "обычного типа - коллекции \"миниатюр\", подходящих для навигации." #: ../plug-ins/imagemap/imap_cmd_guides.c:172 @@ -10713,7 +10092,7 @@ #: ../plug-ins/imagemap/imap_cmd_guides.c:193 msgid "_No. Across:" -msgstr "К-во секторов в ширину:" +msgstr "Секторов в ширину:" #: ../plug-ins/imagemap/imap_cmd_guides.c:199 msgid "_Vert. Spacing:" @@ -10721,7 +10100,7 @@ #: ../plug-ins/imagemap/imap_cmd_guides.c:205 msgid "No. _Down:" -msgstr "К-во секторов в высоту:" +msgstr "Секторов в высоту:" #: ../plug-ins/imagemap/imap_cmd_guides.c:214 msgid "Base _URL:" @@ -10804,7 +10183,7 @@ #: ../plug-ins/imagemap/imap_cmd_unselect_all.c:53 msgid "Unselect All" -msgstr "Снять выделение со всего" +msgstr "Снять все выделение" #: ../plug-ins/imagemap/imap_edit_area_info.c:196 msgid "Link Type" @@ -10836,7 +10215,7 @@ #: ../plug-ins/imagemap/imap_edit_area_info.c:241 msgid "Tel_net" -msgstr "Телнет" +msgstr "Tel_net" #: ../plug-ins/imagemap/imap_edit_area_info.c:247 msgid "e-_mail" @@ -10848,7 +10227,7 @@ #: ../plug-ins/imagemap/imap_edit_area_info.c:255 msgid "Select HTML file" -msgstr "Выбрать HTML-файл" +msgstr "Выбрать файл HTML" #: ../plug-ins/imagemap/imap_edit_area_info.c:264 msgid "Relati_ve link" @@ -10897,16 +10276,12 @@ msgstr "Загрузка карты изображения" #: ../plug-ins/imagemap/imap_file.c:117 -#, fuzzy msgid "File already exists" -msgstr "Файл существует!" +msgstr "Файл существует" #: ../plug-ins/imagemap/imap_file.c:118 -#, fuzzy msgid "Do you really want to overwrite?" -msgstr "" -"Файл уже существует.\n" -"Вы действительно хотите его переписать?" +msgstr "Вы действительно хотите переписать?" #: ../plug-ins/imagemap/imap_file.c:166 msgid "Save Imagemap" @@ -10950,7 +10325,7 @@ #: ../plug-ins/imagemap/imap_grid.c:270 msgid "Grid Offset" -msgstr "Смещение направляющей" +msgstr "Смещение сетки" #: ../plug-ins/imagemap/imap_grid.c:277 msgid "pixels from l_eft" @@ -10965,9 +10340,8 @@ msgstr "Просмотр" #: ../plug-ins/imagemap/imap_main.c:128 -#, fuzzy msgid "_ImageMap..." -msgstr "О дополнении \"Карта изображения\"..." +msgstr "Карта изображения..." #: ../plug-ins/imagemap/imap_main.c:594 #: ../plug-ins/imagemap/imap_settings.c:171 @@ -11013,45 +10387,40 @@ msgstr "Файл" #: ../plug-ins/imagemap/imap_menu.c:187 -#, fuzzy msgid "Open recent" msgstr "Открыть последние" #: ../plug-ins/imagemap/imap_menu.c:209 #, c-format msgid "_Undo %s" -msgstr "Откат %s" +msgstr "Отменить %s" #: ../plug-ins/imagemap/imap_menu.c:225 #, c-format msgid "_Redo %s" -msgstr "Возврат %s" +msgstr "Повторить %s" #: ../plug-ins/imagemap/imap_menu.c:253 msgid "_Edit" msgstr "Правка" #: ../plug-ins/imagemap/imap_menu.c:271 -#, fuzzy msgid "Select _all" msgstr "Выделить все" #: ../plug-ins/imagemap/imap_menu.c:274 -#, fuzzy msgid "Deselect _all" msgstr "Снять выделение" #: ../plug-ins/imagemap/imap_menu.c:279 -#, fuzzy msgid "Edit area info..." -msgstr "Правка информации об области..." +msgstr "Правка инф. об области..." #: ../plug-ins/imagemap/imap_menu.c:294 msgid "_View" msgstr "Просмотр" #: ../plug-ins/imagemap/imap_menu.c:298 -#, fuzzy msgid "Area list" msgstr "Список областей" @@ -11065,7 +10434,6 @@ msgstr "Оттенки серого" #: ../plug-ins/imagemap/imap_menu.c:328 -#, fuzzy msgid "Zoom to" msgstr "Масштаб" @@ -11078,7 +10446,6 @@ msgstr "Стрелка" #: ../plug-ins/imagemap/imap_menu.c:365 -#, fuzzy msgid "Select contiguous region" msgstr "Выделить сплошную область" @@ -11087,17 +10454,14 @@ msgstr "Инструменты" #: ../plug-ins/imagemap/imap_menu.c:386 -#, fuzzy msgid "Grid settings..." -msgstr "Настройки направляющих..." +msgstr "Настройка сетки..." #: ../plug-ins/imagemap/imap_menu.c:389 -#, fuzzy msgid "Use GIMP guides..." msgstr "Использовать направляющие GIMP..." #: ../plug-ins/imagemap/imap_menu.c:391 -#, fuzzy msgid "Create guides..." msgstr "Создать направляющие..." @@ -11106,14 +10470,12 @@ msgstr "Справка" #: ../plug-ins/imagemap/imap_menu.c:401 -#, fuzzy msgid "_Contents" msgstr "Содержание" #: ../plug-ins/imagemap/imap_menu.c:405 -#, fuzzy msgid "_About ImageMap" -msgstr "О дополнении \"Карта изображения\"..." +msgstr "О ImageMap..." #: ../plug-ins/imagemap/imap_object_popup.c:103 msgid "Edit Area Info..." @@ -11121,7 +10483,7 @@ #: ../plug-ins/imagemap/imap_object_popup.c:105 msgid "Delete Area" -msgstr "/Удалить область" +msgstr "Удалить область" #: ../plug-ins/imagemap/imap_polygon.c:71 msgid "_Polygon" @@ -11153,7 +10515,7 @@ #: ../plug-ins/imagemap/imap_popup.c:154 msgid "Grid Settings..." -msgstr "Настройки направляющих..." +msgstr "Настройка сетки..." #: ../plug-ins/imagemap/imap_popup.c:156 msgid "Guides..." @@ -11168,7 +10530,6 @@ msgstr "Выбор цвета" #: ../plug-ins/imagemap/imap_preferences.c:443 -#, fuzzy msgid "General" msgstr "Общий вид" @@ -11201,7 +10562,6 @@ msgstr "Использовать выделение удвоенного размера" #: ../plug-ins/imagemap/imap_preferences.c:484 -#, fuzzy msgid "Menu" msgstr "Меню" @@ -11252,11 +10612,11 @@ #: ../plug-ins/imagemap/imap_selection.c:410 msgid "#" -msgstr "" +msgstr "#" #: ../plug-ins/imagemap/imap_selection.c:439 msgid "ALT Text" -msgstr "" +msgstr "Текст ALT" #: ../plug-ins/imagemap/imap_selection.c:449 msgid "Target" @@ -11335,9 +10695,8 @@ msgstr "Масштаб -" #: ../plug-ins/imagemap/imap_toolbar.c:147 -#, fuzzy msgid "Edit map info" -msgstr "Правка инфо о карте" +msgstr "Правка инф. о карте" #: ../plug-ins/imagemap/imap_tools.c:145 msgid "Select existing area" @@ -11378,12 +10737,11 @@ #: ../plug-ins/maze/algorithms.c:463 msgid "Constructing tileable maze using Prim's Algorithm..." msgstr "" -"Конструирование рассеченного лабиринта с использованием алгоритма Prim..." +"Конструирование безшовного лабиринта с использованием алгоритма Prim..." #: ../plug-ins/maze/maze.c:163 -#, fuzzy msgid "_Maze..." -msgstr "Мрамор" +msgstr "Лабиринт..." #: ../plug-ins/maze/maze.c:450 msgid "Drawing Maze..." @@ -11391,22 +10749,20 @@ #: ../plug-ins/maze/maze.h:2 msgid "Maze" -msgstr "Мрамор" +msgstr "Лабиринт" #. entscale == Entry and Scale pair function found in pixelize.c #: ../plug-ins/maze/maze_face.c:202 -#, fuzzy msgid "Width (pixels):" -msgstr "Ширина (точек растра):" +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 -#, fuzzy msgid "Height (pixels):" -msgstr "Высота (точек растра):" +msgstr "Высота (пикс.):" #: ../plug-ins/maze/maze_face.c:242 msgid "Multiple (57):" @@ -11417,12 +10773,10 @@ msgstr "Смещение (1):" #: ../plug-ins/maze/maze_face.c:287 -#, fuzzy msgid "Depth first" msgstr "Преимущественно в глубину" #: ../plug-ins/maze/maze_face.c:288 -#, fuzzy msgid "Prim's algorithm" msgstr "Алгоритм Prim'а" @@ -11435,7 +10789,6 @@ "Лабиринт будет неровный." #: ../plug-ins/pagecurl/pagecurl.c:224 -#, fuzzy msgid "_Pagecurl..." msgstr "Загибание страницы..." @@ -11448,22 +10801,18 @@ msgstr "Положение загиба" #: ../plug-ins/pagecurl/pagecurl.c:477 -#, fuzzy msgid "Lower right" msgstr "Снизу справа" #: ../plug-ins/pagecurl/pagecurl.c:478 -#, fuzzy msgid "Lower left" msgstr "Снизу слева" #: ../plug-ins/pagecurl/pagecurl.c:479 -#, fuzzy msgid "Upper left" msgstr "Сверху слева" #: ../plug-ins/pagecurl/pagecurl.c:480 -#, fuzzy msgid "Upper right" msgstr "Сверху справа" @@ -11472,26 +10821,22 @@ msgstr "Ориентация загиба" #: ../plug-ins/pagecurl/pagecurl.c:564 -#, fuzzy msgid "_Shade under curl" msgstr "Тень под загибом" #: ../plug-ins/pagecurl/pagecurl.c:577 msgid "Current gradient (reversed)" -msgstr "" +msgstr "Выбранный градиент(обращенный)" #: ../plug-ins/pagecurl/pagecurl.c:582 -#, fuzzy msgid "Current gradient" msgstr "Выбранный градиент" #: ../plug-ins/pagecurl/pagecurl.c:587 -#, fuzzy msgid "Foreground / background colors" msgstr "Передний план и фон" #: ../plug-ins/pagecurl/pagecurl.c:607 -#, fuzzy msgid "_Opacity:" msgstr "Непрозрачность:" @@ -11754,18 +11099,16 @@ msgstr "Файл PPD:" #: ../plug-ins/print/gimp_main_window.c:739 -#, fuzzy msgid "Enter the PPD filename for your printer" -msgstr "Ввод имени файла PPD для принтера" +msgstr "Укажите имя файла PPD для принтера" #: ../plug-ins/print/gimp_main_window.c:742 msgid "Browse" msgstr "Просмотр" #: ../plug-ins/print/gimp_main_window.c:748 -#, fuzzy msgid "Choose the PPD file for your printer" -msgstr "Укажите правильное имя файла PPD для вашего принтера" +msgstr "Выберите файл PPD" #. #. * Print command. @@ -11775,19 +11118,17 @@ msgstr "Команда:" #: ../plug-ins/print/gimp_main_window.c:771 -#, fuzzy msgid "" "Enter the command to print to your printer. Note: Please do not remove the `-" "l' or `-oraw' from the command string, or printing will probably fail!" msgstr "" -"Укажите правильную команду печати вашему принтеру. ВНимание: не убирайте\n" +"Укажите правильную команду печати вашему принтеру. Внимание: не убирайте\n" "`-l' или `-oraw' из командной строки, в этом случае печать может работать " "некорректно." #: ../plug-ins/print/gimp_main_window.c:781 -#, fuzzy msgid "Choose PPD File" -msgstr "Файл PPD?" +msgstr "Выбор файла PPD" #: ../plug-ins/print/gimp_main_window.c:802 msgid "Define New Printer" @@ -11795,7 +11136,6 @@ #: ../plug-ins/print/gimp_main_window.c:825 #: ../plug-ins/print/gimp_main_window.c:920 -#, fuzzy msgid "Printer name:" msgstr "Название принтера:" @@ -11866,7 +11206,6 @@ msgstr "Выберите имя принтера (не тип, не модель)" #: ../plug-ins/print/gimp_main_window.c:926 -#, fuzzy msgid "Printer model:" msgstr "Модель принтера:" @@ -11874,7 +11213,6 @@ #. * Setup printer button #. #: ../plug-ins/print/gimp_main_window.c:937 -#, fuzzy msgid "Setup printer..." msgstr "Настроить принтер..." @@ -11890,7 +11228,6 @@ #. * New printer button #. #: ../plug-ins/print/gimp_main_window.c:954 -#, fuzzy msgid "New printer..." msgstr "Новый принтер..." @@ -11907,7 +11244,6 @@ msgstr "Размер бумаги для печати" #: ../plug-ins/print/gimp_main_window.c:980 -#, fuzzy msgid "Media size:" msgstr "Размер листа:" @@ -11928,7 +11264,6 @@ msgstr "Тип носителя на который производится печать" #: ../plug-ins/print/gimp_main_window.c:1039 -#, fuzzy msgid "Media type:" msgstr "Тип носителя:" @@ -11937,7 +11272,6 @@ msgstr "Название лотка из которого будет происходить печать" #: ../plug-ins/print/gimp_main_window.c:1055 -#, fuzzy msgid "Media source:" msgstr "Источник:" @@ -11946,7 +11280,6 @@ msgstr "Тип чернил в принтере" #: ../plug-ins/print/gimp_main_window.c:1071 -#, fuzzy msgid "Ink type:" msgstr "Тип чернил:" @@ -11964,7 +11297,7 @@ #: ../plug-ins/print/gimp_main_window.c:1152 msgid "Scale by:" -msgstr "Масштаб Z:" +msgstr "Масштаб в:" #: ../plug-ins/print/gimp_main_window.c:1157 msgid "" @@ -11976,7 +11309,7 @@ #: ../plug-ins/print/gimp_main_window.c:1162 msgid "Percent" -msgstr "Процент" +msgstr "Процентах" #: ../plug-ins/print/gimp_main_window.c:1169 msgid "Scale the print to the size of the page" @@ -12042,7 +11375,6 @@ msgstr "Изображение/Настройки вывода" #: ../plug-ins/print/gimp_main_window.c:1317 -#, fuzzy msgid "Image type:" msgstr "Тип изображения:" @@ -12051,7 +11383,6 @@ msgstr "Определить тип изображения" #: ../plug-ins/print/gimp_main_window.c:1329 -#, fuzzy msgid "Line art" msgstr "Рисунок в линиях" @@ -12060,7 +11391,6 @@ msgstr "Самый быстрый и яркий - для текста и штриховых рисунков" #: ../plug-ins/print/gimp_main_window.c:1343 -#, fuzzy msgid "Solid colors" msgstr "Сплошные цвета" @@ -12079,7 +11409,6 @@ msgstr "Самый медленный, но самый аккуратный, наилучший выбор для фотографий." #: ../plug-ins/print/gimp_main_window.c:1389 -#, fuzzy msgid "Output type:" msgstr "Тип вывода:" @@ -12096,7 +11425,6 @@ msgstr "Пчатате в оттенках серого используя черные чернила" #: ../plug-ins/print/gimp_main_window.c:1424 -#, fuzzy msgid "Black and white" msgstr "Черный и белый" @@ -12108,7 +11436,6 @@ #. * Color adjust button #. #: ../plug-ins/print/gimp_main_window.c:1442 -#, fuzzy msgid "Adjust output..." msgstr "Подстройка вывода..." @@ -12118,12 +11445,10 @@ msgstr "Подстройка цветогого баланса, яркости, контрастности, насыщенности" #: ../plug-ins/print/gimp_main_window.c:1483 -#, fuzzy msgid "Print to File" -msgstr "Печатать в файл?" +msgstr "Печатать в файл" #: ../plug-ins/print/print.c:164 -#, fuzzy msgid "_Print..." msgstr "Печать..." @@ -12133,9 +11458,8 @@ msgstr "Файл" #: ../plug-ins/rcm/rcm.c:106 -#, fuzzy msgid "Colormap _Rotation..." -msgstr "Вращение цветовой карты" +msgstr "Вращение цветовой карты..." #: ../plug-ins/rcm/rcm.c:270 msgid "Rotating the colormap..." @@ -12151,11 +11475,11 @@ #: ../plug-ins/rcm/rcm_dialog.c:147 msgid "Continuous update" -msgstr "Непрерывное обновление" +msgstr "Автообновление" #: ../plug-ins/rcm/rcm_dialog.c:160 msgid "Area:" -msgstr "Область:" +msgstr "Обл.:" #: ../plug-ins/rcm/rcm_dialog.c:164 msgid "Entire Layer" @@ -12177,9 +11501,8 @@ #. * Gray: Operation-Mode * #: ../plug-ins/rcm/rcm_dialog.c:506 -#, fuzzy msgid "Gray Mode" -msgstr "Цветовой режим" +msgstr "Режим серого" #. Gray: Operation-Mode: two radio buttons #: ../plug-ins/rcm/rcm_dialog.c:515 @@ -12192,9 +11515,8 @@ #. * Gray: What is gray? * #: ../plug-ins/rcm/rcm_dialog.c:540 -#, fuzzy msgid "Gray Threshold" -msgstr "Порог зеленого:" +msgstr "Порог серого:" #. * Misc: Used unit selection * #: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 @@ -12224,9 +11546,8 @@ msgstr "Основные параметры" #: ../plug-ins/rcm/rcm_dialog.c:680 -#, fuzzy msgid "Gray Options" -msgstr "Общие параметры" +msgstr "Серый" #: ../plug-ins/rcm/rcm_stock.c:35 msgid "Switch to clockwise" @@ -12259,7 +11580,7 @@ #: ../plug-ins/sgi/sgi.c:122 ../plug-ins/sgi/sgi.c:142 msgid "Silicon Graphics IRIS image" -msgstr "" +msgstr "Silicon Graphics IRIS" #: ../plug-ins/sgi/sgi.c:540 #, c-format @@ -12271,22 +11592,18 @@ msgstr "Сохранить как SGI" #: ../plug-ins/sgi/sgi.c:631 -#, fuzzy msgid "Compression type" msgstr "Тип сжатия" #: ../plug-ins/sgi/sgi.c:635 -#, fuzzy msgid "No compression" msgstr "Без сжатия" #: ../plug-ins/sgi/sgi.c:637 -#, fuzzy msgid "RLE compression" -msgstr "RLE сжатие" +msgstr "Сжатие RLE" #: ../plug-ins/sgi/sgi.c:639 -#, fuzzy msgid "" "Aggressive RLE\n" "(not supported by SGI)" @@ -12296,15 +11613,15 @@ #: ../plug-ins/twain/twain.c:313 msgid "TWAIN (Dump)..." -msgstr "" +msgstr "TWAIN (Dump)..." #: ../plug-ins/twain/twain.c:332 msgid "TWAIN (Read)..." -msgstr "" +msgstr "TWAIN (Read)..." #: ../plug-ins/twain/twain.c:352 msgid "_TWAIN..." -msgstr "" +msgstr "_TWAIN..." #. Initialize our progress dialog #: ../plug-ins/twain/twain.c:489 @@ -12313,41 +11630,41 @@ #: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" -msgstr "" +msgstr "1 bpp, 1-bit alpha, 2-slot palette" #: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" -msgstr "" +msgstr "4 bpp, 1-bit alpha, 16-slot palette" #: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" -msgstr "" +msgstr "8 bpp, 1-bit alpha, 256-slot palette" #: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" -msgstr "" +msgstr "32 bpp, 8-bit alpha, no palette" #: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" -msgstr "" +msgstr "Дополнение GIMP Windows Icon" #: ../plug-ins/winicon/icodialog.c:138 -#, fuzzy msgid "Icon details" -msgstr "Детали набора" +msgstr "Детали иконки" #: ../plug-ins/winicon/icoload.c:340 #, c-format msgid "Icon #%i" -msgstr "" +msgstr "Иконка #%i" #: ../plug-ins/winicon/icosave.c:969 msgid "Windows icons cannot be higher or wider than 255 pixels." msgstr "" +"Размеры иконки для Windows не могут превышать 255 точек в длину или ширину." #: ../plug-ins/winicon/main.c:88 ../plug-ins/winicon/main.c:107 msgid "Microsoft Windows icon" -msgstr "" +msgstr "Иконка Microsoft Windows" #: ../plug-ins/winsnap/winsnap.c:877 msgid "Grab a single window" @@ -12362,7 +11679,6 @@ msgstr "через" #: ../plug-ins/winsnap/winsnap.c:919 -#, fuzzy msgid "Seconds delay" msgstr "Задержка в секундах" @@ -12376,7 +11692,7 @@ #: ../plug-ins/xjt/xjt.c:475 ../plug-ins/xjt/xjt.c:493 msgid "GIMP compressed XJT image" -msgstr "" +msgstr "Сжатое изображение GIMP XJT" #: ../plug-ins/xjt/xjt.c:714 #, c-format @@ -12413,7 +11729,6 @@ msgstr "Сохранить как XJT" #: ../plug-ins/xjt/xjt.c:870 -#, fuzzy msgid "Clear transparent" msgstr "Очистить прозрачное" @@ -12443,11 +11758,12 @@ #~ msgid "Before and After" #~ msgstr "До и после" -#, fuzzy +#~ msgid "Please install the gimp-help package to access GIMP help." +#~ msgstr "Чтобы получить доступ к справке GIMP установите пакет gimp-help." + #~ msgid "Gfig layer %d" #~ msgstr "Gfig слой %d" -#, fuzzy #~ msgid "TIFF images" #~ msgstr "Каналы TIFF" @@ -12463,7 +11779,6 @@ #~ msgid "Anti-Clockwise" #~ msgstr "Против часовой" -#, fuzzy #~ msgid "Ifs_Compose..." #~ msgstr "IfsCompose" @@ -12485,7 +11800,6 @@ #~ msgid "IfsCompose" #~ msgstr "IfsCompose" -#, fuzzy #~ msgid "Rotate/scale" #~ msgstr "Вращение/Масштаб" @@ -12519,7 +11833,6 @@ #~ msgid "See %s" #~ msgstr "Смотрите %s" -#, fuzzy #~ msgid "Loading %s:" #~ msgstr "Сохранение %s:" @@ -12554,115 +11867,87 @@ #~ "что эта тема еще не была написана или установка GIMP не полна. Прежде чем " #~ "сообщать об ошибке убедитесь что установка завершена." -#, fuzzy #~ msgid "/Filters/Render" #~ msgstr "/Фильтры/Визуализация/Gfig..." -#, fuzzy #~ msgid "/Filters/Light Effects" #~ msgstr "/Фильтры/Световые эффекты/Градиентная вспышка..." -#, fuzzy #~ msgid "/Filters/Map" #~ msgstr "/Фильтры/Отображение/Деформация..." -#, fuzzy #~ msgid "/Filters/Colors/Map" #~ msgstr "/Фильтры/Цвета/Макс. RGB..." -#, fuzzy #~ msgid "/Filters/Render/Pattern" #~ msgstr "/Фильтры/Визуализация/Шаблон/Лабиринт..." -#, fuzzy #~ msgid "/Filters/Animation" #~ msgstr "/Фильтры/Анимация/РазОптимизация" -#, fuzzy #~ msgid "/Filters/Glass Effects" #~ msgstr "/Фильтры/Эффекты стекол/Стеклянные блоки..." -#, fuzzy #~ msgid "/Image/Crop" #~ msgstr "/Изображение/Преобразование/Автокадр " -#, fuzzy #~ msgid "/Layer/Crop" #~ msgstr "/Слой/Преобразование/Усердное кадрирование" -#, fuzzy #~ msgid "/Layer/Colors/Auto" #~ msgstr "/Слои/Цвета/Авто/Нормализовать" -#, fuzzy #~ msgid "/Filters/Distorts" #~ msgstr "/Фильтры/Искажения/Ветер..." -#, fuzzy #~ msgid "/Filters/Blur" #~ msgstr "/Фильтры/Размывание/Размывание..." -#, fuzzy #~ msgid "/Filters/Colors" #~ msgstr "/Фильтры/Цвета/\"Горячие\"..." -#, fuzzy #~ msgid "/Layer/Colors/Info" #~ msgstr "/Слои/Цвета/Авто/Нормализовать" -#, fuzzy #~ msgid "/Layer/Transparency/Modify" #~ msgstr "/Слой/Прозрачность/Порог альфа-канала..." -#, fuzzy #~ msgid "/Image/Mode" #~ msgstr "/Изображение/Преобразование/Гильотина" -#, fuzzy #~ msgid "/Filters/Generic" #~ msgstr "/Фильтры/Общие/Эрозия (светлее)" -#, fuzzy #~ msgid "/Filters/Artistic" #~ msgstr "/Фильтры/Имитация/Кубизм..." -#, fuzzy #~ msgid "/Filters/Enhance" #~ msgstr "/Фильтры/Улучшение/Повышение резкости..." -#, fuzzy #~ msgid "/Filters/Combine" #~ msgstr "/Фильтры/Объединение/Фотопленка..." -#, fuzzy #~ msgid "/Filters/Edge-Detect" #~ msgstr "/Фильтры/Выделение края/Лаплас" -#, fuzzy #~ msgid "/Filters/Toys" #~ msgstr "/Фильтры/Игры/Масштаб" -#, fuzzy #~ msgid "/Image/Transform" #~ msgstr "/Изображение/Преобразование/Автокадр " -#, fuzzy #~ msgid "/File/Send" #~ msgstr "/Файл/Печать..." -#, fuzzy #~ msgid "_Do preview" #~ msgstr "Просматривать" -#, fuzzy #~ msgid "/Filters/Noise" #~ msgstr "/Фильтры/Шум/Таянье..." -#, fuzzy #~ msgid "/Filters/Render/Clouds" #~ msgstr "/Фильтры/Визуализация/Облака/Плазма..." -#, fuzzy #~ msgid "/File/Acquire" #~ msgstr "/Файл/Захватить/TWAIN..." @@ -12675,31 +11960,24 @@ #~ msgid "Pos Z:" #~ msgstr "Поз. Z:" -#, fuzzy #~ msgid "/Xtns/Extensions" #~ msgstr "/Расш./Редактор единиц" -#, fuzzy #~ msgid "/Edit" #~ msgstr "/Файл/Печать..." -#, fuzzy #~ msgid "/Filters/Render/Nature" #~ msgstr "/Фильтры/Визуализация/Природа/Пламя..." -#, fuzzy #~ msgid "/Filters/Web" #~ msgstr "/Фильтры/Web/Карта изображения..." -#, fuzzy #~ msgid "Source" #~ msgstr "Источник 1:" -#, fuzzy #~ msgid "Do pre_view" #~ msgstr "Просмотр" -#, fuzzy #~ msgid "_Plugin Details" #~ msgstr "Описание дополнения" @@ -12724,11 +12002,9 @@ #~ msgid "Search by Name" #~ msgstr "Поиск по названию(имени)" -#, fuzzy #~ msgid "Ins date" #~ msgstr "Дата установки" -#, fuzzy #~ msgid "Menu path" #~ msgstr "Путь меню" @@ -12741,11 +12017,9 @@ #~ msgid "Out:" #~ msgstr "Выход:" -#, fuzzy #~ msgid "_Spherical" #~ msgstr "Сферический" -#, fuzzy #~ msgid "S_inusoidal" #~ msgstr "Синусоидальный" diff -uraN gimp-2.2.6/po-plug-ins/sk.gmo gimp-2.2.7/po-plug-ins/sk.gmo --- gimp-2.2.6/po-plug-ins/sk.gmo 2005-04-10 02:12:03.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/sk.gmo 2005-05-08 23:42:25.000000000 +0200 @@ -464,7 +464,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-27 10:28+0100 Last-Translator: Marcel Telka Language-Team: Slovak diff -uraN gimp-2.2.6/po-plug-ins/sk.po gimp-2.2.7/po-plug-ins/sk.po --- gimp-2.2.6/po-plug-ins/sk.po 2005-04-10 02:11:56.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/sk.po 2005-05-08 23:42:16.000000000 +0200 @@ -3,13 +3,13 @@ # Zdenko Podobný , 2004. # Marcel Telka , 2005. # -# $Id: sk.po,v 1.80.2.5 2005/04/09 21:38:59 neo Exp $ +# $Id: sk.po,v 1.80.2.6 2005/04/10 00:16:14 neo Exp $ # msgid "" msgstr "" "Project-Id-Version: gimp-plug-ins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-27 10:28+0100\n" "Last-Translator: Marcel Telka \n" "Language-Team: Slovak \n" @@ -287,8 +287,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Žiadna" @@ -391,7 +391,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1062,7 +1062,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Otočenie" @@ -1258,7 +1258,7 @@ #: ../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:833 +#: ../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 @@ -1289,7 +1289,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2215,7 +2215,7 @@ msgid "_Elevation:" msgstr "_Vyvýšenie:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "_X posun:" @@ -2227,7 +2227,7 @@ "Posun môže byť upravený pretiahnutím náhľadu pomocou prostredného tlačítka " "myši." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "_Y posun:" @@ -2639,11 +2639,11 @@ msgid "Re_d" msgstr "Če_rvená" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Zelená" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Modrá" @@ -3200,7 +3200,7 @@ msgstr "Odstraňovanie pruhov" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3297,7 +3297,7 @@ msgstr "Š_kvrna" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "Či_erna" @@ -3411,8 +3411,8 @@ msgstr "Rytina" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4934,7 +4934,7 @@ msgid "Blur Parameters" msgstr "Parametre rozostrenia" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "U_hol:" @@ -5145,122 +5145,122 @@ msgid "_Amount:" msgstr "Mier_a:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Kruhový" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Čiara" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Diamant" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS štvorec (euklidovské bodka)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS diamant" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "Š_edá" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "Čer_vená" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "_Azúrová" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "P_urpurová" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "Žl_tá" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intenzita" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "Novinová _tlač..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Novinová tlač..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "Ra_strovacia funkcia:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Novinová tlač" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Rozlíšenie" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "Vstupné SP_I:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "Výst_upné LPI" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "V_eľkosť bunky:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Obrazovka" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "_Stiahnutie úrovne čiernej (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Oddeliť do:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntenzita" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "Uzamknúť kaná_ly" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "_Továrenské štandardy" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Vyhladzovanie" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "Pre_vzorkovanie:" @@ -5784,64 +5784,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "PostScript zápis nevie spracovať obrázky s alfa kanálmi." -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Chyba pri spúšťaní programu ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Chyba pri spúšťaní programu ghostscript: (%s)" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Vyskytla sa chyba" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Načítavam PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Generovanie" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Rozlíšenie:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Strany:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Strany pre načítanie (napr.: 1-4 or 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Skúsiť ohraničenie (Bounding Box)" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Farbenie" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "Č/B" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Šedá" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5849,40 +5849,40 @@ msgid "Color" msgstr "Farba" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatické" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Vyhladzovanie textu" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Slabé" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Silné" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Vyhladzovanie grafiky" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Uložiť ako PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Veľkosť obrázka" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Zachovať pomer strán" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5891,36 +5891,36 @@ "zmeny pomeru strán" #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Jednotka" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Palec" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Milimeter" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Výstup" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript Level 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Zapuzdrený Postscript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "_Náhľad" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "Veľko_sť náhľadu:" @@ -7139,16 +7139,16 @@ msgid "TIFF image" msgstr "TIFF obrázok" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Strana %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF kanál" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7159,7 +7159,7 @@ "Obrázok, ktorý načítavate má 16 bitov na kanál. GIMP vie spracovať iba 8 " "bitov a tak bude skonvertovaný. Informácie počas konverzie budú stratené." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7167,40 +7167,40 @@ "Formát TIFF podporuje komentáre len v sedembitovom\n" "kódovaní ASCII. Komentár nebol uložený." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Uložiť ako TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Kompresia" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "Žiad_ne" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Balenie bitov" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "Re_dukovať" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Uložiť _hodnoty farby priesvitných bodov" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Komentár:" diff -uraN gimp-2.2.6/po-plug-ins/sr.gmo gimp-2.2.7/po-plug-ins/sr.gmo --- gimp-2.2.6/po-plug-ins/sr.gmo 2005-04-10 02:12:04.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/sr.gmo 2005-05-08 23:42:25.000000000 +0200 @@ -419,7 +419,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-01-28 13:05+0100 Last-Translator: Бранко Ивановић Language-Team: Serbian (sr) diff -uraN gimp-2.2.6/po-plug-ins/sr@Latn.gmo gimp-2.2.7/po-plug-ins/sr@Latn.gmo --- gimp-2.2.6/po-plug-ins/sr@Latn.gmo 2005-04-10 02:12:04.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/sr@Latn.gmo 2005-05-08 23:42:25.000000000 +0200 @@ -450,7 +450,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp 2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-01-28 13:05+0100 Last-Translator: Branko Ivanović Language-Team: Serbian (sr) diff -uraN gimp-2.2.6/po-plug-ins/sr@Latn.po gimp-2.2.7/po-plug-ins/sr@Latn.po --- gimp-2.2.6/po-plug-ins/sr@Latn.po 2005-04-10 02:11:57.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/sr@Latn.po 2005-05-08 23:42:17.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-01-28 13:05+0100\n" "Last-Translator: Branko Ivanović \n" "Language-Team: Serbian (sr) \n" @@ -309,8 +309,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Ništa" @@ -419,7 +419,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1148,7 +1148,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotacija" @@ -1363,7 +1363,7 @@ #: ../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:833 +#: ../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 @@ -1395,7 +1395,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2366,7 +2366,7 @@ msgid "_Elevation:" msgstr "Elevacija:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "_X pomeraj:" @@ -2377,7 +2377,7 @@ msgstr "" "Pomeraj se može podesiti vučenjem prikaza korišćenjem desnog dugmeta na mišu." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "_Y pomeraj:" @@ -2801,11 +2801,11 @@ msgid "Re_d" msgstr "Crvena" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "Zelena:" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "Plava:" @@ -3403,7 +3403,7 @@ msgstr "Destripe" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3515,7 +3515,7 @@ msgstr "Razmaz" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "Crna" @@ -3643,8 +3643,8 @@ msgstr "Rezbarenje" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5326,7 +5326,7 @@ msgid "Blur Parameters" msgstr "Parametri zamućenja" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "Ugao:" @@ -5548,133 +5548,133 @@ msgid "_Amount:" msgstr "Vrednost:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Kružno" # -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Crta" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Dijamant" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS Kvadrat (Euklidova točka)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS Dijamant" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "Siva" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "Crvena" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "Cijan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magenta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "Žuta" # -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intenzitet" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "_Novinski tekst..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Novinski tekst..." # -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "_Spot Funkcija:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Newsprint" # #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Rezolucija" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "Ulaz SPI:" # -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "Izlaz LPI:" # -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "Veli_čina ćelije:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Zaslon" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "Za_crnjenje Izlaza (%):" # -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Odvoji u:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" # -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "Intenzitet" # -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "_Zaključaj Kanale" # -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "_Podrazumevano" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Omekšavanje" # -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "Preklapanje:" @@ -6255,68 +6255,68 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Postskript čuvanje ne radi na slikama sa alfa kanalima" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Greška pri pokretanju ghostscript-a (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Greška pri pokretanju ghostscripta: %s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Greška pri upisu" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Učitaj Postskript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Iscrtavam" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Razlučivost:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Stranice:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Broj strana za učitavanje (npr.: 1-4 ili 1,3,5-7)" # -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Pokušaj pomoću okvira" # #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Bojanje" # -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "B/W" # -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Siva" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6324,46 +6324,46 @@ msgid "Color" msgstr "Boja" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatski" # -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Omekšavanje teksta" # -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Slabo" # -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Jako" # -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Omekšavanje grafike" # -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Spremi kao Postskript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Veličina slike" # -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Zadrži razmeru" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -6372,37 +6372,37 @@ "menjanja razmera." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Jedinica" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "Inč" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "Milimetar" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Izlaz" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_Postskript nivo 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "Enkapsulirani Postskript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Pregled" # -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "_Veličina pregleda:" @@ -7707,16 +7707,16 @@ msgid "TIFF image" msgstr "TIFF slika" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Strana %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF kanal" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7728,7 +7728,7 @@ "tako da će ovo prevesti. Informacije će biti izgubljene zbogovakvog " "prevođenja." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7736,41 +7736,41 @@ "TIFF format podržava samo komentare u\n" "7bit ASCII kodiranju. Komentar nije sačuvan." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Sačuvaj kao TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Kompresija" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "Ništa" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "Paketno" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "Izduvaj" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Sačuvaj _vrednosti boje iz providnih tačaka" # -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Komentar:" diff -uraN gimp-2.2.6/po-plug-ins/sr.po gimp-2.2.7/po-plug-ins/sr.po --- gimp-2.2.6/po-plug-ins/sr.po 2005-04-10 02:11:56.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/sr.po 2005-05-08 23:42:17.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: gimp 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-01-28 13:05+0100\n" "Last-Translator: Бранко Ивановић \n" "Language-Team: Serbian (sr) \n" @@ -309,8 +309,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Ништа" @@ -417,7 +417,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1146,7 +1146,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Ротација" @@ -1361,7 +1361,7 @@ #: ../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:833 +#: ../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 @@ -1393,7 +1393,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2364,7 +2364,7 @@ msgid "_Elevation:" msgstr "Елевација:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "_X померај:" @@ -2375,7 +2375,7 @@ msgstr "" "Померај се може подесити вучењем приказа коришћењем десног дугмета на мишу." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "_Y померај:" @@ -2799,11 +2799,11 @@ msgid "Re_d" msgstr "Црвена" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../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:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "Плава:" @@ -3401,7 +3401,7 @@ msgstr "Дестрипе" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3513,7 +3513,7 @@ msgstr "Размаз" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "Црна" @@ -3641,8 +3641,8 @@ msgstr "Резбарење" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5324,7 +5324,7 @@ msgid "Blur Parameters" msgstr "Параметри замућења" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "Угао:" @@ -5546,133 +5546,133 @@ msgid "_Amount:" msgstr "Вредност:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Кружно" # -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Црта" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Дијамант" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "ПС Квадрат (Еуклидова точка)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "ПС Дијамант" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "Сива" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "Црвена" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "Цијан" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Магента" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "Жута" # -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Интензитет" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "_Новински текст..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Новински текст..." # -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "_Спот Функција:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Неwспринт" # #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Резолуција" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "Улаз SPI:" # -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "Излаз LPI:" # -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "Вели_чина ћелије:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Заслон" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "За_црњење Излаза (%):" # -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Одвоји у:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" # -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "Интензитет" # -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "_Закључај Канале" # -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "_Подразумевано" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Омекшавање" # -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "Преклапање:" @@ -6253,68 +6253,68 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Постскрипт чување не ради на сликама са алфа каналима" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Грешка при покретању ghostscript-а (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Грешка при покретању ghostscriptа: %s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Учитај Постскрипт" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Исцртавам" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Странице:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Број страна за учитавање (нпр.: 1-4 или 1,3,5-7)" # -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Покушај помоћу оквира" # #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Бојање" # -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "Б/W" # -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Сива" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6322,46 +6322,46 @@ msgid "Color" msgstr "Боја" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Аутоматски" # -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Омекшавање текста" # -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Слабо" # -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Јако" # -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Омекшавање графике" # -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Спреми као Постскрипт" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Величина слике" # -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Задржи размеру" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -6370,37 +6370,37 @@ "мењања размера." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Јединица" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "Инч" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "Милиметар" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Излаз" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_Постскрипт ниво 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "Енкапсулирани Постскрипт" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Преглед" # -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "_Величина прегледа:" @@ -7704,16 +7704,16 @@ msgid "TIFF image" msgstr "TIFF слика" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Страна %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF канал" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7724,7 +7724,7 @@ "Слика коју учитавате има 16 бита по каналу. Гимп може радити само са 8 бита, " "тако да ће ово превести. Информације ће бити изгубљене збоговаквог превођења." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7732,41 +7732,41 @@ "TIFF формат подржава само коментаре у\n" "7bit ASCII кодирању. Коментар није сачуван." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Сачувај као TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Компресија" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "Ништа" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "Пакетно" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "Издувај" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Сачувај _вредности боје из провидних тачака" # -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Коментар:" diff -uraN gimp-2.2.6/po-plug-ins/sv.gmo gimp-2.2.7/po-plug-ins/sv.gmo --- gimp-2.2.6/po-plug-ins/sv.gmo 2005-04-10 02:12:04.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/sv.gmo 2005-05-08 23:42:25.000000000 +0200 @@ -480,7 +480,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-11-29 12:03+0900 Last-Translator: Jan Morén Language-Team: Swedish diff -uraN gimp-2.2.6/po-plug-ins/sv.po gimp-2.2.7/po-plug-ins/sv.po --- gimp-2.2.6/po-plug-ins/sv.po 2005-04-10 02:11:57.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/sv.po 2005-05-08 23:42:18.000000000 +0200 @@ -4,13 +4,13 @@ # Christian Rose , 2000, 2001, 2002. # Jan Morén , 2002, 2003. # -# $Id: sv.po,v 1.139.2.4 2005/04/09 21:39:02 neo Exp $ +# $Id: sv.po,v 1.139.2.5 2005/04/10 00:16:15 neo Exp $ # msgid "" msgstr "" "Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-11-29 12:03+0900\n" "Last-Translator: Jan Morén \n" "Language-Team: Swedish \n" @@ -289,8 +289,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Ingen" @@ -395,7 +395,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1067,7 +1067,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Rotation" @@ -1264,7 +1264,7 @@ #: ../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:833 +#: ../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 @@ -1295,7 +1295,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2223,7 +2223,7 @@ msgid "_Elevation:" msgstr "_Höjd:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "_X offset:" @@ -2234,7 +2234,7 @@ msgstr "" "Offset kan justeras genom att dra förhandsgranskningen med mittenmusknappen." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "_Y offset:" @@ -2646,11 +2646,11 @@ msgid "Re_d" msgstr "R_öd" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "_Grön" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "_Blå" @@ -3211,7 +3211,7 @@ msgstr "Ta bort bandning" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3308,7 +3308,7 @@ msgstr "_Smeta ut" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Svart" @@ -3423,8 +3423,8 @@ msgstr "Gravera" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4945,7 +4945,7 @@ msgid "Blur Parameters" msgstr "Oskärpeinställningar" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Vinkel:" @@ -5158,122 +5158,122 @@ msgid "_Amount:" msgstr "_Mängd:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Runda" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Rad" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Romb" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS kvadrat (Euklidisk punkt)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS romb" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Grått" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "R_öd" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "C_yan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Magen_ta" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "G_ul" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Intensitet" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "_Tidningstryck..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Tidningstryck..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "_Fläckfunktion:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Tidningstryck" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Upplösning" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "_Ingående SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "U_tgående LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "C_ellstorlek:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Skärm" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "S_vartseparation (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Separera till:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "I_ntensitet" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "_Lås kanaler" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "Ställ in _standardvärden" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Kantutjämning" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "Ö_versampla:" @@ -5800,64 +5800,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "PostScript kan inte spara bilder med en alfakanal" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Fel vid uppstart av ghostrscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Fel vid uppstart av ghostrscript: %s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 "Skrivfel har inträffat" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Läs in PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Rendering" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Upplösning:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Sidor:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Sidor att läsa in (exempelvis: 1-4 eller 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Prova begränsningsram" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Färgsättning" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "S/V" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Grått" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5865,40 +5865,40 @@ msgid "Color" msgstr "Färg" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Automatisk" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Kantutjämning av text" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Svag" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Mättad" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Grafisk kantutjämning" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Spara som PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Bildstorlek" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "_Behåll proportioner" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5907,36 +5907,36 @@ "ändra proportionerna" #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Enhet" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Tum" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Millimeter" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Utmatning" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript Level 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "Enkapsulerad Postscript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "F_örhandsgranska" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "Förhandsvisnings_storlek:" @@ -7156,16 +7156,16 @@ msgid "TIFF image" msgstr "TIFF-bild" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Sida %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF-kanal" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7177,7 +7177,7 @@ "så den blir konverterad åt dig. På grund av konverteringen kommer " "information att förloras." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7185,41 +7185,41 @@ "TIFF-formatet stöder endast kommentarer i\n" "7-bitars ASCII. Ingen kommentar sparad." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Spara som TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Komprimering" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Ingen" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Packa bitar" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Packa ihop" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Spara färg_värden från genomskinsliga bildpunkter" # src/header_stuff.c:462 -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Kommentar:" diff -uraN gimp-2.2.6/po-plug-ins/tr.gmo gimp-2.2.7/po-plug-ins/tr.gmo --- gimp-2.2.6/po-plug-ins/tr.gmo 2005-04-10 02:12:04.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/tr.gmo 2005-05-08 23:42:25.000000000 +0200 @@ -25,7 +25,7 @@  iJ};cX/ 51&dM_y%v)4? :HVR7kZ3fPBmD<,gWKC FEY=zN\`~]To6Sw>bp+ 2q-#h!L*|0O (QG$.t@aux^UsAI[j lnr8"e'{9A_nimateA_utomaticAboutActionAd_vancedAngle:Animated GIF OptionsAuthor:AutomaticBackgroundBackground:Bad colormapBlackBlueBlue:Bottom:C_ylinderChannelsClearCo_lor:Co_lorsCo_mment:ColorColorsCommentComposeCopyCopyright:Cro_pCu_rve:CutDate:DefaultDeleteDelete PointDescription:Dimension:Direction VectorDirectionalEditFileFilename:Filename: %sForegroundFrame %dFromFrom:GIF OptionsGIF WarningGIMP Plug-InGeneralGr_eyGrayGreenGreen:GridHTML Page OptionsHeight:HorizontalHorizontal ColorHotI_nteractiveIntensity LevelsIntersectionIntersection ColorL_ength:LandscapeLeft:LightLighting EffectsLinearLogarithmicMandelbrot ParametersManualMoveNameNoneNumber of ColorsNumber of _Frames:Number of colors:O_ptionsO_rientationO_thersOp_tionsOpenOptionsOrientationPastePixelsPointPortraitPositionPreferencesPreviewR_ecursiveR_epeat:Re_dRedRed:RedoReflectivityReplaceRight:Rotat_e:S_hrinkSaveSaving '%s'...Sc_attering:ScreenSelectSelect AllSet light source colorShowSinusoidalSizeSize:Spacing:SphericalTable Creation OptionsTable OptionsToTo:Top:TransparentTypeType of light source to applyType:UndoUnnamedUntitledValueVerticalVertical ColorWarningWhiteWidth:X:X_1:X_2:Y:Y_1:Y_2:YellowZ:Zoom inZoom out_Advanced_Amount:_Animate_Black_Blue_Blue:_Border:_Bottom:_Brightness:_Copy_Depth:_Font:_Free_Gradient_Green_Green:_Grow_Height:_Horizontal_Laplace_Light_Material_Mirror_None_Parameters_Ping Pong_Preview!_Red:_Settings_Size:_Top:_Transparent_Update_Upper_Vertical_Width:_X:_Y:_Z:afterpixelsProject-Id-Version: GIMP 1.2.1 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2003-12-31 17:49+0000 Last-Translator: Fatih Demir Language-Team: Turkish diff -uraN gimp-2.2.6/po-plug-ins/tr.po gimp-2.2.7/po-plug-ins/tr.po --- gimp-2.2.6/po-plug-ins/tr.po 2005-04-10 02:11:58.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/tr.po 2005-05-08 23:42:18.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: GIMP 1.2.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2003-12-31 17:49+0000\n" "Last-Translator: Fatih Demir \n" "Language-Team: Turkish \n" @@ -272,8 +272,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Yok" @@ -370,7 +370,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1070,7 +1070,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "" @@ -1266,7 +1266,7 @@ #: ../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:833 +#: ../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 @@ -1297,7 +1297,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2263,7 +2263,7 @@ msgid "_Elevation:" msgstr "" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 #, fuzzy msgid "_X offset:" msgstr "Açı:" @@ -2274,7 +2274,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 #, fuzzy msgid "_Y offset:" msgstr "Açı:" @@ -2695,11 +2695,11 @@ msgid "Re_d" msgstr "_Kırmızı" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "Yeşi_l" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "Mav_i" @@ -3272,7 +3272,7 @@ msgstr "" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3376,7 +3376,7 @@ msgstr "" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Siyah" @@ -3499,8 +3499,8 @@ msgstr "" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5062,7 +5062,7 @@ msgid "Blur Parameters" msgstr "" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 #, fuzzy msgid "_Angle:" msgstr "Açı:" @@ -5290,128 +5290,128 @@ msgid "_Amount:" msgstr "_Miktar:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 #, fuzzy msgid "_Grey" msgstr "Gri" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 #, fuzzy msgid "R_ed" msgstr "Kırmızı" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 #, fuzzy msgid "_Yellow" msgstr "Sarı" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "Hücre Boyu:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Ekran" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "Kanallar" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "Öntanımlı" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 #, fuzzy msgid "O_versample:" msgstr "Yeniden boyutlandır" @@ -5960,64 +5960,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Gri" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6025,79 +6025,79 @@ msgid "Color" msgstr "Renk" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Otomatik" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "_Yumuşatma Kullan" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "_Yumuşatma Kullan" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 #, fuzzy msgid "P_review" msgstr "Önizleme" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "Önizleme Boyutu:" @@ -7396,16 +7396,16 @@ msgid "TIFF image" msgstr "Resim" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, fuzzy, c-format msgid "Page %d" msgstr "Çerçeve %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7413,47 +7413,47 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Hiçbiri" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 #, fuzzy msgid "_Deflate" msgstr "Sil" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "" diff -uraN gimp-2.2.6/po-plug-ins/uk.gmo gimp-2.2.7/po-plug-ins/uk.gmo --- gimp-2.2.6/po-plug-ins/uk.gmo 2005-04-10 02:12:04.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/uk.gmo 2005-05-08 23:42:25.000000000 +0200 @@ -405,7 +405,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)k(1-x^p) steppedkx^pkx^p steppedk{x(1-x)}^pk{x(1-x)}^p steppedluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p, steppedsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-plug-ins 2.0.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-02-24 20:58+0200 Last-Translator: Maxim Dziumanenko Language-Team: Ukrainian diff -uraN gimp-2.2.6/po-plug-ins/uk.po gimp-2.2.7/po-plug-ins/uk.po --- gimp-2.2.6/po-plug-ins/uk.po 2005-04-10 02:11:58.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/uk.po 2005-05-08 23:42:19.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: gimp-plug-ins 2.0.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-02-24 20:58+0200\n" "Last-Translator: Maxim Dziumanenko \n" "Language-Team: Ukrainian \n" @@ -284,8 +284,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Немає" @@ -387,7 +387,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1059,7 +1059,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Обертання" @@ -1255,7 +1255,7 @@ #: ../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:833 +#: ../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 @@ -1286,7 +1286,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2214,7 +2214,7 @@ msgid "_Elevation:" msgstr "Під_вищення:" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "Зсув по _X:" @@ -2226,7 +2226,7 @@ "Зсув можна скорегувати перетягуванням перегляду з використання середньої " "кнопки." -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "Зсув по _Y:" @@ -2639,11 +2639,11 @@ msgid "Re_d" msgstr "_Червоний" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../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:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "С_иній" @@ -3201,7 +3201,7 @@ msgstr "Прибирання штрихів" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3298,7 +3298,7 @@ msgstr "_Розмазати" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "_Чорний" @@ -3412,8 +3412,8 @@ msgstr "Гравюра" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4933,7 +4933,7 @@ msgid "Blur Parameters" msgstr "Параметри розмивання" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "К_ут:" @@ -5145,122 +5145,122 @@ msgid "_Amount:" msgstr "_Величина:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "Коло" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "Лінія" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "Ромб" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS-квадрат (Евклідова точка)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS-ромб" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Сірий" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "_Червоний" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "_Бірюзовий" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "_Пурпурний" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "_Жовтий" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Інтенсивність" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "_Газетний папір" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "Газетний папір" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "К_рапельна функція:" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "Газета" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Роздільна здатність" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "SPI на в_ході:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "LPI в_иводі:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "Розмір _комірки:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Екран" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "_Чорна складова (%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "Розділити на:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "_Інтенсивність" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "_Фіксувати канали" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "Поча_ткові параметри" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Згладжування контурів" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "П_ерекриття:" @@ -5786,64 +5786,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "Зображення з альфа-каналами не можна зберегти як PostScript" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "Помилка запуску ghostscript (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "Помилка запуску ghostscript (%s)" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Завантажити PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "Візуалізація" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Сторінки:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "Сторінок для завантаження(наприклад: 1-4 чи 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "Обмежувати розмір" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "Фарбування" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "Ч/Б" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Сірий" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5851,40 +5851,40 @@ msgid "Color" msgstr "Колір" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Автоматично" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "Згладжування тексту" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Слабке" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Сильне" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "Згладжування графіки" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Збереження у PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Розмір зображення" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "З_берігати пропорції" -#: ../plug-ins/common/postscript.c:3158 +#: ../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." @@ -5893,36 +5893,36 @@ "розміру без зміни пропорцій." #. Unit -#: ../plug-ins/common/postscript.c:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Одиниця" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Дюйм" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Міліметр" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Вивід" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript level 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Encapsulated PostScript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "_Перегляд" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "_Розмір перегляду:" @@ -7141,16 +7141,16 @@ msgid "TIFF image" msgstr "Зображення TIFF" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "Сторінка %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "Канал TIFF" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7162,7 +7162,7 @@ "підтримує лише 8 біт на канал, тому зображення буде перетворене. В процесі " "перетворення частина інформації буде втрачена." -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7170,40 +7170,40 @@ "Формат TIFF підтримує лише 7-бітні ASCII\n" "коментарі. Коментар не збережено." -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Збереження як TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Тип стиснення" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Немає" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "_Упаковані біти" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Стиснення" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "Зберігати значення _кольору прозорих точок" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Коментар:" diff -uraN gimp-2.2.6/po-plug-ins/vi.gmo gimp-2.2.7/po-plug-ins/vi.gmo --- gimp-2.2.6/po-plug-ins/vi.gmo 2005-04-10 02:12:04.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/vi.gmo 2005-05-08 23:42:25.000000000 +0200 @@ -116,7 +116,7 @@ Image SizeUse average valueUse cosine-function for this color componentUse reverse valueUse sine-function for this color componentValueValue:Van Gogh (LIC)VectorsVerticalVertical ColorVerticallyVideoVideo/RGB...View SourceWarningWarning: the source and the destination are the same channel.Warning: unsupported layermode %d saved to XJTWarning: unsupported pathtype %d saved to XJTWarning: unsupported unittype %d saved to XJTWeakWhiteWidth of the paper that you wish to print toWidth:WindowsWith gradient power (0,1)With p and random (0,1)With random power (0,1)With random power (0,10)X scale (size)X:XBM OptionsXJT file contains unknown layermode %dXJT file contains unknown pathtype %dXJT file contains unknown unittype %dXMAX:XMIN:X_1:X_2:Y scale (size)Y:YMAX:YMIN:Y_1:Y_2:YellowYellow:Z scale (size)Z:ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Advanced_Alpha_Alpha:_Amount:_Angle:_Antialiasing_Automatically convert_Background_Black_Blacken_Blue_Blue:_Bottom:_Box_Brightness_Brightness:_Brush_Copy_Depth:_Description:_Detail:_Digits:_Edit_Factor:_File_Force_Ftp Site_Gamma:_General_Gradient_Gray:_Green_Green:_Grey_Height_Height:_Help_Hex_Hidden_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_Ideal_Ignore_Inch_Input SPI:_Insert_JPEG_JavaScript_Kill_LZW_Left Start at:_Light_Lines_Link_Mapping_Material_Max (%):_Millimeter_Misc Ops._Move_None_Normal_Plural:_Polygon_Presets_Preview_Preview!_Prompt for area info_RGB_RLE compression_RLE encoded_Randomize_Red:_Redo %s_Remove_Require default URL_Saturation_Saturation:_Search:_Settings_Sharpness:_Size_Size:_Speed:_Symbol:_Thickness:_Threshold_Threshold:_Title:_Tools_Top Start at:_Top:_Transparent_Undo %s_Update_Value_Value:_Vert. Spacing:_Vertical_Vertical:_View_Waterlevel:_Web Site_White_Width_Width:_X Scale:_X:_Y Scale:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.afteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyane-_mailgreenhueinvalid formatted GFlare file: %s k(1-x^p)kx^pk{x(1-x)}^pluma_y470luma_y470fluma_y709luma_y709fmagentapixelsredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationvaluex (pixels)y (pixels)yellowProject-Id-Version: Gimp-plug-ins VERSION Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2003-02-01 13:08+0700 Last-Translator: Trinh Minh Thanh Language-Team: Gnome-Vi diff -uraN gimp-2.2.6/po-plug-ins/vi.po gimp-2.2.7/po-plug-ins/vi.po --- gimp-2.2.6/po-plug-ins/vi.po 2005-04-10 02:11:58.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/vi.po 2005-05-08 23:42:19.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Gimp-plug-ins VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2003-02-01 13:08+0700\n" "Last-Translator: Trinh Minh Thanh \n" "Language-Team: Gnome-Vi \n" @@ -276,8 +276,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "Không" @@ -377,7 +377,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1090,7 +1090,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "Quay" @@ -1288,7 +1288,7 @@ #: ../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:833 +#: ../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 @@ -1320,7 +1320,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2308,7 +2308,7 @@ msgid "_Elevation:" msgstr "" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 #, fuzzy msgid "_X offset:" msgstr "_X Offset:" @@ -2319,7 +2319,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 #, fuzzy msgid "_Y offset:" msgstr "_Y Offset:" @@ -2752,11 +2752,11 @@ msgid "Re_d" msgstr "_Đỏ" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "X_anh lá cây" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "Xanh _da trời" @@ -3344,7 +3344,7 @@ msgstr "" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3450,7 +3450,7 @@ msgstr "" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "Đ_en" @@ -3574,8 +3574,8 @@ msgstr "" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -5158,7 +5158,7 @@ msgid "Blur Parameters" msgstr "" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "_Góc:" @@ -5395,128 +5395,128 @@ msgid "_Amount:" msgstr "_Số lượng:" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "_Xám" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "_Đỏ" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "Tím C_yan" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "Đỏ tí_a" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "_Vàng" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "Cường độ" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 #, fuzzy msgid "Newsprin_t..." msgstr "Máy in mới..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 #, fuzzy msgid "Newsprint..." msgstr "Máy in mới..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "Hàm delta" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "Độ phân giải" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "_Input SPI:" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "O_utput LPI:" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 #, fuzzy msgid "C_ell size:" msgstr "Tiê_u đề:" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "Màn hình" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "_Cường độ" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 #, fuzzy msgid "_Lock channels" msgstr "_Khóa các kênh" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 #, fuzzy msgid "_Factory defaults" msgstr "Mặc định" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "Antialiasing" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "" @@ -6071,65 +6071,65 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "GIF: lỗi ghi tập tin đầu ra\n" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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 #, fuzzy msgid "Write error occurred" msgstr "Xảy ra lỗi ghi" -#: ../plug-ins/common/postscript.c:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "Nạp PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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 "Độ phân giải:" -#: ../plug-ins/common/postscript.c:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "Trang:" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "B/W" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "Xám" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -6137,80 +6137,80 @@ msgid "Color" msgstr "Màu" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "Tự động" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 #, fuzzy msgid "Text antialiasing" msgstr "Text Antialiasing" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "Yếu" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "Mạnh" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 #, fuzzy msgid "Graphic antialiasing" msgstr "Graphic Antialiasing" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "Lưu là PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "Kích thước ảnh" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 #, fuzzy msgid "_Keep aspect ratio" msgstr "Tỷ lệ hình dạng:" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "Đơn vị" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "_Inch" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "_Millimeter" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "Output" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 #, fuzzy msgid "_PostScript level 2" msgstr "_PostScript mức 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "Xem t_rước" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "Xem trước" @@ -7536,16 +7536,16 @@ msgid "TIFF image" msgstr "Kênh TIFF" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, fuzzy, c-format msgid "Page %d" msgstr "Khung %d" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "Kênh TIFF" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7553,46 +7553,46 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "Lưu là TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "Việc nén" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "_Không" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "Chú giải:" diff -uraN gimp-2.2.6/po-plug-ins/yi.gmo gimp-2.2.7/po-plug-ins/yi.gmo --- gimp-2.2.6/po-plug-ins/yi.gmo 2005-04-10 02:12:04.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/yi.gmo 2005-05-08 23:42:26.000000000 +0200 @@ -24,7 +24,7 @@ +*-. '/%1 8!,($7) 42"0#56&  3ArrowAuthor:BackgroundBrowseCenterClearColorColor:CopyCutDeleteDescription:DigitsDirectionGrayscaleHeight:ModeNameNoneNormalOpenOpen FileOrientationPastePositionPreferencesPreviewRedoSaveScreenSelectSelect AllSelectionShiftSizeSize:StyleTypeType:UndoUpdateValueWarningWidth:Wrap_Blue:_Copy_Green:_Help_Left_Red:_Remove_Right_Saturation:_Value:Project-Id-Version: 1.0 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2003-03-19 Last-Translator: Raphael Finkel Language-Team: Yiddish diff -uraN gimp-2.2.6/po-plug-ins/yi.po gimp-2.2.7/po-plug-ins/yi.po --- gimp-2.2.6/po-plug-ins/yi.po 2005-04-10 02:11:59.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/yi.po 2005-05-08 23:42:19.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2003-03-19\n" "Last-Translator: Raphael Finkel \n" "Language-Team: Yiddish \n" @@ -273,8 +273,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "קײנע" @@ -371,7 +371,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1054,7 +1054,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "" @@ -1250,7 +1250,7 @@ #: ../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:833 +#: ../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 @@ -1281,7 +1281,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2217,7 +2217,7 @@ msgid "_Elevation:" msgstr "" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "" @@ -2227,7 +2227,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "" @@ -2639,11 +2639,11 @@ msgid "Re_d" msgstr "" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../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:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "" @@ -3207,7 +3207,7 @@ msgstr "" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3308,7 +3308,7 @@ msgstr "" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "" @@ -3424,8 +3424,8 @@ msgstr "" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4938,7 +4938,7 @@ msgid "Blur Parameters" msgstr "" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "" @@ -5158,123 +5158,123 @@ msgid "_Amount:" msgstr "" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "" -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "" -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 #, fuzzy msgid "_Spot function:" msgstr "דורכװײק" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "עקראַן" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "" @@ -5800,64 +5800,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5865,76 +5865,76 @@ msgid "Color" msgstr "פֿאַרב" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 #, fuzzy msgid "Preview _size:" msgstr "פֿאָרױסװײַז" @@ -7174,16 +7174,16 @@ msgid "TIFF image" msgstr "" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7191,46 +7191,46 @@ "this conversion." msgstr "" -#: ../plug-ins/common/tiff.c:1955 +#: ../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:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "" diff -uraN gimp-2.2.6/po-plug-ins/zh_CN.gmo gimp-2.2.7/po-plug-ins/zh_CN.gmo --- gimp-2.2.6/po-plug-ins/zh_CN.gmo 2005-04-10 02:12:04.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/zh_CN.gmo 2005-05-08 23:42:26.000000000 +0200 @@ -450,7 +450,7 @@ cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)kx^pk{x(1-x)}^pluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-std-plugins Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2005-01-09 19:30+0800 Last-Translator: Yuheng Xie Language-Team: zh_CN diff -uraN gimp-2.2.6/po-plug-ins/zh_CN.po gimp-2.2.7/po-plug-ins/zh_CN.po --- gimp-2.2.6/po-plug-ins/zh_CN.po 2005-04-10 02:11:59.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/zh_CN.po 2005-05-08 23:42:20.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: gimp-std-plugins\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2005-01-09 19:30+0800\n" "Last-Translator: Yuheng Xie \n" "Language-Team: zh_CN \n" @@ -282,8 +282,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "无" @@ -380,7 +380,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1050,7 +1050,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "旋转" @@ -1246,7 +1246,7 @@ #: ../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:833 +#: ../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 @@ -1277,7 +1277,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2204,7 +2204,7 @@ msgid "_Elevation:" msgstr "仰角(_E):" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "X 位移(_X):" @@ -2214,7 +2214,7 @@ "button." msgstr "可以用鼠标中键拖动预览来调整位移。" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "Y 位移(_Y):" @@ -2625,11 +2625,11 @@ msgid "Re_d" msgstr "红色(_D)" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "绿色(_G)" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "蓝色(_B)" @@ -3186,7 +3186,7 @@ msgstr "去除条纹" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3283,7 +3283,7 @@ msgstr "涂抹(_S)" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "黑色(_B)" @@ -3397,8 +3397,8 @@ msgstr "刻画" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4909,7 +4909,7 @@ msgid "Blur Parameters" msgstr "模糊参数" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "角度(_A):" @@ -5119,122 +5119,122 @@ msgid "_Amount:" msgstr "量(_A):" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "球形" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "线状" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "菱形" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "PS 方块(欧几里得点)" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "PS 菱形" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "灰色(_G)" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "红色(_E)" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "青色(_Y)" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "品红(_T)" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "黄色(_Y)" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "强度" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "报纸(_T)..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "报纸..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "点的形状(_S):" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "报纸" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "分辨率" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "输入 SPI (_I):" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "输出 LPI (_U):" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "单元大小(_E):" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "屏幕" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "黑色量(_L)(%):" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "分割到:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "RGB(_R)" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "CMYK(_M)" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "强度(_N)" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "锁定通道(_L)" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "工厂默认值(_F)" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "边缘平滑" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "过采样(_V):" @@ -5754,64 +5754,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "PostScript 保存无法处理带有 alpha 通道的图像" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "启动 ghostscript 出错(%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, c-format msgid "Error starting ghostscript: %s" msgstr "启动 ghostscript 出错:%s" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "加载 PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "绘制" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "页数:" -#: ../plug-ins/common/postscript.c:2983 +#: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" msgstr "加载页码(例如:1-4 或者 1,3,5-7)" -#: ../plug-ins/common/postscript.c:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "尝试缩减边界" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "颜色" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "黑/白" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "灰色" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5819,76 +5819,76 @@ msgid "Color" msgstr "颜色" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "自动" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "文字反锯齿化" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "弱" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "强" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "图像平滑" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "保存为 PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "图像大小" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "保持宽高比(_K)" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "单位" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "英寸(_I)" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "毫米(_M)" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "输出" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "PostScript level 2(_P)" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "封装的 PostScript (EPS)(_E)" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "预览(_R)" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "预览大小(_S):" @@ -7102,16 +7102,16 @@ msgid "TIFF image" msgstr "TIFF 图像" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "第 %d 页" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF 通道" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7122,7 +7122,7 @@ "您正在加载的图像含有 16 位的通道。GIMP 只能处理 8 位,因此已帮您进行了自动转" "换。转换将造成信息丢失。" -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." @@ -7130,41 +7130,41 @@ "TIFF 格式只支持 7 位 ASCII 编码\n" "的注释。注释没有被保存。" -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "保存为 TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "压缩方式" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "无(_N)" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "LZW(_L)" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 #, fuzzy msgid "_Deflate" msgstr "删除" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "JPEG(_J)" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "保存透明像素的颜色值(_C)" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "注释:" diff -uraN gimp-2.2.6/po-plug-ins/zh_TW.gmo gimp-2.2.7/po-plug-ins/zh_TW.gmo --- gimp-2.2.6/po-plug-ins/zh_TW.gmo 2005-04-10 02:12:05.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/zh_TW.gmo 2005-05-08 23:42:26.000000000 +0200 @@ -354,7 +354,7 @@ crash your browser.You can not rotate the whole image if there's a floating selection.You can not rotate the whole image if there's a selection.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)Zoom scale:Zoom to_3x3_Abbreviation:_Advanced_Advanced Options_Algorithm:_Alpha_Alpha threshold:_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Apply Canvas..._Autocrop Image_Autocrop Layer_Automatically convert_Background_Background color_Bevel width:_Bilinear_Black_Blacken_Blend_Blinds..._Blue_Blue:_Blur_Blur radius:_Border:_Bottom-left_Bottom:_Box_Brightness_Brightness:_Brush_Bump Map_Bump Map..._Bump map:_Bumpmap_Checkerboard..._Color Exchange..._Convolution Matrix..._Copy_Cubism..._Curve Bend..._Decompose..._Deflate_Deform radius:_Delay between frames where unspecified:_Depth:_Description:_Detail:_Diffraction Patterns..._Digits:_Displace..._Displacement:_Distorted_Divisions:_Edge..._Edit_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Explicit tile_Exponent:_Factor:_Factory defaults_File_Filename:_Film..._Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Format:_Fractals_Free_Ftp Site_GFlare..._GIF comment:_GIMPressionist..._Gamma:_Gaussian Blur..._General_Generate full HTML document_Gfig..._Glass Tile..._Gopher_Gradient_Gray:_Green_Green:_Grey_Grow_Guillotine_HSL color model_Height_Height:_Help_Hidden_Hold the maximal channels_Hole offset:_Horizontal_Horizontal:_Horz. Spacing:_Hue_ID:_IIR_IWarp..._Identifier prefix:_Ignore_Illusion..._ImageMap..._Inch_Insert_Intensity:_Interlace_Invert_JPEG_JavaScript_Jigsaw..._Keep aspect ratio_Keep original surroundings_Keep sign of result (one direction only)_Kill_LZW_Laplace_Left_Lens refraction index:_Light_Lighting Effects..._Limit line width_Linear_Lines_Link_Load defaults_Lock channels_Loop forever_Lower_MIME_Mail Image..._Make surroundings transparent_Map backwards_Mask file extension:_Mask size:_Material_Max (%):_Max RGB..._Max. delta:_Maze..._Metallic_Midtones_Millimeter_Minimum value:_Mirror_Misc Ops._Modify red channel_Monochrome_Mosaic..._Motion Blur..._Move_NL Filter..._Natural color_None_Normal_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pagecurl..._Paper Tile..._Parameters_Percent black:_Period:_Phase:_Photocopy..._Ping Pong_Pixelize..._Plasma..._Playback..._Plural:_Polygon_PostScript level 2_Prefixed name:_Preserve luminosity_Presets_Preview_Preview once_Preview!_Print_Print..._Psychobilly_Qbist..._Quality:_RGB_RGB color model_RLE_RLE compression_RLE encoded_Radial_Radius 1:_Radius:_Random hue:_Random seed:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Retain tilability_Right_Right Border_Ripple..._Rotated_Saturation_Saturation:_Save comment to file_Save defaults_Screen Shot..._Search depth:_Search:_Selective Gaussian Blur..._Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Show cursor_Size_Size:_Small Tiles..._Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Speed:_Spot function:_Square_Squares_Strength:_Symbol:_Threshold:_Tile size:_Tile..._Title:_Tools_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_UnOptimize_Undo %s_Unit Editor_Unsharp Mask..._Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Uuencode_Value_Value Invert_Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical:_View_Voronoi_Warp..._Wavelength:_Waves..._Web Site_White_Width_Width:_Wind_Wrap_Wrap around_X Scale:_X displacement:_X ratio:_X size:_X10 format bitmap_X:_Y Scale:_Y displacement:_Y ratio:_Y size:_Y:_Yellow_Z:_Zealous Crop_Zoom_Zoom:a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcmcyane-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)kx^pk{x(1-x)}^pluma_y470luma_y470fluma_y709luma_y709fmagentamillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsin^p-based functionsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowProject-Id-Version: gimp-std-plug-ins 2.1.6 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-10 02:11+0200 +POT-Creation-Date: 2005-05-08 12:28+0200 PO-Revision-Date: 2004-09-28 11:46+0800 Last-Translator: Abel Cheung Language-Team: Chinese (traditional) diff -uraN gimp-2.2.6/po-plug-ins/zh_TW.po gimp-2.2.7/po-plug-ins/zh_TW.po --- gimp-2.2.6/po-plug-ins/zh_TW.po 2005-04-10 02:12:00.000000000 +0200 +++ gimp-2.2.7/po-plug-ins/zh_TW.po 2005-05-08 23:42:20.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: gimp-std-plug-ins 2.1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-10 02:11+0200\n" +"POT-Creation-Date: 2005-05-08 12:28+0200\n" "PO-Revision-Date: 2004-09-28 11:46+0800\n" "Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \n" @@ -280,8 +280,8 @@ #: ../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:3019 -#: ../plug-ins/common/postscript.c:3031 ../plug-ins/common/psp.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 "無" @@ -378,7 +378,7 @@ #: ../plug-ins/common/psd_save.c:1336 ../plug-ins/common/raw.c:517 #: ../plug-ins/common/raw.c:544 ../plug-ins/common/spheredesigner.c:2088 #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 -#: ../plug-ins/common/tiff.c:1810 ../plug-ins/common/xbm.c:996 +#: ../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 @@ -1048,7 +1048,7 @@ #. Rotation #: ../plug-ins/MapObject/mapobject_ui.c:1070 -#: ../plug-ins/common/postscript.c:3183 +#: ../plug-ins/common/postscript.c:3192 msgid "Rotation" msgstr "旋轉" @@ -1244,7 +1244,7 @@ #: ../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:833 +#: ../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 @@ -1275,7 +1275,7 @@ #: ../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:1815 ../plug-ins/common/xbm.c:1001 +#: ../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 @@ -2197,7 +2197,7 @@ msgid "_Elevation:" msgstr "" -#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3137 +#: ../plug-ins/common/bumpmap.c:993 ../plug-ins/common/postscript.c:3146 msgid "_X offset:" msgstr "" @@ -2207,7 +2207,7 @@ "button." msgstr "" -#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3146 +#: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" msgstr "" @@ -2620,11 +2620,11 @@ msgid "Re_d" msgstr "紅(_D)" -#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:363 +#: ../plug-ins/common/convmatrix.c:89 ../plug-ins/common/newsprint.c:360 msgid "_Green" msgstr "綠(_G)" -#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:371 +#: ../plug-ins/common/convmatrix.c:90 ../plug-ins/common/newsprint.c:368 msgid "_Blue" msgstr "藍(_B)" @@ -3182,7 +3182,7 @@ msgstr "去條紋" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/postscript.c:3119 +#: ../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 @@ -3280,7 +3280,7 @@ msgstr "塗污(_S)" #: ../plug-ins/common/displace.c:398 ../plug-ins/common/edge.c:742 -#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:408 +#: ../plug-ins/common/fractaltrace.c:735 ../plug-ins/common/newsprint.c:405 #: ../plug-ins/common/ripple.c:562 msgid "_Black" msgstr "黑(_B)" @@ -3394,8 +3394,8 @@ msgstr "雕刻..." #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 -#: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2967 -#: ../plug-ins/common/postscript.c:3128 ../plug-ins/common/raw.c:998 +#: ../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 @@ -4905,7 +4905,7 @@ msgid "Blur Parameters" msgstr "模糊參數" -#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1012 +#: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" msgstr "角度(_A):" @@ -5115,122 +5115,122 @@ msgid "_Amount:" msgstr "程度(_A):" -#: ../plug-ins/common/newsprint.c:135 +#: ../plug-ins/common/newsprint.c:132 msgid "Round" msgstr "圓形" -#: ../plug-ins/common/newsprint.c:144 +#: ../plug-ins/common/newsprint.c:141 msgid "Line" msgstr "線狀" -#: ../plug-ins/common/newsprint.c:153 +#: ../plug-ins/common/newsprint.c:150 msgid "Diamond" msgstr "菱形" -#: ../plug-ins/common/newsprint.c:161 +#: ../plug-ins/common/newsprint.c:158 msgid "PS Square (Euclidean Dot)" msgstr "" -#: ../plug-ins/common/newsprint.c:170 +#: ../plug-ins/common/newsprint.c:167 msgid "PS Diamond" msgstr "" -#: ../plug-ins/common/newsprint.c:342 +#: ../plug-ins/common/newsprint.c:339 msgid "_Grey" msgstr "灰(_G)" -#: ../plug-ins/common/newsprint.c:355 +#: ../plug-ins/common/newsprint.c:352 msgid "R_ed" msgstr "紅(_E)" -#: ../plug-ins/common/newsprint.c:384 +#: ../plug-ins/common/newsprint.c:381 msgid "C_yan" msgstr "氰藍(_Y)" -#: ../plug-ins/common/newsprint.c:392 +#: ../plug-ins/common/newsprint.c:389 msgid "Magen_ta" msgstr "洋紅(_T)" -#: ../plug-ins/common/newsprint.c:400 +#: ../plug-ins/common/newsprint.c:397 msgid "_Yellow" msgstr "黃(_Y)" -#: ../plug-ins/common/newsprint.c:421 +#: ../plug-ins/common/newsprint.c:418 msgid "Intensity" msgstr "亮度" -#: ../plug-ins/common/newsprint.c:537 +#: ../plug-ins/common/newsprint.c:534 msgid "Newsprin_t..." msgstr "報紙印刷(_T)..." -#: ../plug-ins/common/newsprint.c:638 +#: ../plug-ins/common/newsprint.c:635 msgid "Newsprint..." msgstr "加入報紙印刷效果..." -#: ../plug-ins/common/newsprint.c:1042 +#: ../plug-ins/common/newsprint.c:1039 msgid "_Spot function:" msgstr "描繪斑點函式(_S):" -#: ../plug-ins/common/newsprint.c:1199 +#: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" msgstr "報紙印刷" #. resolution settings -#: ../plug-ins/common/newsprint.c:1243 +#: ../plug-ins/common/newsprint.c:1240 msgid "Resolution" msgstr "解析度" -#: ../plug-ins/common/newsprint.c:1262 +#: ../plug-ins/common/newsprint.c:1259 msgid "_Input SPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1276 +#: ../plug-ins/common/newsprint.c:1273 msgid "O_utput LPI:" msgstr "" -#: ../plug-ins/common/newsprint.c:1289 +#: ../plug-ins/common/newsprint.c:1286 msgid "C_ell size:" msgstr "" #. screen settings -#: ../plug-ins/common/newsprint.c:1302 ../plug-ins/gflare/gflare.c:562 +#: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 msgid "Screen" msgstr "畫面" -#: ../plug-ins/common/newsprint.c:1321 +#: ../plug-ins/common/newsprint.c:1318 msgid "B_lack pullout (%):" msgstr "" -#: ../plug-ins/common/newsprint.c:1343 +#: ../plug-ins/common/newsprint.c:1340 msgid "Separate to:" msgstr "分開為:" -#: ../plug-ins/common/newsprint.c:1347 +#: ../plug-ins/common/newsprint.c:1344 msgid "_RGB" msgstr "_RGB" -#: ../plug-ins/common/newsprint.c:1364 +#: ../plug-ins/common/newsprint.c:1361 msgid "C_MYK" msgstr "C_MYK" -#: ../plug-ins/common/newsprint.c:1381 +#: ../plug-ins/common/newsprint.c:1378 msgid "I_ntensity" msgstr "" -#: ../plug-ins/common/newsprint.c:1406 +#: ../plug-ins/common/newsprint.c:1403 msgid "_Lock channels" msgstr "鎖定色版(_L)" -#: ../plug-ins/common/newsprint.c:1419 +#: ../plug-ins/common/newsprint.c:1416 msgid "_Factory defaults" msgstr "使用預設值(_F)" #. anti-alias control -#: ../plug-ins/common/newsprint.c:1445 ../plug-ins/gfig/gfig-dialog.c:1258 +#: ../plug-ins/common/newsprint.c:1442 ../plug-ins/gfig/gfig-dialog.c:1258 msgid "Antialiasing" msgstr "平滑化" -#: ../plug-ins/common/newsprint.c:1453 +#: ../plug-ins/common/newsprint.c:1450 msgid "O_versample:" msgstr "超量取樣(_V):" @@ -5755,64 +5755,64 @@ msgid "PostScript save cannot handle images with alpha channels" msgstr "PostScript 儲存程序無法處理有透明色版的影像" -#: ../plug-ins/common/postscript.c:1622 +#: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" msgstr "執行 ghostscript 時發生錯誤 (%s)" -#: ../plug-ins/common/postscript.c:1652 +#: ../plug-ins/common/postscript.c:1661 #, fuzzy, c-format msgid "Error starting ghostscript: %s" msgstr "執行 ghostscript 時發生錯誤 (%s)" -#: ../plug-ins/common/postscript.c:2472 ../plug-ins/common/postscript.c:2605 -#: ../plug-ins/common/postscript.c:2757 ../plug-ins/common/postscript.c:2886 +#: ../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:2913 +#: ../plug-ins/common/postscript.c:2922 msgid "Load PostScript" msgstr "載入 PostScript" #. Rendering -#: ../plug-ins/common/postscript.c:2933 +#: ../plug-ins/common/postscript.c:2942 msgid "Rendering" msgstr "描繪" #. Resolution -#: ../plug-ins/common/postscript.c:2949 ../plug-ins/common/svg.c:882 +#: ../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:2977 +#: ../plug-ins/common/postscript.c:2986 msgid "Pages:" msgstr "" -#: ../plug-ins/common/postscript.c:2983 +#: ../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:2985 +#: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" msgstr "" #. Colouring -#: ../plug-ins/common/postscript.c:2998 +#: ../plug-ins/common/postscript.c:3007 msgid "Coloring" msgstr "著色方式" -#: ../plug-ins/common/postscript.c:3002 +#: ../plug-ins/common/postscript.c:3011 msgid "B/W" msgstr "黑白" -#: ../plug-ins/common/postscript.c:3003 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 msgid "Gray" msgstr "灰" -#: ../plug-ins/common/postscript.c:3004 ../plug-ins/common/xpm.c:469 +#: ../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 @@ -5820,76 +5820,76 @@ msgid "Color" msgstr "色彩" -#: ../plug-ins/common/postscript.c:3005 ../plug-ins/fits/fits.c:1000 +#: ../plug-ins/common/postscript.c:3014 ../plug-ins/fits/fits.c:1000 msgid "Automatic" msgstr "自動" -#: ../plug-ins/common/postscript.c:3015 +#: ../plug-ins/common/postscript.c:3024 msgid "Text antialiasing" msgstr "文字平滑化" -#: ../plug-ins/common/postscript.c:3020 ../plug-ins/common/postscript.c:3032 +#: ../plug-ins/common/postscript.c:3029 ../plug-ins/common/postscript.c:3041 msgid "Weak" msgstr "輕微" -#: ../plug-ins/common/postscript.c:3021 ../plug-ins/common/postscript.c:3033 +#: ../plug-ins/common/postscript.c:3030 ../plug-ins/common/postscript.c:3042 msgid "Strong" msgstr "完整" -#: ../plug-ins/common/postscript.c:3027 +#: ../plug-ins/common/postscript.c:3036 msgid "Graphic antialiasing" msgstr "圖形平滑化" -#: ../plug-ins/common/postscript.c:3079 +#: ../plug-ins/common/postscript.c:3088 msgid "Save as PostScript" msgstr "儲存為 PostScript" #. Image Size -#: ../plug-ins/common/postscript.c:3103 +#: ../plug-ins/common/postscript.c:3112 msgid "Image Size" msgstr "影像尺寸" -#: ../plug-ins/common/postscript.c:3152 +#: ../plug-ins/common/postscript.c:3161 msgid "_Keep aspect ratio" msgstr "保持長寬比(_K)" -#: ../plug-ins/common/postscript.c:3158 +#: ../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:3167 +#: ../plug-ins/common/postscript.c:3176 msgid "Unit" msgstr "單位" -#: ../plug-ins/common/postscript.c:3171 +#: ../plug-ins/common/postscript.c:3180 msgid "_Inch" msgstr "英吋(_I)" -#: ../plug-ins/common/postscript.c:3172 +#: ../plug-ins/common/postscript.c:3181 msgid "_Millimeter" msgstr "毫米(_M)" #. Format -#: ../plug-ins/common/postscript.c:3198 +#: ../plug-ins/common/postscript.c:3207 msgid "Output" msgstr "輸出" -#: ../plug-ins/common/postscript.c:3204 +#: ../plug-ins/common/postscript.c:3213 msgid "_PostScript level 2" msgstr "_PostScript Level 2" -#: ../plug-ins/common/postscript.c:3213 +#: ../plug-ins/common/postscript.c:3222 msgid "_Encapsulated PostScript" msgstr "_Encapsulated PostScript" -#: ../plug-ins/common/postscript.c:3222 +#: ../plug-ins/common/postscript.c:3231 msgid "P_review" msgstr "預覽(_R)" -#: ../plug-ins/common/postscript.c:3243 +#: ../plug-ins/common/postscript.c:3252 msgid "Preview _size:" msgstr "預覽圖尺寸(_S):" @@ -7125,16 +7125,16 @@ msgid "TIFF image" msgstr "TIFF 影像" -#: ../plug-ins/common/tiff.c:835 +#: ../plug-ins/common/tiff.c:850 #, c-format msgid "Page %d" msgstr "第 %d 頁" -#: ../plug-ins/common/tiff.c:850 +#: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" msgstr "TIFF 色版" -#: ../plug-ins/common/tiff.c:859 +#: ../plug-ins/common/tiff.c:874 msgid "" "Warning:\n" "The image you are loading has 16 bits per channel. GIMP can only handle 8 " @@ -7145,47 +7145,47 @@ "準備載入的影像的色版是 16 位元色版。GIMP 只支援 8 位元色版,因此它會自動進行" "轉換,而在這個過程中將會失去一部份資訊。" -#: ../plug-ins/common/tiff.c:1955 +#: ../plug-ins/common/tiff.c:1970 msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." msgstr "" "TIFF 影像格式只接受 7 位元的 ASCII 編碼文字作為備註,因此這些備註不會儲存。" -#: ../plug-ins/common/tiff.c:2104 +#: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" msgstr "儲存為 TIFF" #. compression -#: ../plug-ins/common/tiff.c:2118 +#: ../plug-ins/common/tiff.c:2133 msgid "Compression" msgstr "壓縮" -#: ../plug-ins/common/tiff.c:2122 +#: ../plug-ins/common/tiff.c:2137 msgid "_None" msgstr "無(_N)" -#: ../plug-ins/common/tiff.c:2123 +#: ../plug-ins/common/tiff.c:2138 msgid "_LZW" msgstr "_LZW" -#: ../plug-ins/common/tiff.c:2124 +#: ../plug-ins/common/tiff.c:2139 msgid "_Pack Bits" msgstr "" -#: ../plug-ins/common/tiff.c:2125 +#: ../plug-ins/common/tiff.c:2140 msgid "_Deflate" msgstr "_Deflate" -#: ../plug-ins/common/tiff.c:2126 +#: ../plug-ins/common/tiff.c:2141 msgid "_JPEG" msgstr "_JPEG" -#: ../plug-ins/common/tiff.c:2135 +#: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" msgstr "" -#: ../plug-ins/common/tiff.c:2151 ../plug-ins/common/xbm.c:1201 +#: ../plug-ins/common/tiff.c:2166 ../plug-ins/common/xbm.c:1201 msgid "Comment:" msgstr "備註:" diff -uraN gimp-2.2.6/po-script-fu/ChangeLog gimp-2.2.7/po-script-fu/ChangeLog --- gimp-2.2.6/po-script-fu/ChangeLog 2005-03-21 11:21:15.000000000 +0100 +++ gimp-2.2.7/po-script-fu/ChangeLog 2005-05-03 13:30:54.000000000 +0200 @@ -1,3 +1,12 @@ +2005-04-29 Jakub Friedl + + * cs.po: minor fix + +2005-04-25 Dmitry G. Mastrukov + + * ru.po: Updated Russian translation + from Russian team . + 2005-03-20 Marcel Telka * sk.po: Updated Slovak translation. diff -uraN gimp-2.2.6/po-script-fu/cs.gmo gimp-2.2.7/po-script-fu/cs.gmo --- gimp-2.2.6/po-script-fu/cs.gmo 2005-04-10 02:12:12.000000000 +0200 +++ gimp-2.2.7/po-script-fu/cs.gmo 2005-05-08 23:42:33.000000000 +0200 @@ -35,36 +35,35 @@ GG G G GG GGHH-HhJ KK -K K K KKKL2LOLjLLLL LL%M7M*WM"M!M#MBM=.N@lNNNNNN -O O'O 9OCOVOmOOOO O#O$OPP P'P6P HPVP ePsP PPP PPPP -QQ$Q4QMQgQQQQQQQQQ RR 0R:RLR ^RkR{RR R4R)RSS(S 8SBS[S sS}S SSSSSST%T>TCTRTrTxTTTTT -TT -TTTTM U -[UfUoUUU U@UU'V (V5V IVUV]VoVVVVVVVV'VW6W -OWZW iW uW WWWWWXX%X>XFXNX`XuXXXXX XXXX Y Y+Y iJiSi\isizi i iiiiii j$jCjWj\j mjyjj j -jjjj!j k k ,k 9kGkPk dk'rkkkk kkkk#l3l*Nl(yll2lllm$m 4m@mImYmhm zm mm -mmm mmn nn +n 7n AnMn`nonnnn nnn -oo !o-o@o _omo o o ooooo opp%p BpPpeptp }pp ppp ppp"pq8qMqVq ed1$5YKH Jlmnj?O`0Dl tiwN96b\<U4L;vs)"wja_$YO'q=P: +IJ JJ'J=J NJXJ%hJ KK +K K K KKKKL6LQLoLLL LL%LM*>M"iM!M#MBM=N@SNNNNNNN OO O*O=OTOiOOO O#O$OOOPPP /P=P LPZP mP{PP PPPPPP QQ4QNQgQwQQQQQQQQR R!R3R ERRRbR{R R4R)RRRS S)SBS ZSdS }SSSSSSS T%T*T9TYT_TgToTwTT +TT +TTTTMT +BUMUVUjU|U U@UU'U VV 0V[T[ +e[p[x[[[[[[[[ \ +\ \$\3\D\V\p\ \\*\\\\] ] +,]7]F]W]s] ]]]] +] ]] ]]^^0^ ?^L^![^}^^^^"^^^_*_?_S_ \_h____ _ __ ___ +`` `(`0`@`T`n` u```` ````aa a &a0aDa danauaa a aaaa aabb5bMb ebrb bbbbb bbb +cc+cHc`crcccccccccd d d $d 2d @dNd`dqddddddee8ePe6ceCeJe )f7f Pf^fsf"f/f/f gg.g@gGg dgrgxggg gggggghh#5hYh bhohxhhhhhhh hii %i1i:iCiZiai xi iiiiii i$j*j>jCj Tj`jwj j +jjjj!j j k k k.k7k Kk'Ykkkk kkkk#kl*5l(`ll2llll m m'm0m@mOm am om}m +mmm mmm mn n n (n4nGnVnqnnn nnn +nn oo'o FoTo mo wo ooooo ooo p )p7pLp[p dppp ppp ppp"pqq4q=q ed1$5YKH Jlmnj?O`0Dl tiwN96b\<U4L;vs)"wja_$YO'q=P: EC T1Tk <A/2hfM#9},M+fUm Zc|hG&oZ+"Jc@[  &^7-x@g5(>,s;^P% H'qx6v|W!Q>N%S{W84R]?\!~gB80C.I`{u]FGKF2-zd/3nkEe[X.)bVuXyBA(r~y:zio**a_ #}p=7L3rStVRDQ Ip%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3ColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only (Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Drop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Xach-Effect...Project-Id-Version: gimp-script-fu VERSION +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Xach-Effect...Project-Id-Version: cs Report-Msgid-Bugs-To: POT-Creation-Date: 2005-04-09 21:56+0200 -PO-Revision-Date: 2004-11-20 16:09+0100 -Last-Translator: Miloslav Trmac -Language-Team: Czech +PO-Revision-Date: 2005-04-28 21:02+0200 +Last-Translator: Jakub Friedl +Language-Team: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%d procedur%s:(žádné)/Skript-fu/1 procedura3D _obrys...3D _klikatice.../Skript-fu/Alchymie/Skript-fu/Alfa do loga/Skript-fu/Animátory/Skript-fu/Dekorace/Skript-fu/Vyobrazení/Skript-fu/Výběr/Skript-fu/Stín/Skript-fu/Pomůcky/Nápověda/GIMP Online/Rozš./Skript-fu/Rozš./Skript-fu/Tlačítka/Rozš./Skript-fu/Loga/Rozš./Skript-fu/Vytvořit stopu/Rozš./Skript-fu/Různé/Rozš./Skript-fu/Vzorky/Rozš./Skript-fu/Pomůcky/Rozš./Skript-fu/Témata WWW stránek/Mimozemská záře/Rozš./Skript-fu/Témata WWW stránek/Zkosený vzor/Rozš./Skript-fu/Témata WWW stránek/Classic.Gimp.orgAktivní barvyPřidat _zkosení...Přidat _okraj...Přidat pozadíPřidat vržený stínPřidat zářiPřidat stínDalší informacePo zářiVzdušný štětecMimozemská _záře...Mimozemský _neon...Povolit změnu velikostiRozkmitÚhelVyhlazováníPoužít vygenerovanou masku vrstvyPoužít masku vrstvy (nebo zahodit)Autor:Automatické oříznutíAzimutKrytí pozadíZákladní _II..._Vpálení..._Tlačítko...Barva pozadíObrázek v pozadíBarva pozadíObrázek na pozadíBarva základnyChováníVýška zkosení (ostrost)Výška zkosení (ostrost)Šířka zkoseníČernáČerná na bílé_Smíchání...Přechod mísení (text)Přechod mísení (obrys)Přechod mísení (text)Režim míseníVelikost blokuRozostření XRozostření YMíra rozostřeníRozostřit okrajRozostřit vodorovněPoloměr rozostřeníTyp rozostřeníRozostřit svisle_Fleky...Velikost okraje XVelikost okraje YBarva okrajeVelikost okrajeVelikost okraje (pixely)StopaNázev stopyPoloměr rozostření mapy vyvýšení (alfa vrstvy)Vpálení: Potřebuji celkem dvě vrstvy!Barva pronikání_Vyřezat-to..._Pochromovat..._Chrom...Vyřezat text do výškyVyřezat bílé oblastiŘezba...Velikost buňky (pixely)Barva křídy_Odštípnout...Velikost odštípnutíVyváženost chromováníFaktor chromováníSvětlost chromováníSytost chromováníChromovat bílé oblastiKruhHnízdo okruhuVymazat nevybranou oblast maskyBarvaBarva 1Barva 2Barva 3Sloupce_Kniha komiksů...KonkávníZchladlý _kov...Copyright:Šířka korónyVytvořit nový obrázekVytvořit stínVytvoří čtyři vodítka okolo obdélníku opsanému aktuálnímu výběru.Krystal...KubickáAktuální příkazVlastní přechod_Vlastní přechod...Tmavá barvaPouze ztmavit +%d procedur%s:(žádné)/Skript-fu/1 procedura3D _obrys...3D _klikatice.../Skript-fu/Alchymie/Skript-fu/Alfa do loga/Skript-fu/Animátory/Skript-fu/Dekorace/Skript-fu/Vyobrazení/Skript-fu/Výběr/Skript-fu/Stín/Skript-fu/Pomůcky/Nápověda/GIMP online/Rozš./Skript-fu/Rozš./Skript-fu/Tlačítka/Rozš./Skript-fu/Loga/Rozš./Skript-fu/Vytvořit stopu/Rozš./Skript-fu/Různé/Rozš./Skript-fu/Vzorky/Rozš./Skript-fu/Pomůcky/Rozš./Skript-fu/Témata WWW stránek/Mimozemská záře/Rozš./Skript-fu/Témata WWW stránek/Zkosený vzor/Rozš./Skript-fu/Témata WWW stránek/Classic.Gimp.orgAktivní barvyPřidat _zkosení...Přidat _okraj...Přidat pozadíPřidat vržený stínPřidat zářiPřidat stínDalší informacePo zářiVzdušný štětecMimozemská _záře...Mimozemský _neon...Povolit změnu velikostiRozkmitÚhelVyhlazováníPoužít vygenerovanou masku vrstvyPoužít masku vrstvy (nebo zahodit)Autor:Automatické oříznutíAzimutKrytí pozadíZákladní _II..._Vpálení..._Tlačítko...Barva pozadíObrázek v pozadíBarva pozadíObrázek na pozadíBarva základnyChováníVýška zkosení (ostrost)Výška zkosení (ostrost)Šířka zkoseníČernáČerná na bílé_Smíchání...Přechod mísení (text)Přechod mísení (obrys)Přechod mísení (text)Režim míseníVelikost blokuRozostření XRozostření YMíra rozostřeníRozostřit okrajRozostřit vodorovněPoloměr rozostřeníTyp rozostřeníRozostřit svisle_Fleky...Velikost okraje XVelikost okraje YBarva okrajeVelikost okrajeVelikost okraje (pixely)StopaNázev stopyPoloměr rozostření mapy vyvýšení (alfa vrstvy)Vpálení: Potřebuji celkem dvě vrstvy!Barva pronikání_Vyřezat-to..._Pochromovat..._Chrom...Vyřezat text do výškyVyřezat bílé oblastiŘezba...Velikost buňky (pixely)Barva křídy_Odštípnout...Velikost odštípnutíVyváženost chromováníFaktor chromováníSvětlost chromováníSytost chromováníChromovat bílé oblastiKruhHnízdo okruhuVymazat nevybranou oblast maskyBarvaBarva 1Barva 2Barva 3Sloupce_Kniha komiksů...KonkávníZchladlý _kov...Copyright:Šířka korónyVytvořit nový obrázekVytvořit stínVytvoří čtyři vodítka okolo obdélníku opsanému aktuálnímu výběru.Krystal...KubickáAktuální příkazVlastní přechod_Vlastní přechod...Tmavá barvaPouze ztmavit (lepší, ale jen pro obrázky se spoustou bílé)Datum:Implicitní nastavení mapy vyvýšeníRozostřeníDelta hodnota barvyHustota (%)HloubkaDetail uprostředÚroveň podrobonostíPrůměrSměrDolůNakreslit graf _HSV...Vržení stínuPosun X vrženého stínuPosun Y vrženého stínuPoloměr rozostření vrženého stínuBarva vrženého stínuKrytí vrženého stínuMíra hranChování hranPouze hranyPoloměr hranŠířka hranVelikost efektu (pixely * 3)Velikost efektu (pixely * 30)Velikost efektu (pixely * 4)Velikost efektu (pixely * 5)Velikost efektu (pixely)ZdvihE_liptickou, neostrou...Konec XKonec YSplývání konceKoncové splýváníMapa prostředíSmazatSmazat/VyplnitChyba při spouštění %s %sSudéSudé/LichéPopředí-pozadí-HSVPopředí-pozadí-RGBPrůhledné popředíPohasínáníPohasnout z %Pohasnout na %ZhasnutíŠířka zhasnutíNeostrostNázev souboruNázev souboruVyplnit pozadí vzorkemÚhel vyplňováníVyplnit pozadímZploštit obrázekPísmo_Velikost písma (pixely)Barva písmaVelikost písma (pixely)Barva popředíPolíčkoBarva rámečkuVelikost rámečkuPočet políčekOdshora zleva dolů dopravaRozšíření GIMPuZásuvný modul GIMPu_Lesk..._Sálající záře...Barva zářePoloměr zářeVelikost záře (pixely * 4)Přechod_Šikmý přechod...Obrácený přechodZrnitostZrnitost (1 je malá)Zrnitost (1 je malá)Měřítko grafu_Nadpis...VýškaŠestiúhelníkŠestiúhelníkyPosun X světelPosun Y světelVyvážení zvýrazněníBarva zvýrazněníKrytí světelPoměrná četnostPodíl děrVodorovnýIIRTypy obrázku:Výška obrázkuVelikost obrázkuObrázek, který vyřezatŠířka obrázkuImigre-26...Indexový obrázekIndexovaný v n barvách (0 = nechat RGB)Vnitřní zubyVložit názvy vrstevMezilehlá políčkaInterní procedura GIMPuInterpolaceInvertovatObrátit směrZachovat pozadíZachovat vrstvu vyvýšeníZachovat výběrVýška zeměNalevoOsvětlení (stupně)Čárová _nova...LineárníLissajousSmyčkaDolní barvaDolní barva (aktivní)Pravá dolní barvaVytvořit nové pozadíOkraj (pixely)Krytí maskyVelikost maskyNejvyšší poloměr rozostřeníTyp dlaždicování mozaikySkvrnka_Neon...NázevNové vodítko (podle _procent)...Nová vodítka z _výběruNové _vodítko...Novinový text...Bez pozadí (pouze pro samostatné vrstvy)Nic nebylo nalezenoŽádnáNestisknutoNestisknuto (aktivní)PočetX počet dlaždicY počet dlaždicPočet pruhůPočet barevPočet políčekPočet čarPočet opakování víruOsmiúhelníkyLichéPosun (pixely)Posun XPosun YPoloměr posunuPosuny (pixely * 2)Velikost masky olejomalbyKrytíOrientaceVnější hraniceVnější zubyPoloměr rozostření obrysuBarva obrysuObrácený přechod obrysuVelikost obrysuBarva výplněKrytí výplněVýplňVýplň XVýplň YVýplň okolo textuVýplň pro průhledné oblastiParametryVzorekVzorek (obrys)Vzorek (překrytí)Vzorek (text)Název vzorkuTužkaPětiúhelníkVelikost pixelůPixelizovat_Registr zásuvných modulůMnohoúhelník: 10 stranMnohoúhelník: 7 stranMnohoúhelník: 8 stranMnohoúhelník: 9 stranPoloha (v %)Připravit pro GIFStisknutoProhlížeč procedurČtvrtinová velikostRLEPoloměrPoloměr (%)Poloměr (pixely)Hnízdo náhodných číselNáhodnostO_bdélníkovou, neostrou...Poměrná vzdálenost obzoruPoměrná délka stínuOdstranit pozadíVykreslit _mapu...Návratové hodnotyRozestup pásekŠířka páskyNapravoSíla čeřeníDrsnostPoměr zaoblení_Zaoblený obdélník...ŘadyŘady/sloupceVýstup SIODSOTA barvy...Zvětšení XZvětšení YArgumenty skriptuPrůběh skriptuSkript-fu výběr stopySkript-fu výběr barvyKonzole skript-fuSkript-fu výběr souboruSkript-fu výběr adresářeSkript-fu výběr písmaSkript-fu výběr přechoduSkript-fu výběr paletyVolby serveru Skript-fu_Konzola skript-fuSkript-fu nemůže zároveň zpracovávat dva skripty.Pouze interaktivní spuštění umožňuje režim konzole Skript-fuPouze neinteraktivní spuštění umožňuje režim provádění Skript-fuSkript-fu: %sSkript-fu výběr vzorkuHloubka mořeHledat podle _popisuHledat podle _názvuVyhledává se - prosím počkejteVyhledává se podle popisu - prosím počkejteVyhledává se podle názvu - prosím počkejteHnízdoPráh výběru podle barvyOddělená vrstvaSépieŽurnálový soubor serveru:Port serveru:StínX posun stínuY posun stínuPoloměr rozostření stínuBarva stínuTmavost stínuHloubka stínuMíra stínu (%)TvarOstrost (stupně)Délka střihuZobrazit _strukturu obrázku...Jednoduché _zkosené tlačítko...VelikostZašpiněníVyhladitVyhladit vodorovněVyhladit svisleJednolitá barvaRozestup mezi vrstvamiRozestupRychlost (pixelů/rámec)Rychlý text...Barva kouleX hustota tečekY hustota tečekRozšířitČtverecČtverce_Popraskaný povrch...Skvrny_Pronikání hvězd...X počátekY počátekPočáteční úhelPočátek míseníPočáteční míseníPřevzorkováníVířivá _dlaždice..._Klikatice..._Popisek podtlačítka na trubici...Dočasná proceduraTextTextový kruh...Barva textuBarva textu (aktivní)Obrácený přechod textuVzorek textuTloušťkaHustota vláknaIntenzita vláknaDélka vláknaPráh (větší 1<-->255 menší)DlaždiceDo _stopy...Do _obrázkuDo _vzorku...NástrojPrůhledné pozadíTrojúhelníkPopisek podpodtlačítka _na trubici...Točit zleva dopravaTypNahoruHorní barvaHorní barva (aktivní)Levá horní barvaPoužít aktuální přechodPoužívat _název písma jako textPoužít rostoucí výběrPoužít na obrysy vzorek místo přechoduPoužít na text vzorek místo přechoduPoužít překrytí vzorkůPoužít hranice výběru místo níže uvedenéhoSvislýVlnová délkaHlavička nadpisu na WWW...Míra vířeníÚhel víruŠířkaŠířka pruhůŠířka mezerPracovat s kopiíRozdělení XRozdělení YJiž spouštíte skript "%s"._Šipka..._Základní I..._Velká hlavička..._Smísit..._Okraj (pixely)_Procházet..._Puntík..._Kamufláž..._Křída..._Okruh..._Plátno...Skvrny od kávy...Schéma _barevWWW stránky _vývojářů_Nouzový výběr..._Vržený stín..._Eliptickou..._Vymazat každou druhou řadu..._Pozvolný obrys..._Filtr (regexp)_Rovina..._Mapa písma..._Mrazivo..._Neostrý okraj..._Obecné popisky na trubici..._Mřížka..._Vodorovné pravítko..._Jmenovky_Země..._Láva..._Hlavní WWW stránky_Stará fotografie...Stopa _částic..._Perspektiva..._Predátor..._Obdélníkovou..._Obnovit skripty_Odstranit všechna vodítka_Čeření..._Oblé tlačítko..._Oblé rohy..._Hledat:_Snímek..._Malá hlavička..._Koule..._Rotující glóbus..._Spustit server..._Vířivé..._Text_Texturované..._Dlaždicovatelné rozostření...Popisek _tlačítka na trubici_Rozostřit masku..._Vlny...Efekt _Xach... \ No newline at end of file diff -uraN gimp-2.2.6/po-script-fu/cs.po gimp-2.2.7/po-script-fu/cs.po --- gimp-2.2.6/po-script-fu/cs.po 2005-04-10 02:12:05.000000000 +0200 +++ gimp-2.2.7/po-script-fu/cs.po 2005-05-08 23:42:26.000000000 +0200 @@ -1,18 +1,19 @@ # Czech translation of GIMP script-fu -# Copyright (C) 2001,2003 Free Software Foundation, Inc. +# Copyright (C) 2001,2003, 2005 Free Software Foundation, Inc. # Copyright (C) 2004 Miloslav Trmac # Stanislav Brabec , 2000-2001. -# Michal Bukovjan , 2003 +# Michal Bukovjan , 2003. # Miloslav Trmac , 2003, 2004. +# Jakub Friedl , 2005. # msgid "" msgstr "" -"Project-Id-Version: gimp-script-fu VERSION\n" +"Project-Id-Version: cs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-04-09 21:56+0200\n" -"PO-Revision-Date: 2004-11-20 16:09+0100\n" -"Last-Translator: Miloslav Trmac \n" -"Language-Team: Czech \n" +"PO-Revision-Date: 2005-04-28 21:02+0200\n" +"Last-Translator: Jakub Friedl \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -2464,7 +2465,7 @@ #: ../plug-ins/script-fu/scripts/web-browser.scm.h:1 msgid "/Help/The GIMP Online" -msgstr "/Nápověda/GIMP Online" +msgstr "/Nápověda/GIMP online" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:2 msgid "Plug-in _Registry" @@ -2513,15 +2514,3 @@ #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:12 msgid "_Xach-Effect..." msgstr "Efekt _Xach..." - -#~ msgid "Buffer amount (% height of text)" -#~ msgstr "Velikost bufferu (% výšky textu)" - -#~ msgid "_ASCII to Image..." -#~ msgstr "_ASCII do obrázku..." - -#~ msgid "_ASCII to Layer..." -#~ msgstr "_ASCII to vrstvy..." - -#~ msgid "Copy _Visible" -#~ msgstr "Kopírovat _viditelné..." diff -uraN gimp-2.2.6/po-script-fu/ru.gmo gimp-2.2.7/po-script-fu/ru.gmo --- gimp-2.2.6/po-script-fu/ru.gmo 2005-04-10 02:12:13.000000000 +0200 +++ gimp-2.2.7/po-script-fu/ru.gmo 2005-05-08 23:42:34.000000000 +0200 @@ -1,37 +1,78 @@ -  H I M Y b l r |        "    - -"-=MS [gm~`  1 6 @JY -al u   16 ISZj -q|   *;L]muy -  #<Wp9= ,HYi    )1FVf -mx   - Z#~   %%8Vr -3 - - -.L jt   8 6CZ q( - -3#1W%)  "C'^ -# -<Mk! 2?Pi+***!1Sb fs  ! (- (V  ( . * 0#!4T!y!}"",""" "4#M=#E# -# -#7#$8$ -A$!L$ n${$$$$&$$$$%;%Z%m%|% -%%%!% -%% % &&5&<&E& [&h&$&&2& & -&F?hocXxuVr"~#sMbk@$-a =,CE1A2t!mi.4 +_U7v{3}[djenfLq^0H; wpD>|g]P( -TQR6 :'K8 %JYZ)IO\9W/Gz<y&*lBNS`5%s:/Script-Fu/AirbrushAmplitudeAngleAntialiasAuthor:AzimuthBackground ColorBackground ImageBehaviourBlackBlur XBlur YBrushBurn-In: Need two layers in total!CircleColorColor 1Color 2Color 3ColumnsCopyright:Current CommandCustom GradientDate:DefocusDensity (%)DepthDetail in MiddleDiameterDownDraws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpElevationEnd XEnd YEpitrochoidEraseError while executing + +l + +++ + +++,,:,V,n,,,,,,- *-K-#j--!--3-8!.9Z. . .... . +.. + // ///>/ M/W/ ]/g///// +/ / / +/// 00 ++0 +60 +A0 L0V0o0 000 0000 +0 +111 1 *161 H1 T1^1n1 }1 1 1 111 +1!1"1 2 )2 62 +D2O2a2 s2}2 2 2 22 2222 3 3373=3E3M3 U3b3j3y33 +3 33 3E3 + 444.4>4 +R4<]44444 444 45 555`15 555555 66 !6 +6 +76B6[6u666 6666 6 67 77 +%707L7Q7 Z7 d7n7 }7 7 77 7 +7 777 +7 7 888 +'828E8V8 \8 +h8s8z88 8 +88 +8 88899*9B9 Z9f9}9 9 99999999 :: +': +2:=: A: N: +[:f: u: : :": :::: ;;;.;>;N; ];i;n; ;; ;; ;;;;; ; <<&<7<><G<L<g< <<'< +<< <<<==&=6=G=X=h====== ==== = = >> %>3> L> Y> c>o> w> >>> +>>>>> ??? "?/?8?J?\?m?~????? ??? +?? ? +@@.@K@e@w@ @@ @@@ @ @@@ @ AAA&A.A?AOAiAAAAAAAB4B6GB9~B=B BC C*C;CKC cCCCCCCC CCC DD /DN(MN4vN,N$N2N,0O"]O*O(O3O%P2.P4aP?P2P4 Q4>Q]sQ_QR1RRRRR*R!!SCS1]SSSSS4S&T9TBT9YTDT TT T%U(U;UKU[U%mUU%UUUVV*.V*YVVVVVVW1WOWoWWW#WW)W!'XIX%eX"XXXXX$Y +7YBYF^Y3YYYZ Z+Z*HZsZ&ZZZZZ[[#=[$a[[ +[C[[ +[ +[ +[\"\1\A\$R\w\\0\\Y\S]g]|]#]%]]] ^2^^!^__ ,_%M_s___&__{`1`1`;`"5a6Xaa aaaa,a-b,Lb,yb(bb b c c,cLcfccc#c8c dd4dKd bddddd*dde%e*7ebe(~e#e +e&ee&f&:fafjf!f +fCffg-g"Cgfgg.gg"g'h3)h1]hh)h)hhi *i7iRi$oi$iii)i#j7jWjnj rj#j#j0j# k 0k1=kJokk,kl,'lTlml'll1l%l"m +:m#Emimmmmm(m"m n4n'Nnvn+nnn nn"n0oJofo6oooo&o +p"p"@pcp}ppp-ppq!q?qWqoq!q7qqrr5r0Orr6rrr1 s;sPsgs.~sAss tt!+tMtgttt#tt+t+u*Hu*su*uu!u vv8vVv Zvgvxvvv,v4v.)wXw&nw)www wwx#"x4Fx {xxxxxx!x# y(-y(Vy y(y.y*y##z,Gz4tz zdzy/{}{'|,=|j|"| |4|L}DN} +}'}} +}7}(~A~ J~ k~*~~~~~ +!@=^/ ,(*S(m&"΀$$*On +"ǁ..]!y -% + +3,I4vŃԃ%* GTeÄ-ڄ-6 +=H.`"8><*Bg@<:(cv(!ׇ  .Oh)Έ$ $&K_o  ى&:W:u)ڊ $6'U }2 Ћ ދ +#>Xh' Όڌ& , : [ i" + +ʍՍ$%4 Saub5Hg3V?cr=m! ae2+-'B,]x +)fg .2P#hyA_ 0fw Mpa_ju81<7~-> +Z?t'{yLjG@D9IAS*Me5FbKY. 7 KG(;@:BnS3l4%4\$Rv="w}!*~&VT0h  ti9R|N]dOq #{QuvTIJzP F661`nopqrCX}ZH+cOLmDkYsNlJE/[z>i$<dW%(Q" +,:X)|kWsE`o&8^;/C\^x[UU%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only +(Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenFG-BG-HSVFG-BG-RGBFG-TransparentFadeoutFeatheringFilenameFill with BGFontFrameFramesGradientGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)HeightHexagonHexagonsIIRImage Types:InvertInvert directionLeftLighting (degrees)LissajousLoopedMargin (pixels)MottleNo matchesNumberOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationPaddingPadding XPadding YPatternPencilPentagonPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedRLERadiusRadius (pixels)RandomnessRightRoughnessRowsSIOD OutputScale XScale YScript ArgumentsScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Server OptionsScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSepiaServer Logfile:Server Port:ShadowShapeSharpness (degrees)SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Spots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YSupersampleTextThicknessTileToolTriangleTypeUpWavelengthWidthWrap_Border (pixels)_Filter (regexp)_Labels_Search:_TextProject-Id-Version: gimp.SCRIPTFU.ru +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp.SCRIPTFU.ru Report-Msgid-Bugs-To: POT-Creation-Date: 2005-04-09 21:56+0200 -PO-Revision-Date: 2004-07-15 00:10+0400 -Last-Translator: AnatolyA. Yakushin +PO-Revision-Date: 2004-12-24 22:17+0300 +Last-Translator: Roxana Chernogolova Language-Team: russian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: KBabel 1.3.1 -%s:/Скрипт-Фу/АэрографРазмахУголСглаживаниеАвтор:АзимутЦвет фонаФоновое изображениеПоведениеЗполнять чернымРазмывание по XРазмывание по YКистьНеобходимо хотя бы два слоя!КругЦветЦвет 1Цвет 2Цвет 3СтолбцыАвторское право:Текущая командаДругой градиентДата:РасфокусироватьПлотность (%)ГлубинаДетали в серединеДиаметрВнизРисование спирографов, эпитрохоид. Дополнительная информация находится на сайте http://netword.com/*spyrogimpВозвышениеКонец XКонец YЭпитрохоидаОчиститьОшибка во время исполнения +%d процедур%s:(нет)/Скрипт-Фу/1 процедураОбъемный контур...3_D Truchet.../Скрипт-Фу/Алхимия/Скрипт-Фу/Альфа->Эмблема/Скрипт-Фу/Аниматоры/Скрипт-Фу/Декор/Скрипт-Фу/Визуализация/Скрипт-Фу/Выделение/Скрипт-Фу/Тень/Скрипт-Фу/Трафарет/Скрипт-Фу/Утилиты/Справка/Gimp в интернете/Расш./Скрипт-Фу/Расш./Скрипт-Фу/Кнопки/Расш./Скрипт-Фу/Эмблемы/Расш./Скрипт-Фу/Создать кисть/Расш./Скрипт-Фу/Разное/Расш./Скрипт-Фу/Шаблоны/Расш./Скрипт-Фу/Утилиты/Расш./Скрипт-Фу/Темы Web-страниц/Чужое свечение/Расш./Скрипт-Фу/Темы Web-страниц/Выпуклый шаблон/Расш./Скрипт-Фу/Темы Web-страниц/Classic.Gimp.OrgАктивные цветаДобавить фаску...Добавить рамку...Добавить фонДобавить падающую теньДобавить свечениеДобавить теньДополнительная информацияПослесвечениеАэрографЧужое свечение...Чужой неон...Позволить изменение размераАмплитудаУголСглаживаниеПрименить созданную маску слояПрименить маску слоя (или отказаться)Автор:АвтокадрАзимутНепрозрачность фонаОснова II...Выжечь...Кнопка...Цвет фонаФоновое изображениеЦвет фонаФоновое изображениеВысота линейкиДлина линейкиОсновной цветПоведениеВысота скоса (резкость)Высота скоса (резкость)Ширина скосаЗаполнять чернымЧерный на беломГрадиентная...Градиент (Текст)Градиент (Контур)Градиент (Текст)Режим смешиванияРазмер блокаРазмывание по XРазмывание по YОкруглость рельефаРазмыть рамкуРазмыть горизонтальноРадиус размыванияТип размыванияРазмыть вертикальноПятнистая корова...Ширина планки XШирина планки YЦвет рамкиРазмер рамкиРазмер рамки (точек)КистьНазвание кистиРадиус размывания рельефа (Альфа-слой)Необходимо хотя бы два слоя!Цвет вспышкиВырезать...Хромировать...Хром...Текст над фономВырезать белые участкиВырезанная...Размер ячейки (точек)Цвет мелкаОсколки...ЗернистостьБаланс хромаФактор хромаСветлость хромаНасыщенность хромаБелые участки хромаКругЗерноОчистить участки невыделенной маскиЦветЦвет 1Цвет 2Цвет 3Метод окраскиСтолбцыКомикс...ВогнутоеПрохладный металл...Авторское право:Ширина короныСоздать новое изображениеСоздать теньСоздает направляющие вокруг выделенной области.Кристалл...КубическаяТекущая командаУказанный градиентОтобразить градиентТемный цветЗамена темным +(Лучше, но только для изображений с большим количеством белого)Дата:Исходные настройки рельефаРасфокусироватьРельефность рамкиПлотность (%)ГлубинаДетали в серединеУровень детализацииДиаметрОриентацияВнизПостроить график HSV...Рисование спирографов, эпитрохоид. Дополнительная информация находится на сайте http://netword.com/*spyrogimpПадающая теньСмещение падающей тени по XСмещение падающей тени по YРадиус размывания падающей тениЦвет падающей тениНепрозрачность падающей тениРазмер краяКрай:Только крайРадиус краяШирина краяРазмер эффекта (точек * 3)Размер эффекта (точек * 30)Размер эффекта (точек * 4)Размер эффекта (точек * 5)Размер эффекта (точек)ВозвышениеРазмытый эллипс...Конец XКонец YКонечный цвет градиентаКонечный цветКарта окруженияЭпитрохоидаОчиститьОчистить/ЗаполнитьОшибка во время исполнения %s -%sЧетныеП.план-Фон-HSVП.план-Фон-RGBП.план-ПрозрачноеУгасаниеРазмываниеИмя файлаЗаполнить цветом фонаШрифтКадрКадрыГрадиентГрадиент: Пилообразный циклГрадиент: Треугольный циклКрупность разбиенияЗернистость (1 - низкая)ВысотаШестиугольникШестиугольникиIIRТипы изображений:ИнвертироватьОбратное направлениеВлевоОсвещение (градусы)ЛиссажуЦиклическоеОтступ (точек)КрапНе найденоНомерВосьмиугольникиНечетныеСмещение (точек)Смещение по XСмещение по YСмещения (точек * 2)НепрозрачностьОриентацияЗаполнениеЗаполнение XЗаполнение YШаблонКарандашПятиугольникПикселизоватьМногоугольник: 10 сторонМногоугольник: 7 сторонМногоугольник: 8 сторонМногоугольник: 9 сторонПодготовить для GIFНажатаяRLEРадиусРадиус (точек)СлучайностьВправоШероховатостьСтрокиВывод SIODМасштаб XМасштаб YАргументы скриптаСкрипт-Фу: Выбор кистиСкрипт-Фу: Выбор цветаКонсоль Скрипт-ФуСкрипт-Фу: Выбор файлаСкрипт-Фу: Выбор каталогаСкрипт-Фу: Выбор шрифтаСкрипт-Фу: Выбор градиентаСкрипт-Фу: Параметры сервераКонсольный режим Скрипт-Фу позволяет только интерактивную работуРежим выполнения Скрипт-Фу допускает только неинтерактивную работуСкрипт-Фу: %sСкрипт-Фу: Выбор шаблонаПоиск по аннотацииПоиск по названиюПоиск - подождите пожалуйстаПоиск по аннотации -- подождите пожалуйстаПоиск по имени -- подождите пожалуйстаЗерноСепияРегистрационный файл сервера:Порт сервера:ТеньФормаРезкость (градусы)РазмерРазмыватьСгладитьСплошной цветИнтервалСкорость (точек/кадр)Плотность пятен по XПлотность пятен по YРаспространениеСпирографКвадратКвадратыПятнаНачало по XНачало по YУлучшенный шаблонТекстТолщинаПлиткаИнструментТреугольникТипВерхДлина волныШиринаЗаворачиватьРазмер рамки (точек)Фильтр (regexp)Указывать названия шрифтовПоиск:Текст \ No newline at end of file +%sЧетныеЧетные/НечетныеП.план-Фон-HSVП.план-Фон-RGBП.план-ПрозрачноеУгасаниеУгасание от %Угасание к %УгасаниеРазмер кромки угасанияРазмываниеИмя файлаИмя файлаЗаполнить фон шаблономЗаполнить уголЗаполнить цветом фонаСвести изображениеШрифтРазмер шрифта (точек)Цвет шрифтаРазмер шрифта (точек)Цвет переднего планаКадрЦвет обрамленияРазмер обрамленияКадрыОт верхнего левого к нижнему правомуРасширение GIMPДополнение GIMPГлянцевая...Горячее свечение...Цвет свеченияРадиус свеченияРазмер свечения (точек * 4)ГрадиентВпуклый градиент...Перевернуть градиентГрадиент: Пилообразный циклГрадиент: Треугольный циклРазбиениеЗернистость (1 - низкая)Зернистость (1 - низкая)Масштаб графикаЗаголовок...ВысотаШестиугольникШестиугольникиСмещение бликов по XСмещение бликов по YБаланс бликовЦвет бликовНепрозрачность бликовСкорость попаданийРазмер отверстияГоризонтальIIRТипы изображений:Высота изображенияРазмер изображенияИзображение для вырезанияШирина изображенияImigre-26...Индексировать изображениеИндексировать в n цветов (0 = оставить в RGB)Внутренние зубцыВставить названия слоевПереходные кадрыВнутренняя процедура GIMPИнтерполяцияИнвертироватьОбратное направлениеСохранить фонОтдельный слой для рельефаСохранить выделениеВысота землиВлевоОсвещение (градусы)Линейная новая...ЛинейнаяЛиссажуЦиклНижний цветНижний цвет (Активный)Нижний-правый цветСоздать новый фонОтступ (точек)Непрозрачность маскиРазмер маскиМакс. радиус размыванияТип мозаикиКрапНеон...НазваниеНаправляющая (в %)...Направляющие из выделенияНаправляющая...Газетный текст...Без фона (для отдельного слоя)Не найденоНетНе нажатаяНе нажатая (активная)НомерЧисло разрезов по XЧисло разрезов по YЧисло обводовЧисло цветовЧисло кадровЧисло линийЧисло повторов для вихряВосьмиугольникиНечетныеСмещение (точек)Смещение по XСмещение по YРадиус смещенияСмещения (точек * 2)Размер маски рисования масломНепрозрачностьНаправлениеВнешняя рамкаВнешние зубцыРадиус размывания контураЦвет контураПеревернуть градиент контураРазмер контураЦвет заполненияНепрозрачность заполненияЗаполнениеЗаполнение XЗаполнение YЗаполнение вокруг текстаЗаполнение для прозрачных участковПараметрыШаблонШаблон (Контур)Шаблон (Наложение)Шаблон (Текст)Название шаблонаКарандашПятиугольникКол-во точек растраПикселизоватьРегистрация дополненийМногоугольник: 10 сторонМногоугольник: 7 сторонМногоугольник: 8 сторонМногоугольник: 9 сторонРасположение (в %)Подготовить для GIFНажатаяСписок процедурРазмер четвертиRLEРадиусРадиус (%)Радиус (точек)Случайное зерноСлучайностьРазмытй прямоугольник...Отн. расстояние до горизонтаОтносительная длина тениУдалить фонВизуализация карты...Возвращаемые значенияИнтервалШирина лентыВправоСила рябиШероховатостьОтношение радиусовСкругленный прямоугольник...СтрокиСтроки/столбцыВывод SIODSOTA Хром...Масштаб XМасштаб YАргументы скриптаВыполнение скриптаСкрипт-Фу: выбор кистиСкрипт-Фу: выбор цветаКонсоль Скрипт-ФуСкрипт-Фу: выбор файлаСкрипт-Фу: выбор каталогаСкрипт-Фу: выбор шрифтаСкрипт-Фу: градиентСкрипт-Фу: выбор палитрыСкрипт-Фу: параметры сервераКонсоль Скрипт-ФуСкрипт-Фу не может выполнять два скрипта одновременно.Консольный режим Скрипт-Фу позволяет только интерактивную работуРежим выполнения Скрипт-Фу допускает только неинтерактивную работуСкрипт-Фу: %sСкрипт-Фу: выбор шаблонаМорская глубинаПоиск по аннотацииПоиск по названиюПоиск - подождите пожалуйстаПоиск по аннотации - подождите пожалуйстаПоиск по имени - подождите пожалуйстаЗерноПорог выбора по цветуВ отлельном слоеСепияРегистрационный файл сервера:Порт сервера:ТеньСмещение тени по XСмещение тени по YРадиус размывания тениЦвет тениТемнота тениГлубина тениРазмер тени (%)ФормаРезкость (градусы)Величина сдвигаПоказать структуру изображения...Простая выпуклая кнопка...РазмерРазмыватьСгладитьСгладить по горизонталиСгладить по вертикалиСплошной цветИнтервал между слоямиИнтервалСкорость (точек/кадр)Скоростной текст...Цвет сферыПлотность пятен по XПлотность пятен по YРаспространениеСпирографКвадратКвадратыЗвездный фон...ПятнаЗвездная вспышка...Начало по XНачало по YНачальный уголНачальный цвет градиентаНачальный цветУлучшенный шаблонSwirl-_Tile...T_ruchet...Метки доп. кнопок трубы...Временная процедураТекстТекст по кругу...Цвет текстаЦвет текста (для активн.)Перевернуть градиент текстаШаблон текстаТолщинаПлотность нитиНепрозрачность нитиДлина нитиПорог (От 1 до 255)ПлиткаВ кисть...В изображениеВ шаблон...ИнструментПрозрачный фонТреугольникДважды вложенные метки...Повернуть слева на правоТипВверхВерхний цветВерхний цвет (для активн.)Верхний-левый цветИспользовать текущий градиентНазвание шрифта в качестве текстаИспользовать растущее выделениеШаблон вместо градиента для контураШаблон вместо градиента для текстаИспользовать наложение шаблоновИспользовать границы выделенияВертикальДлина волныЗагловок web-страницы...Количество вихрейУгол вихряШиринаШирина обводовШирина зазораРаботать с копиейЗаворачиватьГоризонталиВертикалиВыполняется скрипт "%s".Стрелка...Основа I...Большой заголовок...Плавный переход...Размер рамки (точек)Просмотр...Маркер...Камуфляж...Мел...Печатная плата...Холст...Кофейные пятна...Цветовая схемаСайт разработкиИсказить выделение...Падающая тень...Эллиптическая...Очистить каждую вторую строку...Угасание вне контура...Фильтр (regexp)Карта высот...Карта шрифта...Ледяная...Нечеткая рамка...Метки главной трубы...Сетка...Линейка...Указывать названия шрифтовЗемля...Лава...Официальный сайтСтарое фото...След частицы...Перспектива...Хищник...Прямоугольная...Обновить скриптыУдалить направляющиеРябь...Круглая кнопка...Скругленные уголки...Поиск:Слайд...Малый заголовок...Сфера...Вращающийся шар...СпироGimp...Запустить сервер..._Swirly...ТекстТекстура...Размывание кромки...Метки кнопок трубы...Нерезкая маска...Волны...Плетение..._Xach-Effect... \ No newline at end of file diff -uraN gimp-2.2.6/po-script-fu/ru.po gimp-2.2.7/po-script-fu/ru.po --- gimp-2.2.6/po-script-fu/ru.po 2005-04-10 02:12:10.000000000 +0200 +++ gimp-2.2.7/po-script-fu/ru.po 2005-05-08 23:42:31.000000000 +0200 @@ -4,7 +4,7 @@ # Copyright (C) 2000-2002,2003, 2004 Free Software Foundation, Inc. # Valek Filippov , 2000-2002. # Anatoly A. Yakushin , 2003, 2004. -# Roxana Chernogolova , 2003, 2004. +# Roxana Chernogolova , 2003, 2004, 2005. # AnatolyA. Yakushin , 2004. # msgid "" @@ -12,8 +12,8 @@ "Project-Id-Version: gimp.SCRIPTFU.ru\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-04-09 21:56+0200\n" -"PO-Revision-Date: 2004-07-15 00:10+0400\n" -"Last-Translator: AnatolyA. Yakushin \n" +"PO-Revision-Date: 2004-12-24 22:17+0300\n" +"Last-Translator: Roxana Chernogolova \n" "Language-Team: russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,7 +38,6 @@ msgstr "Текущая команда" #: ../plug-ins/script-fu/script-fu-console.c:267 -#, fuzzy msgid "_Browse..." msgstr "Просмотр..." @@ -48,12 +47,12 @@ #: ../plug-ins/script-fu/script-fu-interface.c:177 msgid "Script-Fu cannot process two scripts at the same time." -msgstr "" +msgstr "Скрипт-Фу не может выполнять два скрипта одновременно." #: ../plug-ins/script-fu/script-fu-interface.c:179 #, c-format msgid "You are already running the \"%s\" script." -msgstr "" +msgstr "Выполняется скрипт \"%s\"." #. strip the first part of the menupath if it contains _("/Script-Fu/") #: ../plug-ins/script-fu/script-fu-interface.c:202 @@ -80,46 +79,44 @@ #: ../plug-ins/script-fu/script-fu-interface.c:328 msgid "Script-Fu Color Selection" -msgstr "Скрипт-Фу: Выбор цвета" +msgstr "Скрипт-Фу: выбор цвета" #: ../plug-ins/script-fu/script-fu-interface.c:431 msgid "Script-Fu File Selection" -msgstr "Скрипт-Фу: Выбор файла" +msgstr "Скрипт-Фу: выбор файла" #: ../plug-ins/script-fu/script-fu-interface.c:435 msgid "Script-Fu Folder Selection" -msgstr "Скрипт-Фу: Выбор каталога" +msgstr "Скрипт-Фу: выбор каталога" #: ../plug-ins/script-fu/script-fu-interface.c:447 msgid "Script-Fu Font Selection" -msgstr "Скрипт-Фу: Выбор шрифта" +msgstr "Скрипт-Фу: выбор шрифта" #: ../plug-ins/script-fu/script-fu-interface.c:454 -#, fuzzy msgid "Script-Fu Palette Selection" -msgstr "Скрипт-Фу: Выбор шаблона" +msgstr "Скрипт-Фу: выбор палитры" #: ../plug-ins/script-fu/script-fu-interface.c:462 msgid "Script-fu Pattern Selection" -msgstr "Скрипт-Фу: Выбор шаблона" +msgstr "Скрипт-Фу: выбор шаблона" #: ../plug-ins/script-fu/script-fu-interface.c:469 msgid "Script-Fu Gradient Selection" -msgstr "Скрипт-Фу: Выбор градиента" +msgstr "Скрипт-Фу: градиент" #: ../plug-ins/script-fu/script-fu-interface.c:477 msgid "Script-Fu Brush Selection" -msgstr "Скрипт-Фу: Выбор кисти" +msgstr "Скрипт-Фу: выбор кисти" #. the script progress frame #: ../plug-ins/script-fu/script-fu-interface.c:533 -#, fuzzy msgid "Script Progress" -msgstr "Аргументы скрипта" +msgstr "Выполнение скрипта" #: ../plug-ins/script-fu/script-fu-interface.c:541 msgid "(none)" -msgstr "" +msgstr "(нет)" #: ../plug-ins/script-fu/script-fu-interface.c:1058 #: ../plug-ins/dbbrowser/gimpprocview.c:198 @@ -153,7 +150,7 @@ #: ../plug-ins/script-fu/script-fu-server.c:642 msgid "Script-Fu Server Options" -msgstr "Скрипт-Фу: Параметры сервера" +msgstr "Скрипт-Фу: параметры сервера" #: ../plug-ins/script-fu/script-fu-server.c:670 msgid "Server Port:" @@ -164,28 +161,26 @@ msgstr "Регистрационный файл сервера:" #: ../plug-ins/script-fu/script-fu.c:122 -#, fuzzy 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 -#, fuzzy msgid "/Xtns/Script-Fu" -msgstr "/Расш./Скрипт-Фу/Эмблемы/Неон..." +msgstr "/Расш./Скрипт-Фу" #: ../plug-ins/script-fu/script-fu.c:151 msgid "_Start Server..." -msgstr "" +msgstr "Запустить сервер..." #: ../plug-ins/script-fu/script-fu.c:282 msgid "_Refresh Scripts" -msgstr "" +msgstr "Обновить скрипты" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:128 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:142 msgid "Procedure Browser" -msgstr "" +msgstr "Список процедур" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:132 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:146 @@ -203,11 +198,11 @@ #: ../plug-ins/dbbrowser/gimpprocbrowser.c:386 msgid "Searching by name - please wait" -msgstr "Поиск по имени -- подождите пожалуйста" +msgstr "Поиск по имени - подождите пожалуйста" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:410 msgid "Searching by blurb - please wait" -msgstr "Поиск по аннотации -- подождите пожалуйста" +msgstr "Поиск по аннотации - подождите пожалуйста" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:421 msgid "Searching - please wait" @@ -215,49 +210,48 @@ #: ../plug-ins/dbbrowser/gimpprocbrowser.c:428 msgid "1 Procedure" -msgstr "" +msgstr "1 процедура" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:430 #, c-format msgid "%d Procedures" -msgstr "" +msgstr "%d процедур" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:476 msgid "No matches" msgstr "Не найдено" #: ../plug-ins/dbbrowser/gimpprocview.c:133 -#, fuzzy msgid "Parameters" -msgstr "Диаметр" +msgstr "Параметры" #: ../plug-ins/dbbrowser/gimpprocview.c:146 msgid "Return Values" -msgstr "" +msgstr "Возвращаемые значения" #: ../plug-ins/dbbrowser/gimpprocview.c:159 msgid "Additional Information" -msgstr "" +msgstr "Дополнительная информация" #: ../plug-ins/dbbrowser/gimpprocview.c:319 msgid "Internal GIMP procedure" -msgstr "" +msgstr "Внутренняя процедура GIMP" #: ../plug-ins/dbbrowser/gimpprocview.c:320 msgid "GIMP Plug-In" -msgstr "" +msgstr "Дополнение GIMP" #: ../plug-ins/dbbrowser/gimpprocview.c:321 msgid "GIMP Extension" -msgstr "" +msgstr "Расширение GIMP" #: ../plug-ins/dbbrowser/gimpprocview.c:322 msgid "Temporary Procedure" -msgstr "" +msgstr "Временная процедура" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:1 msgid "3D _Outline..." -msgstr "" +msgstr "Объемный контур..." #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:2 #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:1 @@ -280,9 +274,8 @@ #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:1 #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:1 #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:1 -#, fuzzy msgid "/Script-Fu/Alpha to Logo" -msgstr "/Скрипт-Фу/Альфа->Эмблема/Неон..." +msgstr "/Скрипт-Фу/Альфа->Эмблема" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:3 #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:2 @@ -313,18 +306,15 @@ #: ../plug-ins/script-fu/scripts/text-circle.scm.h:1 #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:2 #: ../plug-ins/script-fu/scripts/title-header.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Logos" -msgstr "/Расш./Скрипт-Фу/Эмблемы/Неон..." +msgstr "/Расш./Скрипт-Фу/Эмблемы" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:4 -#, fuzzy msgid "Bumpmap (alpha layer) blur radius" msgstr "Радиус размывания рельефа (Альфа-слой)" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:5 #: ../plug-ins/script-fu/scripts/glossy.scm.h:7 -#, fuzzy msgid "Default bumpmap settings" msgstr "Исходные настройки рельефа" @@ -404,12 +394,10 @@ #: ../plug-ins/script-fu/scripts/text-circle.scm.h:5 #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:7 #: ../plug-ins/script-fu/scripts/title-header.scm.h:3 -#, fuzzy msgid "Font size (pixels)" msgstr "Размер шрифта (точек)" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:8 -#, fuzzy msgid "Outline blur radius" msgstr "Радиус размывания контура" @@ -427,19 +415,16 @@ #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:10 #: ../plug-ins/script-fu/scripts/glossy.scm.h:17 #: ../plug-ins/script-fu/scripts/round-corners.scm.h:6 -#, fuzzy msgid "Shadow X offset" msgstr "Смещение тени по X" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:11 #: ../plug-ins/script-fu/scripts/glossy.scm.h:18 #: ../plug-ins/script-fu/scripts/round-corners.scm.h:7 -#, fuzzy msgid "Shadow Y offset" msgstr "Смещение тени по Y" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:12 -#, fuzzy msgid "Shadow blur radius" msgstr "Радиус размывания тени" @@ -485,7 +470,7 @@ #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:1 msgid "3_D Truchet..." -msgstr "" +msgstr "3_D Truchet..." #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:2 #: ../plug-ins/script-fu/scripts/camo.scm.h:1 @@ -495,9 +480,8 @@ #: ../plug-ins/script-fu/scripts/swirltile.scm.h:1 #: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:1 #: ../plug-ins/script-fu/scripts/truchet.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Patterns" -msgstr "/Расш./Скрипт-Фу/Шаблоны/Земля..." +msgstr "/Расш./Скрипт-Фу/Шаблоны" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:3 #: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:2 @@ -528,37 +512,31 @@ #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:3 #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:3 #: ../plug-ins/script-fu/scripts/truchet.scm.h:2 -#, fuzzy msgid "Background color" msgstr "Цвет фона" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:4 #: ../plug-ins/script-fu/scripts/truchet.scm.h:3 -#, fuzzy msgid "Block size" msgstr "Размер блока" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:5 #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:7 -#, fuzzy msgid "End blend" msgstr "Конечный цвет градиента" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:6 #: ../plug-ins/script-fu/scripts/truchet.scm.h:5 -#, fuzzy msgid "Number of X tiles" msgstr "Число разрезов по X" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:7 #: ../plug-ins/script-fu/scripts/truchet.scm.h:6 -#, fuzzy msgid "Number of Y tiles" msgstr "Число разрезов по Y" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:8 #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:16 -#, fuzzy msgid "Start blend" msgstr "Начальный цвет градиента" @@ -579,17 +557,15 @@ #: ../plug-ins/script-fu/scripts/old-photo.scm.h:1 #: ../plug-ins/script-fu/scripts/round-corners.scm.h:1 #: ../plug-ins/script-fu/scripts/slide.scm.h:1 -#, fuzzy msgid "/Script-Fu/Decor" -msgstr "/Скрипт-Фу/Декор/Слайд..." +msgstr "/Скрипт-Фу/Декор" #: ../plug-ins/script-fu/scripts/add-bevel.scm.h:2 msgid "Add B_evel..." -msgstr "" +msgstr "Добавить фаску..." #: ../plug-ins/script-fu/scripts/add-bevel.scm.h:3 #: ../plug-ins/script-fu/scripts/chip-away.scm.h:12 -#, fuzzy msgid "Keep bump layer" msgstr "Отдельный слой для рельефа" @@ -599,32 +575,26 @@ #: ../plug-ins/script-fu/scripts/round-corners.scm.h:8 #: ../plug-ins/script-fu/scripts/slide.scm.h:6 #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:6 -#, fuzzy msgid "Work on copy" msgstr "Работать с копией" #: ../plug-ins/script-fu/scripts/addborder.scm.h:2 -#, fuzzy msgid "Add _Border..." -msgstr "Рамка" +msgstr "Добавить рамку..." #: ../plug-ins/script-fu/scripts/addborder.scm.h:3 -#, fuzzy msgid "Border X size" -msgstr "Ширина гризонтальной планки" +msgstr "Ширина планки X" #: ../plug-ins/script-fu/scripts/addborder.scm.h:4 -#, fuzzy msgid "Border Y size" -msgstr "Ширина вертикальной планки" +msgstr "Ширина планки Y" #: ../plug-ins/script-fu/scripts/addborder.scm.h:5 -#, fuzzy msgid "Border color" msgstr "Цвет рамки" #: ../plug-ins/script-fu/scripts/addborder.scm.h:6 -#, fuzzy msgid "Delta value on color" msgstr "Рельефность рамки" @@ -632,10 +602,8 @@ #: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:1 #: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:1 #: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow" -msgstr "" -"/Расш./Скрипт-Фу/Темы Web-страниц/Чужое свечение/Гор.линейка..." +msgstr "/Расш./Скрипт-Фу/Темы Web-страниц/Чужое свечение" #: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:3 #: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:2 @@ -648,7 +616,6 @@ #: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:4 #: ../plug-ins/script-fu/scripts/camo.scm.h:5 #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:6 -#, fuzzy msgid "Flatten image" msgstr "Свести изображение" @@ -661,7 +628,6 @@ #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:9 #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:8 #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:6 -#, fuzzy msgid "Glow color" msgstr "Цвет свечения" @@ -673,7 +639,7 @@ #: ../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 "Ориентация" +msgstr "Направление" #: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:8 #: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:6 @@ -689,29 +655,25 @@ #: ../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 "Верх" +msgstr "Вверх" #: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:11 #: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:9 -#, fuzzy msgid "_Arrow..." -msgstr "Просмотр..." +msgstr "Стрелка..." #: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:3 -#, fuzzy msgid "Bar height" msgstr "Высота линейки" #: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:4 -#, fuzzy msgid "Bar length" msgstr "Длина линейки" #: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:7 #: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:5 -#, fuzzy msgid "_Hrule..." -msgstr "Просмотр..." +msgstr "Линейка..." #: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:5 #: ../plug-ins/script-fu/scripts/text-circle.scm.h:6 @@ -721,17 +683,15 @@ #: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:6 #: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:5 -#, fuzzy msgid "_Bullet..." -msgstr "Просмотр..." +msgstr "Маркер..." #: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:2 #: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:2 msgid "B_utton..." -msgstr "" +msgstr "Кнопка..." #: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:8 -#, fuzzy msgid "Glow radius" msgstr "Радиус свечения" @@ -752,66 +712,57 @@ #: ../plug-ins/script-fu/scripts/news-text.scm.h:11 #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:14 #: ../plug-ins/script-fu/scripts/speed-text.scm.h:9 -#, fuzzy msgid "Text color" msgstr "Цвет текста" #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:3 msgid "Alien _Glow..." -msgstr "" +msgstr "Чужое свечение..." #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:7 -#, fuzzy msgid "Glow size (pixels * 4)" msgstr "Размер свечения (точек * 4)" #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:3 msgid "Alien _Neon..." -msgstr "" +msgstr "Чужой неон..." #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:5 -#, fuzzy msgid "Fade away" msgstr "Угасание" #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:9 -#, fuzzy msgid "Number of bands" msgstr "Число обводов" #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:11 -#, fuzzy msgid "Width of bands" msgstr "Ширина обводов" #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:12 -#, fuzzy msgid "Width of gaps" msgstr "Ширина зазора" #: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." -msgstr "" +msgstr "Основа I..." #: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:3 msgid "B_asic II..." -msgstr "" +msgstr "Основа II..." #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:1 #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Buttons" -msgstr "/Расш./Скрипт-Фу/Эмблемы/Неон..." +msgstr "/Расш./Скрипт-Фу/Кнопки" #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:2 #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:6 #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:2 -#, fuzzy msgid "Bevel width" msgstr "Ширина скоса" #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:5 -#, fuzzy msgid "Lower-right color" msgstr "Нижний-правый цвет" @@ -822,12 +773,10 @@ msgstr "Нажатая" #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:8 -#, fuzzy msgid "Simple _Beveled Button..." -msgstr "/Расш./Скрипт-Фу/Кнопки/Простая выпуклая кнопка..." +msgstr "Простая выпуклая кнопка..." #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:11 -#, fuzzy msgid "Upper-left color" msgstr "Верхний-левый цвет" @@ -836,9 +785,8 @@ #: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:1 #: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:1 #: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern" -msgstr "/Расш./Скрипт-Фу/Темы Web-страниц/Выпуклый шаблон/Стрелка..." +msgstr "/Расш./Скрипт-Фу/Темы Web-страниц/Выпуклый шаблон" #: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:2 msgid "Diameter" @@ -847,13 +795,12 @@ #: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 #: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:4 -#, fuzzy msgid "Transparent background" msgstr "Прозрачный фон" #: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." -msgstr "" +msgstr "Заголовок..." #: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:2 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:5 @@ -875,41 +822,36 @@ #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:1 #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:1 #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:1 -#, fuzzy msgid "/Script-Fu/Animators" -msgstr "/Скрипт-Фу/Аниматоры/Плавный переход..." +msgstr "/Скрипт-Фу/Аниматоры" #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:2 -#, fuzzy msgid "Intermediate frames" msgstr "Переходные кадры" #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:3 msgid "Looped" -msgstr "Циклическое" +msgstr "Цикл" #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:4 -#, fuzzy msgid "Max. blur radius" msgstr "Макс. радиус размывания" #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:5 -#, fuzzy msgid "_Blend..." -msgstr "Просмотр..." +msgstr "Плавный переход..." #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:4 msgid "Blen_ded..." -msgstr "" +msgstr "Градиентная..." #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:5 -#, fuzzy msgid "Blend mode" msgstr "Режим смешивания" #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:6 msgid "Custom Gradient" -msgstr "Другой градиент" +msgstr "Указанный градиент" #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:8 msgid "FG-BG-HSV" @@ -939,7 +881,6 @@ #: ../plug-ins/script-fu/scripts/gradient-example.scm.h:3 #: ../plug-ins/script-fu/scripts/rendermap.scm.h:5 #: ../plug-ins/script-fu/scripts/title-header.scm.h:4 -#, fuzzy msgid "Gradient reverse" msgstr "Перевернуть градиент" @@ -954,7 +895,7 @@ #: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:5 msgid "Bo_vination..." -msgstr "" +msgstr "Пятнистая корова..." #: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:8 msgid "Spots density X" @@ -965,25 +906,22 @@ msgstr "Плотность пятен по Y" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:2 -#, fuzzy msgid "Add glowing" msgstr "Добавить свечение" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:3 -#, fuzzy msgid "After glow" msgstr "Послесвечение" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:4 msgid "B_urn-In..." -msgstr "" +msgstr "Выжечь..." #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:5 msgid "Burn-In: Need two layers in total!" msgstr "Необходимо хотя бы два слоя!" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:6 -#, fuzzy msgid "Corona width" msgstr "Ширина короны" @@ -992,7 +930,6 @@ msgstr "Угасание" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:8 -#, fuzzy msgid "Fadeout width" msgstr "Размер кромки угасания" @@ -1019,11 +956,10 @@ #: ../plug-ins/script-fu/scripts/camo.scm.h:6 #: ../plug-ins/script-fu/scripts/rendermap.scm.h:6 msgid "Granularity" -msgstr "Крупность разбиения" +msgstr "Разбиение" #: ../plug-ins/script-fu/scripts/camo.scm.h:7 #: ../plug-ins/script-fu/scripts/rendermap.scm.h:7 -#, fuzzy msgid "Image size" msgstr "Размер изображения" @@ -1034,25 +970,22 @@ #: ../plug-ins/script-fu/scripts/camo.scm.h:9 msgid "_Camouflage..." -msgstr "" +msgstr "Камуфляж..." #: ../plug-ins/script-fu/scripts/carve-it.scm.h:1 #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:1 -#, fuzzy msgid "/Script-Fu/Stencil Ops" -msgstr "/Скрипт-Фу/Парметры трафарета/Вырезать..." +msgstr "/Скрипт-Фу/Трафарет" #: ../plug-ins/script-fu/scripts/carve-it.scm.h:2 msgid "C_arve-It..." -msgstr "" +msgstr "Вырезать..." #: ../plug-ins/script-fu/scripts/carve-it.scm.h:3 -#, fuzzy msgid "Carve white areas" msgstr "Вырезать белые участки" #: ../plug-ins/script-fu/scripts/carve-it.scm.h:4 -#, fuzzy msgid "Image to carve" msgstr "Изображение для вырезания" @@ -1061,49 +994,42 @@ msgstr "Фоновое изображение" #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:3 -#, fuzzy msgid "Carve raised text" -msgstr "Вырезать поднятый текст" +msgstr "Текст над фоном" #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:4 msgid "Carved..." -msgstr "" +msgstr "Вырезанная..." #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:7 -#, fuzzy msgid "Padding around text" msgstr "Заполнение вокруг текста" #: ../plug-ins/script-fu/scripts/chalk.scm.h:4 -#, fuzzy msgid "Chalk color" msgstr "Цвет мелка" #: ../plug-ins/script-fu/scripts/chalk.scm.h:8 msgid "_Chalk..." -msgstr "" +msgstr "Мел..." #: ../plug-ins/script-fu/scripts/chip-away.scm.h:3 -#, fuzzy msgid "Blur amount" msgstr "Округлость рельефа" #: ../plug-ins/script-fu/scripts/chip-away.scm.h:4 msgid "Chip Awa_y..." -msgstr "" +msgstr "Осколки..." #: ../plug-ins/script-fu/scripts/chip-away.scm.h:5 -#, fuzzy msgid "Chip amount" msgstr "Зернистость" #: ../plug-ins/script-fu/scripts/chip-away.scm.h:6 -#, fuzzy msgid "Drop shadow" msgstr "Падающая тень" #: ../plug-ins/script-fu/scripts/chip-away.scm.h:7 -#, fuzzy msgid "Fill BG with pattern" msgstr "Заполнить фон шаблоном" @@ -1112,62 +1038,52 @@ msgstr "Инвертировать" #: ../plug-ins/script-fu/scripts/chip-away.scm.h:11 -#, fuzzy msgid "Keep background" msgstr "Сохранить фон" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:2 -#, fuzzy msgid "C_hrome-It..." -msgstr "Просмотр..." +msgstr "Хромировать..." #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:3 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:2 -#, fuzzy msgid "Chrome balance" msgstr "Баланс хрома" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:4 #: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:3 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:3 -#, fuzzy msgid "Chrome factor" msgstr "Фактор хрома" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:5 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:4 -#, fuzzy msgid "Chrome lightness" msgstr "Светлость хрома" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:6 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:5 -#, fuzzy msgid "Chrome saturation" msgstr "Насыщенность хрома" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:7 -#, fuzzy msgid "Chrome white areas" msgstr "Белые участки хрома" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:8 #: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:5 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:6 -#, fuzzy msgid "Environment map" msgstr "Карта окружения" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:9 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:9 -#, fuzzy msgid "Highlight balance" msgstr "Баланс бликов" #: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:5 -#, fuzzy msgid "C_hrome..." -msgstr "Просмотр..." +msgstr "Хром..." #: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:8 msgid "Offsets (pixels * 2)" @@ -1178,53 +1094,45 @@ #: ../plug-ins/script-fu/scripts/lava.scm.h:1 #: ../plug-ins/script-fu/scripts/line-nova.scm.h:1 #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:1 -#, fuzzy msgid "/Script-Fu/Render" -msgstr "/Скрипт-Фу/Визуализация/Лава..." +msgstr "/Скрипт-Фу/Визуализация" #: ../plug-ins/script-fu/scripts/circuit.scm.h:2 -#, fuzzy msgid "Circuit seed" -msgstr "Печатная плата" +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 -#, fuzzy msgid "Keep selection" msgstr "Сохранить выделение" #: ../plug-ins/script-fu/scripts/circuit.scm.h:4 -#, fuzzy msgid "No background (only for separate layer)" -msgstr "Без фона (только для отдельного слоя)" +msgstr "Без фона (для отдельного слоя)" #: ../plug-ins/script-fu/scripts/circuit.scm.h:5 -#, fuzzy msgid "Oilify mask size" msgstr "Размер маски рисования маслом" #: ../plug-ins/script-fu/scripts/circuit.scm.h:6 #: ../plug-ins/script-fu/scripts/lava.scm.h:6 #: ../plug-ins/script-fu/scripts/predator.scm.h:6 -#, fuzzy msgid "Separate layer" -msgstr "Отделить слой" +msgstr "В отлельном слое" #: ../plug-ins/script-fu/scripts/circuit.scm.h:7 -#, fuzzy msgid "_Circuit..." -msgstr "Печатная плата" +msgstr "Печатная плата..." #: ../plug-ins/script-fu/scripts/clothify.scm.h:1 #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:1 #: ../plug-ins/script-fu/scripts/predator.scm.h:1 #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:1 #: ../plug-ins/script-fu/scripts/weave.scm.h:1 -#, fuzzy msgid "/Script-Fu/Alchemy" -msgstr "/Скрипт-Фу/Алхимия/Плетение..." +msgstr "/Скрипт-Фу/Алхимия" #: ../plug-ins/script-fu/scripts/clothify.scm.h:2 #: ../plug-ins/script-fu/scripts/swirltile.scm.h:2 @@ -1251,10 +1159,9 @@ #: ../plug-ins/script-fu/scripts/clothify.scm.h:7 msgid "_Clothify..." -msgstr "" +msgstr "Холст..." #: ../plug-ins/script-fu/scripts/coffee.scm.h:2 -#, fuzzy msgid "" "Darken only\n" "(Better, but only for images with alot of white)" @@ -1268,90 +1175,78 @@ #: ../plug-ins/script-fu/scripts/coffee.scm.h:4 msgid "_Coffee Stain..." -msgstr "" +msgstr "Кофейные пятна..." #: ../plug-ins/script-fu/scripts/comic-logo.scm.h:4 msgid "Comic Boo_k..." -msgstr "" +msgstr "Комикс..." #: ../plug-ins/script-fu/scripts/comic-logo.scm.h:9 -#, fuzzy msgid "Outline color" msgstr "Цвет контура" #: ../plug-ins/script-fu/scripts/comic-logo.scm.h:10 #: ../plug-ins/script-fu/scripts/glossy.scm.h:12 -#, fuzzy msgid "Outline size" msgstr "Размер контура" #: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:4 msgid "Cool _Metal..." -msgstr "" +msgstr "Прохладный металл..." #: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:5 #: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:4 -#, fuzzy msgid "Effect size (pixels)" msgstr "Размер эффекта (точек)" #: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:2 -#, fuzzy msgid "Background image" msgstr "Фоновое изображение" #: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:4 msgid "Crystal..." -msgstr "" +msgstr "Кристалл..." #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:1 #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:1 #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:1 #: ../plug-ins/script-fu/scripts/select-to-image.scm.h:1 #: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:1 -#, fuzzy msgid "/Script-Fu/Selection" -msgstr "/Скрипт-Фу/Выделение/В изображение" +msgstr "/Скрипт-Фу/Выделение" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:2 -#, fuzzy msgid "Granularity (1 is low)" msgstr "Зернистость (1 - низкая)" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:4 -#, fuzzy msgid "Smooth horizontally" -msgstr "Сгладить горизонтально" +msgstr "Сгладить по горизонтали" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:5 -#, fuzzy msgid "Smooth vertically" -msgstr "Сгладить вертикально" +msgstr "Сгладить по вертикали" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:6 msgid "Spread" msgstr "Распространение" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:7 -#, fuzzy msgid "Threshold (bigger 1<-->255 smaller)" msgstr "Порог (От 1 до 255)" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:8 -#, fuzzy msgid "_Distress Selection..." -msgstr "/Скрипт-Фу/Выделение/Исказить выделение..." +msgstr "Исказить выделение..." #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:1 #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:1 #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:1 -#, fuzzy msgid "/Script-Fu/Shadow" -msgstr "/Скрипт-Фу/Тени/Тень..." +msgstr "/Скрипт-Фу/Тень" #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:2 #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:2 -#, fuzzy msgid "Allow resizing" msgstr "Позволить изменение размера" @@ -1360,7 +1255,6 @@ #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:4 #: ../plug-ins/script-fu/scripts/round-corners.scm.h:4 #: ../plug-ins/script-fu/scripts/swirltile.scm.h:4 -#, fuzzy msgid "Blur radius" msgstr "Радиус размывания" @@ -1387,9 +1281,8 @@ msgstr "Непрозрачность" #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:8 -#, fuzzy msgid "_Drop-Shadow..." -msgstr "Падающая тень" +msgstr "Падающая тень..." #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:2 msgid "Columns" @@ -1400,7 +1293,6 @@ msgstr "Очистить" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:4 -#, fuzzy msgid "Erase/fill" msgstr "Очистить/Заполнить" @@ -1409,7 +1301,6 @@ msgstr "Четные" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:6 -#, fuzzy msgid "Even/odd" msgstr "Четные/Нечетные" @@ -1426,72 +1317,62 @@ msgstr "Строки" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:10 -#, fuzzy msgid "Rows/cols" msgstr "Строки/столбцы" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:11 -#, fuzzy msgid "_Erase every other Row..." -msgstr "/Скрипт-Фу/Алхимия/Очистить каждую вторую строку..." +msgstr "Очистить каждую вторую строку..." #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:2 -#, fuzzy msgid "Apply generated layermask" msgstr "Применить созданную маску слоя" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:3 #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:4 #: ../plug-ins/script-fu/scripts/old-photo.scm.h:2 -#, fuzzy msgid "Border size" msgstr "Размер рамки" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:4 -#, fuzzy msgid "Clear unselected maskarea" msgstr "Очистить участки невыделенной маски" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:6 -#, fuzzy, no-c-format +#, no-c-format msgid "Fade from %" msgstr "Угасание от %" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:8 -#, fuzzy, no-c-format +#, no-c-format msgid "Fade to %" msgstr "Угасание к %" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:9 -#, fuzzy msgid "Use growing selection" msgstr "Использовать растущее выделение" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:10 msgid "_Fade Outline..." -msgstr "" +msgstr "Угасание вне контура..." #: ../plug-ins/script-fu/scripts/flatland.scm.h:2 #: ../plug-ins/script-fu/scripts/land.scm.h:2 -#, fuzzy msgid "Detail level" msgstr "Уровень детализации" #: ../plug-ins/script-fu/scripts/flatland.scm.h:3 #: ../plug-ins/script-fu/scripts/land.scm.h:4 -#, fuzzy msgid "Image height" msgstr "Высота изображения" #: ../plug-ins/script-fu/scripts/flatland.scm.h:4 #: ../plug-ins/script-fu/scripts/land.scm.h:5 -#, fuzzy msgid "Image width" msgstr "Ширина изображения" #: ../plug-ins/script-fu/scripts/flatland.scm.h:5 #: ../plug-ins/script-fu/scripts/land.scm.h:7 -#, fuzzy msgid "Random seed" msgstr "Случайное зерно" @@ -1507,40 +1388,34 @@ #: ../plug-ins/script-fu/scripts/flatland.scm.h:8 msgid "_Flatland..." -msgstr "" +msgstr "Карта высот..." #: ../plug-ins/script-fu/scripts/font-map.scm.h:1 #: ../plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Utils" -msgstr "/Расш./Скрипт-Фу/Эмблемы/Неон..." +msgstr "/Расш./Скрипт-Фу/Утилиты" #: ../plug-ins/script-fu/scripts/font-map.scm.h:2 -#, fuzzy msgid "Active colors" -msgstr "Текущие цвета пер.плана и фона" +msgstr "Активные цвета" #: ../plug-ins/script-fu/scripts/font-map.scm.h:3 -#, fuzzy msgid "Black on white" msgstr "Черный на белом" #: ../plug-ins/script-fu/scripts/font-map.scm.h:4 -#, fuzzy msgid "Font _size (pixels)" msgstr "Размер шрифта (точек)" #: ../plug-ins/script-fu/scripts/font-map.scm.h:5 -#, fuzzy msgid "Use font _name as text" -msgstr "Использовать название шрифта в качестве текста" +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 -#, fuzzy msgid "_Color scheme" msgstr "Цветовая схема" @@ -1550,7 +1425,7 @@ #: ../plug-ins/script-fu/scripts/font-map.scm.h:9 msgid "_Font Map..." -msgstr "" +msgstr "Карта шрифта..." #: ../plug-ins/script-fu/scripts/font-map.scm.h:10 msgid "_Labels" @@ -1561,146 +1436,126 @@ msgstr "Текст" #: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:8 -#, fuzzy msgid "_Frosty..." -msgstr "Просмотр..." +msgstr "Ледяная..." #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:2 -#, fuzzy msgid "Add shadow" msgstr "Добавить тень" #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:3 -#, fuzzy msgid "Blur border" -msgstr "Размывать рамку" +msgstr "Размыть рамку" #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:7 msgid "Granularity (1 is Low)" msgstr "Зернистость (1 - низкая)" #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:9 -#, fuzzy, no-c-format +#, no-c-format msgid "Shadow weight (%)" msgstr "Размер тени (%)" #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:11 msgid "_Fuzzy Border..." -msgstr "" +msgstr "Нечеткая рамка..." #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:1 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org" -msgstr "" -"/Расш./Скрипт-Фу/Темы Web-страниц/Gimp.Org/Большой заголовок..." +msgstr "/Расш./Скрипт-Фу/Темы Web-страниц/Classic.Gimp.Org" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:2 -#, fuzzy msgid "Autocrop" msgstr "Автокадр" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:3 -#, fuzzy msgid "Dark color" msgstr "Темный цвет" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:6 #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:9 -#, fuzzy msgid "Highlight color" msgstr "Цвет бликов" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:7 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:6 -#, fuzzy msgid "Index image" -msgstr "Индексированное изображение" +msgstr "Индексировать изображение" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:8 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:7 -#, fuzzy msgid "Number of colors" msgstr "Число цветов" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:9 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:10 -#, fuzzy msgid "Remove background" msgstr "Удалить фон" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:10 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:11 -#, fuzzy msgid "Select-by-color threshold" msgstr "Порог выбора по цвету" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:11 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:12 -#, fuzzy msgid "Shadow color" msgstr "Цвет тени" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:14 msgid "_Big Header..." -msgstr "" +msgstr "Большой заголовок..." #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:15 msgid "_Small Header..." -msgstr "" +msgstr "Малый заголовок..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:13 msgid "T_ube Sub-Button Label..." -msgstr "" +msgstr "Метки доп. кнопок трубы..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:16 msgid "Tub_e Sub-Sub-Button Label..." -msgstr "" +msgstr "Дважды вложенные метки..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:17 msgid "_General Tube Labels..." -msgstr "" +msgstr "Метки главной трубы..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:18 msgid "_Tube Button Label..." -msgstr "" +msgstr "Метки кнопок трубы..." #: ../plug-ins/script-fu/scripts/glossy.scm.h:4 -#, fuzzy msgid "Blend gradient (Text)" msgstr "Градиент (Текст)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:5 -#, fuzzy msgid "Blend gradient (outline)" msgstr "Градиент (Контур)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:6 -#, fuzzy msgid "Blend gradient (text)" msgstr "Градиент (Текст)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:10 msgid "Glo_ssy..." -msgstr "" +msgstr "Глянцевая..." #: ../plug-ins/script-fu/scripts/glossy.scm.h:11 -#, fuzzy msgid "Outline gradient reverse" msgstr "Перевернуть градиент контура" #: ../plug-ins/script-fu/scripts/glossy.scm.h:13 -#, fuzzy msgid "Pattern (outline)" msgstr "Шаблон (Контур)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:14 -#, fuzzy msgid "Pattern (overlay)" msgstr "Шаблон (Наложение)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:15 -#, fuzzy msgid "Pattern (text)" msgstr "Шаблон (Текст)" @@ -1710,133 +1565,115 @@ msgstr "Тень" #: ../plug-ins/script-fu/scripts/glossy.scm.h:20 -#, fuzzy msgid "Text gradient reverse" msgstr "Перевернуть градиент текста" #: ../plug-ins/script-fu/scripts/glossy.scm.h:21 -#, fuzzy msgid "Use pattern for outline instead of gradient" -msgstr "Использовать для контура шаблон вместо градиента" +msgstr "Шаблон вместо градиента для контура" #: ../plug-ins/script-fu/scripts/glossy.scm.h:22 -#, fuzzy msgid "Use pattern for text instead of gradient" -msgstr "Использовать для текста шаблон вместо градиента" +msgstr "Шаблон вместо градиента для текста" #: ../plug-ins/script-fu/scripts/glossy.scm.h:23 -#, fuzzy msgid "Use pattern overlay" msgstr "Использовать наложение шаблонов" #: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:4 -#, fuzzy msgid "Effect size (pixels * 3)" msgstr "Размер эффекта (точек * 3)" #: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:7 msgid "Glo_wing Hot..." -msgstr "" +msgstr "Горячее свечение..." #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:4 -#, fuzzy msgid "Bevel height (Sharpness)" msgstr "Высота скоса (резкость)" #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:5 -#, fuzzy msgid "Bevel height (sharpness)" msgstr "Высота скоса (резкость)" #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:7 #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:5 #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:4 -#, fuzzy msgid "Border size (pixels)" msgstr "Размер рамки (точек)" #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:10 -#, fuzzy msgid "Gradient Beve_l..." -msgstr "Перевернуть градиент" +msgstr "Впуклый градиент..." #: ../plug-ins/script-fu/scripts/gradient-example.scm.h:2 -#, fuzzy msgid "Custom _Gradient..." -msgstr "Другой градиент" +msgstr "Отобразить градиент" #: ../plug-ins/script-fu/scripts/grid-system.scm.h:2 -#, fuzzy msgid "X divisions" msgstr "Горизонтали" #: ../plug-ins/script-fu/scripts/grid-system.scm.h:3 -#, fuzzy msgid "Y divisions" msgstr "Вертикали" #: ../plug-ins/script-fu/scripts/grid-system.scm.h:4 msgid "_Grid..." -msgstr "" +msgstr "Сетка..." #: ../plug-ins/script-fu/scripts/guides-from-selection.scm.h:1 msgid "Creates four Guides around the bounding box of the current selection." -msgstr "" +msgstr "Создает направляющие вокруг выделенной области." #: ../plug-ins/script-fu/scripts/guides-from-selection.scm.h:2 msgid "New Guides from _Selection" -msgstr "" +msgstr "Направляющие из выделения" #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:1 #: ../plug-ins/script-fu/scripts/guides-new.scm.h:1 -#, fuzzy msgid "Direction" -msgstr "Описание" +msgstr "Ориентация" #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:2 #: ../plug-ins/script-fu/scripts/guides-new.scm.h:2 -#, fuzzy msgid "Horizontal" -msgstr "Размыть горизонтально" +msgstr "Горизонталь" #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:3 msgid "New Guide (by _Percent)..." -msgstr "" +msgstr "Направляющая (в %)..." #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:5 #, no-c-format msgid "Position (in %)" -msgstr "" +msgstr "Расположение (в %)" #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:6 #: ../plug-ins/script-fu/scripts/guides-new.scm.h:4 -#, fuzzy msgid "Vertical" -msgstr "Размыть вертикально" +msgstr "Вертикаль" #: ../plug-ins/script-fu/scripts/guides-new.scm.h:3 msgid "New _Guide..." -msgstr "" +msgstr "Направляющая..." #: ../plug-ins/script-fu/scripts/guides-remove-all.scm.h:1 msgid "_Remove all Guides" -msgstr "" +msgstr "Удалить направляющие" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:1 #: ../plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy msgid "/Script-Fu/Utils" -msgstr "/Скрипт-Фу/Утилиты/ASCII -> Слой изображения..." +msgstr "/Скрипт-Фу/Утилиты" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:2 -#, fuzzy msgid "BG opacity" msgstr "Непрозрачность фона" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:3 -#, fuzzy msgid "Draw _HSV Graph..." -msgstr "/Скрипт-Фу/Утилиты/Построить HSV-график..." +msgstr "Построить график HSV..." #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:4 msgid "End X" @@ -1847,12 +1684,10 @@ msgstr "Конец Y" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:6 -#, fuzzy msgid "From top-left to bottom-right" msgstr "От верхнего левого к нижнему правому" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:7 -#, fuzzy msgid "Graph scale" msgstr "Масштаб графика" @@ -1865,92 +1700,76 @@ msgstr "Начало по Y" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:10 -#, fuzzy msgid "Use selection bounds instead of belows" msgstr "Использовать границы выделения" #: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:4 -#, fuzzy msgid "Frame color" msgstr "Цвет обрамления" #: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:5 -#, fuzzy msgid "Frame size" msgstr "Размер обрамления" #: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:6 msgid "Imigre-26..." -msgstr "" +msgstr "Imigre-26..." #: ../plug-ins/script-fu/scripts/image-structure.scm.h:2 -#, fuzzy msgid "Apply layer mask (or discard)" msgstr "Применить маску слоя (или отказаться)" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:4 -#, fuzzy msgid "Create new image" msgstr "Создать новое изображение" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:5 -#, fuzzy msgid "Insert layer names" msgstr "Вставить названия слоев" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:6 -#, fuzzy msgid "Make new background" msgstr "Создать новый фон" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:7 -#, fuzzy msgid "Outer border" msgstr "Внешняя рамка" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:8 -#, fuzzy msgid "Pad color" msgstr "Цвет заполнения" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:9 -#, fuzzy msgid "Pad opacity" msgstr "Непрозрачность заполнения" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:10 -#, fuzzy msgid "Padding for transparent regions" msgstr "Заполнение для прозрачных участков" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:11 -#, fuzzy msgid "Shear length" msgstr "Величина сдвига" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:12 -#, fuzzy msgid "Show Image _Structure..." -msgstr "/Скрипт-Фу/Утилиты/Показать структуру изображения..." +msgstr "Показать структуру изображения..." #: ../plug-ins/script-fu/scripts/image-structure.scm.h:13 -#, fuzzy msgid "Space between layers" msgstr "Интервал между слоями" #: ../plug-ins/script-fu/scripts/land.scm.h:6 -#, fuzzy msgid "Land height" msgstr "Высота земли" #: ../plug-ins/script-fu/scripts/land.scm.h:10 -#, fuzzy msgid "Sea depth" msgstr "Морская глубина" #: ../plug-ins/script-fu/scripts/land.scm.h:11 msgid "_Land..." -msgstr "" +msgstr "Земля..." #: ../plug-ins/script-fu/scripts/lava.scm.h:4 #: ../plug-ins/script-fu/scripts/swirltile.scm.h:8 @@ -1962,25 +1781,22 @@ msgstr "Зерно" #: ../plug-ins/script-fu/scripts/lava.scm.h:8 -#, fuzzy msgid "Use current gradient" msgstr "Использовать текущий градиент" #: ../plug-ins/script-fu/scripts/lava.scm.h:9 msgid "_Lava..." -msgstr "" +msgstr "Лава..." #: ../plug-ins/script-fu/scripts/line-nova.scm.h:2 msgid "Line _Nova..." -msgstr "" +msgstr "Линейная новая..." #: ../plug-ins/script-fu/scripts/line-nova.scm.h:3 -#, fuzzy msgid "Number of lines" msgstr "Число линий" #: ../plug-ins/script-fu/scripts/line-nova.scm.h:4 -#, fuzzy msgid "Offset radius" msgstr "Радиус смещения" @@ -1993,26 +1809,24 @@ msgstr "Резкость (градусы)" #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Make Brush" -msgstr "/Расш./Скрипт-Фу/Создать кисть/Эллипс..." +msgstr "/Расш./Скрипт-Фу/Создать кисть" #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:2 msgid "Elli_ptical, Feathered..." -msgstr "" +msgstr "Размытый эллипс..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:3 msgid "Feathering" msgstr "Размывание" #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:5 -#, fuzzy msgid "Name" -msgstr "Название:" +msgstr "Название" #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:6 msgid "Re_ctangular, Feathered..." -msgstr "" +msgstr "Размытй прямоугольник..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:7 #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:4 @@ -2021,28 +1835,25 @@ #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:9 msgid "_Elliptical..." -msgstr "" +msgstr "Эллиптическая..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:10 msgid "_Rectangular..." -msgstr "" +msgstr "Прямоугольная..." #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:4 -#, fuzzy msgid "Create shadow" msgstr "Создать тень" #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:5 -#, fuzzy msgid "Effect size (pixels * 5)" msgstr "Размер эффекта (точек * 5)" #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:9 msgid "N_eon..." -msgstr "" +msgstr "Неон..." #: ../plug-ins/script-fu/scripts/news-text.scm.h:4 -#, fuzzy msgid "Cell size (pixels)" msgstr "Размер ячейки (точек)" @@ -2054,7 +1865,7 @@ #: ../plug-ins/script-fu/scripts/news-text.scm.h:9 msgid "Newsprint Text..." -msgstr "" +msgstr "Газетный текст..." #: ../plug-ins/script-fu/scripts/old-photo.scm.h:3 msgid "Defocus" @@ -2070,7 +1881,7 @@ #: ../plug-ins/script-fu/scripts/old-photo.scm.h:7 msgid "_Old Photo..." -msgstr "" +msgstr "Старое фото..." #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:3 msgid "Angle" @@ -2078,44 +1889,39 @@ #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:6 msgid "Cubic" -msgstr "" +msgstr "Кубическая" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:7 -#, fuzzy msgid "Interpolation" -msgstr "Интерполировать" +msgstr "Интерполяция" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:8 msgid "Linear" -msgstr "" +msgstr "Линейная" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:9 msgid "None" -msgstr "" +msgstr "Нет" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:11 -#, fuzzy msgid "Relative distance of horizon" -msgstr "Относительное расстояние до горизонта" +msgstr "Отн. расстояние до горизонта" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:12 -#, fuzzy msgid "Relative length of shadow" msgstr "Относительная длина тени" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:13 msgid "_Perspective..." -msgstr "" +msgstr "Перспектива..." #: ../plug-ins/script-fu/scripts/predator.scm.h:2 -#, fuzzy msgid "Edge amount" msgstr "Размер края" #: ../plug-ins/script-fu/scripts/predator.scm.h:4 -#, fuzzy msgid "Pixel amount" -msgstr "Количество точек растра" +msgstr "Кол-во точек растра" #: ../plug-ins/script-fu/scripts/predator.scm.h:5 msgid "Pixelize" @@ -2123,27 +1929,23 @@ #: ../plug-ins/script-fu/scripts/predator.scm.h:7 msgid "_Predator..." -msgstr "" +msgstr "Хищник..." #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:5 -#, fuzzy msgid "Lower color" msgstr "Нижний цвет" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:6 -#, fuzzy msgid "Lower color (active)" msgstr "Нижний цвет (Активный)" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:7 -#, fuzzy msgid "Not pressed" msgstr "Не нажатая" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:8 -#, fuzzy msgid "Not pressed (active)" -msgstr "Не нажата (Активная)" +msgstr "Не нажатая (активная)" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:9 msgid "Padding X" @@ -2154,28 +1956,24 @@ msgstr "Заполнение Y" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:12 -#, fuzzy msgid "Round ratio" msgstr "Отношение радиусов" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:15 -#, fuzzy msgid "Text color (active)" -msgstr "Цвет текста (Активный)" +msgstr "Цвет текста (для активн.)" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:16 -#, fuzzy msgid "Upper color" msgstr "Верхний цвет" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:17 -#, fuzzy msgid "Upper color (active)" -msgstr "Верхний цвет (Активный)" +msgstr "Верхний цвет (для активн.)" #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:18 msgid "_Round Button..." -msgstr "" +msgstr "Круглая кнопка..." #: ../plug-ins/script-fu/scripts/rendermap.scm.h:2 msgid "Behaviour" @@ -2187,7 +1985,7 @@ #: ../plug-ins/script-fu/scripts/rendermap.scm.h:8 msgid "Render _Map..." -msgstr "" +msgstr "Визуализация карты..." #: ../plug-ins/script-fu/scripts/rendermap.scm.h:9 msgid "Tile" @@ -2195,21 +1993,18 @@ #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:2 msgid "Black" -msgstr "Зполнять черным" +msgstr "Заполнять черным" #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:3 -#, fuzzy msgid "Edge behaviour" msgstr "Край:" #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:4 #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:4 -#, fuzzy msgid "Number of frames" msgstr "Число кадров" #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:5 -#, fuzzy msgid "Rippling strength" msgstr "Сила ряби" @@ -2223,76 +2018,66 @@ #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:8 msgid "_Rippling..." -msgstr "" +msgstr "Рябь..." #: ../plug-ins/script-fu/scripts/round-corners.scm.h:2 -#, fuzzy msgid "Add background" msgstr "Добавить фон" #: ../plug-ins/script-fu/scripts/round-corners.scm.h:3 -#, fuzzy msgid "Add drop-shadow" msgstr "Добавить падающую тень" #: ../plug-ins/script-fu/scripts/round-corners.scm.h:5 -#, fuzzy msgid "Edge radius" msgstr "Радиус края" #: ../plug-ins/script-fu/scripts/round-corners.scm.h:9 msgid "_Round Corners..." -msgstr "" +msgstr "Скругленные уголки..." #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:2 -#, fuzzy msgid "Brush name" msgstr "Название кисти" #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:3 -#, fuzzy msgid "File name" msgstr "Имя файла" #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:5 -#, fuzzy msgid "To _Brush..." -msgstr "Просмотр..." +msgstr "В кисть..." #: ../plug-ins/script-fu/scripts/select-to-image.scm.h:2 msgid "To _Image" -msgstr "" +msgstr "В изображение" #: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 msgid "Filename" msgstr "Имя файла" #: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 -#, fuzzy msgid "Pattern name" -msgstr "Шаблон" +msgstr "Название шаблона" #: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:4 -#, fuzzy msgid "To _Pattern..." -msgstr "Шаблон" +msgstr "В шаблон..." #: ../plug-ins/script-fu/scripts/selection-round.scm.h:1 msgid "Concave" -msgstr "" +msgstr "Вогнутое" #: ../plug-ins/script-fu/scripts/selection-round.scm.h:3 -#, fuzzy, no-c-format +#, no-c-format msgid "Radius (%)" -msgstr "Радиус" +msgstr "Радиус (%)" #: ../plug-ins/script-fu/scripts/selection-round.scm.h:4 -#, fuzzy msgid "Rounded R_ectangle..." -msgstr "/Скрипт-Фу/Выделение/Закруглить..." +msgstr "Скругленный прямоугольник..." #: ../plug-ins/script-fu/scripts/slide.scm.h:3 -#, fuzzy msgid "Font color" msgstr "Цвет шрифта" @@ -2302,20 +2087,19 @@ #: ../plug-ins/script-fu/scripts/slide.scm.h:7 msgid "_Slide..." -msgstr "" +msgstr "Слайд..." #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:10 msgid "SOTA Chrome..." -msgstr "" +msgstr "SOTA Хром..." #: ../plug-ins/script-fu/scripts/speed-text.scm.h:7 msgid "Speed Text..." -msgstr "" +msgstr "Скоростной текст..." #: ../plug-ins/script-fu/scripts/sphere.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Misc" -msgstr "/Расш./Скрипт-Фу/Эмблемы/Неон..." +msgstr "/Расш./Скрипт-Фу/Разное" #: ../plug-ins/script-fu/scripts/sphere.scm.h:3 msgid "Lighting (degrees)" @@ -2326,32 +2110,28 @@ msgstr "Радиус (точек)" #: ../plug-ins/script-fu/scripts/sphere.scm.h:6 -#, fuzzy msgid "Sphere color" msgstr "Цвет сферы" #: ../plug-ins/script-fu/scripts/sphere.scm.h:7 -#, fuzzy msgid "_Sphere..." -msgstr "Просмотр..." +msgstr "Сфера..." #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:2 msgid "Frames" msgstr "Кадры" #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:3 -#, fuzzy msgid "Index to n colors (0 = remain RGB)" msgstr "Индексировать в n цветов (0 = оставить в RGB)" #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:5 -#, fuzzy msgid "Turn from left to right" msgstr "Повернуть слева на право" #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:7 msgid "_Spinning Globe..." -msgstr "" +msgstr "Вращающийся шар..." #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:2 msgid "Airbrush" @@ -2366,7 +2146,6 @@ msgstr "Круг" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:6 -#, fuzzy msgid "Color method" msgstr "Метод окраски" @@ -2399,12 +2178,10 @@ msgstr "Шестиугольник" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:14 -#, fuzzy msgid "Hole ratio" msgstr "Размер отверстия" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:15 -#, fuzzy msgid "Inner teeth" msgstr "Внутренние зубцы" @@ -2417,7 +2194,6 @@ msgstr "Отступ (точек)" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:18 -#, fuzzy msgid "Outer teeth" msgstr "Внешние зубцы" @@ -2463,7 +2239,6 @@ #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:29 #: ../plug-ins/script-fu/scripts/text-circle.scm.h:7 -#, fuzzy msgid "Start angle" msgstr "Начальный угол" @@ -2480,113 +2255,96 @@ msgstr "Тип" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:33 -#, fuzzy msgid "_Spyrogimp..." -msgstr "Спирограф" +msgstr "СпироGimp..." #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:4 -#, fuzzy msgid "Burst color" msgstr "Цвет вспышки" #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:5 -#, fuzzy msgid "Effect size (pixels * 30)" msgstr "Размер эффекта (точек * 30)" #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:8 msgid "Starb_urst..." -msgstr "" +msgstr "Звездная вспышка..." #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:3 -#, fuzzy msgid "Effect size (pixels * 4)" msgstr "Размер эффекта (точек * 4)" #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:7 -#, fuzzy msgid "Sta_rscape..." -msgstr "Просмотр..." +msgstr "Звездный фон..." #: ../plug-ins/script-fu/scripts/swirltile.scm.h:9 msgid "Swirl-_Tile..." -msgstr "" +msgstr "Swirl-_Tile..." #: ../plug-ins/script-fu/scripts/swirltile.scm.h:10 -#, fuzzy msgid "Whirl amount" msgstr "Количество вихрей" #: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:2 -#, fuzzy msgid "Number of times to whirl" msgstr "Число повторов для вихря" #: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:3 -#, fuzzy msgid "Quarter size" msgstr "Размер четверти" #: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:4 -#, fuzzy msgid "Whirl angle" msgstr "Угол вихря" #: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:5 msgid "_Swirly..." -msgstr "" +msgstr "_Swirly..." #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:4 -#, fuzzy msgid "Base color" msgstr "Основной цвет" #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:6 -#, fuzzy msgid "Edge only" msgstr "Только край" #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:7 -#, fuzzy msgid "Edge width" msgstr "Ширина края" #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:10 -#, fuzzy msgid "Hit rate" msgstr "Скорость попаданий" #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:12 msgid "_Particle Trace..." -msgstr "" +msgstr "След частицы..." #: ../plug-ins/script-fu/scripts/text-circle.scm.h:2 msgid "Antialias" msgstr "Сглаживание" #: ../plug-ins/script-fu/scripts/text-circle.scm.h:3 -#, fuzzy msgid "Fill angle" msgstr "Заполнить угол" #: ../plug-ins/script-fu/scripts/text-circle.scm.h:9 -#, fuzzy msgid "Text Circle..." -msgstr "Круг" +msgstr "Текст по кругу..." #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:5 -#, fuzzy msgid "Ending blend" -msgstr "Завершение смешивания" +msgstr "Конечный цвет" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:8 msgid "Hexagons" msgstr "Шестиугольники" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:9 -#, fuzzy msgid "Mosaic tile type" -msgstr "Элементы мозаичного типа" +msgstr "Тип мозаики" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:10 msgid "Octagons" @@ -2597,31 +2355,26 @@ msgstr "Квадраты" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:13 -#, fuzzy msgid "Starting blend" -msgstr "Начало смешивания" +msgstr "Начальный цвет" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:15 -#, fuzzy msgid "Text pattern" msgstr "Шаблон текста" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:16 msgid "_Textured..." -msgstr "" +msgstr "Текстура..." #: ../plug-ins/script-fu/scripts/tileblur.scm.h:1 -#, fuzzy msgid "Blur horizontally" msgstr "Размыть горизонтально" #: ../plug-ins/script-fu/scripts/tileblur.scm.h:2 -#, fuzzy msgid "Blur type" msgstr "Тип размывания" #: ../plug-ins/script-fu/scripts/tileblur.scm.h:3 -#, fuzzy msgid "Blur vertically" msgstr "Размыть вертикально" @@ -2634,40 +2387,36 @@ msgstr "RLE" #: ../plug-ins/script-fu/scripts/tileblur.scm.h:7 -#, fuzzy msgid "_Tileable Blur..." -msgstr "/Фильтры/Размывание/Размывание кромки..." +msgstr "Размывание кромки..." #: ../plug-ins/script-fu/scripts/title-header.scm.h:6 msgid "Web Title Header..." -msgstr "" +msgstr "Загловок web-страницы..." #: ../plug-ins/script-fu/scripts/truchet.scm.h:4 -#, fuzzy msgid "Foreground color" msgstr "Цвет переднего плана" #: ../plug-ins/script-fu/scripts/truchet.scm.h:7 msgid "T_ruchet..." -msgstr "" +msgstr "T_ruchet..." #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:2 -#, fuzzy msgid "Mask opacity" msgstr "Непрозрачность маски" #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:3 -#, fuzzy msgid "Mask size" msgstr "Размер маски" #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:4 msgid "_Unsharp Mask..." -msgstr "" +msgstr "Нерезкая маска..." #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:2 msgid "Amplitude" -msgstr "Размах" +msgstr "Амплитуда" #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:3 msgid "Invert direction" @@ -2679,115 +2428,100 @@ #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:6 msgid "_Waves..." -msgstr "" +msgstr "Волны..." #: ../plug-ins/script-fu/scripts/weave.scm.h:2 -#, fuzzy msgid "Ribbon spacing" -msgstr "Интервал ленты" +msgstr "Интервал" #: ../plug-ins/script-fu/scripts/weave.scm.h:3 -#, fuzzy msgid "Ribbon width" msgstr "Ширина ленты" #: ../plug-ins/script-fu/scripts/weave.scm.h:4 -#, fuzzy msgid "Shadow darkness" msgstr "Темнота тени" #: ../plug-ins/script-fu/scripts/weave.scm.h:5 -#, fuzzy msgid "Shadow depth" msgstr "Глубина тени" #: ../plug-ins/script-fu/scripts/weave.scm.h:6 -#, fuzzy msgid "Thread density" msgstr "Плотность нити" #: ../plug-ins/script-fu/scripts/weave.scm.h:7 -#, fuzzy msgid "Thread intensity" -msgstr "Интенсивность нити" +msgstr "Непрозрачность нити" #: ../plug-ins/script-fu/scripts/weave.scm.h:8 -#, fuzzy msgid "Thread length" msgstr "Длина нити" #: ../plug-ins/script-fu/scripts/weave.scm.h:9 msgid "_Weave..." -msgstr "" +msgstr "Плетение..." #: ../plug-ins/script-fu/scripts/web-browser.scm.h:1 -#, fuzzy msgid "/Help/The GIMP Online" -msgstr "/Справка/Web-браузер/Официальный сайт" +msgstr "/Справка/Gimp в интернете" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:2 msgid "Plug-in _Registry" -msgstr "" +msgstr "Регистрация дополнений" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:3 msgid "_Developer Web Site" -msgstr "" +msgstr "Сайт разработки" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:4 msgid "_Main Web Site" -msgstr "" +msgstr "Официальный сайт" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:2 -#, fuzzy msgid "Drop shadow X offset" msgstr "Смещение падающей тени по X" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:3 -#, fuzzy msgid "Drop shadow Y offset" msgstr "Смещение падающей тени по Y" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:4 -#, fuzzy msgid "Drop shadow blur radius" msgstr "Радиус размывания падающей тени" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:5 -#, fuzzy msgid "Drop shadow color" msgstr "Цвет падающей тени" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:6 -#, fuzzy msgid "Drop shadow opacity" msgstr "Непрозрачность падающей тени" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:7 -#, fuzzy msgid "Highlight X offset" msgstr "Смещение бликов по X" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:8 -#, fuzzy msgid "Highlight Y offset" msgstr "Смещение бликов по Y" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:10 -#, fuzzy msgid "Highlight opacity" msgstr "Непрозрачность бликов" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:12 msgid "_Xach-Effect..." -msgstr "" +msgstr "_Xach-Effect..." -#, fuzzy #~ msgid "Buffer amount (% height of text)" -#~ msgstr "Размер отступа (% высоты текста)" +#~ msgstr "Отступ (% высоты текста)" + +#~ msgid "_ASCII to Image..." +#~ msgstr "_ASCII в изображение..." -#, fuzzy #~ msgid "_ASCII to Layer..." -#~ msgstr "/Скрипт-Фу/Утилиты/ASCII -> Слой изображения..." +#~ msgstr "ASCII в слой..." #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/Расш./Скрипт-Фу/Обновить сценарии" @@ -2928,7 +2662,6 @@ #~ msgid "/Xtns/Script-Fu/Logos/Cool _Metal..." #~ msgstr "/Расш./Скрипт-Фу/Эмблемы/Прохладный метал..." -#, fuzzy #~ msgid "/Edit/Copy/Copy _Visible" #~ msgstr "/Правка/Скопировать видимое" @@ -2990,7 +2723,6 @@ #~ msgid "/Xtns/Script-Fu/Logos/Glo_ssy..." #~ msgstr "/Расш./Скрипт-Фу/Эмблемы/Глянцевая..." -#, fuzzy #~ msgid "Use tattern for outline instead of gradient" #~ msgstr "Использовать для контура шаблон вместо градиента" @@ -3146,11 +2878,9 @@ #~ "\n" #~ "\t\t SF-COLOR _" -#, fuzzy #~ msgid "Relative radius" #~ msgstr "Относительный радиус" -#, fuzzy #~ msgid "_About" #~ msgstr "О программе" @@ -3297,3 +3027,6 @@ #~ "Выжигание: Необходимо всего два слоя!\n" #~ " Слой текста переднего плана с прозрачностью\n" #~ " и слой фона." + +#~ msgid "Copy _Visible" +#~ msgstr "Копировать видимое" diff -uraN gimp-2.2.6/regexrepl/Makefile.in gimp-2.2.7/regexrepl/Makefile.in --- gimp-2.2.6/regexrepl/Makefile.in 2005-04-10 01:57:06.000000000 +0200 +++ gimp-2.2.7/regexrepl/Makefile.in 2005-04-11 11:43:55.000000000 +0200 @@ -322,6 +322,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.6/themes/Default/images/Makefile.in gimp-2.2.7/themes/Default/images/Makefile.in --- gimp-2.2.6/themes/Default/images/Makefile.in 2005-04-10 01:57:10.000000000 +0200 +++ gimp-2.2.7/themes/Default/images/Makefile.in 2005-04-11 11:44:03.000000000 +0200 @@ -322,6 +322,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.6/themes/Default/images/preferences/Makefile.in gimp-2.2.7/themes/Default/images/preferences/Makefile.in --- gimp-2.2.6/themes/Default/images/preferences/Makefile.in 2005-04-10 01:57:10.000000000 +0200 +++ gimp-2.2.7/themes/Default/images/preferences/Makefile.in 2005-04-11 11:44:05.000000000 +0200 @@ -322,6 +322,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.6/themes/Default/Makefile.in gimp-2.2.7/themes/Default/Makefile.in --- gimp-2.2.6/themes/Default/Makefile.in 2005-04-10 01:57:09.000000000 +0200 +++ gimp-2.2.7/themes/Default/Makefile.in 2005-04-11 11:44:01.000000000 +0200 @@ -322,6 +322,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.6/themes/Makefile.in gimp-2.2.7/themes/Makefile.in --- gimp-2.2.6/themes/Makefile.in 2005-04-10 01:57:08.000000000 +0200 +++ gimp-2.2.7/themes/Makefile.in 2005-04-11 11:43:59.000000000 +0200 @@ -322,6 +322,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.6/themes/Small/Makefile.in gimp-2.2.7/themes/Small/Makefile.in --- gimp-2.2.6/themes/Small/Makefile.in 2005-04-10 01:57:11.000000000 +0200 +++ gimp-2.2.7/themes/Small/Makefile.in 2005-04-11 11:44:08.000000000 +0200 @@ -322,6 +322,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.6/tips/ChangeLog gimp-2.2.7/tips/ChangeLog --- gimp-2.2.6/tips/ChangeLog 2005-04-01 12:21:12.000000000 +0200 +++ gimp-2.2.7/tips/ChangeLog 2005-04-22 12:16:57.000000000 +0200 @@ -1,3 +1,9 @@ +2005-04-22 Changwoo Ryu + + * Makefile.am (tips_POFILES): Added ko.po. + + * ko.po: Added Korean translation by Dongsu Jang. + 2005-03-31 Takeshi AIHANA * ja.po: Fixed a typo reported by diff -uraN gimp-2.2.6/tips/gimp-tips.xml gimp-2.2.7/tips/gimp-tips.xml --- gimp-2.2.6/tips/gimp-tips.xml 2005-04-09 23:09:52.000000000 +0200 +++ gimp-2.2.7/tips/gimp-tips.xml 2005-05-08 23:34:10.000000000 +0200 @@ -32,6 +32,7 @@ Bienvenue sur Le Gimp ! Üdvözli a GIMP! Benvenuti in GIMP! + 김프에 오신것을 환영합니다! Sveiki GIMP vartotojai! Velkommen til GIMP! Welkom bij de GIMP! @@ -53,6 +54,7 @@ Gimp peut presque annuler tous les changements faits dans l'image, n'hésitez donc pas à expérimenter. A legtöbb képművelet visszavonható, tehát nyugodtan kísérletezhet a programmal. GIMP può annullare molti cambiamenti alle immagini perciò sentitevi liberi di fare esperimenti! + 김프는 이미지에서 바뀐 내용을 대부분 취소할 수 있으니, 마음껏 실험해 보십시오. GIMP gali atšaukti daugumą operacijų, tad nebijokite eksperimentuoti. GIMP gir deg mulighet til å angre alle handlinger utført på bildet. De GIMP kan de meeste wijzigingen aan de afbeelding ongedaan maken, dus wees vrij om te experimenteren. @@ -85,6 +87,7 @@ A GIMP legtöbb funkciójáról környezetérzékeny segítség kérhető az F1 billentyű lenyomásával. Ez a menükön belül is működik. Puoi ottenere un aiuto sensibile al contesto per gran parte delle caratteristiche di GiMP premendo F1 in qualsiasi momento. Funziona anche nei menu. F1 キーを押すことでいつでも GIMP 機能の状況適応ヘルプを呼び出すことができるんだ.これはメニューの中でも使えるよ. + 언제라도 F1키를 누르면 GIMP의 대부분의 기능들에 대해서 문맥에 맞는 도움말을 볼 수 있습니다. 물론 메뉴 안에서도 됩니다. Bet kuriuo metu paspaudę F1 klavišą, gausite susijusią su kontekstu pagalbą.Tokiu pat būdu galite gauti pagalbą apie meniu punktus. Anda boleh mendapatkan bantuan peka konteks bagi kebanyakan ciri GIMP dengan menekan kekunci F1 pada bila-bila masa. Ini juga boleh dilakukan dalam menu. Du kan få hjelp for de fleste av GIMPs muligheter ved å trykke F1. Dette virker også inni menyer. @@ -118,6 +121,7 @@ A GIMP a képtartalom rendezetten tartása érdekében támogatja a rétegek használatát. Ezek elképzelhetők például úgy, mint egymásra helyezett fóliák illetve szűrők, amelyek tartalma összeadódva alkot egy képet. GIMP usa i livelli per organizzare l'immagine. Immaginali come una pila di diapositive o filtri, in modo che guardando attraverso loro puoi vedere una composizione del loro contenuto. GIMP ではレイヤーを使って画像をまとめることができるんだ.まぁスライドとかフィルタを積み重ねたものをすかして見ているようなものだと思ってくれればいい. + 김프는 이미지를 조직화하기 위해 레이어을 사용합니다. 레이어를 슬라이드나 필터를 쌓아놓은 것이라고 생각하면, 그것들을 통과하면서 합성된 내용을 보게 되는 거죠. GIMP naudojami sluoksniai padės Jums sutvarkyti paveikslėlį. įsivaizduokite, kad sluoksniai yra filtrų arba skaidrių rinkinys, pro kurį žiūrėdami matysite iš jų sudarytą paveikslėlį. GIMP menggunakan lapisan bagi membolehkan anda menyusun imej anda. Fikirkannya sebagai tindanan slaid atau penapis, iaitu apabila anda memandangnya anda dapat melihat gabungan bagi kandungan imej tersebut. GIMP bruker lag for å la deg organisere bildet. Tenk på dem som en stabel av lysark eller filtre, slik at du ved å se gjennom dem set et sammensatt bilde. @@ -151,6 +155,7 @@ A rétegműveletek nagy része elvégezhető a megfelelő rétegnek a Rétegek párbeszédablakban levő bejegyzésére jobb gombbal kattintva előbukkanó menüvel. Puoi eseguire un gran numero di operazioni cliccando col tasto destro sul nome del livello nella finestra di dialogo Livelli. レイヤーダイアログ内のそれぞれのレイヤー名の上で右クリックをすることで,レイヤーに対するいろんな操作が行えるんだ. + 레이어 대화상자의 텍스트 레이블에서 오른쪽-클릭을 하면 많은 레이어 관련 작업을 수행할 수 있습니다. Galite atlikti daug veiksmų su sluoksniu, paspaudę dešinį pelės klavišą ant jo pavadinimo Sluoksnių dialoge. Anda boleh melaksanakan banyak pengendalian lapisan dengan mengklik kanan label teks lapisan dalam dialog Lapisan. Du kan gjøre mange lagoperasjoner ved å høyreklikke på merkelappen til et lag i Lagdialogen. @@ -184,6 +189,7 @@ Ha egy elmentendő képen a későbbiekben is szeretne majd módosításokat végezni, akkor használja az XCF formátumot, amely a GIMP saját fájlformátuma (használja ehhez a .xcf végződést a fájlnévben). Ez a formátum megőrzi a kép összes tulajdonságát - például a rétegeket. Amikor a kép elkészült, érdemes lehet elmenteni JPEG, PNG vagy esetleg GIF formátumban. Quando salvi un immagine con l'intenzione di continuare a lavorarci, prova il formato nativo di GIMP,XCF (usa l'estensione xcf). Esso manterrà i livelli e ogni altro aspetto del tuo lavoro. Una volta che il progetto è completato, puoi salvarlo in JPEG, PNG, GIF, ... 後でまた編集をする画像を保存する時には,GIMP 固有形式の XCF を使おう(拡張子は .xcf).これは作業中の全ての状態を記録してくれるんだ.画像を完成させてから,JPEG, PNG, GIF として保存しようね... + 나중에 다시 작업할 이미지를 저장할 때는 김프의 자체 파일 형식인 XCF(파일 확장자가 .xcf입니다)를 사용해보세요. 이 형식을 사용하면 레이어와 작업 중인 모든 측면들이 보존됩니다. 프로젝트를 완료했을 때, JPEG, PNG, GIF, ... 등으로 저장하면 됩니다. Išsaugokite paveikslėlį XCF formatu, (GIMP'o formatas su praplėtimu .xcf). Jame išlieka darbinė paveikslėlio būsena (sluoksniai ir t.t.). Kai baigsite darbą, galėsite išsaugoti paveikslėlį JPEG, PNG, GIF, ir kitais formatais. Apabila anda menyimpan imej yang akan digunakan kemudian, cuba gunakan XCF, format fail natif GIMP (gunakan sambungan fail .xcf). Cara ini melindungi lapisan dan segala aspek kerja yang sedang anda jalankan. Selesai sahaja projek, anda boleh menyimpannya sebagai JPEG, PNG, GIF, ... Når du lagrer et bilde for å jobbe på det seinere, prøv å bruke XCF, GIMPs eget filformat (bruk filendelsen .xcf). Dette gjør at lagene og hvert aspekt av ditt midlertidige arbeid beholdes. Så snart et prosjekt er ferdig, kan du lagre det som JPEG, PNG, GIF, ... @@ -214,6 +220,7 @@ Le calque nommé « Arrière-plan » est spécial parce qu'il n'a pas de transparence. Ceci vous évite d'ajouter un masque de calque ou de monter ce calque dans la pile. Vous pouvez lui ajouter de la transparence en cliquant-droit dans le dialogue des calques et en sélectionnant « Ajouter un canal alpha ». A "Háttér" nevű réteg egy különleges réteg, mivel nincs átlátszósága. Ez megakadályozza, hogy a réteg feljebb legyen helyezve (más réteg fölé). Ha szeretne átlátszóságot adni ennek a rétegnek, akkor kattintson rá a jobb oldali egérgombbal a Rétegek párbeszédablakban, majd válassza ki az "Alfa-csatorna hozzáadása" funkciót. Il livello chiamato "Sfondo" è speciale poiché è privo di trasparenza. Ciò ti impedisce di aggiungere una maschera di livello o di muovere il livello in alto nella pila. Puoi aggiungergli trasparenza cliccandoci sopra col tasto destro nella finestra di dialogo Livelli e selezionando "Aggiungi canale alfa". + "배경" 레이어는 투명도가 없다는 점에서 특별합니다. 그래서 이 레이어는 다른 레이어 위에 올릴 수 없습니다. 레이어 대화상자에서 오른쪽-클릭을 하고 "알파 채널 더하기"를 선택하면 투명도를 추가할 수 있습니다. Sluoksnis „Fonas“ neturi permatomumo savybės. Todėl Jūs negalėsite uždėti sluoksnio kaukės arba perkelti sluoksnio aukštyn sluoksnių sąraše. Permatomumą galite pridėti paspaudę dešinį klavišą Sluoksnių dialoge ir pasirinkę „Pridėti Alfa kanalą“. Laget som heter «Bakgrunn» er spesielt fordi det ikke har gjennomsiktighet. Dette hindrer deg i å legge til en lagmaske eller flytte laget opp i stabelen. Du kan legge til gjennomsiktiget veed å høyreklikke i Lag-menyen og velge «Legg til alfrakanal». De laag met de naam "Achtergrond" is een speciaal geval omdat het geen transparantie bezit. Hierdoor kunt u geen laagmasker toevoegen of deze laag hoger in de stapel plaatsen. U kunt transparantie toevoegen door met de rechtermuisknop te klikken in het dialoogvenster Lagen en dan het menu-item "Alphakanaal toevoegen" te selecteren. @@ -238,6 +245,7 @@ A legtöbb bővítmény az aktuális kép aktuális rétegén végez műveletet. Bizonyos esetekben össze kell fésülni az összes réteget ("Kép->Egy réteggé lapítás" menüpont) ahhoz, hogy a bővítmény a teljes képet feldolgozza. La maggior parte dei plug-in lavora sul livello attivo dell'immagine corrente. In alcuni casi è necessario unire tutti i livelli (Immagine>Appiattisci immagine) se vuoi che i plug-in agiscano sull'intera immagine. 大半のプラグインは今作業中の画像の有効なレイヤーだけに働くんだ.だから画像全体に効果を与えたいときには画像を統合 (画像->画像の統合) する必要があるんじゃないかな. + 대부분의 플러그인들은 현재 이미지의 현재 레이어에만 조작합니다. 경우에 따라, 플러그인이 전체 이미지를 조작하도록 하려면 모든 레이어를 합쳐야(이미지->배경으로 이미지 합치기) 될 수도 있습니다. Daugelis priedų veikia aktyvaus paveikslėlio aktyviame sluoksnyje.Tačiau pasitaiko atvejų, kai reikia, kad priedas veiktų visą paveikslėlį. Tada reikia sujungti sluoksnius (Paveikslėlis->Sujungti sluoksnius). De fleste tilleggene jobber mot det gjeldende laget på det gjeldende bildet. I noen tilfeller vil du være nødt til å flette alle lag (Bilde->Flat ut bilde) hvis du vil at tillegget skal virke på hele bildet. De meeste plug-ins werk op de huidige laag van de huidige afbeelding. In sommige gevallen zult u alle lagen moeten samenvoegen (Afbeelding/Pletten) om de plug-in op de hele afbeelding toe te passen. @@ -268,6 +276,7 @@ Tous les effets ne peuvent pas être appliqués sur tous les types d'images. Ceci est signalé par une entrée de menu grisée. Vous pourriez donc avoir besoin de changer le mode de l'image en RVB (Image->Mode->RVB), ajouter un canal alpha (Calque-> Transparence->Ajouter un canal alpha) ou l'aplatir (Image->Aplatir l'image). A kép típusától függően elképzelhető, hogy nem minden effektus alkalmazható arra. Ha nem alkalmazható, azt a megfelelő menübejegyzés szürkítése (inaktív állapota) jelzi. Ilyenkor szükség lehet a kép módjának RGB-re való módosítására ("Kép->Mód->RGB" menüpont), alfa-csatorna felvételére ("Réteg->Átlátszóság->Alfa-csatorna hozzáadása" menüpont) vagy a kép lapítására ("Kép->Egy réteggé lapítás" menüpont). Non tutti gli effetti possono essere applicati ad ogni tipo di immagine. In caso di impossibilità la corrispondente voce del menù sarà grigia. Per risolvere il problema, puoi cambiare la modalità immagine in RGB (Immagine->Modalità->RGB), aggiungere un canale alfa (Livelli->Trasparenze->Aggiungi canale alfa) o appiattirla (Immagine->Appiattisci immagine). + 모든 효과가 모든 종류의 이미지에 적용되지는 않습니다. 이런 경우에는 메뉴 항목이 회색으로 표시됩니다. 이미지의 모드를 RGB로 바꾸거나(이미지->모드->RGB), 알파 채널을 더하거나(레이어->투명도->알파 채널 더하기), 배경으로 합쳐야(이미지->배경으로 합치기) 할 수도 있습니다. Yra efektų, kurių negalima taikyti visoms paveikslėlių rūšims. Neteisingai taikydami efektą, gausite klaidos pranešimą. Turėsite pakeisti paveikslėlį į RGB režimą (Paveikslėlis->Režimas->RGB) ir pridėti Alfa kanalą (Sluoksniai->Permatomumas->Pridėti Alfa kanalą) arba sujungti paveikslėlio sluoksnius (Paveikslėlis->Sujungti sluoksnius). Ikke alle effekter kan gjøre på alle typer bilder. Dette vises med et utgrået menyinnslag. Du kan trenge å endre bildet til RGB (Bilde->Modus->RGB), legge til en alfakanal (Lag->Gjennomsiktighet->Legg til alfakanal) eller flate det ut (Bilde->Flat ut bilde). Niet alle effecten kunnen worden toegepast op alle soorten afbeeldingen. Dit is het geval als een menu-item grijs is gemaakt. Het kan in zulke gevallen nodig zijn om de afbeeldingsmodus in te stellen op RGB (Afbeelding->Modus->RGB), een alphakanaal toe te voegen (Laag->Transparantie->Alphakanaal toevoegen) of de lagen samen te voegen (Afbeelding->Afbeelding Pletten). @@ -299,6 +308,7 @@ A GIMP-ben sokféle művelet elvégezhető húzással. Ha például áthúz egy színt az eszköztárról vagy egy színpalettáról egy képre, akkor az adott kép illetve kijelölés kitöltésre kerül azzal a színnel. Puoi trascinare molte cose in GIMP. Per esempio, trascinando un colore dalla finestra degli strumenti o da un colore della palette e rilasciandolo nell'immagine riempirai l'immagine corrente o la selezione con quel colore. GIMP の色々なものをドラッグ&ドロップすることができるよ.例えば道具箱や色パレットから色をドラッグして画像へドロップすると,その色で画像や選択領域が塗りつぶされるんだ. + 김프에서는 많은 것을 드래그하고 드롭할 수 있습니다. 예를 들면, 도구 상자나 색상표에서 색상을 드래그해서 이미지에 드롭하면 현재 이미지나 선택을 그 색상으로 채웁니다. GIMP'e yra daug veiksmų, kuriuos galite vykdyti „nuvilkdami pele ir paleisdami“. Pavyzdžiui, jei nuvilksite spalvą iš įrankinės arba spalvų paletės ir paleisite paveikslėlyje, šia spalva bus užpildytas aktyvus paveikslėlis arba pažymėjimas. Anda boleh menyeret dan melepaskan banyak benda dalam GIMP. Contohnya, menyeret warna dari kotak alatan atau dari pelet warna dan melepaskannya ke dalam imej akan mengisi imej atau pemilihan semasa dengan warna tersebut. Du kan dra og slippe mange ting i GIMP. For eksempel: Det å dra en farge fra verktøykassen eller fra en fargepalett, og slippe det i et bilde, vil fylle bildet eller utvalget med den valgte fargen. @@ -332,6 +342,7 @@ Az ecset, a festékszóró és a ceruza használatakor a Shift billentyű lenyomása mellett végzett kattintás egyenes vonalat hoz létre a legutóbbi ponttól az aktuális kurzorpozícióig. Ha lenyomja a Ctrl billentyűt is, akkor a vonal szöge 15 fokos lépésközönként állítható. Quando usi uno strumento di disegno (Pennello, Aerografo, o Matita), premendo Shift-click potrai disegnare una linea retta dall'ultimo punto di disegno a quello corrente. Se premi anche il tasto Ctrl, la linea sarà forzata a rotazioni di 15 gradi. 描画ツール (絵筆,エアブラシ,鉛筆) を使っているときに Shift を押しながらクリックするとカーソルのところまで直線が引かれるよ.さらに Ctrl を押してやれば,直線が15度単位になるんだ. + 그리기 도구(페인트브러시, 에어브러시, 연필)를 사용할 때, Shift-클릭하면 마지막으로 그린 곳에서 현재 커서 위치로 직선을 그립니다. Ctrl도 같이 누르면, 직선을 15도 단위로 제한합니다. Jei piešdami teptuku, purkštuvu ar pieštuku laikysite nuspaudę Shift klavišą, nubrėšite tiesią liniją. Jei tuo pačiu spausite Ctrl klavišą, liniją bus galima sukioti 15 laipsnių žingsniu. Apabila menggunakan alat lukisan (Beberus Cat, Penyembur, atau Pensel), dengan mengklik Shift-garis lurus akan dilukis dari titik lukisan terakhir anda ke kedudukan kursor semasa. Jika anda menekan juga Ctrl, garis tersebut akan mengekang kepada sudut 15 darjah. Ved bruk av et tegneverktøy (malepensel, spraymaling eller blyant), vil Shift-" @@ -367,6 +378,7 @@ A képben való mozgásra használható a középső egérgomb, amennyiben a kép nagyobb, mint az azt megjelenítő ablak. Se l'immagine è più larga della finestra che la contiene, puoi usare il tasto centrale del mouse per muoverti nell'immagine. 表示されている窓よりも画像の方が大きい場合には,マウスの中ボタンでずりずり表示領域を動かせるよ. + 이미지가 표시하는 창 보다 크면, 가운데 마우스 단추를사용해서 이미지의 주위를 밀고 당기면서 볼 수 있습니다. Nuspaudę vidurinį pelės klavišą galite stumdyti paveikslėlį, jei jis yra didesnis nei paveikslėlio langas. Anda boleh menggunakan butang tengah tetikus untuk menyorot di sekitar imej, jika ia lebih besar daripada tetingkap paparannya. Du kan bruke midterste musknapp for å bevege deg rundt i bildet, dersom det er større enn vinduet det vises i. @@ -398,6 +410,7 @@ Cliquez sur une règle et glissez la pour placer un guide sur l'image. Toutes les constructions de sélection vont accrocher aux guides. Vous pouvez enlever les guides en les glissant hors de l'image avec l'outil déplacer. Segédvonal felvételéhez kattintson az egyik vonalzóra - ezt követően húzással helyezheti az új segédvonalat a képre. A húzással áthelyezett kijelölések a segédvonalakra fognak illeszkedni. Egy segédvonal eltávolításához helyezze azt (húzással) a képen kívülre az Áthelyezés eszközzel. Clicca su un righello e trascina verso l'immagine per posizionare una guida. Tutte le selezioni trascinate si attaccheranno alle guide. Puoi rimuovere le guide trascinandole fuori dall'immagine con lo strumento sposta. + 이미지에 안내선을 표시하려면 눈금자를 클릭한 다음 드래그하십시오. 드래그를 사용하는 모든 선택은 안내선에 자동으로 맞춰집니다. 이동 도구로 안내선을 이미지 밖으로 드래그하면 없어집니다. Jei reikia pagalbinės linijos, paspauskite ant liniuotės kairiuoju pelės klavišu ir patempkite ant paveikslėlio. Perkeliami pažymėjimai kibs prie pagalbinių linijų. Pagalbines linijas pašalinsite, nutempdami jas už paveikslėlio ribų poslinkio įrankiu. Klikk og dra en linjal for å plassere en innrettingslinje i et bilde. Alle utvalg som blir dratt, vil tilpasses innrettingslinjene. Du kan fjerne innrettingslinjer ved å dra dem ut av bildet med flytteverktøyet. Klik en sleep een lineaal om een hulplijn op de afbeelding te plaatsen. Alle gesleepte selecties zullen uitlijnen met de hulplijnen.U kunt hulplijnen verwijderen door ze met het verplaatsingsgereedschap van de afbeelding af te slepen. @@ -423,6 +436,7 @@ Ha a Rétegek párbeszédablakból áthúz egy réteget az eszköztárra, akkor létrejön egy új kép, amely csak a szóban forgó réteget fogja tartalmazni. Trascinando e rilasciando un livello dalla finestra di dialogo Livelli alla finestra degli strumenti, verrà creata una nuova immagine contenente solo quel livello. レイヤーダイアログから道具箱へレイヤーをドラッグして持っていくこともできるんだ.するとそのレイヤーで新しい画像を作るんだ. + 레이어 대화상자에서 레이어를 드래그해서 도구 상자에 드롭하면, 그 레이어만 가진 새 이미지가 만들어 집니다. Galite nuvilkti pele sluoksnį iš Sluoksnių dialogo ir paleisti ant įrankinės. Taip sukursite naują paveikslėlį, kuriame bus tik šis sluoksnis. Anda boleh menyeret lapisan dari dialog Lapisan dan melepaskannya ke dalam kotak alatan. Ini akan mewujudkan imej baru yang hanya mengandungi lapisan tersebut. Du kan dra et lag fra Lagdialogen og slippe det i verktøykassen. Det vil opprette et nytt bilde som bare består av det ene laget. @@ -453,6 +467,7 @@ Une sélection flottante doit être ancrée comme un nouveau calque ou au dernier calque actif avant de procéder à de nouvelles opérations sur l'image. Cliquez sur les boutons « Nouveau calque » ou « Ancrer le calque » dans la boite de dialogue des calques, ou utilisez le menu pour faire de même. A lebegő kijelölést rögzíteni kell egy új rétegre vagy a legutóbbi aktív rétegre ahhoz, hogy további műveleteket végre lehessen hajtani a képen. Ez végrehajtható a Rétegek párbeszédablakban az "Új réteg" illetve a "Réteg rögzítése" gomb használatával vagy a menükkel. Le selezioni fluttuanti devono essere ancorate a un nuovo livello o all'ultimo livello attivo prima di compiere altre operazioni sull'immagine. Per questo scopo clicca su "Nuovo livello" o "Àncora livello" nella finestra di dialogo Livelli, oppure usa le voci del menu per eseguire le stesse azioni. + 떠있는 선택은 이미지에 다른 조작을 하기 전에 새 레이어나 마지막 활성 레이어에 고정해야 합니다. 레이어 대화상자의 "새 레이어"나 "떠있는 레이어 고정" 단추를 클릭하거나, 같은 기능을 하는 메뉴를 사용하십시오. Prieš veiksmų atlikimą plaukiojantis pažymėjimas turi būti pririštas prie naujo sluoksnio arba prie paskutinio aktyvaus sluoksnio. Tai įvykdysite Sluoksnių dialoge paspaudę mygtukus (arba meniu) "Naujas sluoksnis" arba "Pritvirtinti sluoksnį". Et flytende utvalg må bli forankret til et nytt lag eller til det forrige aktive laget før det kan gjøres andre operasjoner på bildet. Klikk på «Nytt Lag»- eller «Forankre Lag»-knappene i Lag-menyen, eller bruk menyene til å gjøre det samme. Een drijvende selectie moet verankerd worden met een nieuwe laag of de laatste actieve laag voordat u andere bewerkingen op de afbeelding uitvoert. Klik hiertoe op de knoppen "Nieuwe laag" of "Laag verankeren" in het dialoogvenster Lagen of gebruik de menu's. @@ -478,6 +493,7 @@ A GIMP-pel automatikus tömörítés is végezhető. A funkció a következő módon használható: hozzá kell fűzni egy .gz végződést (vagy .bz2 végződést, ha telepítve van a bzip2) a fájlnévhez - ennek hatására a kép tömörített formában lesz elmentve. A tömörített képek közvetlen betöltését is támogatja a program. GIMP supporta la compressione gzip al volo. Basta aggiungere .gz (o .bz2, se hai installato bzip2) al nome del file e la tua immagine sarà salvata compressa. Ovviamente funzionerà anche il caricamento di immagini compresse. GIMP は自動 gzip 圧縮をサポートしているよ.単に拡張子 .gz を (bzip2 がある時には .bz2 の方がいいかな) 付けるだけで,自動的に圧縮されるようになってるんだ.もちろん,読み込む時にも自動で展開されるよ. + 김프는 gzip 압축을 즉석에서 지원합니다. 단지 파일이름에 .gz(또는 bzip2가 설치되어 있다면 .bz2)를 더하기만하면 이미지를 압축해서 저장합니다. 물론 압축된 이미지를 불러오는 것도 문제 없죠. GIMP galite panaudoti gzip archyvavimą. Pridėkite .gz (arba .bz2, jei turite įdiegtą bzip2) prie bylos pavadinimo, ir išsaugosite suarchyvuotą paveikslėlį. Taip pat ir su atidaromais paveikslėliais. GIMP menyokong pemampatan gzip secara layang. Hanya tambahkan .gz (atau .bz2, jika bzip2 telah dipasang) pada nama fail dan imej anda akan disimpan secara mampat. Sudah tentu, memuatkan imej mampat juga boleh dilakukan. GIMP støtter gzip-kompresjon i farta. Bare legg til .gz (eller .bz2, hvis du har bzip2 installert) til filnavnet, og bildet du lagrer vil bli komprimert. Selvfølgelig støttes også åpning av komprimerte bilder. @@ -511,6 +527,7 @@ Ha kijelölés közben lenyomva tartja a Shift billentyűt, akkor az új kijelölés hozzáadódik a korábbihoz, nem pedig a helyébe lép. Ha ugyanezt a Ctrl billentyűvel teszi, akkor kivonás történik a korábbi kijelölésből. Tenendo premuto il tasto Shift prima di effettuare una selezione ti consentirà di aggiungere la selezione corrente invece di rimpiazzarla. Usando il tasto Ctrl la selezione verrà sottratta a quella presente. 領域を選択し始める時に Shift キーを押したままにしておくと,その時の選択領域を置き換えるんじゃなくって,付け加える事が出来るんだ.Ctrlを押しながら始めれば領域をさっ引く事になるしね. + Shift키를 누른 채로 선택을 만들면 현재 선택을 바꾸는 대신 더합니다. Ctrl를 누른 채로 선택을 만들면 현재 선택에서 뺍니다. Jei pradėdami pažymėjimo veiksmą laikysite nuspaudę Shift klavišą, papildysite pažymėtą plotą, o ne atliksite naują pažymėjimą. Naudodami Ctlr klavišu atimsite žymimą plotą iš jau pažymėto. Dengan menekan seketika kekunci Shift sebelum membuat pemilihan membolehkan anda menambahkan pemilihan semasa bukannya menggantikannya. Dengan menggunakan Ctrl sebelum membuat pemilihan tolak daripada yang ada sekarang. Trykk og hold Shift-knappen før du lager et utvalg, så får du legge til utvalget i stedet for å erstatte det. Bruk av Ctrl før du lager et utvalg lar det trekke fra det gjeldende utvalget. @@ -542,6 +559,7 @@ Vous pouvez presser et maintenir les touches Maj et Ctrl tandis que vous faites une sélection de façon à la contraindre à un cercle ou un carré parfait, ou pour l'avoir centrée sur son point de départ. Négyzet vagy kör alakú terület kijelöléséhez tartsa nyomva a Shift billentyűt a kijelölés elvégzésekor. Ahhoz, hogy a kijelölési alakzat középpontja a kiindulási pont legyen, a Ctrl billentyűt tartsa nyomva. Premendo o rilasciando i tasti Maiusc e Ctrl mentre stai facendo una selezione puoi forzarla ad un quandrato o un cerchio, o ad averla centrata nel punto di partenza. + 선택하는 동안 Shift를 누르면, 정사각형이나 정원으로 제한할 수 있습니다. Ctrl을 누르면 시작점을 가운데로 만들 수 있죠. Jei norite pažymėti tikslų kvadratą arba apskritimą ir žymėti juos nuo centrinio taško, žymėdami spauskite Ctrl ir Shift. Du kan trykke eller slippe Shift- and Ctrl-knappene mens du gjør et utvalg for å begrense det til et kvadrat eller sirkel, eller for å ha det sentrert på startpunktet. U kunt de toetsen Shift en Ctrl indrukken of loslaten terwijl u een selectie maakt om de selectie te beperken tot een volmaakt vierkant of een volmaakte cirkel, respectievelijk het startpunt van de selectie het middelpunt laten zijn. @@ -565,6 +583,7 @@ Vous pouvez ajuster ou replacer une sélection en utilisant Alt glissé. Si cette action provoque un déplacement de la fenêtre c'est que votre gestionnaire utilise déjà la touche Alt. Essayer alors d'appuyer sur Maj en même temps. Kijelölés átalakítása és áthelyezése az Alt billentyű nyomva tartásával végzett húzással lehetséges. Ha ez a kombináció az ablakot mozdítja el, akkor az ablakkezelő már használja ezt a kombinációt; ebben az esetben nyomja le a Shift billentyűt is a kijelölés kezeléséhez. Puoi muovere una selezione premendo Alt mentre trascini la selezione. Se si dovesse muovere la finestra, vuol dire che il tuo window manager usa già il tasto Alt. Prova a premere allo stesso tempo anche il tasto Maiusc o Ctrl. + Alt-드래그를 사용해서 선택을 조절하거나 이동할 수 있습니다. 이렇게 했더니 창이 움직인다면, 사용 중인 창 관리자가 Alt를 사용하고 있는 겁니다. 그럴 땐 Shift키도 같이 눌러 주세요. Galite pakoreguoti pažymėjimą, spausdami Alt ir kairįjį pelės klavišą. Jei tai priverčia judėti langą, reiškia, kad Alt klavišas jau naudojamas. Pabandykite paspausti ir Shift tuo pačiu metu, kai spaudžiate Alt. Du kan justere og endre posisjon for et utvalg ved å bruke Alt-dra. Hvis dette gjør at vinduet flyttes, bruker vindushåndtereren din Alt-knappen allerede. Prøv da å holde Shift nede samtidig for å unngå dette. U kunt een selectie aanpassen en vervangen met Alt-slepen. Als in plaats hiervan uw venster beweegt, is de Alt-toets al door uw venstermanager gereserveerd. Probeer dan tegelijkertijd Shift in te drukken. @@ -589,6 +608,7 @@ Egyszerű négyzeteket és köröket rajzolhat a "Szerkesztés->Kijelölés körberajzolása" menüponttal. Ez a funkció megrajzolja az aktuális kijelölés határvonalait. A bonyolultabb alakzatok elkészíthetők az útvonaleszközzel vagy a Szűrők->Megjelenítés->GFig menüponttal. Usando Modifica->Disegna selezione potrai disegnare semplici quadrati o cerchi tracciando la selezione corrente con il pennello attivo. Forme più complesse possono essere disegnate con Filtri->Render->Gfig. 編集 -> ストローク描画 を使って現在有効なブラシで選択領域の縁に沿って描くことができるんだ.正方形や正円を書きたい時には便利だね.もっと複雑な図形を描きたい時にはパスツールや フィルタ -> 描写 -> Gfig だね. + 편집->선택 따라그리기를 사용하면 단순한 사격형이나 원을 그릴 수 있습니다. 현재 선택의 모서리를 따라 그립니다. 더 복잡한 도형은 경로 도구나 필터->렌더->Gfig를 사용해서 그릴 수 있습니다. Naudodami Keisti->Apvesti galite nupiešti paprastus kvadratus ir apskritimus. Šiuo veiksmu apvesite pažymėtą plotą aktyviu teptuku. Sudėtingesnes kreives nupiešite naudodami Kontūrų įrankį arba Filtrai->Perteikimas->Gfig. Du kan tegne enkle firkanter eller sirkler med Edit->Strøkutvalg. Det vil tegne kantene på utvalget ditt. Mer komplekse former kan også bli tegnet ved å bruke Baneverktøyet eller med Filter->Render->Gfig. Eenvoudige vierkanten en cirkels tekent u door met de selectiegereedschappen een vorm te tekenen en vervolgens het menu-item Bewerken/Selectie overtrekken te kiezen. Complexe vormen kunt u ook tekenen met behulp van het padgereedschap of de Gfig-plug-in (Filters/Renderen/Gfig). @@ -620,6 +640,7 @@ Egy útvonal körberajzoltatásakor ("Szerkesztés->Útvonal körberajzolása" menüpont) a festőeszközök az aktuális beállításaik szerint használhatók. Használhatja az Ecset eszközt például színátmenet-módban, vagy akár a Radír vagy a Maszatolás eszközt is. Se si delinea un tracciato (Modifica->Disegna tracciato), vengono usate le impostazioni dello strumento di disegno corrente. Si può usare il Pennello nella modalità gradiente oppure la Gomma o lo strumento Sfumino. パスをストローク描画 (編集->ストローク描画) するときは現在の描画ツールの設定を使うんだ.グラデーションモードの絵筆やパターンを使ったスタンプツールや消しゴムやにじみツールだって使うことができるんだ. + 경로를 따라그릴 때(편집->경로 따라 그리기), 그리기 도구들을 현재을 설정으로 사용할 수 있습니다. 그라디언트 모드 페인트브러시는 물론이고 심지어 지우개나 문지르기 도구도 사용할 수 있습니다. Jei Jūs apvesite kontūrą (Keisti->Apvesti), bus naudojamas aktyvus įrankis ir jo nustatymai. Galite naudoti teptuką su perėjimu, klonavimo įrankį su raštu arba net trintuką, tepimo įrankį. Hvis du streker opp en bane (Rediger->Strek opp bane), kan tegneverktøyene bli brukt med de gjeldende innstillingene. Du kan bruke luftpensel i graderingsmodus eller til og med sletteverktøyet eller andre utsmøringsverktøyet. Als u een lijn tekent op een pad met Bewerken/Pad overtrekken, kunt u de schildergereedschappen met hun huidige waarden gebruiken. U kunt het penseel in verloopstand gebruiken, maar bijvoorbeeld ook de gum of het smeergereedschap. @@ -650,6 +671,7 @@ Bonyolultabb kijelöléseket hozhat létre és szerkeszthet az útvonaleszközzel. Az Útvonalak párbeszédablakban lehetőség van több útvonal kezelésére illetve azok kijelöléssé való alakítására. Puoi creare e modificare selezioni complesse usando lo strumento Tracciati. La finestra di dialogo Tracciati ti permette di lavorare con molteplici tracciati e di convertirli in selezioni. ベジエツールを使って複雑な選択領域を作れるよ.パスダイアログでは複数のパスで作業したり選択領域に変換したりできるんだ. + 경로 도구를 이용해서 복잡한 선택을 만들고 고칠 수 있습니다. 경로 대화상자에서 여러 개의 경로를 조작하여, 선택으로 변환할 수 있습니다. Galite sukurti ir keisti sudėtingus pažymėjimus, naudodami Kontūrų įrankį. Kontūrų dialogas suteikia galimybę dirbti su daugeriopais kontūrais ir paversti juos pažymėjimais. Du kan opprette og redigerer komplekse utvalg ved å bruke Baneverktøyet. Banedialogen lar deg arbeide på flere baner samtidig og konvertere dem til utvalg. U kunt complexe selecties maken en bewerken met gebruik van het padgereedschap. Het dialoogvenster Paden laat u met meerdere paden werken en deze naar selecties omzetten. @@ -679,6 +701,7 @@ Vous pouvez utiliser les outils de dessin pour changer la sélection. Cliquer sur le bouton « Masquage rapide » dans le coin bas gauche de la fenêtre d'image. Changez votre sélection en dessinant dans l'image et cliquez à nouveau sur le bouton pour la reconvertir comme une sélection normale. A kijelölés módosítható a festőeszközökkel. Kattintson a képablak bal alsó sarkában levő "Gyorsmaszk be-ki" gombra, majd módosítsa a kijelölést a képre való rajzolással, ez után kattintson ismét a gombra - ezzel a rajz vissza lesz alakítva normál kijelöléssé. Gli strumenti di disegno possono servire per cambiare le selezioni: fare clic sul bottone "Maschera veloce" in basso a sinistra della finestra dell'immagine, cambiare la selezione disegnando nell'immagine e fare clic nuovamente sul bottone per convertirla ad una selezione normale. + 선택을 고치기 위해서 그리기 도구를 사용할 수 있습니다. 이미지 창의 좌하단에 있는 "퀵마스크" 단추를 클릭하십시오. 이미지에 그리기만 하면 선택이 되고 단추를 한번 더 클릭하면 보통의 선택으로 바뀝니다. Galite naudoti piešimo įrankius pažymėjimui pakeisti. Spragtelėkite ant Greitos Kaukės mygtuko kairiajame apatiniame paveikslėlio kampe. Piešdami pakeiskite pažymėjimą ir paspauskite tą patį mygtuką, kad grįžtumėte į normalų režimą. Du kan bruke tegneverktøyene til å endre utvalget. Klikk på «Hurtigmaske»-knappen nederst til venstre i et bildevindu. Gjør endringer på utvalget ved å tegne i bildet, og klikk på knappen en gang til for å gjøre det om til et normalt utvalg igjen. U kunt de schildergereedschappen gebruiken om de selectie te veranderen. Klik op de knop "Snelmasker" linksonder in het weergavevenster. Verander uw selectie door in de afbeelding te schilderen en klik opnieuw op de knop om terug te schakelen naar een normale selectie. @@ -703,6 +726,7 @@ Elmenthet egy kijelölést csatornába (Kijelölés->Mentés csatornába), majd módosíthatja a csatornát bármely festőeszközzel. A Csatornák párbeszédablak gombjainak segítségével átkapcsolhatja az új csatorna láthatóságát, vagy kijelöléssé alakíthatja a csatornát. Puoi salvare una selezione in un canale (Seleziona>Salva in Canale) e poi modificare il canale con gli strumenti di disegno. Con i bottoni presenti nella finestra di dialogo Canali, puoi rendere visibile il nuovo canale o convertirlo in selezione. 選択領域をチャンネルに保存して (選択->チャンネルに保存),描画ツールでこのチャンネルを修正することができるよ.チャンネルダイアログのボタンを使って,このチャンネルを表示したり選択領域に変換したりできるよ. + 선택을 채널에 저장하고(선택->채널로 저장), 이 채널을 원하는 그리기 도구로 고칠 수 있습니다. 채널 대화상자의 단추들을 이용해서 채널을 표시하거나 숨길 수 있고, 선택으로 변환할 수도 있습니다. Galite išsaugoti pažymėjimą į kanalą (Pažymėti->Išsaugoti į kanalą) ir keisti kanalą bet kuriuo piešimo įrankiu. Mygtukais Kanalų dialoge galite įjungti/išjungti naują kanalą arba paversti jį pažymėjimu. Anda boleh menyimpan pemilihan ke saluran (Pilih->Simpan ke Saluran) dan kemudian mengubah suai saluran ini dengan mana-mana alat cat. Dengan menggunakan butang dalam dialog Saluran, anda boleh togol kejelasan saluran baru ini atau menukarkannya kepada pemilihan. Du kan lagre et utvalg til en kanal (Velg->Lagre til kanal) og så endre kanalen med tegneverktøy. Ved å bruke knappene i Kanaldialogen, kan du slå av og på synligheten til denne nye kanalen eller konvertere den til et utvalg. @@ -739,6 +763,7 @@ Après avoir activé les « Raccourcis claviers dynamiques » dans le dialogue des préférences, vous pouvez réassigner les raccourcis clavier. Faites cela en affichant le menu, sélectionnez un élément du menu, et pressez sur la combinaison de touche désirée. Si « Enregistrer à la sortie les raccourcis clavier» est activé, Ils sont enregistrés lorsque vous quittez GIMP. Ha be van kapcsolva a "Dinamikus gyorsbillentyűk használata" beállítás (Beállítások párbeszédablak), akkor a gyorsbillentyűk hozzárendelése módosítható. A módosítás a következőképpen végezhető: menü megnyitása, menübejegyzés kijelölése, majd a kívánt billentyűkombináció lenyomása. Ha a "Gyorsbillentyűk mentése kilépéskor" beállítás be van kapcsolva, akkor a GIMP-ből való kilépéskor a billentyűkombinációk elmentésre kerülnek. Dopo aver attivato "Tasti scorciatoia dinamici" nelle Preferenze, puoi riassegnare le scorciatoie da tastiera. Basta aprire il menu, selezionare una voce, e premere la combinazione desiderata. Se l'opzione "Salva i tasti scorciatoia all'uscita" è abilitata, la combinazione sarà salvata quando si esce da GIMP. + 기본 설정 대화상자에서 "동적인 키보드 단축키"를 선택한 다음, 단축키를 재할당 할 수 있습니다. 단축키를 설정하려면 해당 메뉴를 열고, 메뉴 항목을 선택하고, 원하는 키 조합을 누르면 됩니다. "마칠 때 키보드 단축키 저장"을 선택했다면, 김프를 마칠 때 단축키 설정이 저장됩니다. Jei esate įjungę "Dinaminės klavišų kombinacijos" bet kokiam meniu punktui galite sukurti klavišų kombinaciją, kuria galėsite šį meniu punktą išsikviesti. Pasirinkite meniu punktą ir paspauskite pasirinktus klavišus. Klavišų kombinacija bus išsaugota uždarius GIMP, jei bus įjungta „Išsaugoti klavišų kombinacijas“. Etter at du aktiverte «Dynamiske tastesnarveier» i Alternativer-menyen, kan du opprette hurtigtaster. Dette gjør du ved å få fram menyen, velge en ting fra menyen, og trykke den ønskede tastekombinasjonen. Hvis «Lagre tastesnarveier» er aktivert, blir de nye innstillingene lagret når du avslutter GIMP. Als u in de Voorkeuren "Dynamische sneltoetsen gebruiken" activeert, dan kunt u sneltoetsen wijzigen. Hiertoe selecteert u een menu-item en drukt vervolgens de gewenste toetsencombinatie in. Als "Sla sneltoetsen op bij verlaten" is ingeschakeld, worden uw nieuwe sneltoetsen bij het verlaten van de GIMP opgeslagen. @@ -765,6 +790,7 @@ Ha zsúfolt a képernyő, akkor nyomja le többször egymás után a Tab billentyűt egy képablakban - ezzel a módszerrel váltogatni lehet az eszköztár és egyéb párbeszédablakok elrejtése és megjelenítése között. Se lo schermo è troppo affollato, premi il tasto Tab più volte nella finestra dell'immagine per nascondere o mostrare la barra degli strumenti o le altre finestre di dialogo. 画面がきゅうくつな時は,画像ウィンドウで何回か Tab キーを押すことで道具箱やダイアログを出し入れすることができるんだ. + 화면이 너무 어지럽다면, 이미지 창에서 Tab을 여러 번 눌러서, 도구 상자나 다른 대화상자들을 표시하거나 숨길 수 있습니다. Jei Jūsų ekranas per daug apkrautas, galite keletą kartų paspausti Tab paveikslėlio lange, kad paslėptumėte įrankinę ir kitus dialogų langus. Jika skrin anda terlalu berselerak, anda boleh menekan Tab beberapa kali dalam tetingkap imej untuk menyembunyikan atau menunjukkan dialog kotak alatan dan dialog lain. Hvis skjermen din er veldig rotete, kan du trykke Tab flere ganger i et bildevindu for å kjule eller vise verktøykassen og andre dialoger. @@ -798,6 +824,7 @@ Varázspálca-kijelölés esetén beállíthatja a kijelölési tartományt a következőképpen: kattintás után végezzen húzást balra vagy jobbra. Puoi modificare l'intervallo di selezione per la selezione fuzzy cliccando e trascinando a sinistra o a destra. ファジー選択ツールではクリックした後に,左右にドラッグする事で選択領域を広げたり狭めたりできるんだ. + 퍼지 선택에서, 클릭하고 왼쪽이나 오른쪽으로 드래그하면 선택 범위를 조절할 수 있습니다. Jūs galite pakeisti artimos spalvos žymejimo įrankio pažymėtas ribas spusteldami kairyjį pelės klavišą ir jo neatleidę patemdami kairėn arba dešinėn. Anda boleh menyelaraskan jenis pemilihan untuk pilih kabur dengan mengklik dan menyeret ke kiri dan kanan. Du kan justere utvalgsintervallet for uklart utvalg ved å klikke og dra til høyre og venstre. @@ -831,6 +858,7 @@ Egy kivételével az összes réteg elrejtése: a Shift billentyűt nyomva tartva kattintson a szemet ábrázoló ikonra a megfelelő réteg bejegyzésénél a Rétegek párbeszédablakban. Az összes réteg megjelenítéséhez ismételje meg a Shift+kattintás műveletet. Shift-click sull'icona a forma d'occhio nella finestra di dialogo Livelli nasconderà tutti i livelli eccetto quello cui è associato l'occhio. Premendo di nuovo Shift-click, riappariranno. レイヤーダイアログで「目」のアイコンを Shift を押しながらクリックすることで、それ以外のレイヤー全部を隠すことができるんだ.もう一回同じ事をすれば全部のレイヤーが表示されるようになるよ. + 레이어 대화상자에서 눈동자 아이콘을 Shift-클릭하면, 현재 레이어를 제외한 모든 레이어를 숨깁니다. 다시 Shift-클릭하면 모든 레이어를 표시합니다. Spragtelėkite pele ant akies ženklo Sluoksnių dialoge laikydami Shift klavišą, kad paslėptumėte visus sluoksnius išskyrus pažymėtąjį. Pakartokite tai dar kartą jei norite, kad visi sluoksniai vėl būtų matomi. Shift-klik pada ikon mata dalam dialog Lapisan untuk menyembunyikan semua lapisan melainkan yang itu. Shift-klik sekali lagi untuk menunjukkan semua lapisan. Shift-klikk på øyeikonet i Lagdialogen for å gjemme alle lag untatt det du klikker på. Shift-klikk igjen for å se alle lag. @@ -864,6 +892,7 @@ A Rétegek párbeszédablakban a rétegmaszk hatásának átkapcsolásához kattintson a rétegmaszk előnézetére a Ctrl billentyűt nyomva tartva. Ctrl-click sull'anteprima della maschera di livello nella finestra di dialogo Livelli consente di nascondere l'effetto della maschera di livello. レイヤーダイアログのレイヤーマスクの縮小表示を Ctrl を押しながらクリックするとレイヤーマスクの有効無効を切替えられるんだ. + 레이어 대화상자에서 레이어 마스크의 미리보기를 Ctrl-클릭하면, 레이어 마스크의 효과를 전환합니다. Spragtelėkite pele laikydami Ctrl klavišą ant sluoksnio kaukės peržiūros Sluoksnių dialoge, kad peržiūrėtumėte kaukę tiesiogiai. Ctrl-klik pralihat topeng lapisan dalam dialog Lapisan toggle kesan daripada topeng lapisan. Ctrl-klikk på lagmaskens forhåndsvisning i dialogen Lag bytter effekten for lagmasken. @@ -897,6 +926,7 @@ A Rétegek párbeszédablakban a maszk közvetlen megjelenítésének átkapcsolásához kattintson a rétegmaszk előnézetére az Alt billentyűt nyomva tartva. Alt-click sull'anteprima della maschera di livello nella finestra di dialogo Livelli consente di visualizzare solo la maschera. レイヤーダイアログのレイヤーマスクの縮小表示を Alt を押しながらクリックするとレイヤーマスクを直接見るモードに切替えられるんだ. + 레이어 대화상자에서 레이어 마스크의 미리보기를 Alt-클릭하면 마스크 표시 여부를 전환합니다. Nuspaudę Alt spragtelėkite pele ant sluoksnio kaukės peržiūros Sluoksnių dialoge, kad peržiūrėtumėte kaukę tiesiogiai. Alt-klik pralihat topeng lapisan dalam dialog Lapisan toggle semasa melihat topeng secara terus. Alt-klikk på lagmaskens forhåndsvisning i dialogen Lag bytter visningen til masken direkte. @@ -930,6 +960,7 @@ A kép rétegei közt való váltogatáshoz használható az Alt+Tab billentyűkombináció, amennyiben az ablakkezelő nem használja a kombinációt más célra. Puoi usare Alt-Tab per spostarti trai livelli dell'immagine (a meno che questi tasti non vengano usati dal window manager ...). Alt を押しながら Tab を押すとレイヤーを順に切替えられるんだ.(ウィンドウマネージャがこのキー割当を横取りしてなければね‥‥) + Alt-Tab를 누르면 이미지의 모든 레이어를 돌아가면서 선택합니다(창관리자가 이 키를 가로채지 않는다면 말이죠...). Spausdami Alt-Tab pereisite visus paveikslėlio sluoksnius (jei šie klavišai nenaudojami kitur). Anda boleh menggunakan Alt-Tab untuk mengitar di seluruh lapisan dalam imej (jika pengurus tetingkap anda tidak menyekat kekunci tersebut...). Du kan bruke Alt-Tab for å bytte mellom lagene i et bilde (hvis ikke vindushåndtereren allerede bruker denne tastekombinasjonen). @@ -963,6 +994,7 @@ A Kitöltés eszköz használata az előtérszín helyett a háttérszínnel: kattintás közben tartsa nyomva a Ctrl billentyűt. Premendo Ctrl-click con lo strumento Riempimento Colore attivo, sarà utilizzato il colore di sfondo invece di quello in primo piano. 塗りつぶしツールでは Ctrl を押しながらクリックすると,背景色で塗りつぶすことができるよ. + 영역 채우기 도구에서 Ctrl-클릭하면, 전경색대신 배경색을 사용합니다. Jei naudodami Užpildymo įrankį, nuspauskite Ctrl klavišą, tai užpildysite ne priekinio plano, o fono spalva. Ctrl-klik alat Isian Baldi supaya warna latar belakang digunakan bukannya warna latar depan. Ctrl-klikk med malingspannverktøyet for å få det til å bruke bakgrunnsfargen i stedet for forgrunnsfargen. @@ -995,6 +1027,7 @@ Az elforgatási szög korlátozása 15 fokos lépcsőkben a Forgatás eszköz használatakor: húzás közben tartsa nyomva a Ctrl billentyűt. Premendo Ctrl e trascinando con lo strumento Rotazione, quest'ultima sarà forzata ad angoli di 15 gradi. 変換ツールの回転モードでは Ctrl を押しながらドラッグすると,回転が15度単位になるんだ. + 회전 도구에서 Ctrl-드래그하면, 회전 각을 15도 단위로 제한합니다. Transformavimo įrankiu pasuksite tiksliai kas 15 laipsnių kampu, jei spausite Ctrl. Ctrl-dra med Rotasjonsverktøyet begrenser rotasjonen til 15-graders vinkler. Ctrl-sleep met het draaigereedschap om de draaiingshoek te beperken tot veelvouden van 15 graden. @@ -1025,6 +1058,7 @@ Pour créer un cercle parfait maintenez la touche Maj tandis que vous faites une sélection elliptique. Pour placer un cercle précisement, mettez en place des guides verticaux et horizontaux tangents au cercle que vous voulez faire, placez votre curseur à l'intersection des guides et la sélection résultante coïncidera avec les guides. Kör alakú terület kijelöléséhez tartsa nyomva a Shift billentyűt, miközben ellipsziskijelölést végez. Kör alakú kijelölés pontos elvégzéséhez vegyen fel a kijelölendő kört érintő vízszintes és függőleges segédvonalakat, majd kijelölés közben vigye a kurzort a segédvonalak metszéspontjához, így a keletkező kijelölés érinteni fogja a segédvonalakat. Per creare un cerchio perfetto, premi il tasto Maiusc mentre stai facendo una selezione ellittica. Per posizionare un cerchio in maniera precisa, trascina le guide verticali e orizzontali in posizione tangente al cerchio che vuoi selezionare, posiziona il cursore nell'intersezione delle guide: la selezione risultante toccherà le guide. + 원형 선택을 만들려면, 타원형 선택을 하는 동안 Shift를 누르세요. 원을 정확한 위치에 만들려면, 선택하려는 원의 접선으로 가로 세로 안내선을 만들고, 커서를 안내선의 교차점에 두면, 안내선에 맞춰서 선택할 수 있습니다. Jei norite idealų apskritimą, nubrėžkite vertikalią ir horizontalią pagalbines linijas, kurios bus apskirtimo liestinės. Nuveskite kursorių į pagalbinių linijų susikitimo tašką ir nuspaudę Shift klavišą temkite kursorių pele, kol gausite norimą apskritimą. For å lage en perfekt sirkel, hold Shift inne mens du gjør et ellipseutvalg. For å plassere sirkelen presist, dra horisontale og vertikale innrettingslinjer så de tangerer sirkelen du vil velge, plasser markøren i krysset mellom innrettingslinjene, og det resulterende utvalget vil akkurat treffe innrettingslinjene. Om een perfecte cirkel te maken, houdt u Shift ingedrukt terwijl u een elliptische selectie maakt. Om een cirkel nauwkeurig te plaatsen, sleept u horizontale en verticale hulplijnen die raken aan de cirkel die u wilt selecteren. Vervolgens plaatst u de cursor op het snijpunt van de hulplijnen. De resulterende selectie zal precies de hulplijnen raken. @@ -1047,6 +1081,7 @@ Si quelques unes de vos photos scannées ne semblent pas assez colorées, vous pouvez facilement améliorer leur coloration avec le bouton « Auto » dans les outils de niveaux (Calque->Couleurs->Niveaux). S'il y une couleur dominante quelconque vous pouvez la corriger avec l'outil courbes (Calques->Couleurs->Courbes). Ha bizonyos szkennelt fényképek nem eléggé színesek, akkor a színtartományuk bővíthető a Szintek eszköz ("Réteg->Színek->Szintek" menüpont) "Automatikus" gombjával. Ha a színek aránya nem megfelelő, akkor a Görbék eszközzel ("Réteg->Színek->Görbék" menüpont) végezhető el a javítás. Se le tue foto appena digitalizzate appaiono un po' sbiadite, puoi facilmente migliorare l'intervallo tonale con il bottone "Auto" nello strumento Livelli (Livelli->Colori->Livelli). Se sono presenti delle dominanti di colore puoi correggerle con lo strumento Curve (Livelli->Colori->Curve). + 스캔된 사진이 칙칙해 보일 때, 레벨 도구(레이어->색상->레벨)에서 "자동" 단추를 사용하면 손쉽게 색조의 폭을 향상 시킬 수 있습니다. 색상이 무언가 불안하다면, 곡선 도구(레이어->색상->곡선)를 사용해서 수정할 수 있습니다. Jei Jūsų nuskenuoti paveikslėliai nepakankamai spalvingi, galite lengvai pakeisti jų spalvinį intervalą nuspaudę „Auto“ mygtuką Sluoksnių įrankyje. (Paveikslėlis->Spalvos->Sluoksniai).Atspalvius galite koreguoti Kreivėmis (Paveikslėlis->Spalvos->Kreivės). Hvis noen av dine skannede fotografier ikke har nok farge, kan du enkelt forbedre fargespekteret med «Auto»-knappen i Nivåverktøytet (Lag->Farger->Nivåer). Hvis det er noen ujevnheter kan du rette dem med kurveverktøytet (Lag->Farger->Kurver). Als sommige van uw gescande foto's niet fleurig genoeg uitzien, kunt u hun kleurtoonbereik gemakkelijk verbeteren met de knop "Automatisch" in het gereedschap Niveaus (Laag->Kleuren->Niveau's). Als er kleurzwemen in de foto zitten, kunt u deze verwijderen met het gereedschap Curves (Laag->Kleuren->Curves). diff -uraN gimp-2.2.6/tips/ko.po gimp-2.2.7/tips/ko.po --- gimp-2.2.6/tips/ko.po 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.7/tips/ko.po 2005-05-08 23:34:08.000000000 +0200 @@ -0,0 +1,342 @@ +# tips/ko.po +# Dongsu Jang , 2005 +msgid "" +msgstr "" +"Project-Id-Version: gimp tips\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-12-18 00:46+0100\n" +"PO-Revision-Date: 2004-11-21 23:00+0100\n" +"Last-Translator: Dongsu Jang \n" +"Language-Team: Korean \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: tips/gimp-tips.xml.in.h:1 +msgid "Welcome to the GIMP!" +msgstr "김프에 오신것을 환영합니다!" + +#: tips/gimp-tips.xml.in.h:2 +msgid "" +"Alt-click on the layer mask's preview in the Layers dialog toggles " +"viewing the mask directly." +msgstr "" +"레이어 대화상자에서 레이어 마스크의 미리보기를 Alt-클릭하면 마스크 " +"표시 여부를 전환합니다." + +#: tips/gimp-tips.xml.in.h:3 +msgid "" +"Ctrl-click on the layer mask's preview in the Layers dialog toggles " +"the effect of the layer mask." +msgstr "" +"레이어 대화상자에서 레이어 마스크의 미리보기를 Ctrl-클릭하면, 레이" +"어 마스크의 효과를 전환합니다." + +#: tips/gimp-tips.xml.in.h:4 +msgid "" +"Ctrl-click with the Bucket Fill tool to have it use the background " +"color instead of the foreground color." +msgstr "" +"영역 채우기 도구에서 Ctrl-클릭하면, 전경색대신 배경색을 사용합니다." + +#: tips/gimp-tips.xml.in.h:5 +msgid "" +"Ctrl-drag with the Rotate tool will constrain the rotation to 15 " +"degree angles." +msgstr "" +"회전 도구에서 Ctrl-드래그하면, 회전 각을 15도 단위로 제한합니다." + +#: tips/gimp-tips.xml.in.h:6 +msgid "" +"Shift-click on the eye icon in the Layers dialog to hide all layers " +"but that one. Shift-click again to show all layers." +msgstr "" +"레이어 대화상자에서 눈동자 아이콘을 Shift-클릭하면, 현재 레이어를 제" +"외한 모든 레이어를 숨깁니다. 다시 Shift-클릭하면 모든 레이어를 표시" +"합니다." + +#: tips/gimp-tips.xml.in.h:7 +msgid "" +"A floating selection must be anchored to a new layer or to the last active " +"layer before doing other operations on the image. Click on the "New " +"Layer" or the "Anchor Layer" button in the Layers dialog, or " +"use the menus to do the same." +msgstr "" +"떠있는 선택은 이미지에 다른 조작을 하기 전에 새 레이어나 마지막 활성 레이어" +"에 고정해야 합니다. 레이어 대화상자의 "새 레이어"나 "떠있는 레" +"이어 고정" 단추를 클릭하거나, 같은 기능을 하는 메뉴를 사용하십시오." + +#: tips/gimp-tips.xml.in.h:8 +msgid "" +"After you enabled "Dynamic Keyboard Shortcuts" in the Preferences " +"dialog, you can reassign shortcut keys. Do so by bringing up the menu, " +"selecting a menu item, and pressing the desired key combination. If "" +"Save Keyboard Shortcuts" is enabled, the key bindings are saved when " +"you exit GIMP." +msgstr "" +"기본 설정 대화상자에서 "동적인 키보드 단축키"를 선택한 다음, 단축키" +"를 재할당 할 수 있습니다. 단축키를 설정하려면 해당 메뉴를 열고, 메뉴 항목을 " +"선택하고, 원하는 키 조합을 누르면 됩니다. "마칠 때 키보드 단축키 저장" +""을 선택했다면, 김프를 마칠 때 단축키 설정이 저장됩니다." + +#: tips/gimp-tips.xml.in.h:9 +msgid "" +"Click and drag on a ruler to place a guide on an image. All dragged " +"selections will snap to the guides. You can remove guides by dragging them " +"off the image with the Move tool." +msgstr "" +"이미지에 안내선을 표시하려면 눈금자를 클릭한 다음 드래그하십시오. 드래그를 사" +"용하는 모든 선택은 안내선에 자동으로 맞춰집니다. 이동 도구로 안내선을 이미지 " +"밖으로 드래그하면 없어집니다." + +#: tips/gimp-tips.xml.in.h:10 +msgid "" +"If some of your scanned photos do not look colorful enough, you can easily " +"improve their tonal range with the "Auto" button in the Levels " +"tool (Layer->Colors->Levels). If there are any color casts, you can " +"correct them with the Curves tool (Layer->Colors->Curves)." +msgstr "" +"스캔된 사진이 칙칙해 보일 때, 레벨 도구(레이어->색상->레벨)에서 "" +"자동" 단추를 사용하면 손쉽게 색조의 폭을 향상 시킬 수 있습니다. 색상이 " +"무언가 불안하다면, 곡선 도구(레이어->색상->곡선)를 사용해서 수정할 수 " +"있습니다." + +#: tips/gimp-tips.xml.in.h:11 +msgid "" +"If you stroke a path (Edit->Stroke Path), the paint tools can be used " +"with their current settings. You can use the Paintbrush in gradient mode or " +"even the Eraser or the Smudge tool." +msgstr "" +"경로를 따라그릴 때(편집->경로 따라 그리기), 그리기 도구들을 현재을 설정으" +"로 사용할 수 있습니다. 그라디언트 모드 페인트브러시는 물론이고 심지어 지우개" +"나 문지르기 도구도 사용할 수 있습니다." + +#: tips/gimp-tips.xml.in.h:12 +msgid "" +"If your screen is too cluttered, you can press Tab multiple times " +"in an image window to hide or show the toolbox and other dialogs." +msgstr "" +"화면이 너무 어지럽다면, 이미지 창에서 Tab을 여러 번 눌러서, 도구 상" +"자나 다른 대화상자들을 표시하거나 숨길 수 있습니다." + +#: tips/gimp-tips.xml.in.h:13 +msgid "" +"Most plug-ins work on the current layer of the current image. In some cases, " +"you will have to merge all layers (Image->Flatten Image) if you want the " +"plug-in to work on the whole image." +msgstr "" +"대부분의 플러그인들은 현재 이미지의 현재 레이어에만 조작합니다. 경우에 따라, " +"플러그인이 전체 이미지를 조작하도록 하려면 모든 레이어를 합쳐야(이미지->배" +"경으로 이미지 합치기) 될 수도 있습니다." + +#: tips/gimp-tips.xml.in.h:14 +msgid "" +"Not all effects can be applied to all kinds of images. This is indicated by " +"a grayed-out menu-entry. You may need to change the image mode to RGB (Image-" +">Mode->RGB), add an alpha-channel (Layer->Transparency->Add " +"Alpha Channel) or flatten it (Image->Flatten Image)." +msgstr "" +"모든 효과가 모든 종류의 이미지에 적용되지는 않습니다. 이런 경우에는 메뉴 항목" +"이 회색으로 표시됩니다. 이미지의 모드를 RGB로 바꾸거나(이미지->모드->" +"RGB), 알파 채널을 더하거나(레이어->투명도->알파 채널 더하기), 배경으로 " +"합쳐야(이미지->배경으로 합치기) 할 수도 있습니다." + +#: tips/gimp-tips.xml.in.h:15 +msgid "" +"Pressing and holding the Shift key before making a selection allows " +"you to add to the current selection instead of replacing it. Using Ctrl before making a selection subtracts from the current one." +msgstr "" +"Shift키를 누른 채로 선택을 만들면 현재 선택을 바꾸는 대신 더합니다. " +"Ctrl를 누른 채로 선택을 만들면 현재 선택에서 뺍니다." + +#: tips/gimp-tips.xml.in.h:16 +msgid "" +"The GIMP can undo most changes to the image, so feel free to experiment." +msgstr "" +"김프는 이미지에서 바뀐 내용을 대부분 취소할 수 있으니, 마음껏 실험해 보십시" +"오." + +#: tips/gimp-tips.xml.in.h:17 +msgid "" +"The GIMP supports gzip compression on the fly. Just add .gz (or " +".bz2, if you have bzip2 installed) to the filename and your image " +"will be saved compressed. Of course loading compressed images works too." +msgstr "" +"김프는 gzip 압축을 즉석에서 지원합니다. 단지 파일이름에 .gz(또는 " +"bzip2가 설치되어 있다면 .bz2)를 더하기만하면 이미지를 압축해서 저장" +"합니다. 물론 압축된 이미지를 불러오는 것도 문제 없죠." + +#: tips/gimp-tips.xml.in.h:18 +msgid "" +"The GIMP uses layers to let you organize your image. Think of them as a " +"stack of slides or filters, such that looking through them you see a " +"composite of their contents." +msgstr "" +"김프는 이미지를 조직화하기 위해 레이어을 사용합니다. 레이어를 슬라이드나 필터" +"를 쌓아놓은 것이라고 생각하면, 그것들을 통과하면서 합성된 내용을 보게 되는 거" +"죠." + +#: tips/gimp-tips.xml.in.h:19 +msgid "" +"The layer named "Background" is special because it lacks " +"transparency. This prevents you from moving the layer up in the stack. You " +"may add transparency to it by right-clicking in the Layers dialog and " +"selecting "Add Alpha Channel"." +msgstr "" +""배경" 레이어는 투명도가 없다는 점에서 특별합니다. 그래서 이 레이어" +"는 다른 레이어 위에 올릴 수 없습니다. 레이어 대화상자에서 오른쪽-클릭을 하고 " +""알파 채널 더하기"를 선택하면 투명도를 추가할 수 있습니다." + +#: tips/gimp-tips.xml.in.h:20 +msgid "" +"To create a circle-shaped selection, hold Shift while doing an " +"ellipse select. To place a circle precisely, drag horizontal and vertical " +"guides tangent to the circle you want to select, place your cursor at the " +"intersection of the guides, and the resulting selection will just touch the " +"guides." +msgstr "" +"원형 선택을 만들려면, 타원형 선택을 하는 동안 Shift를 누르세요. 원" +"을 정확한 위치에 만들려면, 선택하려는 원의 접선으로 가로 세로 안내선을 만들" +"고, 커서를 안내선의 교차점에 두면, 안내선에 맞춰서 선택할 수 있습니다." + +#: tips/gimp-tips.xml.in.h:21 +msgid "" +"When using a drawing tool (Paintbrush, Airbrush, or Pencil), Shift-" +"click will draw a straight line from your last drawing point to your current " +"cursor position. If you also press Ctrl, the line will be " +"constrained to 15 degree angles." +msgstr "" +"그리기 도구(페인트브러시, 에어브러시, 연필)를 사용할 때, Shift-클릭" +"하면 마지막으로 그린 곳에서 현재 커서 위치로 직선을 그립니다. Ctrl" +"도 같이 누르면, 직선을 15도 단위로 제한합니다." + +#: tips/gimp-tips.xml.in.h:22 +msgid "" +"When you save an image to work on it again later, try using XCF, the GIMP's " +"native file format (use the file extension .xcf). This preserves " +"the layers and every aspect of your work-in-progress. Once a project is " +"completed, you can save it as JPEG, PNG, GIF, ..." +msgstr "" +"나중에 다시 작업할 이미지를 저장할 때는 김프의 자체 파일 형식인 XCF(파일 확장" +"자가 .xcf입니다)를 사용해보세요. 이 형식을 사용하면 레이어와 작업 중" +"인 모든 측면들이 보존됩니다. 프로젝트를 완료했을 때, JPEG, PNG, GIF, ... 등으" +"로 저장하면 됩니다." + +#: tips/gimp-tips.xml.in.h:23 +msgid "" +"You can adjust or move a selection by using Alt-drag. If this makes " +"the window move, your window manager uses the Alt key already. Try " +"pressing Shift at the same time." +msgstr "" +"Alt-드래그를 사용해서 선택을 조절하거나 이동할 수 있습니다. 이렇게 " +"했더니 창이 움직인다면, 사용 중인 창 관리자가 Alt를 사용하고 있는 겁" +"니다. 그럴 땐 Shift키도 같이 눌러 주세요." + +#: tips/gimp-tips.xml.in.h:24 +msgid "" +"You can adjust the selection range for fuzzy select by clicking and dragging " +"left and right." +msgstr "" +"퍼지 선택에서, 클릭하고 왼쪽이나 오른쪽으로 드래그하면 선택 범위를 조절할 수 " +"있습니다." + +#: tips/gimp-tips.xml.in.h:25 +msgid "" +"You can create and edit complex selections using the Path tool. The Paths " +"dialog allows you to work on multiple paths and to convert them to " +"selections." +msgstr "" +"경로 도구를 이용해서 복잡한 선택을 만들고 고칠 수 있습니다. 경로 대화상자에" +"서 여러 개의 경로를 조작하여, 선택으로 변환할 수 있습니다." + +#: tips/gimp-tips.xml.in.h:26 +msgid "" +"You can drag a layer from the Layers dialog and drop it onto the toolbox. " +"This will create a new image containing only that layer." +msgstr "" +"레이어 대화상자에서 레이어를 드래그해서 도구 상자에 드롭하면, 그 레이어만 가" +"진 새 이미지가 만들어 집니다." + +#: tips/gimp-tips.xml.in.h:27 +msgid "" +"You can drag and drop many things in the GIMP. For example, dragging a color " +"from the toolbox or from a color palette and dropping it into an image will " +"fill the current image or selection with that color." +msgstr "" +"김프에서는 많은 것을 드래그하고 드롭할 수 있습니다. 예를 들면, 도구 상자나 색" +"상표에서 색상을 드래그해서 이미지에 드롭하면 현재 이미지나 선택을 그 색상으" +"로 채웁니다." + +#: tips/gimp-tips.xml.in.h:28 +msgid "" +"You can draw simple squares or circles using Edit->Stroke Selection. It " +"strokes the edge of your current selection. More complex shapes can be drawn " +"using the Path tool or with Filters->Render->Gfig." +msgstr "" +"편집->선택 따라그리기를 사용하면 단순한 사격형이나 원을 그릴 수 있습니다. " +"현재 선택의 모서리를 따라 그립니다. 더 복잡한 도형은 경로 도구나 필터->렌" +"더->Gfig를 사용해서 그릴 수 있습니다." + +#: tips/gimp-tips.xml.in.h:29 +msgid "" +"You can get context-sensitive help for most of the GIMP's features by " +"pressing the F1 key at any time. This also works inside the menus." +msgstr "" +"언제라도 F1키를 누르면 GIMP의 대부분의 기능들에 대해서 문맥에 맞는 도움말을 " +"볼 수 있습니다. 물론 메뉴 안에서도 됩니다." + +#: tips/gimp-tips.xml.in.h:30 +msgid "" +"You can perform many layer operations by right-clicking on the text label of " +"a layer in the Layers dialog." +msgstr "" +"레이어 대화상자의 텍스트 레이블에서 오른쪽-클릭을 하면 많은 레이어 관련 작업" +"을 수행할 수 있습니다." + +#: tips/gimp-tips.xml.in.h:31 +msgid "" +"You can press or release the Shift and Ctrl keys while you " +"are making a selection in order to constrain it to a square or a circle, or " +"to have it centered on its starting point." +msgstr "" +"선택하는 동안 Shift를 누르면, 정사각형이나 정원으로 제한할 수 있습니" +"다. Ctrl을 누르면 시작점을 가운데로 만들 수 있죠." + +#: tips/gimp-tips.xml.in.h:32 +msgid "" +"You can save a selection to a channel (Select->Save to Channel) and then " +"modify this channel with any paint tools. Using the buttons in the Channels " +"dialog, you can toggle the visibility of this new channel or convert it to a " +"selection." +msgstr "" +"선택을 채널에 저장하고(선택->채널로 저장), 이 채널을 원하는 그리기 도구로 " +"고칠 수 있습니다. 채널 대화상자의 단추들을 이용해서 채널을 표시하거나 숨길 " +"수 있고, 선택으로 변환할 수도 있습니다." + +#: tips/gimp-tips.xml.in.h:33 +msgid "" +"You can use Alt-Tab to cycle through all layers in an " +"image (if your window manager doesn't trap those keys...)." +msgstr "" +"Alt-Tab를 누르면 이미지의 모든 레이어를 돌아가면서 선택합니" +"다(창관리자가 이 키를 가로채지 않는다면 말이죠...)." + +#: tips/gimp-tips.xml.in.h:34 +msgid "" +"You can use the middle mouse button to pan around the image, if it's larger " +"than its display window." +msgstr "" +"이미지가 표시하는 창 보다 크면, 가운데 마우스 단추를사용해서 이미지의 주위를 " +"밀고 당기면서 볼 수 있습니다." + +#: tips/gimp-tips.xml.in.h:35 +msgid "" +"You can use the paint tools to change the selection. Click on the "" +"Quick Mask" button at the bottom left of an image window. Change your " +"selection by painting in the image and click on the button again to convert " +"it back to a normal selection." +msgstr "" +"선택을 고치기 위해서 그리기 도구를 사용할 수 있습니다. 이미지 창의 좌하단에 " +"있는 "퀵마스크" 단추를 클릭하십시오. 이미지에 그리기만 하면 선택이 " +"되고 단추를 한번 더 클릭하면 보통의 선택으로 바뀝니다." diff -uraN gimp-2.2.6/tips/Makefile.am gimp-2.2.7/tips/Makefile.am --- gimp-2.2.6/tips/Makefile.am 2005-04-09 23:08:25.000000000 +0200 +++ gimp-2.2.7/tips/Makefile.am 2005-04-22 12:16:57.000000000 +0200 @@ -23,6 +23,7 @@ id.po \ it.po \ ja.po \ + ko.po \ lt.po \ ms.po \ nb.po \ diff -uraN gimp-2.2.6/tips/Makefile.in gimp-2.2.7/tips/Makefile.in --- gimp-2.2.6/tips/Makefile.in 2005-04-10 01:57:21.000000000 +0200 +++ gimp-2.2.7/tips/Makefile.in 2005-04-22 14:04:18.000000000 +0200 @@ -322,6 +322,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@ @@ -391,6 +392,7 @@ id.po \ it.po \ ja.po \ + ko.po \ lt.po \ ms.po \ nb.po \ diff -uraN gimp-2.2.6/tools/Makefile.in gimp-2.2.7/tools/Makefile.in --- gimp-2.2.6/tools/Makefile.in 2005-04-10 01:57:03.000000000 +0200 +++ gimp-2.2.7/tools/Makefile.in 2005-04-11 11:43:47.000000000 +0200 @@ -322,6 +322,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.6/tools/pdbgen/Makefile.in gimp-2.2.7/tools/pdbgen/Makefile.in --- gimp-2.2.6/tools/pdbgen/Makefile.in 2005-04-10 01:57:04.000000000 +0200 +++ gimp-2.2.7/tools/pdbgen/Makefile.in 2005-04-11 11:43:50.000000000 +0200 @@ -322,6 +322,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.6/tools/pdbgen/pdb/image.pdb gimp-2.2.7/tools/pdbgen/pdb/image.pdb --- gimp-2.2.6/tools/pdbgen/pdb/image.pdb 2004-11-16 15:34:34.000000000 +0100 +++ gimp-2.2.7/tools/pdbgen/pdb/image.pdb 2005-05-08 12:01:59.000000000 +0200 @@ -367,7 +367,7 @@ $blurb = 'Scale the image to the specified extents.'; $help = <<'HELP'; -This procedure scales the image so that it's new width and height are equal to +This procedure scales the image so that its new width and height are equal to the supplied parameters. Offsets are also provided which describe the position of the previous image's content. No bounds checking is currently provided, so don't supply parameters that are out of bounds. All channels within the image @@ -1271,6 +1271,8 @@ g_free (tmp); else success = FALSE; + + g_free (utf8); } else success = FALSE;